Skip to content

Commit 0b5ad62

Browse files
committed
Filebrowser: Sorting working with new rendering method
1 parent 05dd98b commit 0b5ad62

File tree

6 files changed

+37
-345
lines changed

6 files changed

+37
-345
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Update [mpv-remote-node](https://github.com/husudosu/mpv-remote-node) to 1.0.3!
1212
Very important to update mpv-remote-node to 1.0.5!
1313

1414
- Upgraded to Ionic v6,
15-
- APP working properly from web browser, useful for web browser debugging,
1615
- Support for multiple servers,
17-
- Launching configuration "wizzard" until the app not configured,
16+
- Multiple server handling
17+
- Filebrowser speed improvements with larger directories/collections

TODO.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ 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

android/app/src/main/AndroidManifest.xml

+18
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,13 @@
1515
<action android:name="com.darryncampbell.cordova.plugin.intent.ACTION" />
1616
<category android:name="android.intent.category.DEFAULT" />
1717
</intent-filter>
18+
<!-- This filter captures protocols without type info -->
1819
<intent-filter>
1920
<action android:name="android.intent.action.VIEW" />
21+
2022
<category android:name="android.intent.category.DEFAULT" />
2123
<category android:name="android.intent.category.BROWSABLE" />
24+
2225
<data android:scheme="rtmp" />
2326
<data android:scheme="rtmpe" />
2427
<data android:scheme="rtmps" />
@@ -31,10 +34,13 @@
3134
<data android:scheme="udp" />
3235
<data android:scheme="vlc" />
3336
</intent-filter>
37+
<!-- This filter captures protocols with type info -->
3438
<intent-filter>
3539
<action android:name="android.intent.action.VIEW" />
40+
3641
<category android:name="android.intent.category.DEFAULT" />
3742
<category android:name="android.intent.category.BROWSABLE" />
43+
3844
<data android:mimeType="video/*" />
3945
<data android:mimeType="audio/*" />
4046
<data android:scheme="rtmp" />
@@ -50,8 +56,10 @@
5056
</intent-filter>
5157
<intent-filter>
5258
<action android:name="android.intent.action.VIEW" />
59+
5360
<category android:name="android.intent.category.DEFAULT" />
5461
<category android:name="android.intent.category.BROWSABLE" />
62+
5563
<data android:scheme="" />
5664
<data android:scheme="file" />
5765
<data android:scheme="ftp" />
@@ -86,15 +94,20 @@
8694
</intent-filter>
8795
<intent-filter>
8896
<action android:name="android.intent.action.VIEW" />
97+
8998
<category android:name="android.intent.category.DEFAULT" />
9099
<category android:name="android.intent.category.BROWSABLE" />
100+
91101
<data android:scheme="" />
92102
<data android:scheme="file" />
93103
<data android:scheme="ftp" />
94104
<data android:scheme="content" />
95105
<data android:scheme="http" />
96106
<data android:scheme="https" />
97107
<data android:host="*" />
108+
109+
<!-- video -->
110+
98111
<data android:pathPattern=".*\\.3g2" />
99112
<data android:pathPattern=".*\\.3gp" />
100113
<data android:pathPattern=".*\\.3gp2" />
@@ -115,6 +128,7 @@
115128
<data android:pathPattern=".*\\.m2v" />
116129
<data android:pathPattern=".*\\.m2t" />
117130
<data android:pathPattern=".*\\.m2ts" />
131+
<!-- <data android:pathPattern=".*\\.m3u" /> -->
118132
<data android:pathPattern=".*\\.m3u8" />
119133
<data android:pathPattern=".*\\.mkv" />
120134
<data android:pathPattern=".*\\.mov" />
@@ -173,6 +187,7 @@
173187
<data android:pathPattern=".*\\.M2V" />
174188
<data android:pathPattern=".*\\.M2T" />
175189
<data android:pathPattern=".*\\.M2TS" />
190+
<!-- <data android:pathPattern=".*\\.M3U" /> -->
176191
<data android:pathPattern=".*\\.M3U8" />
177192
<data android:pathPattern=".*\\.MKV" />
178193
<data android:pathPattern=".*\\.MOV" />
@@ -211,6 +226,9 @@
211226
<data android:pathPattern=".*\\.WMV" />
212227
<data android:pathPattern=".*\\.WTV" />
213228
<data android:pathPattern=".*\\.XESC" />
229+
230+
<!-- audio -->
231+
214232
<data android:pathPattern=".*\\.3ga" />
215233
<data android:pathPattern=".*\\.a52" />
216234
<data android:pathPattern=".*\\.aac" />

0 commit comments

Comments
 (0)