From 9b6361b2a579fea4d128f58602f61efff8595aa2 Mon Sep 17 00:00:00 2001 From: Batmend Ganbaatar Date: Sat, 28 Sep 2024 23:41:19 +0800 Subject: [PATCH 1/2] add missing en_US translation --- assets/l10n/en_US.json | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/l10n/en_US.json b/assets/l10n/en_US.json index 58cb0b30..44837e4c 100644 --- a/assets/l10n/en_US.json +++ b/assets/l10n/en_US.json @@ -315,6 +315,7 @@ "error.route.400": "Failed to load the page", "error.input.mustBeNotEmpty": "Please fill out this field", "error.input.duplicate.accountName": "Name \"{}\" already in use. Try a different name.", + "error.input.noFilePicked": "No file was selected", "error.input.noImagePicked": "No image was selected", "error.input.cropFailed": "An error occured during cropping the picture", "error.input.wrongFileType": "Please choose a {type} file", From 8430943a5db6a64d4a98f60da75dc2804b158d3e Mon Sep 17 00:00:00 2001 From: Batmend Ganbaatar Date: Sat, 28 Sep 2024 23:46:55 +0800 Subject: [PATCH 2/2] add markdownlint --- .markdownlint.json | 5 +++++ CHANGELOG.md | 51 +++++++++++++++++++++++++--------------------- 2 files changed, 33 insertions(+), 23 deletions(-) create mode 100644 .markdownlint.json diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 00000000..33486088 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,5 @@ +{ + "MD013": { + "line_length": 120 + } +} diff --git a/CHANGELOG.md b/CHANGELOG.md index cce70706..8ba52593 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +# Changelog + ## Beta 0.6.0 * Added exchange rates, currently only works in Stats tab @@ -22,11 +24,13 @@ * Now icons (Material Symbols and Simple Icons) are searchable (only in English) * Improved backup history empty UI * Fixed number format was messed up when dividing with input sheet calculator -* When making changes, pages will now confirm to close without saving. (converted form pages -> modals) +* When making changes, pages will now confirm to close without saving. +(converted form pages -> modals) ## Beta 0.5.3 -* Fixed entering decimal amount with leading '0' decimal was impossible. (e.g., `1.02` was impossible to input) +* Fixed entering decimal amount with leading '0' decimal was impossible. +(e.g., `1.02` was impossible to input) * Calculator percent button now adds/subtracts percent of initial value when adding/subtracting * [iOS only] Now uses iOS system language settings for app language @@ -42,8 +46,8 @@ fork's additional features have are in the new release ## Beta 0.5.1 -* [FEAT] Customize order of new transaction buttons by @sadespresso in https://github.com/flow-mn/flow/pull/148 -* Reform account edit page by @sadespresso in https://github.com/flow-mn/flow/pull/149 +* [FEAT] Customize order of new transaction buttons by @sadespresso in +* Reform account edit page by @sadespresso in ## Beta 0.5.0 @@ -54,16 +58,16 @@ fork's additional features have are in the new release ## Beta 0.4.3 -* Fix Category page re renders upon change in db by @sadespresso in https://github.com/flow-mn/flow/pull/140 -* Fix `CustomRange.end` goes 'til the end of the day by @sadespresso in https://github.com/flow-mn/flow/pull/141 -* Fix Time range selector bottom sheet overflows by @sadespresso in https://github.com/flow-mn/flow/pull/142 +* Fix Category page re renders upon change in db by @sadespresso in +* Fix `CustomRange.end` goes 'til the end of the day by @sadespresso in +* Fix Time range selector bottom sheet overflows by @sadespresso in ## Beta 0.4.2 -* Category page reform by @sadespresso in https://github.com/flow-mn/flow/pull/135 -* feat: memoize account names by @sadespresso in https://github.com/flow-mn/flow/pull/129 -* Upcoming transaction hitbox by @sadespresso in https://github.com/flow-mn/flow/pull/132 -* Title suggestion improvement by @sadespresso in https://github.com/flow-mn/flow/pull/134 +* Category page reform by @sadespresso in +* feat: memoize account names by @sadespresso in +* Upcoming transaction hitbox by @sadespresso in +* Title suggestion improvement by @sadespresso in * Minor UI and l10n improvements ## Beta 0.4.1 @@ -82,28 +86,29 @@ fork's additional features have are in the new release ## Beta 0.3.4 -- Added year/month selector, closes [#85](https://github.com/flow-mn/flow/issues/85) -- No longer uses `AutomiaticKeepAlive` for stats tab, but will change this later. Fixes [#94](https://github.com/flow-mn/flow/issues/94) -- Limited stats tab's pie chart to 300px +* Added year/month selector, closes [#85](https://github.com/flow-mn/flow/issues/85) +* No longer uses `AutomiaticKeepAlive` for stats tab, but will change this later. +Fixes [#94](https://github.com/flow-mn/flow/issues/94) +* Limited stats tab's pie chart to 300px ## Beta 0.3.3 -- Fix transaction date doesn't get updated, closes [#100](https://github.com/flow-mn/flow/issues/100) -- Improve setup by [#103](https://github.com/flow-mn/flow/pull/103) +* Fix transaction date doesn't get updated, closes [#100](https://github.com/flow-mn/flow/issues/100) +* Improve setup by [#103](https://github.com/flow-mn/flow/pull/103) ## Beta 0.3.2 -- Fixed transaction page title suggestion was behaving differently from prior +* Fixed transaction page title suggestion was behaving differently from prior releases. Improved UX ## Beta 0.3.1 -- Transaction page now suggests title based on relevancy (category, account, etc) -- Removed minus (`-`) sign in expense transaction input sheet, closes [#88](https://github.com/flow-mn/flow/issues/88) -- Setup page bottom buttons are now rendered in `SafeArea` () -- Fixed stats tab custom range selection not updating the state (21940fd775c9c0d05e8c70da7d682b24bfa0199c) -- Added Mongolian localization for the iOS project, closes [#72](https://github.com/flow-mn/flow/issues/72) +* Transaction page now suggests title based on relevancy (category, account, etc) +* Removed minus (`-`) sign in expense transaction input sheet, closes [#88](https://github.com/flow-mn/flow/issues/88) +* Setup page bottom buttons are now rendered in `SafeArea` () +* Fixed stats tab custom range selection not updating the state (21940fd775c9c0d05e8c70da7d682b24bfa0199c) +* Added Mongolian localization for the iOS project, closes [#72](https://github.com/flow-mn/flow/issues/72) ## Beta 0.3.0 -- Initial beta release \ No newline at end of file +* Initial beta release