From b4019cd6f5817f509dd3b1252b14081925c69a17 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Sun, 6 Oct 2024 00:29:20 +0200 Subject: [PATCH] Bump version --- README.md | 2 ++ app/build.gradle.kts | 4 ++-- metadata/en-US/changelogs/50100.txt | 3 +++ 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 metadata/en-US/changelogs/50100.txt diff --git a/README.md b/README.md index 0ee3a23..21bc3ad 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,5 @@ NanoLedger is a [Plain Text Accounting](https://plaintextaccounting.org/) data e Get it on F-Droid Only ledger/hledger-like syntax is supported. View your transactions and quickly add new ones, with autocomplete on fields where it makes sense. + +NanoLedger also supports deleting and editing transactions. For editing, note that NanoLedger does not support the full (h)ledger syntax. Transactions added with NanoLedger should be editable, but if you use more esoteric amount syntax, NanoLedger might not parse those correctly (and will definitely lose costs/assertions). Dates are also required to be in ISO syntax (the same way NanoLedger writes them out). If your date is not in this format, the current date will be picked. diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 54e27a2..70e513d 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -15,8 +15,8 @@ android { applicationId = "be.chvp.nanoledger" minSdk = 21 targetSdk = 34 - versionCode = 40700 - versionName = "0.4.6" + versionCode = 50100 + versionName = "0.5.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" vectorDrawables { diff --git a/metadata/en-US/changelogs/50100.txt b/metadata/en-US/changelogs/50100.txt new file mode 100644 index 0000000..358fcbf --- /dev/null +++ b/metadata/en-US/changelogs/50100.txt @@ -0,0 +1,3 @@ +Allow editing transactions + +Note that NanoLedger does not support the full (h)ledger syntax. Transactions added with NanoLedger should be editable, but if you use more esoteric amount syntax, NanoLedger might not parse those correctly (and will definitely lose costs/assertions). Dates are also required to be in ISO syntax (the same way NanoLedger writes them out). If your date is not in this format, the current date will be picked.