From 74e41e420fd99703bd38a831f80f1cde7058d96f Mon Sep 17 00:00:00 2001 From: David Renshaw Date: Tue, 15 Nov 2016 14:34:37 -0500 Subject: [sandstorm]: fix bug where an identity that fails to restore could not be added to a card --- sandstorm.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sandstorm.js b/sandstorm.js index 07007be1..dc5b10d6 100644 --- a/sandstorm.js +++ b/sandstorm.js @@ -116,9 +116,10 @@ if (isSandstorm && Meteor.isServer) { mentioned: !!user.mentioned, subscribed: !!user.subscribed, }; - }).catch(() => { - // Ignore identities that fail to resolve. Probably they have lost access to the board. }); + }).catch(() => { + // Ignore identities that fail to restore. Either they were added before we set + // `saveIdentityCaps` to true, or they have lost access to the board. }); })).then((maybeUsers) => { const users = maybeUsers.filter((u) => !!u); -- cgit v1.2.3-1-g7c22 From 693053555547d417322973ccefc3ef63c5a0f743 Mon Sep 17 00:00:00 2001 From: David Renshaw Date: Tue, 15 Nov 2016 14:40:23 -0500 Subject: update Sandstorm metadata for bugfix release --- sandstorm-pkgdef.capnp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index 0aaaed56..5c0961f8 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 = 14, + appVersion = 16, # Increment this for every release. - appMarketingVersion = (defaultText = "0.11.0~2016-11-08"), + appMarketingVersion = (defaultText = "0.11.0~2016-11-15"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0, @@ -58,7 +58,7 @@ const pkgdef :Spk.PackageDefinition = ( ), website = "https://wekan.io", - codeUrl = "https://github.com/wekan/wekan", + codeUrl = "https://github.com/wefork/wekan", license = (openSource = mit), categories = [productivity, office], -- cgit v1.2.3-1-g7c22