diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dc1a4799..7171521a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,13 +7,15 @@ This release adds the following new features: environment to Admin Panel](https://github.com/wekan/wekan/pull/1156); * [Change Email address](https://github.com/wekan/wekan/pull/1161); * [Ubuntu snap: Use version scriptlet](https://github.com/wekan/wekan/pull/1164); -* [Gogs integration part 1](https://github.com/wekan/wekan/pull/1189). +* [Gogs integration part 1](https://github.com/wekan/wekan/pull/1189); +* [Add web manifest so Wekan can be used like standalone app on Desktop + with Chrome or Firefox](https://github.com/wekan/wekan/pull/1184). and fixes the following bugs: * [Fix Squeezed tickbox in Card](https://github.com/wekan/wekan/pull/1171). -Thanks to GitHub users andresmanelli, kubiko, nztqa and xet7 +Thanks to GitHub users andresmanelli, danhawkes, kubiko, nztqa and xet7 for their contributions. # v0.32 2017-07-30 Wekan release diff --git a/client/components/main/layouts.jade b/client/components/main/layouts.jade index 12fac0a8d..a51a35e0a 100644 --- a/client/components/main/layouts.jade +++ b/client/components/main/layouts.jade @@ -8,6 +8,7 @@ head difficult to do that cleanly with Blaze -- at least without adding extra packages. link(rel="shortcut icon" href="/wekan-favicon.png") + link(rel="manifest" href="/wekan-manifest.json") template(name="userFormsLayout") section.auth-layout diff --git a/public/wekan-150.png b/public/wekan-150.png new file mode 100644 index 000000000..e8e89c629 Binary files /dev/null and b/public/wekan-150.png differ diff --git a/public/wekan-150.svg b/public/wekan-150.svg new file mode 100644 index 000000000..51d4eedec --- /dev/null +++ b/public/wekan-150.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/wekan-manifest.json b/public/wekan-manifest.json new file mode 100644 index 000000000..a1c18518a --- /dev/null +++ b/public/wekan-manifest.json @@ -0,0 +1,22 @@ +{ + "name": "Wekan", + "short_name": "Wekan", + "description": "The open-source Trello-like kanban", + "lang": "en-US", + "icons": [ + { + "src": "/wekan-150.png", + "type": "image/png", + "sizes": "150x150" + }, + { + "src": "/wekan-150.svg", + "type": "image/svg+xml", + "sizes": "150x150" + } + ], + "display": "standalone", + "background_color": "#dedede", + "theme_color": "#dedede", + "start_url": "/" +} diff --git a/server/notifications/outgoing.js b/server/notifications/outgoing.js index 88e50fa0b..c227366e1 100644 --- a/server/notifications/outgoing.js +++ b/server/notifications/outgoing.js @@ -31,7 +31,7 @@ Meteor.methods({ ['cardId', 'listId', 'oldListId', 'boardId'].forEach((key) => { if (params[key]) value[key] = params[key]; }); - value['description'] = description; + value.$description = description; const options = { headers: {