Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <github@jus.li>2017-12-17 21:36:27 +0300
committerGitHub <noreply@github.com>2017-12-17 21:36:27 +0300
commit19dda17e7131616b94830129038f4ed89323bc0f (patch)
tree520bd284b9fc2afa11af9168e6f58b4140871903
parentcd6f661dc97ad1ac21129c6705ffaae3ee920c5b (diff)
parentcd81192caebaf29ff3345d546d1dbbd78ed3be3f (diff)
Merge pull request #361 from nextcloud/prepare-0.3.0-beta1v0.3.0-beta1
Prepare 0.3.0 beta1
-rw-r--r--CHANGELOG.md57
-rw-r--r--appinfo/info.xml4
-rw-r--r--krankerl.toml29
3 files changed, 86 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ae806098..6621d636 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,64 @@
# Changelog
All notable changes to this project will be documented in this file.
+## 0.3.0 - unreleased
+
+### Added
+- Allow to assign users to cards
+- Emit notifications for overdue cards
+- Emit notifications if boards gets shared to a user
+- Add support for Nextcloud 13
+- Simplify layout for cleaner user experience
+- Add contacts menu to avatars
+- Automatically save card description on inactivity
+
+
+### Fixed
+- Fix card dragging behaviour
+- Fix scrolling and dragging on mobile
+- Various fixes when data is not syncronized between different views
+- Improved performance
+- Update document title when renaming a board
+- Automatically chose the least used color
+- Improve accessibility
+- Fix issue when assigning labels after creating them
+- Allow to save tag changes with enter
+
+
+## 0.2.8 - 2017-11-26
+
+### Fixed
+- Drop support for NC 13, since that will only be supported by the next version of Deck
+
+## 0.2.7 - 2017-11-10
+
+### Fixed
+- Fix bug that caused update to fail
+
+## 0.2.6 - 2017-11-10
+
+### Fixed
+- Fix duedates not being updated with MySQL databases
+
+## 0.2.5 - 2017-11-08
+
+### Fixed
+- Fix duedates not being saved with MySQL databases
+
+## 0.2.4 - 2017-10-08
+
+### Fixed
+- Fix card action menu not being accessible
+
+## 0.2.3 - 2017-09-23
+
+### Fixed
+- Fix delete stack button being not available
+- Fix acl issues with PostgreSQL
+
## 0.2.2 - 2017-09-07
-## Fixed
+### Fixed
- Various frontend fixes
- Fix sidebar drag issues
- Improvements for IE11
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 91dc7083..ebddcb8a 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -13,10 +13,8 @@
- 👥 Share with your team, friends or family
- 🚀 Get your project organized
-💥 This is still alpha software: it may not be stable enough for production!
-
</description>
- <version>0.3.0-dev2</version>
+ <version>0.3.0-beta1</version>
<licence>agpl</licence>
<author>Julius Härtl</author>
<namespace>Deck</namespace>
diff --git a/krankerl.toml b/krankerl.toml
new file mode 100644
index 00000000..3e441993
--- /dev/null
+++ b/krankerl.toml
@@ -0,0 +1,29 @@
+[package]
+exclude = [
+ "build/",
+ ".git",
+ "js/node_modules",
+ "js/tests",
+ "js/bower.json",
+ "js/Gruntfile.js",
+ "js/package.json",
+ "js/package-lock.json",
+ "tests",
+ ".codecov.yml",
+ "composer.json",
+ "composer.lock",
+ "_config.yml",
+ ".drone.yml",
+ ".eslintignore",
+ ".eslintrc.yml",
+ ".gitignore",
+ "issue_template.md",
+ "krankerl.toml",
+ "Makefile",
+ "run-eslint.sh"
+]
+
+before_cmds = [
+ 'make clean-build',
+ 'make build'
+]