diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cd6585..ac2b499 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -54,3 +54,9 @@ Important Android stuff: - [Android project]: compileSdkVersion have changed from 30 to 32 - [Android project]: Upgraded gradle, some ionic versions etc... - Filebrowser minor improvemnts + +## 1.0.10 + +**Note about MPV versions: On older MPV versions the current chapter detection not working properly, if you experience issues with current chapter detection, please update your MPV version!** + +- [Feature request]: Current playing chapter in bold and has other color. diff --git a/android/.idea/deploymentTargetDropDown.xml b/android/.idea/deploymentTargetDropDown.xml index 9f4333e..ef29448 100644 --- a/android/.idea/deploymentTargetDropDown.xml +++ b/android/.idea/deploymentTargetDropDown.xml @@ -7,11 +7,11 @@ - + - + \ No newline at end of file diff --git a/android/app/build.gradle b/android/app/build.gradle index f7ea2f7..fd5c1e2 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -6,8 +6,8 @@ android { applicationId "com.husudosu.mpvremote" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 10 - versionName "1.0.9" + versionCode 11 + versionName "1.0.10" 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/android/app/release/output-metadata.json b/android/app/release/output-metadata.json index 37529c5..f2934d3 100644 --- a/android/app/release/output-metadata.json +++ b/android/app/release/output-metadata.json @@ -11,8 +11,8 @@ "type": "SINGLE", "filters": [], "attributes": [], - "versionCode": 10, - "versionName": "1.0.9", + "versionCode": 11, + "versionName": "1.0.10", "outputFile": "app-release.apk" } ], diff --git a/package.json b/package.json index 28e8020..807ba65 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mpv-remote", - "version": "1.0.9", + "version": "1.0.10", "private": true, "description": "MPV remote", "scripts": { diff --git a/src/verinfo.js b/src/verinfo.js index 673e5e9..01b32c2 100644 --- a/src/verinfo.js +++ b/src/verinfo.js @@ -1,3 +1,3 @@ export default { - version: "1.0.9", + version: "1.0.10", };