Release/v1.1.0 (#47)

* bump version for 1.1.0

* add changelog for 1.1.0
This commit is contained in:
austinried 2021-12-06 11:05:18 +09:00 committed by GitHub
parent 72fa2c765d
commit 6cb364531b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 4 deletions

View File

@ -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 {

View File

@ -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

View File

@ -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"
]
}
}