Skip to content

Commit 7456411

Browse files
authored
Merge pull request #4 from husudosu/dev
Dev
2 parents fd942d5 + bc70160 commit 7456411

28 files changed

+20272
-26800
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,12 @@ Update [mpv-remote-node](https://github.com/husudosu/mpv-remote-node) to 1.0.3!
66
- Metadata appears on info panel
77
- Some tweaking
88
- Unused dependecies removed from project
9+
10+
## 1.0.5
11+
12+
Very important to update mpv-remote-node to 1.0.5!
13+
14+
- Upgraded to Ionic v6,
15+
- Support for multiple servers,
16+
- Multiple server handling
17+
- Filebrowser speed improvements with larger directories/collections

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ Kodi not renders properly some ASS/SSA subtitles some anime have overanimated su
1717
- Playlist handling,
1818
- Media file info,
1919
- Media collection handling,
20-
- Media status time stored on host machine. You can continue playback where you left off
20+
- Media status time can be stored on host machine. You can continue playback where you left off,
21+
- Open videos from Youtube app by using share function,
22+
- Open online streams from other apps for example [Aniyomi anime streamer](https://github.com/jmir1/aniyomi)
2123

2224
## How to use it
2325

TODO.md

+11
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,19 @@ Build production:
66
ionic capacitor build android --prod --release --verbose
77
```
88

9+
Optimized build:
10+
11+
```bash
12+
ionic capacitor build android --prod --aot --minifyjs --minifycss --optimizejs
13+
```
14+
915
Run debugging on android:
1016

1117
```bash
1218
ionic capacitor run android -l --host=host
1319
```
20+
21+
## TODO
22+
23+
- By some reasons routing not working properly, when not using modals on Settings -> Servers and Media collections,
24+
- Filebrowser need more optimization

android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android {
77
minSdkVersion rootProject.ext.minSdkVersion
88
targetSdkVersion rootProject.ext.targetSdkVersion
99
versionCode 1
10-
versionName "1.0.4"
10+
versionName "1.0.5"
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/capacitor.build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ dependencies {
1414
implementation project(':capacitor-keyboard')
1515
implementation project(':capacitor-status-bar')
1616
implementation project(':capacitor-storage')
17+
implementation project(':capacitor-community-sqlite')
1718
implementation "androidx.core:core:1.1.0"
1819
}
1920

android/app/release/output-metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"type": "SINGLE",
1212
"filters": [],
1313
"versionCode": 1,
14-
"versionName": "1.0.4",
14+
"versionName": "1.0.5",
1515
"outputFile": "app-release.apk"
1616
}
1717
]

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

+4
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,9 @@
1818
{
1919
"pkg": "@capacitor/storage",
2020
"classpath": "com.capacitorjs.plugins.storage.StoragePlugin"
21+
},
22+
{
23+
"pkg": "@capacitor-community/sqlite",
24+
"classpath": "com.getcapacitor.community.database.sqlite.CapacitorSQLitePlugin"
2125
}
2226
]

android/capacitor.settings.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@ project(':capacitor-status-bar').projectDir = new File('../node_modules/@capacit
1616

1717
include ':capacitor-storage'
1818
project(':capacitor-storage').projectDir = new File('../node_modules/@capacitor/storage/android')
19+
20+
include ':capacitor-community-sqlite'
21+
project(':capacitor-community-sqlite').projectDir = new File('../node_modules/@capacitor-community/sqlite/android')

0 commit comments

Comments
 (0)