Skip to content

Commit add3f5c

Browse files
author
Ferenc Nánási
committed
Removed unused code, improved CSS contrast
1 parent a46dca0 commit add3f5c

25 files changed

+3339
-4213
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,10 @@ Important Android stuff:
2929

3030
- Changed app id from "io.ionic.starter" to "com.husudosu.mpvremote"
3131
- From now on VersionCode will be increased after every release.
32+
33+
## 1.0.7
34+
35+
- Some code tidy-up, optimizations,
36+
- The app gonna check if the mpv-remote-node version is compatible with the app,
37+
- [CSS] Improved contrast,
38+
- Youtube quality settings on Open URL modal

TODO.md

+2
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ ionic capacitor run android -l --host=host
2121
## TODO
2222

2323
- By some reasons routing not working properly, when not using modals on Settings -> Servers and Media collections
24+
- Better handling for playlist
25+
- Need someone who can design a proper icon for the app

android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
applicationId "com.husudosu.mpvremote"
77
minSdkVersion rootProject.ext.minSdkVersion
88
targetSdkVersion rootProject.ext.targetSdkVersion
9-
versionCode 6
10-
versionName "1.0.6"
9+
versionCode 7
10+
versionName "1.0.7"
1111
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1212
aaptOptions {
1313
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

android/app/release/output-metadata.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
{
1111
"type": "SINGLE",
1212
"filters": [],
13-
"versionCode": 6,
14-
"versionName": "1.0.6",
13+
"versionCode": 7,
14+
"versionName": "1.0.7",
1515
"outputFile": "app-release.apk"
1616
}
1717
]
18-
}
18+
}

android/app/src/main/AndroidManifest.xml.orig

+317
Large diffs are not rendered by default.

android/app/src/main/assets/capacitor.config.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
"appId": "com.husudosu.mpvremote",
33
"appName": "MPV Remote",
44
"webDir": "dist",
5-
"bundledWebRuntime": false
5+
"bundledWebRuntime": false,
6+
"server": {
7+
"url": "http://192.168.88.160:8100"
8+
}
69
}

0 commit comments

Comments
 (0)