diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 82785db18..412154b04 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,7 +35,6 @@ jobs: build_test_admin: name: Docker Build Test - Admin Interface runs-on: ubuntu-latest - #needs: [nothing] steps: ########################################################################## # CHECKOUT CODE ########################################################## @@ -437,7 +436,7 @@ jobs: report_name: Coverage Frontend type: lcov result_path: ./coverage/lcov.info - min_coverage: 92 + min_coverage: 93 token: ${{ github.token }} ############################################################################## diff --git a/CHANGELOG.md b/CHANGELOG.md index 165ed53e5..358e4670a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,24 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [1.17.1](https://github.com/gradido/gradido/compare/1.17.0...1.17.1) + +- refactor(frontend): change contribution memo add word-break [`#2583`](https://github.com/gradido/gradido/pull/2583) +- refactor(admin): add text-break on all table memo fields [`#2584`](https://github.com/gradido/gradido/pull/2584) +- fix(frontend): throw proper frontend warning errors [`#2586`](https://github.com/gradido/gradido/pull/2586) +- refactor(frontend): equalize en with fr languages. [`#2585`](https://github.com/gradido/gradido/pull/2585) +- refactor(frontend): forgot password unit tests [`#2582`](https://github.com/gradido/gradido/pull/2582) +- fix(frontend): fix min value for hours input [`#2581`](https://github.com/gradido/gradido/pull/2581) +- fix(frontend): change dropdown placement calender no-flip true [`#2580`](https://github.com/gradido/gradido/pull/2580) +- refactor(frontend): link send result style [`#2577`](https://github.com/gradido/gradido/pull/2577) +- refactor(frontend): remove vertical scrolling & small fixes [`#2578`](https://github.com/gradido/gradido/pull/2578) +- refactor(frontend): tyle mobile device auth template [`#2576`](https://github.com/gradido/gradido/pull/2576) + #### [1.17.0](https://github.com/gradido/gradido/compare/1.16.0...1.17.0) +> 18 January 2023 + +- chore(release): v1.17.0 [`#2575`](https://github.com/gradido/gradido/pull/2575) - fix(frontend): submit contribution text [`#2573`](https://github.com/gradido/gradido/pull/2573) - fix(backend): admin cannot delete confirmed contribution [`#2571`](https://github.com/gradido/gradido/pull/2571) - fix(frontend): english locales - horas -> hours [`#2572`](https://github.com/gradido/gradido/pull/2572) diff --git a/admin/package.json b/admin/package.json index aabe002b4..8270c4da6 100644 --- a/admin/package.json +++ b/admin/package.json @@ -3,7 +3,7 @@ "description": "Administraion Interface for Gradido", "main": "index.js", "author": "Moriz Wahl", - "version": "1.17.0", + "version": "1.17.1", "license": "Apache-2.0", "private": false, "scripts": { diff --git a/admin/src/components/CreationTransactionList.vue b/admin/src/components/CreationTransactionList.vue index 2ce143c7f..950afcebc 100644 --- a/admin/src/components/CreationTransactionList.vue +++ b/admin/src/components/CreationTransactionList.vue @@ -88,7 +88,7 @@ export default { return `${value} GDD` }, }, - { key: 'memo', label: this.$t('transactionlist.memo') }, + { key: 'memo', label: this.$t('transactionlist.memo'), class: 'text-break' }, ], } }, diff --git a/admin/src/components/Tables/OpenCreationsTable.spec.js b/admin/src/components/Tables/OpenCreationsTable.spec.js index 2eb149e4f..9e43fd66c 100644 --- a/admin/src/components/Tables/OpenCreationsTable.spec.js +++ b/admin/src/components/Tables/OpenCreationsTable.spec.js @@ -57,7 +57,7 @@ const propsData = { return value + ' GDD' }, }, - { key: 'memo', label: 'text' }, + { key: 'memo', label: 'text', class: 'text-break' }, { key: 'date', label: 'date', diff --git a/admin/src/components/TransactionLinkList.vue b/admin/src/components/TransactionLinkList.vue index d850083cc..564865440 100644 --- a/admin/src/components/TransactionLinkList.vue +++ b/admin/src/components/TransactionLinkList.vue @@ -67,7 +67,7 @@ export default { return `${value} GDD` }, }, - { key: 'memo', label: this.$t('transactionlist.memo') }, + { key: 'memo', label: this.$t('transactionlist.memo'), class: 'text-break' }, { key: 'validUntil', label: this.$t('transactionlink.valid_until'), diff --git a/admin/src/pages/CreationConfirm.vue b/admin/src/pages/CreationConfirm.vue index 311c898a5..23871635d 100644 --- a/admin/src/pages/CreationConfirm.vue +++ b/admin/src/pages/CreationConfirm.vue @@ -99,7 +99,7 @@ export default { return value + ' GDD' }, }, - { key: 'memo', label: this.$t('text') }, + { key: 'memo', label: this.$t('text'), class: 'text-break' }, { key: 'date', label: this.$t('date'), diff --git a/backend/package.json b/backend/package.json index cd0a8f6bc..bfcd61d5b 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "gradido-backend", - "version": "1.17.0", + "version": "1.17.1", "description": "Gradido unified backend providing an API-Service for Gradido Transactions", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/backend", diff --git a/database/package.json b/database/package.json index 6fc745500..f4e1c7e84 100644 --- a/database/package.json +++ b/database/package.json @@ -1,6 +1,6 @@ { "name": "gradido-database", - "version": "1.17.0", + "version": "1.17.1", "description": "Gradido Database Tool to execute database migrations", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/database", diff --git a/frontend/package.json b/frontend/package.json index 55e28b45c..02a6aa2f0 100755 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "bootstrap-vue-gradido-wallet", - "version": "1.17.0", + "version": "1.17.1", "private": true, "scripts": { "start": "node run/server.js", diff --git a/frontend/src/assets/News/news.json b/frontend/src/assets/News/news.json index 284fc711c..9246be2e3 100644 --- a/frontend/src/assets/News/news.json +++ b/frontend/src/assets/News/news.json @@ -18,7 +18,7 @@ "date": "01 janvier 2023", "text": "Compte Gradido 2023 : nouveau design et communautés décentralisées", "url": "https://gradido.net/fr/gradido-konto-2023-neues-design-und-dezentrale-communities/", - "extra": "Ce sont souvent les personnes les plus discrètes qui créent silencieusement, avec application et passion, les bases de grands développements. Notre site Développeur ont effectué ces derniers mois un travail préparatoire formidable qui sera mis à profit en 2023." + "extra": "Ce sont souvent les personnes les plus discrètes qui créent silencieusement, avec application et passion, les bases de grands développements. Nos développeurs ont effectués ces derniers mois un travail préparatoire formidable qui sera mis à profit en 2023." }, { "locale": "es", diff --git a/frontend/src/components/ClipboardCopy.vue b/frontend/src/components/ClipboardCopy.vue index 7c4e014ec..4374f7182 100644 --- a/frontend/src/components/ClipboardCopy.vue +++ b/frontend/src/components/ClipboardCopy.vue @@ -1,17 +1,31 @@