summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-04-04 23:27:49 +0300
committerLauri Ojansivu <x@xet7.org>2018-04-04 23:27:49 +0300
commitfb87e4b1f23732700a8faaab1dca9938d85a0cc7 (patch)
treec1c47a0c1cbd1e99594289c95371cae99709e045
parent66e56849a40b604e3cbfcb03679276a1e7aace99 (diff)
parenta320a714673977d62e63aaf707addb7f646aa659 (diff)
downloadwekan-fb87e4b1f23732700a8faaab1dca9938d85a0cc7.tar.gz
wekan-fb87e4b1f23732700a8faaab1dca9938d85a0cc7.tar.bz2
wekan-fb87e4b1f23732700a8faaab1dca9938d85a0cc7.zip
Merge branch 'devel'
-rw-r--r--.meteor/packages2
-rw-r--r--.meteor/versions5
-rw-r--r--CHANGELOG.md11
-rw-r--r--client/components/cards/checklists.jade2
-rw-r--r--package.json2
-rw-r--r--sandstorm-pkgdef.capnp4
6 files changed, 22 insertions, 4 deletions
diff --git a/.meteor/packages b/.meteor/packages
index 90ef80a9..c1b8ab88 100644
--- a/.meteor/packages
+++ b/.meteor/packages
@@ -82,3 +82,5 @@ staringatlights:flow-router
mixmax:smart-disconnect
accounts-password@1.5.0
cfs:gridfs
+browser-policy
+eluck:accounts-lockout
diff --git a/.meteor/versions b/.meteor/versions
index 0107dc39..2ab1af11 100644
--- a/.meteor/versions
+++ b/.meteor/versions
@@ -18,6 +18,10 @@ 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
callback-hook@1.0.10
@@ -57,6 +61,7 @@ ecmascript-runtime@0.5.0
ecmascript-runtime-client@0.5.0
ecmascript-runtime-server@0.5.0
ejson@1.1.0
+eluck:accounts-lockout@0.9.0
email@1.2.3
es5-shim@4.6.15
fastclick@1.0.13
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 07c1fd38..8ec7e161 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,14 @@
+# v0.80 2018-04-04 Wekan release
+
+This release adds the following new features:
+
+- [Changed icon of checklist name to unchecked](https://github.com/wekan/wekan/pull/1559/commits/f9539aa2a8d806e5a158d1c32f74788d051d40cb);
+- [Added meteor packages](https://github.com/wekan/wekan/commit/40d438a517f0d807894e04873358aecf44fa7c4d)
+ for security: [browser-policy](https://atmospherejs.com/meteor/browser-policy) and
+ [eluck:accounts-lockout](https://atmospherejs.com/eluck/accounts-lockout).
+
+Thanks to GitHub users quantazelle and xet7 for their contributions.
+
# v0.79 2018-03-31 Wekan release
This release adds the following new features:
diff --git a/client/components/cards/checklists.jade b/client/components/cards/checklists.jade
index 5a7c7473..28f00d7f 100644
--- a/client/components/cards/checklists.jade
+++ b/client/components/cards/checklists.jade
@@ -23,7 +23,7 @@ template(name="checklistDetail")
+editChecklistItemForm(checklist = checklist)
else
.checklist-title
- .checkbox.fa.fa-check-square-o
+ .checkbox.fa.fa-square-o
if canModifyCard
a.js-delete-checklist.toggle-delete-checklist-dialog {{_ "delete"}}...
diff --git a/package.json b/package.json
index 9485ca2f..7590b692 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "wekan",
- "version": "0.79.0",
+ "version": "0.80.0",
"description": "The open-source Trello-like kanban",
"private": true,
"scripts": {
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 8690076d..17696e1f 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 = 64,
+ appVersion = 65,
# Increment this for every release.
- appMarketingVersion = (defaultText = "0.79.0~2018-03-31"),
+ appMarketingVersion = (defaultText = "0.80.0~2018-04-04"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,