From 53c0a5278888ad1f97005f5347df09b66e67c5d4 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 14 Aug 2018 21:22:46 +0300 Subject: Remove Trello. --- app.json | 2 +- package.json | 2 +- scalingo.json | 4 ++-- snap-src/bin/wekan-help | 2 +- snapcraft.yaml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app.json b/app.json index 6d3ce917..3921dec9 100644 --- a/app.json +++ b/app.json @@ -1,6 +1,6 @@ { "name": "Wekan", - "description": "The open-source Trello-like kanban", + "description": "The open-source kanban", "repository": "https://github.com/wekan/wekan", "logo": "https://raw.githubusercontent.com/wekan/wekan/master/meta/icons/wekan-150.png", "keywords": ["productivity", "tool", "team", "kanban"], diff --git a/package.json b/package.json index 2617ef02..9f1a1d65 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "wekan", "version": "1.31.0", - "description": "The open-source Trello-like kanban", + "description": "The open-source kanban", "private": true, "scripts": { "lint": "eslint --ignore-pattern 'packages/*' .", diff --git a/scalingo.json b/scalingo.json index 57acbacc..78601a45 100644 --- a/scalingo.json +++ b/scalingo.json @@ -1,8 +1,8 @@ { "name": "wekan", - "description": "The open-source Trello-like kanban (build with Meteor)", + "description": "The open-source kanban (built with Meteor)", "repository": "https://github.com/wekan/wekan/", "logo": "https://raw.githubusercontent.com/wekan/wekan/master/meta/icons/wekan-150.png", - "website": "https://wekan.io", + "website": "https://wekan.github.io", "addons": ["scalingo-mongodb"] } diff --git a/snap-src/bin/wekan-help b/snap-src/bin/wekan-help index 49270fb2..2cd0f037 100755 --- a/snap-src/bin/wekan-help +++ b/snap-src/bin/wekan-help @@ -7,7 +7,7 @@ if [ "$CADDY_ENABLED" = "true" ]; then export PORT=${CADDY_PORT} &>/dev/null fi -echo -e "Wekan: The open-source Trello-like kanban.\n" +echo -e "Wekan: The open-source kanban.\n" echo -e "Make sure you have connected all interfaces, check more by calling $ snap interfaces ${SNAP_NAME}" echo -e "\n" echo -e "${SNAP_NAME} has multiple services, to check status use systemctl" diff --git a/snapcraft.yaml b/snapcraft.yaml index 93c50ae8..f3f784e7 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -1,7 +1,7 @@ name: wekan version: 0 version-script: git describe --dirty --tags | cut -c 2- -summary: The open-source Trello-like kanban +summary: The open-source kanban description: | Wekan is an open-source and collaborative kanban board application. -- cgit v1.2.3-1-g7c22 From e55d7e4f72a4b425c4aca5ba04a7be1fc642649b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Manelli?= Date: Wed, 15 Aug 2018 20:50:51 +0200 Subject: Fix removed setters and getters --- client/components/cards/cardDetails.jade | 20 +++++++------- models/cards.js | 47 +++++++++++++++++++++++++++++++- 2 files changed, 56 insertions(+), 11 deletions(-) diff --git a/client/components/cards/cardDetails.jade b/client/components/cards/cardDetails.jade index 4401d24b..ac7218d4 100644 --- a/client/components/cards/cardDetails.jade +++ b/client/components/cards/cardDetails.jade @@ -129,14 +129,14 @@ template(name="cardDetails") +editCardRequesterForm else a.js-open-inlined-form - if requestedBy + if getRequestedBy +viewer - = requestedBy + = getRequestedBy else | {{_ 'add'}} - else if requestedBy + else if getRequestedBy +viewer - = requestedBy + = getRequestedBy .card-details-item.card-details-item-name h3.card-details-item-title {{_ 'assigned-by'}} @@ -145,14 +145,14 @@ template(name="cardDetails") +editCardAssignerForm else a.js-open-inlined-form - if assignedBy + if getAssignedBy +viewer - = assignedBy + = getAssignedBy else | {{_ 'add'}} - else if requestedBy + else if getRequestedBy +viewer - = assignedBy + = getAssignedBy hr +checklists(cardId = _id) @@ -192,13 +192,13 @@ template(name="editCardTitleForm") a.fa.fa-times-thin.js-close-inlined-form template(name="editCardRequesterForm") - input.js-edit-card-requester(type='text' autofocus value=requestedBy) + input.js-edit-card-requester(type='text' autofocus value=getRequestedBy) .edit-controls.clearfix button.primary.confirm.js-submit-edit-card-requester-form(type="submit") {{_ 'save'}} a.fa.fa-times-thin.js-close-inlined-form template(name="editCardAssignerForm") - input.js-edit-card-assigner(type='text' autofocus value=assignedBy) + input.js-edit-card-assigner(type='text' autofocus value=getAssignedBy) .edit-controls.clearfix button.primary.confirm.js-submit-edit-card-assigner-form(type="submit") {{_ 'save'}} a.fa.fa-times-thin.js-close-inlined-form diff --git a/models/cards.js b/models/cards.js index 171c21c5..1cb1e3d0 100644 --- a/models/cards.js +++ b/models/cards.js @@ -88,7 +88,6 @@ Cards.attachSchema(new SimpleSchema({ type: String, optional: true, defaultValue: '', - }, assignedBy: { type: String, @@ -769,6 +768,52 @@ Cards.helpers({ return this.archived; } }, + + setRequestedBy(requestedBy) { + if (this.isLinkedCard()) { + return Cards.update( + { _id: this.linkedId }, + {$set: {requestedBy}} + ); + } else { + return Cards.update( + {_id: this._id}, + {$set: {requestedBy}} + ); + } + }, + + getRequestedBy() { + if (this.isLinkedCard()) { + const card = Cards.findOne({ _id: this.linkedId }); + return card.requestedBy; + } else { + return this.requestedBy; + } + }, + + setAssignedBy(assignedBy) { + if (this.isLinkedCard()) { + return Cards.update( + { _id: this.linkedId }, + {$set: {assignedBy}} + ); + } else { + return Cards.update( + {_id: this._id}, + {$set: {assignedBy}} + ); + } + }, + + getAssignedBy() { + if (this.isLinkedCard()) { + const card = Cards.findOne({ _id: this.linkedId }); + return card.assignedBy; + } else { + return this.assignedBy; + } + }, }); Cards.mutations({ -- cgit v1.2.3-1-g7c22 From be00465e67931f2a5655ed47f6e075ed1c589f54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Manelli?= Date: Wed, 15 Aug 2018 22:17:52 +0200 Subject: Fix hiddenSystemMessages --- client/components/activities/activities.js | 16 ++++++++++++---- client/components/cards/cardDetails.jade | 7 ++++++- server/publications/boards.js | 2 -- 3 files changed, 18 insertions(+), 7 deletions(-) diff --git a/client/components/activities/activities.js b/client/components/activities/activities.js index 95699961..25e151fd 100644 --- a/client/components/activities/activities.js +++ b/client/components/activities/activities.js @@ -8,16 +8,24 @@ BlazeComponent.extendComponent({ const sidebar = this.parentComponent(); // XXX for some reason not working sidebar.callFirstWith(null, 'resetNextPeak'); this.autorun(() => { - const mode = this.data().mode; + let mode = this.data().mode; const capitalizedMode = Utils.capitalize(mode); - const id = Session.get(`current${capitalizedMode}`); + let thisId, searchId; + if (mode === 'linkedcard' || mode === 'linkedboard') { + thisId = Session.get('currentCard'); + searchId = Cards.findOne({_id: thisId}).linkedId; + mode = mode.replace('linked', ''); + } else { + thisId = Session.get(`current${capitalizedMode}`); + searchId = thisId; + } const limit = this.page.get() * activitiesPerPage; const user = Meteor.user(); const hideSystem = user ? user.hasHiddenSystemMessages() : false; - if (id === null) + if (searchId === null) return; - this.subscribe('activities', mode, id, limit, hideSystem, () => { + this.subscribe('activities', mode, searchId, limit, hideSystem, () => { this.loadNextPageLocked = false; // If the sibear peak hasn't increased, that mean that there are no more diff --git a/client/components/cards/cardDetails.jade b/client/components/cards/cardDetails.jade index ac7218d4..ad2044e8 100644 --- a/client/components/cards/cardDetails.jade +++ b/client/components/cards/cardDetails.jade @@ -182,7 +182,12 @@ template(name="cardDetails") if currentUser.isBoardMember +commentForm if isLoaded.get - +activities(card=this mode="card") + if isLinkedCard + +activities(card=this mode="linkedcard") + else if isLinkedBoard + +activities(card=this mode="linkedboard") + else + +activities(card=this mode="card") template(name="editCardTitleForm") textarea.js-edit-card-title(rows='1' autofocus) diff --git a/server/publications/boards.js b/server/publications/boards.js index b68f7360..fb4c8c84 100644 --- a/server/publications/boards.js +++ b/server/publications/boards.js @@ -103,14 +103,12 @@ Meteor.publishRelations('board', function(boardId) { const impCardId = card.linkedId; this.cursor(Cards.find({ _id: impCardId })); this.cursor(CardComments.find({ cardId: impCardId })); - this.cursor(Activities.find({ cardId: impCardId })); this.cursor(Attachments.find({ cardId: impCardId })); this.cursor(Checklists.find({ cardId: impCardId })); this.cursor(ChecklistItems.find({ cardId: impCardId })); } else if (card.type === 'cardType-linkedBoard') { this.cursor(Boards.find({ _id: card.linkedId})); } - this.cursor(Activities.find({ cardId })); this.cursor(CardComments.find({ cardId })); this.cursor(Attachments.find({ cardId })); this.cursor(Checklists.find({ cardId })); -- cgit v1.2.3-1-g7c22 From 807c6ce09e4b5d49049d343d73bbca24fa84d527 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 15 Aug 2018 23:41:01 +0300 Subject: - Content Policy: Allow inline scripts, otherwise there is errors in browser/inspect/console. - Set default matomo settings to disabled. Thanks to xet7 ! --- Dockerfile | 4 ++-- docker-compose.yml | 17 +++++++++++------ sandstorm-pkgdef.capnp | 4 ++-- server/policy.js | 3 ++- snap-src/bin/config | 2 +- 5 files changed, 18 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index 77cd648e..94528ec9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,8 +33,8 @@ ENV BUILD_DEPS="apt-utils gnupg gosu wget curl bzip2 build-essential python git WITH_API=true \ MATOMO_ADDRESS="" \ MATOMO_SITE_ID="" \ - MATOMO_DO_NOT_TRACK=false \ - MATOMO_WITH_USERNAME=true \ + MATOMO_DO_NOT_TRACK=true \ + MATOMO_WITH_USERNAME=false \ BROWSER_POLICY_ENABLED=true \ TRUSTED_URL="" diff --git a/docker-compose.yml b/docker-compose.yml index ee87227b..54866996 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -33,6 +33,7 @@ services: - METEOR_EDGE=${METEOR_EDGE} - USE_EDGE=${USE_EDGE} ports: + # Docker outsideport:insideport - 80:8080 environment: - MONGO_URL=mongodb://wekandb:27017/wekan @@ -41,14 +42,18 @@ services: # If you disable Wekan API with 'false', Export Board does not work. - WITH_API=true # Optional: Integration with Matomo https://matomo.org that is installed to your server - # The address of the server where Matomo is hosted: - # - MATOMO_ADDRESS=https://example.com/matomo + # The address of the server where Matomo is hosted. + # example: - MATOMO_ADDRESS=https://example.com/matomo + - MATOMO_ADDRESS='' # The value of the site ID given in Matomo server for Wekan - # - MATOMO_SITE_ID=123456789 - # The option do not track which enables users to not be tracked by matomo" - # - MATOMO_DO_NOT_TRACK=false + # example: - MATOMO_SITE_ID=12345 + - MATOMO_SITE_ID='' + # The option do not track which enables users to not be tracked by matomo + # example: - MATOMO_DO_NOT_TRACK=false + - MATOMO_DO_NOT_TRACK=true # The option that allows matomo to retrieve the username: - # - MATOMO_WITH_USERNAME=true + # example: MATOMO_WITH_USERNAME=true + - MATOMO_WITH_USERNAME=false # Enable browser policy and allow one trusted URL that can have iframe that has Wekan embedded inside. # Setting this to false is not recommended, it also disables all other browser policy protections # and allows all iframing etc. See wekan/server/policy.js diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index 24107a1c..20153f4e 100644 --- a/sandstorm-pkgdef.capnp +++ b/sandstorm-pkgdef.capnp @@ -240,8 +240,8 @@ const myCommand :Spk.Manifest.Command = ( (key = "WITH_API", value = "true"), (key = "MATOMO_ADDRESS", value=""), (key = "MATOMO_SITE_ID", value=""), - (key = "MATOMO_DO_NOT_TRACK", value="false"), - (key = "MATOMO_WITH_USERNAME", value="true"), + (key = "MATOMO_DO_NOT_TRACK", value="true"), + (key = "MATOMO_WITH_USERNAME", value="false"), (key = "BROWSER_POLICY_ENABLED", value="true"), (key = "TRUSTED_URL", value=""), (key = "SANDSTORM", value = "1"), diff --git a/server/policy.js b/server/policy.js index 344e42e2..94f80b21 100644 --- a/server/policy.js +++ b/server/policy.js @@ -6,7 +6,8 @@ Meteor.startup(() => { // Trusted URL that can embed Wekan in iFrame. const trusted = process.env.TRUSTED_URL; BrowserPolicy.framing.disallow(); - BrowserPolicy.content.disallowInlineScripts(); + //Allow inline scripts, otherwise there is errors in browser/inspect/console + //BrowserPolicy.content.disallowInlineScripts(); BrowserPolicy.content.disallowEval(); BrowserPolicy.content.allowInlineStyles(); BrowserPolicy.content.allowFontDataUrl(); diff --git a/snap-src/bin/config b/snap-src/bin/config index 2c50c074..5a745184 100755 --- a/snap-src/bin/config +++ b/snap-src/bin/config @@ -61,7 +61,7 @@ DEFAULT_MATOMO_SITE_ID="" KEY_MATOMO_SITE_ID="matomo-site-id" DESCRIPTION_MATOMO_DO_NOT_TRACK="The option do not track which enables users to not be tracked by matomo" -DEFAULT_MATOMO_DO_NOT_TRACK="false" +DEFAULT_MATOMO_DO_NOT_TRACK="true" KEY_MATOMO_DO_NOT_TRACK="matomo-do-not-track" DESCRIPTION_MATOMO_WITH_USERNAME="The option that allows matomo to retrieve the username" -- cgit v1.2.3-1-g7c22 From 36447ba1c0bf961b3f7a5cde0a82c240489c80e9 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 15 Aug 2018 23:52:32 +0300 Subject: - Content Policy: Allow inline scripts, otherwise there is errors in browser - Set default matomo settings to disabled - Fix hidden system [messages](https://github.com/wekan/wekan/issues/1830) - Fix Requested By and Assigned By fields. Thanks to andresmanelli and xet7 ! Closes #1830 --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a4db498..874bcbcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# Upcoming Wekan release + +This release fixes the following bugs: + +- [Content Policy: Allow inline scripts, otherwise there is errors in browser/inspect/console](807c6ce09e4b5d49049d343d73bbca24fa84d527); +- [Set default matomo settings to disabled](https://github.com/wekan/wekan/commit/807c6ce09e4b5d49049d343d73bbca24fa84d527); +- Fix [hidden](https://github.com/wekan/wekan/commit/be00465e67931f2a5655ed47f6e075ed1c589f54) + [system](https://github.com/wekan/wekan/commit/9fc3de8502919f9aeb18c9f8ea3b0678b66ce176) [messages](https://github.com/wekan/wekan/issues/1830); +- Fix [Requested By](https://github.com/wekan/wekan/commit/e55d7e4f72a4b425c4aca5ba04a7be1fc642649b) and + [Assigned By](https://github.com/wekan/wekan/commit/5c33a8534186920be642be8e2ac17743a54f16db) [fields](https://github.com/wekan/wekan/issues/1830). + +Thanks to GitHub users andresmanelli and xet7 for their contributions. + # v1.31 2018-08-14 Wekan release This release fixes the following bugs: -- cgit v1.2.3-1-g7c22 From b3005f828dbf69bdf174d4bcd7654310fa9e0968 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 16 Aug 2018 14:29:38 +0300 Subject: - Use only framing policy, not all of content policy. - Fix Date and Time Formats are only US in every language. Thanks to xet7 ! Closes #1833 --- .meteor/packages | 6 +++--- .meteor/versions | 2 -- server/policy.js | 16 ++++++++-------- 3 files changed, 11 insertions(+), 13 deletions(-) diff --git a/.meteor/packages b/.meteor/packages index e76e15fb..13f1384a 100644 --- a/.meteor/packages +++ b/.meteor/packages @@ -49,7 +49,6 @@ kadira:dochead meteorhacks:picker meteorhacks:subs-manager mquandalle:autofocus -mquandalle:moment ongoworks:speakingurl raix:handlebar-helpers tap:i18n @@ -81,8 +80,9 @@ staringatlights:fast-render mixmax:smart-disconnect accounts-password@1.5.0 cfs:gridfs -browser-policy eluck:accounts-lockout rzymek:fullcalendar momentjs:moment@2.22.2 -atoy40:accounts-cas \ No newline at end of file +atoy40:accounts-cas +browser-policy-framing +mquandalle:moment diff --git a/.meteor/versions b/.meteor/versions index 9de09a74..f3470d97 100644 --- a/.meteor/versions +++ b/.meteor/versions @@ -19,9 +19,7 @@ binary-heap@1.0.10 blaze@2.3.2 blaze-tools@1.0.10 boilerplate-generator@1.3.1 -browser-policy@1.1.0 browser-policy-common@1.0.11 -browser-policy-content@1.1.0 browser-policy-framing@1.1.0 caching-compiler@1.1.9 caching-html-compiler@1.1.2 diff --git a/server/policy.js b/server/policy.js index 94f80b21..02a42cd4 100644 --- a/server/policy.js +++ b/server/policy.js @@ -8,27 +8,27 @@ Meteor.startup(() => { BrowserPolicy.framing.disallow(); //Allow inline scripts, otherwise there is errors in browser/inspect/console //BrowserPolicy.content.disallowInlineScripts(); - BrowserPolicy.content.disallowEval(); - BrowserPolicy.content.allowInlineStyles(); - BrowserPolicy.content.allowFontDataUrl(); + //BrowserPolicy.content.disallowEval(); + //BrowserPolicy.content.allowInlineStyles(); + //BrowserPolicy.content.allowFontDataUrl(); BrowserPolicy.framing.restrictToOrigin(trusted); - BrowserPolicy.content.allowScriptOrigin(trusted); + //BrowserPolicy.content.allowScriptOrigin(trusted); } else { // Disable browser policy and allow all framing and including. // Use only at internal LAN, not at Internet. BrowserPolicy.framing.allowAll(); - BrowserPolicy.content.allowDataUrlForAll(); + //BrowserPolicy.content.allowDataUrlForAll(); } // Allow all images from anywhere - BrowserPolicy.content.allowImageOrigin('*'); + //BrowserPolicy.content.allowImageOrigin('*'); // If Matomo URL is set, allow it. const matomoUrl = process.env.MATOMO_ADDRESS; if (matomoUrl){ - BrowserPolicy.content.allowScriptOrigin(matomoUrl); - BrowserPolicy.content.allowImageOrigin(matomoUrl); + //BrowserPolicy.content.allowScriptOrigin(matomoUrl); + //BrowserPolicy.content.allowImageOrigin(matomoUrl); } }); -- cgit v1.2.3-1-g7c22 From 62dd28d91c0a71c083ee94cfa41fbfbd75a97112 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 16 Aug 2018 14:34:01 +0300 Subject: - Use only framing policy, not all of content policy. - Fix Date and Time Formats are only US in every language. Thanks to xet7 ! Closes #1833 --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 874bcbcb..a96a5b38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,14 @@ This release fixes the following bugs: -- [Content Policy: Allow inline scripts, otherwise there is errors in browser/inspect/console](807c6ce09e4b5d49049d343d73bbca24fa84d527); +- [Content Policy: Allow inline scripts, otherwise there is errors in browser/inspect/console](https://github.com/wekan/wekan/commit/807c6ce09e4b5d49049d343d73bbca24fa84d527); +- [Use only framing policy, not all of content policy](https://github.com/wekan/wekan/commit/b3005f828dbf69bdf174d4bcd7654310fa9e0968); - [Set default matomo settings to disabled](https://github.com/wekan/wekan/commit/807c6ce09e4b5d49049d343d73bbca24fa84d527); - Fix [hidden](https://github.com/wekan/wekan/commit/be00465e67931f2a5655ed47f6e075ed1c589f54) [system](https://github.com/wekan/wekan/commit/9fc3de8502919f9aeb18c9f8ea3b0678b66ce176) [messages](https://github.com/wekan/wekan/issues/1830); - Fix [Requested By](https://github.com/wekan/wekan/commit/e55d7e4f72a4b425c4aca5ba04a7be1fc642649b) and - [Assigned By](https://github.com/wekan/wekan/commit/5c33a8534186920be642be8e2ac17743a54f16db) [fields](https://github.com/wekan/wekan/issues/1830). + [Assigned By](https://github.com/wekan/wekan/commit/5c33a8534186920be642be8e2ac17743a54f16db) [fields](https://github.com/wekan/wekan/issues/1830); +- [Fix Date and Time Formats are only US in every language](https://github.com/wekan/wekan/commit/b3005f828dbf69bdf174d4bcd7654310fa9e0968). Thanks to GitHub users andresmanelli and xet7 for their contributions. -- cgit v1.2.3-1-g7c22 From 406442904743bdc19d3a54c425c63afd90768736 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 16 Aug 2018 14:39:19 +0300 Subject: v1.32 --- CHANGELOG.md | 2 +- package.json | 2 +- sandstorm-pkgdef.capnp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a96a5b38..cbbfa8e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Upcoming Wekan release +# v1.32 2018-08-16 Wekan release This release fixes the following bugs: diff --git a/package.json b/package.json index 9f1a1d65..36c4b3f4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "1.31.0", + "version": "1.32.0", "description": "The open-source kanban", "private": true, "scripts": { diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index 20153f4e..4927baaf 100644 --- a/sandstorm-pkgdef.capnp +++ b/sandstorm-pkgdef.capnp @@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = ( appTitle = (defaultText = "Wekan"), # The name of the app as it is displayed to the user. - appVersion = 116, + appVersion = 117, # Increment this for every release. - appMarketingVersion = (defaultText = "1.31.0~2018-08-14"), + appMarketingVersion = (defaultText = "1.32.0~2018-08-16"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0, -- cgit v1.2.3-1-g7c22