diff options
author | Lauri Ojansivu <x@xet7.org> | 2017-03-05 21:15:16 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2017-03-05 21:15:16 +0200 |
commit | c775da8ccc38fd168b36ff1e72af20a9d3178343 (patch) | |
tree | 2c41d358b790dde96988c2a10c978c351db96235 | |
parent | c829440bc2b8f1e5f09c540f5297537b225d9b79 (diff) | |
download | wekan-c775da8ccc38fd168b36ff1e72af20a9d3178343.tar.gz wekan-c775da8ccc38fd168b36ff1e72af20a9d3178343.tar.bz2 wekan-c775da8ccc38fd168b36ff1e72af20a9d3178343.zip |
v0.11.1-rc2 Wekan prerelease.v0.11.1-rc2
-rw-r--r-- | CHANGELOG.md | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fed930d..9e6ee524 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ -# Upcoming Wekan release +# v0.11.1-rc2 2017-03-05 Wekan prerelease + +Known bugs: +* https://github.com/wekan/wekan/issues/785 +* https://github.com/wekan/wekan/issues/784 This release adds the following supported platforms: @@ -14,22 +18,18 @@ This release adds the following supported platforms: and adds the following new features: * Admin Panel: +``` 1) Disable Self-Registration and invite users 2) SMTP settings. Adding Admin user in mongo cli: 1) Use database that has wekan data, for example: -``` - use admin; -``` + use admin; 2) Add Admin rights to some Wekan username: -``` - db.users.update({username:'admin-username-here'},{$set:{isAdmin:true}}) -``` + db.users.update({username:'admin-username-here'},{$set:{isAdmin:true}}) Hiding Admin panel by removing Admin rights: -``` - use admin; - db.settings.remove({}); + use admin; + db.settings.remove({}); ``` * Make Due Date layout nicer on minicard; * Added tooltip for board menu and sidebar buttons; |