Merge branch 'devel'

This commit is contained in:
Lauri Ojansivu 2018-09-05 02:13:10 +03:00
commit 9492daf9bc
4 changed files with 14 additions and 6 deletions

View file

@ -1,3 +1,11 @@
# v1.41 2018-09-05 Wekan release
This release tries to fix the following bugs:
- [Try to fix Wekan Sandstorm API](https://github.com/wekan/wekan/issues/1279#issuecomment-418440401).
Thanks to GitHub users ocdtrekkie and xet7 for their contributions.
# v1.40 2018-09-04 Wekan release
This release adds the following new features:

View file

@ -171,8 +171,8 @@
"comment-placeholder": "Kommentar schreiben",
"comment-only": "Nur kommentierbar",
"comment-only-desc": "Kann Karten nur Kommentieren",
"no-comments": "No comments",
"no-comments-desc": "Can not see comments and activities.",
"no-comments": "Keine Kommentare",
"no-comments-desc": "Kann keine Kommentare und Aktivitäten sehen.",
"computer": "Computer",
"confirm-subtask-delete-dialog": "Wollen Sie die Teilaufgabe wirklich löschen?",
"confirm-checklist-delete-dialog": "Wollen Sie die Checkliste wirklich löschen?",

View file

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "1.40.0",
"version": "1.41.0",
"description": "The open-source kanban",
"private": true,
"scripts": {

View file

@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user.
appVersion = 125,
appVersion = 126,
# Increment this for every release.
appMarketingVersion = (defaultText = "1.40.0~2018-09-04"),
appMarketingVersion = (defaultText = "1.41.0~2018-09-05"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,
@ -226,7 +226,7 @@ const pkgdef :Spk.PackageDefinition = (
verbPhrase = (defaultText = "removed from card"),
), ],
),
apiPath = "/api",
apiPath = "/",
saveIdentityCaps = true,
),
);