From 09dc403b0e1fd1c6f274beacc509d34ecd7ee107 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Mon, 8 Oct 2018 22:41:59 +0200 Subject: [PATCH 1/6] Bump version to v0.5.0-beta1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- appinfo/info.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index a38ef87ca..2202e4694 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -14,7 +14,7 @@ - 🚀 Get your project organized - 0.5.0-dev4 + 0.5.0-beta1 agpl Julius Härtl Deck From b0eee23ef23f05ac0dc54e651b3b424d969bc769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 9 Oct 2018 16:49:14 +0200 Subject: [PATCH 2/6] Add changelog and set proper max-version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- CHANGELOG.md | 22 ++++++++++++++++++++++ appinfo/info.xml | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92dc70c47..8ebf4bbb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,28 @@ # Changelog All notable changes to this project will be documented in this file. +## 0.5.0 - unreleased + +### Added + +- Activity stream for board and cards +- Comments on cards +- Use users locale format on date picker +- Compact display mode +- Card title inline editing +- REST API +- Empty content view for board lists +- Undo for card and stack deletion +- Show tag name on board +- Notify users about card assignments +- Add shortcut to assign a card to yourself +- Improved view for printing + +### Fixed + +- Accesibility improvements +- Don't allow empty card titles + ## 0.4.0 - 2018-07-11 ### Added diff --git a/appinfo/info.xml b/appinfo/info.xml index 2202e4694..d788460c5 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -29,7 +29,7 @@ https://download.bitgrid.net/nextcloud/deck/screenshots/Deck_Board.png https://download.bitgrid.net/nextcloud/deck/screenshots/Deck_Details.png - + OCA\Deck\Cron\DeleteCron From 8b161927da78bb3bee203062b9bc7da4b8a3743b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 9 Oct 2018 17:52:27 +0200 Subject: [PATCH 3/6] Adapt tests for stable branch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- .drone.yml | 19 +++++++++---------- .travis.yml | 2 +- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.drone.yml b/.drone.yml index b179c56ae..7817b1755 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,7 +8,7 @@ pipeline: image: nextcloudci/php7.0:php7.0-17 environment: - APP_NAME=deck - - CORE_BRANCH=master + - CORE_BRANCH=stable14 - DB=sqlite commands: # Pre-setup steps @@ -62,7 +62,7 @@ pipeline: image: nextcloudci/php7.0:php7.0-17 environment: - APP_NAME=deck - - CORE_BRANCH=master + - CORE_BRANCH=stable14 - DB=sqlite commands: - wget https://raw.githubusercontent.com/nextcloud/server/master/build/signed-off-checker.php @@ -87,7 +87,7 @@ pipeline: image: nextcloudci/php7.0:php7.0-17 environment: - APP_NAME=deck - - CORE_BRANCH=master + - CORE_BRANCH=stable14 - DB=sqlite commands: - composer install @@ -99,7 +99,7 @@ pipeline: image: nextcloudci/php7.1:php7.1-15 environment: - APP_NAME=deck - - CORE_BRANCH=master + - CORE_BRANCH=stable14 - DB=sqlite commands: - composer install @@ -111,7 +111,7 @@ pipeline: image: nextcloudci/php7.2:php7.2-9 environment: - APP_NAME=deck - - CORE_BRANCH=master + - CORE_BRANCH=stable14 - DB=sqlite commands: - composer install @@ -144,7 +144,7 @@ pipeline: image: nextcloudci/php7.0:php7.0-17 environment: - APP_NAME=deck - - CORE_BRANCH=master + - CORE_BRANCH=stable14 - DB=sqlite commands: # Pre-setup steps @@ -164,7 +164,7 @@ pipeline: image: nextcloudci/php7.1:php7.1-15 environment: - APP_NAME=deck - - CORE_BRANCH=master + - CORE_BRANCH=stable14 - DB=sqlite commands: # Pre-setup steps @@ -183,7 +183,7 @@ pipeline: image: nextcloudci/php7.2:php7.2-9 environment: - APP_NAME=deck - - CORE_BRANCH=master + - CORE_BRANCH=stable14 - DB=sqlite commands: # Pre-setup steps @@ -202,7 +202,7 @@ pipeline: image: nextcloudci/integration-php7.0:integration-php7.0-6 environment: - APP_NAME=deck - - CORE_BRANCH=master + - CORE_BRANCH=stable14 - DB=sqlite commands: # Pre-setup steps @@ -233,7 +233,6 @@ pipeline: TESTS: jsbuild matrix: include: - - TESTS: check-app-compatbility - TESTS: check-app-compatbility-13 - TESTS: check-app-compatbility-14 - TESTS: signed-off-check diff --git a/.travis.yml b/.travis.yml index 47139649c..43e944c7c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ php: - 7.1 - 7.2 env: - - CORE_BRANCH=master DB=mysql + - CORE_BRANCH=stable14 DB=mysql before_install: - wget https://phar.phpunit.de/phpunit-5.7.phar From 8e3fa71a2d4433827b16ed7c5ba169c45c5d25ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 9 Oct 2018 19:18:44 +0200 Subject: [PATCH 4/6] Fix comment entity registration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- appinfo/app.php | 1 - lib/AppInfo/Application.php | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/appinfo/app.php b/appinfo/app.php index 73ee9a086..0901a2105 100644 --- a/appinfo/app.php +++ b/appinfo/app.php @@ -28,7 +28,6 @@ $app = new \OCA\Deck\AppInfo\Application(); $app->registerNavigationEntry(); $app->registerNotifications(); -$app->registerCommentsEntity(); /** Load activity style global so it is availabile in the activity app as well */ \OC_Util::addStyle('deck', 'activity'); diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php index 62fbb19a7..918653b8a 100644 --- a/lib/AppInfo/Application.php +++ b/lib/AppInfo/Application.php @@ -99,6 +99,8 @@ public function __construct(array $urlParams = array()) { } }); + $this->registerCommentsEntity(); + } public function registerNavigationEntry() { From 4bd7f4fd39795200970eee5c6a139734b317eec1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 9 Oct 2018 20:06:45 +0200 Subject: [PATCH 5/6] Fix adding comment when no activity entry is present MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- js/service/ActivityService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/service/ActivityService.js b/js/service/ActivityService.js index c8da9fd37..6a57c1613 100644 --- a/js/service/ActivityService.js +++ b/js/service/ActivityService.js @@ -154,7 +154,7 @@ class ActivityService { } if (typeof this.since[type][id] === 'undefined') { this.since[type][id] = { - latest: 0, + latest: -1, oldestCatchedUp: false, oldest: '0', finished: false, From 3255b8c4c65b38061bc42af035f4a9a5068a06e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 9 Oct 2018 20:51:28 +0200 Subject: [PATCH 6/6] Update description in appinfo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- appinfo/info.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/appinfo/info.xml b/appinfo/info.xml index d788460c5..3a0ea7c7a 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -11,6 +11,9 @@ - 📄 Write down additional notes in markdown - 🔖 Assign labels for even better organization - 👥 Share with your team, friends or family +- 📎 Attach files and embed them in your markdown description +- 💬 Discuss with your team using comments +- ⚡ Keep track of changes in the activity stream - 🚀 Get your project organized