Skip to content

Commit 6def8b8

Browse files
author
Ferenc Nánási
committed
1.0.6 ready
1 parent 79575c5 commit 6def8b8

10 files changed

+25
-334
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ npm-debug.log*
2929
/platforms
3030
/plugins
3131
/www
32-
resources/android
32+
resources/android
33+
package-lock.json

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,17 @@ Very important to update mpv-remote-node to 1.0.5!
1515
- Support for multiple servers,
1616
- Multiple server handling
1717
- Filebrowser speed improvements with larger directories/collections
18+
19+
## 1.0.6 (Pre-release on dev branch)
20+
21+
Minimum [mpv-remote-node](https://github.com/husudosu/mpv-remote-node) version: 1.0.5
22+
Before installing this version of MPV-remote app, please uninstall the previous one! Some Android related stuff changed!
23+
24+
- File browser speed improvements with large collections,
25+
- Improved server selector,
26+
- Better validation on create server screen
27+
28+
Important Android stuff:
29+
30+
- Changed app id from "io.ionic.starter" to "com.husudosu.mpvremote"
31+
- From now on VersionCode will be increased after every release.

TODO.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,4 @@ ionic capacitor run android -l --host=host
2020

2121
## TODO
2222

23-
- By some reasons routing not working properly, when not using modals on Settings -> Servers and Media collections,
24-
- Filebrowser need more optimization
23+
- By some reasons routing not working properly, when not using modals on Settings -> Servers and Media collections

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 5
10-
versionName "1.0.5"
9+
versionCode 6
10+
versionName "1.0.6"
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": 5,
14-
"versionName": "1.0.5",
13+
"versionCode": 6,
14+
"versionName": "1.0.6",
1515
"outputFile": "app-release.apk"
1616
}
1717
]

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

-317
This file was deleted.

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

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

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.5",
3+
"version": "1.0.6",
44
"private": true,
55
"description": "MPV remote",
66
"scripts": {

src/components/fileBrowserModal.vue

+1-4
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@
119119
Lost connection to server.
120120
</ion-content>
121121
<ion-content v-else-if="!loading">
122-
<ion-label>Kurva</ion-label>
123122
<ion-list-header>Collections</ion-list-header>
124123
<ion-list>
125124
<ion-item
@@ -187,7 +186,6 @@ import {
187186
alertController,
188187
IonInfiniteScroll,
189188
IonInfiniteScrollContent,
190-
IonLabel,
191189
} from "@ionic/vue";
192190
import {
193191
folder,
@@ -218,7 +216,7 @@ export default {
218216
219217
// Browasble files by ion-infinite scroll
220218
const browsableFiles = ref([]);
221-
const INFINITE_SCROLL_STEP = 500;
219+
const INFINITE_SCROLL_STEP = 100;
222220
const infiniteScrollEnabled = ref(false);
223221
224222
const filesBak = ref([]);
@@ -646,7 +644,6 @@ export default {
646644
IonListHeader,
647645
IonInfiniteScroll,
648646
IonInfiniteScrollContent,
649-
IonLabel,
650647
},
651648
};
652649
</script>

src/verinfo.js

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

0 commit comments

Comments
 (0)