From 31e4d370c3e9a27701bb95fe2e749bc662e1d8e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Fri, 12 Jan 2018 10:28:04 +0100 Subject: [PATCH 1/3] Exclude more files from build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- krankerl.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/krankerl.toml b/krankerl.toml index 3e441993a..79e68caad 100644 --- a/krankerl.toml +++ b/krankerl.toml @@ -5,15 +5,19 @@ exclude = [ "js/node_modules", "js/tests", "js/bower.json", + "js/.bowerrc", + "js/.jshintrc", "js/Gruntfile.js", "js/package.json", "js/package-lock.json", + "js/vendor/jquery/", "tests", ".codecov.yml", "composer.json", "composer.lock", "_config.yml", ".drone.yml", + ".travis.yml", ".eslintignore", ".eslintrc.yml", ".gitignore", From 2a6db83804339398c668575453611944ba8e1cfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Fri, 12 Jan 2018 10:31:16 +0100 Subject: [PATCH 2/3] Bump version to 0.3.0 final and update CHANGELOG MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- CHANGELOG.md | 4 +++- appinfo/info.xml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6621d636e..edde0f029 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog All notable changes to this project will be documented in this file. -## 0.3.0 - unreleased +## 0.3.0 - 2018-01-12 ### Added - Allow to assign users to cards @@ -23,6 +23,8 @@ All notable changes to this project will be documented in this file. - Improve accessibility - Fix issue when assigning labels after creating them - Allow to save tag changes with enter +- Fix bug when removing labels changed the color of the remaining ones +- Fix issues with auto saving of card descriptions ## 0.2.8 - 2017-11-26 diff --git a/appinfo/info.xml b/appinfo/info.xml index ebddcb8ac..394d407e0 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -14,7 +14,7 @@ - 🚀 Get your project organized - 0.3.0-beta1 + 0.3.0 agpl Julius Härtl Deck From 6998a4a6436209abd9d896c6a9bea83a68fd8eb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Fri, 12 Jan 2018 14:17:01 +0100 Subject: [PATCH 3/3] Fix jquery exclude MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- krankerl.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/krankerl.toml b/krankerl.toml index 79e68caad..7db33c698 100644 --- a/krankerl.toml +++ b/krankerl.toml @@ -10,7 +10,7 @@ exclude = [ "js/Gruntfile.js", "js/package.json", "js/package-lock.json", - "js/vendor/jquery/", + "js/vendor/jquery", "tests", ".codecov.yml", "composer.json",