diff --git a/CHANGELOG.md b/CHANGELOG.md index 2eaba58ba..b576e7262 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,20 @@ -# Upcoming Wekan release +# v4.85 2021-01-23 Wekan release This release adds the following new features: - [Option to add custom field to all cards](https://github.com/wekan/wekan/pulls/3466). Thanks to jrsupplee. +- [Added checkbox as an option to custom field create dialog](https://github.com/wekan/wekan/pull/3472). + Thanks to jrsupplee. + +and adds the following improvements: + +- [Display My Cards lists using inline-grid](https://github.com/wekan/wekan/pull/3474). + Thanks to jrsupplee. +- [Added board title link and background color to My Cards](https://github.com/wekan/wekan/pull/3471). + Thanks to helioguardabaxo. +- [Use simple border at My Cards](https://github.com/wekan/wekan/pull/3475). + Thanks to helioguardabaxo. and adds the following updates: @@ -20,6 +31,10 @@ and fixes the following bugs: Thanks to jrsupplee and xet7. - [Fix for search operators with uppercase letters](https://github.com/wekan/wekan/pull/3470). Thanks to jrsupplee. +- [Boards.copyTitle - escape string used in regex](https://github.com/wekan/wekan/pull/3473). + Thanks to jrsupplee. +- [Bug fix: import regex escape function](https://github.com/wekan/wekan/pull/3476). + Thanks to jrsupplee. Thanks to above GitHub users for their contributions and translators for their translations. diff --git a/Stackerfile.yml b/Stackerfile.yml index f7299e6b6..70ba308e4 100644 --- a/Stackerfile.yml +++ b/Stackerfile.yml @@ -1,5 +1,5 @@ appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928 -appVersion: "v4.84.0" +appVersion: "v4.85.0" files: userUploads: - README.md diff --git a/client/components/main/myCards.styl b/client/components/main/myCards.styl index e4509a7d8..afd108362 100644 --- a/client/components/main/myCards.styl +++ b/client/components/main/myCards.styl @@ -1,14 +1,14 @@ .my-cards-board-wrapper - border-radius: 8px + border-radius: 0 0 4px 4px; //padding: 0.5rem min-width: 400px - border-width: 8px - border-color: grey - border-style: solid margin-bottom: 2rem margin-right: auto margin-left: auto - + border-width: 2px + border-style: solid + border-color: #a2a2a2 + .my-cards-board-title font-size: 1.4rem font-weight: bold diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json index eba6d8d7b..4e60448e9 100644 --- a/i18n/de.i18n.json +++ b/i18n/de.i18n.json @@ -601,8 +601,8 @@ "minutes": "Minuten", "seconds": "Sekunden", "show-field-on-card": "Zeige dieses Feld auf der Karte", - "automatically-field-on-card": "Add field to new cards", - "always-field-on-card": "Add field to all cards", + "automatically-field-on-card": "Füge Feld neuen Karten hinzu", + "always-field-on-card": "Füge Feld allen Karten hinzu", "showLabel-field-on-card": "Feldbezeichnung auf Minikarte anzeigen", "yes": "Ja", "no": "Nein", diff --git a/i18n/nl.i18n.json b/i18n/nl.i18n.json index 47258f0c6..9cdedf28a 100644 --- a/i18n/nl.i18n.json +++ b/i18n/nl.i18n.json @@ -601,8 +601,8 @@ "minutes": "minuten", "seconds": "seconden", "show-field-on-card": "Toon dit veld op kaart", - "automatically-field-on-card": "Add field to new cards", - "always-field-on-card": "Add field to all cards", + "automatically-field-on-card": "Voeg veld toe aan nieuwe kaarten", + "always-field-on-card": "Voeg veld toe aan alle kaarten", "showLabel-field-on-card": "Toon veldnaam op minikaart", "yes": "Ja", "no": "Nee", diff --git a/i18n/pt-BR.i18n.json b/i18n/pt-BR.i18n.json index b4983a19b..0b3c715c6 100644 --- a/i18n/pt-BR.i18n.json +++ b/i18n/pt-BR.i18n.json @@ -601,8 +601,8 @@ "minutes": "minutos", "seconds": "segundos", "show-field-on-card": "Mostrar este campo no cartão", - "automatically-field-on-card": "Add field to new cards", - "always-field-on-card": "Add field to all cards", + "automatically-field-on-card": "Adicionar campo aos novos cartões", + "always-field-on-card": "Adicionar campo a todos os cartões", "showLabel-field-on-card": "Mostrar etiqueta do campo no minicartão", "yes": "Sim", "no": "Não", @@ -860,7 +860,7 @@ "context-separator": "/", "myCardsSortChange-title": "Ordenar Meus Cartões", "myCardsSortChangePopup-title": "Ordenar Meus Cartões", - "myCardsSortChange-choice-board": "por Quadro", + "myCardsSortChange-choice-board": "Por Quadro", "myCardsSortChange-choice-dueat": "Por Prazo Final", "dueCards-title": "Cartões com prazo final", "dueCardsViewChange-title": "Visão de Cartões com prazo final", diff --git a/i18n/ru.i18n.json b/i18n/ru.i18n.json index 1eb54d414..d805a65d7 100644 --- a/i18n/ru.i18n.json +++ b/i18n/ru.i18n.json @@ -601,8 +601,8 @@ "minutes": "минуты", "seconds": "секунды", "show-field-on-card": "Показать это поле на карточке", - "automatically-field-on-card": "Add field to new cards", - "always-field-on-card": "Add field to all cards", + "automatically-field-on-card": "Добавить поле на новую карточку", + "always-field-on-card": "Добавить поле на все карточки", "showLabel-field-on-card": "Показать имя поля на карточке", "yes": "Да", "no": "Нет", diff --git a/package-lock.json b/package-lock.json index 627d3f900..5d6a605d9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v4.84.0", + "version": "v4.85.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 3d288bab9..d4737b4dc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v4.84.0", + "version": "v4.85.0", "description": "Open-Source kanban", "private": true, "scripts": { diff --git a/public/api/wekan.html b/public/api/wekan.html index 33a191e17..993fc5a1c 100644 --- a/public/api/wekan.html +++ b/public/api/wekan.html @@ -1524,7 +1524,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc