diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bfbe28..e325d97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,16 @@ # Version history +## Version 0.0.5 (2023-08-23) + +- Fixed bad cache encoding (not supporting UTF-8 data) +- At first start the app won't ask the user to select recordings directory + ## Version 0.0.4 (2023-08-23) -- fixed native Android plugin to deeply speed up recordings directory read (now more than 100x faster) -- new recordings database cache, to avoid parsing the same files over and over, gives blazing fast access to recordings list (tested with 1000+ recordings & json files) -- added loading animation to recordings list -- recordings list is now disabled while refreshing database +- Fixed native Android plugin to deeply speed up recordings directory read (now more than 100x faster) +- New recordings database cache, to avoid parsing the same files over and over, gives blazing fast access to recordings list (tested with 1000+ recordings & json files) +- Added loading animation to recordings list +- Recordings list is now disabled while refreshing database ## Version 0.0.3 (2023-08-18) diff --git a/android/app/build.gradle b/android/app/build.gradle index 549dc54..80723f0 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -27,8 +27,8 @@ android { applicationId "com.github.nicorac.bcrgui" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 1 - versionName "0.0.4" + versionCode 5 + versionName "0.0.5" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/package.json b/package.json index 7b6df1c..30cba7e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bcrgui", - "version": "0.0.4", + "version": "0.0.5", "author": "Claudio Nicora", "homepage": "https://github.com/nicorac/bcr-gui", "scripts": { diff --git a/src/app/version.ts b/src/app/version.ts index 5630ce2..9538fe9 100644 --- a/src/app/version.ts +++ b/src/app/version.ts @@ -1,8 +1,8 @@ export default { // NOTE: remember to change version number in Android apk too: - // android\app\build.gradle --> versionName + // android\app\build.gradle --> versionName + versionCode "appName": "BCR-GUI", - "version": "0.0.4", + "version": "0.0.5", "copyright": "Claudio Nicora (nicorac) 2023", "website": "https://coolsoft.altervista.org", "sources": "https://github.com/nicorac/bcr-gui"