diff --git a/android/app/build.gradle b/android/app/build.gradle index 3f02ece..68a8324 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -134,8 +134,8 @@ android { applicationId "com.subtracks" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 3 - versionName '1.0.1' + versionCode 4 + versionName '1.1.0' } splits { abi { diff --git a/metadata/en-US/changelogs/4.txt b/metadata/en-US/changelogs/4.txt new file mode 100644 index 0000000..8ccccf4 --- /dev/null +++ b/metadata/en-US/changelogs/4.txt @@ -0,0 +1,11 @@ +## New + +- Added ALAC file playback support +- Added plain-text password option for older servers +- Target API version 1.14.0 (instead of 1.15.0) to support more servers (Ampache, Airsonic Advanced) + +## Fixed + +- Removed non-working cast button until support is added +- Fixed Subtracks showing up multiple times in Navidrome clients menu (too many user-agents) +- Fixed network error for HTTPS servers using self-signed certificates that the user has trusted diff --git a/package.json b/package.json index cbd309a..fc43825 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "subtracks", - "version": "1.0.1", + "version": "1.1.0", "private": true, "license": "GPL-3.0-only", "scripts": { @@ -74,6 +74,13 @@ }, "jest": { "preset": "react-native", - "moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"] + "moduleFileExtensions": [ + "ts", + "tsx", + "js", + "jsx", + "json", + "node" + ] } }