Skip to content

Commit bc70160

Browse files
author
Ferenc Nánási
committed
1.0.5 ready
1 parent 0b5ad62 commit bc70160

File tree

10 files changed

+695
-24
lines changed

10 files changed

+695
-24
lines changed

TODO.md

+1
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ 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+
- 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/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
]

package-lock.json

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

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"core-js": "^3.6.5",
2727
"vue": "^3.2.28",
2828
"vue-router": "^4.0.12",
29+
"vue-virtual-scroller": "^2.0.0-alpha.1",
2930
"vuex": "^4.0.2"
3031
},
3132
"devDependencies": {

src/components/fileBrowserModal.vue

+3-4
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@
6767
<ion-label class="ion-text-wrap">{{ entry.name }}</ion-label>
6868
</ion-item>
6969
</ion-list>
70-
7170
<ion-infinite-scroll
7271
@ionInfinite="onInfiniteScroll($event)"
7372
threshold="1000px"
@@ -151,7 +150,7 @@ import {
151150
alertController,
152151
IonInfiniteScroll,
153152
IonInfiniteScrollContent,
154-
IonLabel,
153+
// IonLabel,
155154
} from "@ionic/vue";
156155
import {
157156
folder,
@@ -182,7 +181,7 @@ export default {
182181
183182
// Browasble files by ion-infinite scroll
184183
const browsableFiles = ref([]);
185-
const INFINITE_SCROLL_STEP = 100;
184+
const INFINITE_SCROLL_STEP = 500;
186185
const infiniteScrollEnabled = ref(false);
187186
188187
const filesBak = ref([]);
@@ -598,7 +597,7 @@ export default {
598597
IonListHeader,
599598
IonInfiniteScroll,
600599
IonInfiniteScrollContent,
601-
IonLabel,
600+
// IonLabel,
602601
},
603602
};
604603
</script>

0 commit comments

Comments
 (0)