From ea0942b7fe3327ef1b61614b9eff4011fc0e253c Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 1 May 2021 09:47:21 +0200 Subject: [PATCH] Update for 5.5.10 --- .../Correction/FixPostgresSequences.php | 1 + .../Transaction/IndexController.php | 2 +- changelog.md | 12 + config/firefly.php | 2 +- .../src/components/dashboard/MainAccount.vue | 11 - .../components/dashboard/MainCategoryList.vue | 2 +- .../components/dashboard/MainCreditList.vue | 4 +- .../components/dashboard/MainDebitList.vue | 2 +- .../src/components/dashboard/TopBoxes.vue | 9 +- frontend/src/components/transactions/Edit.vue | 194 +++++++--- .../src/components/transactions/SplitForm.vue | 8 +- .../components/transactions/SplitPills.vue | 21 +- frontend/src/locales/bg.json | 16 +- frontend/src/locales/cs.json | 16 +- frontend/src/locales/de.json | 16 +- frontend/src/locales/el.json | 16 +- frontend/src/locales/en-gb.json | 16 +- frontend/src/locales/en.json | 16 +- frontend/src/locales/es.json | 16 +- frontend/src/locales/fi.json | 16 +- frontend/src/locales/fr.json | 16 +- frontend/src/locales/hu.json | 16 +- frontend/src/locales/it.json | 16 +- frontend/src/locales/nb.json | 16 +- frontend/src/locales/nl.json | 16 +- frontend/src/locales/pl.json | 16 +- frontend/src/locales/pt-br.json | 16 +- frontend/src/locales/pt.json | 16 +- frontend/src/locales/ro.json | 16 +- frontend/src/locales/ru.json | 16 +- frontend/src/locales/sk.json | 16 +- frontend/src/locales/sv.json | 16 +- frontend/src/locales/vi.json | 18 +- frontend/src/locales/zh-cn.json | 16 +- frontend/src/locales/zh-tw.json | 16 +- frontend/yarn.lock | 363 ++++++++++-------- public/v1/js/app_vue.js | 2 +- public/v2/js/accounts/create.js | 2 +- public/v2/js/accounts/delete.js | 2 +- public/v2/js/accounts/index.js | 2 +- public/v2/js/accounts/show.js | 2 +- public/v2/js/dashboard.js | 2 +- public/v2/js/dashboard.js.map | 2 +- public/v2/js/transactions/create.js | 2 +- public/v2/js/transactions/create.js.map | 2 +- public/v2/js/transactions/edit.js | 2 +- public/v2/js/transactions/edit.js.map | 2 +- public/v2/js/transactions/index.js | 2 +- public/v2/js/vendor.js | 2 +- public/v2/js/vendor.js.LICENSE.txt | 4 +- public/v2/js/vendor.js.map | 2 +- resources/lang/bg_BG/firefly.php | 1 - resources/lang/cs_CZ/firefly.php | 1 - resources/lang/de_DE/firefly.php | 1 - resources/lang/el_GR/firefly.php | 1 - resources/lang/en_GB/firefly.php | 1 - resources/lang/en_US/firefly.php | 1 - resources/lang/es_ES/firefly.php | 1 - resources/lang/fi_FI/firefly.php | 1 - resources/lang/fr_FR/firefly.php | 1 - resources/lang/hu_HU/firefly.php | 1 - resources/lang/id_ID/config.php | 2 +- resources/lang/id_ID/firefly.php | 29 +- resources/lang/id_ID/validation.php | 4 +- resources/lang/it_IT/firefly.php | 1 - resources/lang/nb_NO/firefly.php | 1 - resources/lang/nl_NL/firefly.php | 1 - resources/lang/pl_PL/firefly.php | 1 - resources/lang/pt_BR/firefly.php | 1 - resources/lang/pt_PT/firefly.php | 1 - resources/lang/ro_RO/firefly.php | 1 - resources/lang/ru_RU/firefly.php | 1 - resources/lang/sk_SK/firefly.php | 1 - resources/lang/sv_SE/firefly.php | 1 - resources/lang/tr_TR/firefly.php | 1 - resources/lang/vi_VN/config.php | 2 +- resources/lang/vi_VN/firefly.php | 1 - resources/lang/zh_CN/firefly.php | 1 - resources/lang/zh_TW/firefly.php | 1 - yarn.lock | 329 +++++++++------- 80 files changed, 941 insertions(+), 482 deletions(-) diff --git a/app/Console/Commands/Correction/FixPostgresSequences.php b/app/Console/Commands/Correction/FixPostgresSequences.php index 694aa962cc..2ac42466c9 100644 --- a/app/Console/Commands/Correction/FixPostgresSequences.php +++ b/app/Console/Commands/Correction/FixPostgresSequences.php @@ -1,4 +1,5 @@ get('page'); diff --git a/changelog.md b/changelog.md index 87d8c1ab45..74c253ce23 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). + +## 5.5.10 - 2021-05-01 + +### Changed +- [Issue 4708](https://github.com/firefly-iii/firefly-iii/issues/4708) When searching for the external ID, Firefly III will now only return the exact match. + +### Fixed +- [Issue 4545](https://github.com/firefly-iii/firefly-iii/issues/4545) Rare but annoying issue with PostgreSQL increments will be repaired during image boot time. Thanks @jaylenw! +- [Issue 4710](https://github.com/firefly-iii/firefly-iii/issues/4710) Some rule actions could not handle liabilities. +- [Issue 4715](https://github.com/firefly-iii/firefly-iii/issues/4715) Fixed some titles. +- [Issue 4720](https://github.com/firefly-iii/firefly-iii/issues/4720) Could not remove a split in the new layout. + ## 5.5.9 (API 1.5.2) 2021-04-24 This update fixes some of the more annoying issues in the new experimental v2 layout (see also [GitHub](https://github.com/firefly-iii/firefly-iii/issues/4618)), but some minor other issues as well. diff --git a/config/firefly.php b/config/firefly.php index 82a3b3b649..7a9fc5f730 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -100,7 +100,7 @@ return [ 'handle_debts' => true, ], - 'version' => '5.5.9', + 'version' => '5.5.10', 'api_version' => '1.5.2', 'db_version' => 16, 'maxUploadSize' => 1073741824, // 1 GB diff --git a/frontend/src/components/dashboard/MainAccount.vue b/frontend/src/components/dashboard/MainAccount.vue index 786cc84332..72dc7aa9a8 100644 --- a/frontend/src/components/dashboard/MainAccount.vue +++ b/frontend/src/components/dashboard/MainAccount.vue @@ -33,9 +33,6 @@
-
- {{ $t('firefly.timezone_difference', {local: localTimeZone, system: systemTimeZone}) }} -