summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxime Quandalle <maxime@quandalle.com>2015-08-31 16:25:45 +0200
committerMaxime Quandalle <maxime@quandalle.com>2015-08-31 16:34:55 +0200
commit21f90382d0465eb7cf7e30e3c68a246105ef317b (patch)
tree9832ded06447e68d110839c7f3dd9f33607c2bff
parent9efd565f749cac8e3f3340ce6909da73b948fb79 (diff)
downloadwekan-21f90382d0465eb7cf7e30e3c68a246105ef317b.tar.gz
wekan-21f90382d0465eb7cf7e30e3c68a246105ef317b.tar.bz2
wekan-21f90382d0465eb7cf7e30e3c68a246105ef317b.zip
Temporarily hide the attachment feature on sandstorm
Our spk currently have an issue with the bundled MongoDB (forked) version that breaks if some files are inserted in a GridFS collection. We need to find out a way to upgrade and migrate the bundled database until we can re-enable the attachment feature. Note that the feature is unmodified, it's just hidden in the UI.
-rw-r--r--client/components/cards/cardDetails.jade3
-rw-r--r--sandstorm-pkgdef.capnp2
2 files changed, 3 insertions, 2 deletions
diff --git a/client/components/cards/cardDetails.jade b/client/components/cards/cardDetails.jade
index a5dcb47b..4cd851e0 100644
--- a/client/components/cards/cardDetails.jade
+++ b/client/components/cards/cardDetails.jade
@@ -76,7 +76,8 @@ template(name="cardDetailsActionsPopup")
ul.pop-over-list
li: a.js-members Edit Members…
li: a.js-labels Edit Labels…
- li: a.js-attachments Edit Attachments…
+ unless isSandstorm
+ li: a.js-attachments Edit Attachments…
hr
ul.pop-over-list
li: a.js-move-card Move card
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index a4eb1b3e..2a106959 100644
--- a/sandstorm-pkgdef.capnp
+++ b/sandstorm-pkgdef.capnp
@@ -22,7 +22,7 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user.
- appVersion = 3,
+ appVersion = 4,
# Increment this for every release.
appMarketingVersion = (defaultText = "0.9.0_rc1"),