Skip to content

Commit 65ef4e9

Browse files
committed
Fixed icon for older Android versions, and updated README with some troubleshooting tips
1 parent fa25b75 commit 65ef4e9

File tree

14 files changed

+341
-8
lines changed

14 files changed

+341
-8
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,14 @@ Important Android stuff:
3939
- Set Youtube quality on "Open URL" dialog.
4040
- Scroll to top added to File browser
4141

42-
## 1.0.8 (Not released yet)
42+
## 1.0.8
4343

4444
- API connection handling works way better,
4545
- Added Android notification to control playback (It's an experimental feauture should be enabled manually, you can find the option on settings. It has lot of issues)
4646
- Minor optimizations,
4747
- Created a basic clipart icon with Android studio
4848
- Toast rendering improved
49+
50+
## 1.0.9
51+
52+
- Fixed icon for older Android versions

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ Configure IP & Port in your application and run mpv with --idle flag on your hos
2727

2828
The app not available on Google Play yet. I want improve my application before putting it to wider public.
2929

30+
## Troubleshooting
31+
32+
### When I start the app only a blank screen appears
33+
34+
You can fix this by deleting all data for app. **Reinstalling the app is not enough,** you have to delete all stored data related to the app.
35+
3036
## Experimental features
3137

3238
- Android notification by using `cordova-plugin-music-controls2` (disabled by default, it has issues) check out [TODO file](https://github.com/husudosu/mpv-remote-app/blob/master/TODO.md)

android/.idea/misc.xml

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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 8
10-
versionName "1.0.8"
9+
versionCode 9
10+
versionName "1.0.9"
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
{
1111
"type": "SINGLE",
1212
"filters": [],
13-
"versionCode": 8,
14-
"versionName": "1.0.8",
13+
"versionCode": 9,
14+
"versionName": "1.0.9",
1515
"outputFile": "app-release.apk"
1616
}
1717
]

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.249:8100"
8+
}
69
}
Loading
Loading
Loading
Loading
Loading

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mpv-remote",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"private": true,
55
"description": "MPV remote",
66
"scripts": {

src/verinfo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export default {
2-
version: "1.0.8",
2+
version: "1.0.9",
33
};

0 commit comments

Comments
 (0)