summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-03-08 10:44:20 +0200
committerLauri Ojansivu <x@xet7.org>2019-03-08 10:44:20 +0200
commit7836ab83d02adc40bc59bc4393191abec0a4f636 (patch)
tree529c70e983d0a1e3513ddb04aa31d2e421491789
parent856872815292590e0c4eff2848ea1b857a318dc4 (diff)
downloadwekan-7836ab83d02adc40bc59bc4393191abec0a4f636.tar.gz
wekan-7836ab83d02adc40bc59bc4393191abec0a4f636.tar.bz2
wekan-7836ab83d02adc40bc59bc4393191abec0a4f636.zip
- Order All Boards by Starred, Color and Title and Description.
Thanks to xet7 ! Closes #1990, Related #252
-rw-r--r--CHANGELOG.md12
-rw-r--r--client/components/boards/boardsList.js2
2 files changed, 9 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dfaaa872..cfc766af 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,15 +1,19 @@
# Upcoming Wekan release
-This release adds the following partial fix:
+This release [adds](https://github.com/wekan/wekan/commit/856872815292590e0c4eff2848ea1b857a318dc4) the following new features, thanks to xet7:
+
+- [Hide Subtask boards from All Boards](https://github.com/wekan/wekan/issues/1990).
+- Order All Boards by Starred, Color, Title and Description.
+
+and adds the following partial fix, thanks to andresmanelli:
- [Add migration to fix circular references](https://github.com/wekan/wekan/commit/a338e937e508568d1f6a15c5464126d30ef69a7d).
- Thanks to andresmanelli. This [runs only once](https://github.com/wekan/wekan/issues/2209#issuecomment-470445989),
+ This [runs only once](https://github.com/wekan/wekan/issues/2209#issuecomment-470445989),
so later there will be another fix to make it run every time.
-and reverts the following change of v2.42, because they did not fix anything:
+and reverts the following change of v2.42, because they did not fix anything, thanks to xet7:
- [Revert: Tried to fix snap mongodb-control not starting database](https://github.com/wekan/wekan/commit/4055f451fdadfbfdef9a10be29a0eb6aed91182c).
- Thanks to xet7.
Thanks to above GitHub users for their contributions, and translators for their translations.
diff --git a/client/components/boards/boardsList.js b/client/components/boards/boardsList.js
index 8dd05913..74a8e4d4 100644
--- a/client/components/boards/boardsList.js
+++ b/client/components/boards/boardsList.js
@@ -27,7 +27,7 @@ BlazeComponent.extendComponent({
type: 'board',
subtasksDefaultListId: null,
}, {
- sort: { stars: -1, color: 1, title: 1 },
+ sort: { stars: -1, color: 1, title: 1, description: 1 },
});
},