Open thebiblelover7 opened 2 years ago
I think the app meets the requirements, but I still need to clean up and trim down the dependencies.
For example, the app is using the google play core library to check for and install in-app updates from the play store. This is not even reliable at the moment so I think it can go. Both Android Auto and media casting are google libraries, do you know if these are supported in F-Droid apps?
I think the app meets the requirements, but I still need to clean up and trim down the dependencies.
For example, the app is using the google play core library to check for and install in-app updates from the play store. This is not even reliable at the moment so I think it can go. Both Android Auto and media casting are google libraries, do you know if these are supported in F-Droid apps?
I think they are supported. I just think that it will show a dialog that says that it has non-free dependencies.
For those looking for this in the meantime I have been putting the APK file in the releases. https://github.com/advplyr/audiobookshelf-app/releases
Thanks @advplyr for creating this application and providing compiled Android releases on Github. Can you share any progress regarding an official release in F-Droid?
There are some third-party F-Droid repos that are less strict than the official one that could also be used to distribute the app for users without Google Play on their devices (even as a stop-gap while waiting to get into the official repo).
I suggested Audiobookshelf to IzzyOnDroid, which is a pretty popular one that doesn't actually build the apps, instead publishing the APKs directly from the application's own Github or Gitlab releases and tags. It does have some requirements that Audiobookshelf doesn't meet currently (the maintainer detailed that in my issue here), but something like this might be a simpler goal post to hit along the road to the official F-Droid repo.
The APK will work without google play, that is only for chromecast support which if not available just won't show up in the app. Last I looked at the f-droid criteria I thought it was met already
I think the requirement (for both F-Droid and IzzyOnDroid) is there needs to be a whole separate build path that can generate an APK without any of the Google libraries in there at all. It's not enough for the app to function without Play Services on the phone, it has to be built without them entirely.
In the case of IzzyOnDroid they would want each release to have a separate APK that was built without the proprietary dependencies, and in the case of F-Droid they expect to be able to build from source themselves without any of those dependencies being linked.
@advplyr I doubt it complies. Copying over from the issue @rudism linked already:
Offending libs:
---------------
* Firebase Data Transport (/com/google/android/datatransport): NonFreeNet
* Google Cast (/com/google/android/gms/cast): NonFreeComp
* Google Mobile Services (/com/google/android/gms): NonFreeComp
* Firebase (/com/google/firebase): NonFreeNet,NonFreeComp
4 offenders.
Dangerous flags:
----------------
* usesCleartextTraffic
SigningBlock blobs:
-------------------
0x504b4453 (DEPENDENCY_INFO_BLOCK; GOOGLE)
Everything marked NonFreeComp
is a show-stopper at F-Droid: non-free components are not permitted.
I add an other bit of info: I'm not sure that f-droid version can be compatible with Android Auto. At least, voice from f-droid was not. I can test with some music player if it can help!
Hello, we have been waiting for more than 4 years to see audiobookshelf on FDroid, many here do not use Google Play Store and prefer OpenSource solutions. Please publish AudioBookShelf as soon as possible in FDroid
I add an other bit of info: I'm not sure that f-droid version can be compatible with Android Auto. At least, voice from f-droid was not. I can test with some music player if it can help!
Users will not be able to use it with android auto, but if you leave the code in then users will be able to enable allow unknown sources in android auto developer options use it. There are apps on f-droid that do this like auxio and have no anti-features.
You could also put this up on izzyondroid, as that would be your own build. At least that would give us an option that's not google play.
As @dessalines suggests it… Quick check:
Dangerous flags:
----------------
* usesCleartextTraffic
for the self-hosted server in the local network only, right?
SigningBlock blobs:
-------------------
0x504b4453 (DEPENDENCY_INFO_BLOCK; GOOGLE)
Can easily be avoided with a minor addition to your build.gradle
:
android {
dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}
}
For some background: that BLOB is supposed to be just a binary representation of your app's dependency tree. But as it's encrypted with a public key belonging to Google, only Google can read it – and nobody else can even verify what it really contains. More details can be found e.g. here: Ramping up security: additional APK checks are in place with the IzzyOnDroid repo.
Nice to see there are dev instructions in the Readme! Unfortunately, they end with starting Android Studio. Would there be an "alternative ending" building the app at the command line? Ah, found them in github/workflows
. So we could try for Reproducible Builds even :wink: "Real releases" (instead of pre-releases only) would help with that, too. But meh, seems that's moot as AudioBookshelf is not reproducible: nuxt produces non-deterministic file names for its *.js
files unfortunately :cry:
-rw-r--r-- 0.0 unx 56 b- 50 defN 1981-01-01 01:01:02 3c557a5b META-INF/com/android/build/gradle/app-metadata.properties
- -rw-r--r-- 0.0 unx 2775 b- 2775 stor 1981-01-01 01:01:02 a5664ae1 assets/dexopt/baseline.prof
+ -rw-r--r-- 0.0 unx 2775 b- 2775 stor 1981-01-01 01:01:02 b0889065 assets/dexopt/baseline.prof
-rw-r--r-- 0.0 unx 266 b- 266 stor 1981-01-01 01:01:02 1e397e88 assets/dexopt/baseline.profm
- -rw-r--r-- 0.0 unx 8850360 b- 3534570 defN 1981-01-01 01:01:02 f8fc3783 classes.dex
+ -rw-r--r-- 0.0 unx 8850340 b- 3534481 defN 1981-01-01 01:01:02 ec3db4a5 classes.dex
-rw-r--r-- 0.0 unx 8372236 b- 3220518 defN 1981-01-01 01:01:02 b6024e0e classes2.dex
-rw-r--r-- 0.0 unx 4666928 b- 1736151 defN 1981-01-01 01:01:02 e93b672b classes3.dex
-rw-r--r-- 0.0 unx 184 b- 131 defN 1981-01-01 01:01:02 b0382945 assets/capacitor.config.json
-rw-r--r-- 0.0 unx 1071 b- 280 defN 1981-01-01 01:01:02 0a96c6be assets/capacitor.plugins.json
-rw-r--r-- 0.0 unx 48916 b- 8771 defN 1981-01-01 01:01:02 4bb9f402 assets/native-bridge.js
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/200.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/200.html
-rw-r--r-- 0.0 unx 17619 b- 17619 stor 1981-01-01 01:01:02 bc72f6ba assets/public/Logo.png
- -rw-r--r-- 0.0 unx 7055 b- 2424 defN 1981-01-01 01:01:02 fcb16ab5 assets/public/_nuxt/00079fc.js
- -rw-r--r-- 0.0 unx 1705 b- 813 defN 1981-01-01 01:01:02 5ed304a7 assets/public/_nuxt/00bbea7.js
- -rw-r--r-- 0.0 unx 23679 b- 6449 defN 1981-01-01 01:01:02 796f2614 assets/public/_nuxt/0c6353d.js
- -rw-r--r-- 0.0 unx 22432 b- 6114 defN 1981-01-01 01:01:02 af8fafab assets/public/_nuxt/0e93823.js
- -rw-r--r-- 0.0 unx 15638 b- 3891 defN 1981-01-01 01:01:02 539a4cc4 assets/public/_nuxt/0ff5d45.js
- -rw-r--r-- 0.0 unx 1290 b- 660 defN 1981-01-01 01:01:02 12fed8ad assets/public/_nuxt/1113c76.js
- -rw-r--r-- 0.0 unx 374 b- 248 defN 1981-01-01 01:01:02 e283d165 assets/public/_nuxt/12c7c11.js
- -rw-r--r-- 0.0 unx 26572 b- 5479 defN 1981-01-01 01:01:02 a0cf2f9c assets/public/_nuxt/1364ea2.js
- -rw-r--r-- 0.0 unx 4022 b- 2136 defN 1981-01-01 01:01:02 ce7c1dbe assets/public/_nuxt/139887b.js
- -rw-r--r-- 0.0 unx 386 b- 243 defN 1981-01-01 01:01:02 8abf1cf2 assets/public/_nuxt/19d642c.js
- -rw-r--r-- 0.0 unx 14948 b- 4978 defN 1981-01-01 01:01:02 5b366422 assets/public/_nuxt/1af3d97.js
- -rw-r--r-- 0.0 unx 2143 b- 840 defN 1981-01-01 01:01:02 bbde6776 assets/public/_nuxt/1d04795.js
- -rw-r--r-- 0.0 unx 1919 b- 821 defN 1981-01-01 01:01:02 ea7ecf6a assets/public/_nuxt/1f32bb6.js
- -rw-r--r-- 0.0 unx 49139 b- 11250 defN 1981-01-01 01:01:02 0f00cb3d assets/public/_nuxt/2005c3e.js
- -rw-r--r-- 0.0 unx 105 b- 90 defN 1981-01-01 01:01:02 72ba6be2 assets/public/_nuxt/2159a4d.js
- -rw-r--r-- 0.0 unx 15874 b- 5039 defN 1981-01-01 01:01:02 b9a70394 assets/public/_nuxt/217bb3a.js
- -rw-r--r-- 0.0 unx 22557 b- 5574 defN 1981-01-01 01:01:02 71fdbcb2 assets/public/_nuxt/2425016.js
- -rw-r--r-- 0.0 unx 421 b- 264 defN 1981-01-01 01:01:02 17d7a8d0 assets/public/_nuxt/2585824.js
- -rw-r--r-- 0.0 unx 15798 b- 4349 defN 1981-01-01 01:01:02 d62967e2 assets/public/_nuxt/281a5a3.js
- -rw-r--r-- 0.0 unx 37661 b- 6153 defN 1981-01-01 01:01:02 05503847 assets/public/_nuxt/2ab696b.js
- -rw-r--r-- 0.0 unx 2933 b- 1132 defN 1981-01-01 01:01:02 dafae19d assets/public/_nuxt/2debbef.js
- -rw-r--r-- 0.0 unx 2028 b- 1004 defN 1981-01-01 01:01:02 a9baddde assets/public/_nuxt/2e59316.js
- -rw-r--r-- 0.0 unx 1982 b- 649 defN 1981-01-01 01:01:02 27a7b1ed assets/public/_nuxt/2eaca8c.js
- -rw-r--r-- 0.0 unx 15665 b- 5405 defN 1981-01-01 01:01:02 87f3946f assets/public/_nuxt/307dd1c.js
- -rw-r--r-- 0.0 unx 2090 b- 733 defN 1981-01-01 01:01:02 733c3b8b assets/public/_nuxt/347c700.js
- -rw-r--r-- 0.0 unx 417 b- 215 defN 1981-01-01 01:01:02 c827e976 assets/public/_nuxt/34d6e1c.js
- -rw-r--r-- 0.0 unx 15566 b- 5227 defN 1981-01-01 01:01:02 f0049ddd assets/public/_nuxt/3509a7a.js
- -rw-r--r-- 0.0 unx 12466 b- 3573 defN 1981-01-01 01:01:02 0fd7399a assets/public/_nuxt/3748b99.js
- -rw-r--r-- 0.0 unx 525694 b- 138146 defN 1981-01-01 01:01:02 bf2c8d7a assets/public/_nuxt/3837ce2.js
- -rw-r--r-- 0.0 unx 16233 b- 5429 defN 1981-01-01 01:01:02 f1d452cf assets/public/_nuxt/3cb8c0e.js
- -rw-r--r-- 0.0 unx 2276 b- 1097 defN 1981-01-01 01:01:02 d60199fc assets/public/_nuxt/3ec5f1f.js
- -rw-r--r-- 0.0 unx 2952 b- 1391 defN 1981-01-01 01:01:02 53972c32 assets/public/_nuxt/4568c23.js
- -rw-r--r-- 0.0 unx 14413 b- 4000 defN 1981-01-01 01:01:02 f1dab8bb assets/public/_nuxt/45a7702.js
- -rw-r--r-- 0.0 unx 259799 b- 89609 defN 1981-01-01 01:01:02 5d00ef7f assets/public/_nuxt/45c757e.js
- -rw-r--r-- 0.0 unx 6613 b- 2205 defN 1981-01-01 01:01:02 657018a6 assets/public/_nuxt/497c8f4.js
- -rw-r--r-- 0.0 unx 4567 b- 1365 defN 1981-01-01 01:01:02 92aae899 assets/public/_nuxt/4a52e65.js
- -rw-r--r-- 0.0 unx 5688 b- 2214 defN 1981-01-01 01:01:02 4d2c8076 assets/public/_nuxt/4b36793.js
- -rw-r--r-- 0.0 unx 2042 b- 935 defN 1981-01-01 01:01:02 1551d037 assets/public/_nuxt/4eaeee5.js
- -rw-r--r-- 0.0 unx 14858 b- 5165 defN 1981-01-01 01:01:02 00fd6c48 assets/public/_nuxt/508a7b3.js
- -rw-r--r-- 0.0 unx 1979 b- 753 defN 1981-01-01 01:01:02 a6530f05 assets/public/_nuxt/5287247.js
- -rw-r--r-- 0.0 unx 3289 b- 1581 defN 1981-01-01 01:01:02 96d84407 assets/public/_nuxt/54070be.js
- -rw-r--r-- 0.0 unx 7718 b- 2523 defN 1981-01-01 01:01:02 4018a247 assets/public/_nuxt/542c060.js
- -rw-r--r-- 0.0 unx 42241 b- 9789 defN 1981-01-01 01:01:02 88ef0e3b assets/public/_nuxt/54c9032.js
- -rw-r--r-- 0.0 unx 6360 b- 2194 defN 1981-01-01 01:01:02 c3092a0c assets/public/_nuxt/57d53ca.js
- -rw-r--r-- 0.0 unx 20770 b- 5896 defN 1981-01-01 01:01:02 ece2c182 assets/public/_nuxt/588299d.js
- -rw-r--r-- 0.0 unx 13818 b- 5114 defN 1981-01-01 01:01:02 2bf2e928 assets/public/_nuxt/5a183ad.js
- -rw-r--r-- 0.0 unx 502 b- 282 defN 1981-01-01 01:01:02 3c91c430 assets/public/_nuxt/5af819f.js
- -rw-r--r-- 0.0 unx 105 b- 90 defN 1981-01-01 01:01:02 8b9b69fb assets/public/_nuxt/5b49d2b.js
- -rw-r--r-- 0.0 unx 10596 b- 3015 defN 1981-01-01 01:01:02 a48383e4 assets/public/_nuxt/5c581fd.js
- -rw-r--r-- 0.0 unx 8060 b- 3225 defN 1981-01-01 01:01:02 7da9c1ae assets/public/_nuxt/5dd56a3.js
- -rw-r--r-- 0.0 unx 7041 b- 2315 defN 1981-01-01 01:01:02 8cae1db3 assets/public/_nuxt/62d0a30.js
- -rw-r--r-- 0.0 unx 6606 b- 2054 defN 1981-01-01 01:01:02 c710d546 assets/public/_nuxt/6330fbd.js
- -rw-r--r-- 0.0 unx 20119 b- 6985 defN 1981-01-01 01:01:02 61515f21 assets/public/_nuxt/6356227.js
- -rw-r--r-- 0.0 unx 3791 b- 1481 defN 1981-01-01 01:01:02 2402d262 assets/public/_nuxt/63cd2e3.js
- -rw-r--r-- 0.0 unx 5259 b- 1602 defN 1981-01-01 01:01:02 929f5e8b assets/public/_nuxt/640171a.js
- -rw-r--r-- 0.0 unx 16306 b- 5401 defN 1981-01-01 01:01:02 80e0b126 assets/public/_nuxt/66eecc5.js
- -rw-r--r-- 0.0 unx 5771 b- 1879 defN 1981-01-01 01:01:02 2b497dc0 assets/public/_nuxt/68174a5.js
- -rw-r--r-- 0.0 unx 1459 b- 655 defN 1981-01-01 01:01:02 e7fd08cc assets/public/_nuxt/6c7a676.js
- -rw-r--r-- 0.0 unx 856091 b- 171163 defN 1981-01-01 01:01:02 806420af assets/public/_nuxt/6edfe48.js
- -rw-r--r-- 0.0 unx 15816 b- 5369 defN 1981-01-01 01:01:02 5bbf7bd2 assets/public/_nuxt/6f614a5.js
- -rw-r--r-- 0.0 unx 26869 b- 6069 defN 1981-01-01 01:01:02 a7b2f62b assets/public/_nuxt/6fb0b45.js
- -rw-r--r-- 0.0 unx 16389 b- 5314 defN 1981-01-01 01:01:02 40bc5e39 assets/public/_nuxt/738e2e2.js
- -rw-r--r-- 0.0 unx 1086 b- 499 defN 1981-01-01 01:01:02 0c2c1f08 assets/public/_nuxt/76447b5.js
- -rw-r--r-- 0.0 unx 11336 b- 3666 defN 1981-01-01 01:01:02 4b7e45a4 assets/public/_nuxt/78a1834.js
- -rw-r--r-- 0.0 unx 3469 b- 1386 defN 1981-01-01 01:01:02 4246028d assets/public/_nuxt/7a8cd50.js
- -rw-r--r-- 0.0 unx 18573 b- 4422 defN 1981-01-01 01:01:02 2285152c assets/public/_nuxt/7dac58f.js
- -rw-r--r-- 0.0 unx 2351 b- 1025 defN 1981-01-01 01:01:02 38362b06 assets/public/_nuxt/82dc55f.js
- -rw-r--r-- 0.0 unx 26863 b- 6503 defN 1981-01-01 01:01:02 761eaec5 assets/public/_nuxt/83dffbc.js
- -rw-r--r-- 0.0 unx 19628 b- 5655 defN 1981-01-01 01:01:02 7f31ef00 assets/public/_nuxt/844d346.js
- -rw-r--r-- 0.0 unx 16518 b- 5411 defN 1981-01-01 01:01:02 b596c824 assets/public/_nuxt/84df3c7.js
- -rw-r--r-- 0.0 unx 1233 b- 577 defN 1981-01-01 01:01:02 95f0e730 assets/public/_nuxt/879df07.js
- -rw-r--r-- 0.0 unx 3886 b- 1423 defN 1981-01-01 01:01:02 ea742231 assets/public/_nuxt/8958962.js
- -rw-r--r-- 0.0 unx 368251 b- 76330 defN 1981-01-01 01:01:02 87d11c91 assets/public/_nuxt/90ba3e6.js
- -rw-r--r-- 0.0 unx 105 b- 90 defN 1981-01-01 01:01:02 4a4691f5 assets/public/_nuxt/918ef12.js
- -rw-r--r-- 0.0 unx 14843 b- 5073 defN 1981-01-01 01:01:02 504a5bf9 assets/public/_nuxt/92ee7f4.js
- -rw-r--r-- 0.0 unx 3523 b- 1279 defN 1981-01-01 01:01:02 9f72aa47 assets/public/_nuxt/93eb976.js
- -rw-r--r-- 0.0 unx 1265 b- 592 defN 1981-01-01 01:01:02 76250c77 assets/public/_nuxt/9466387.js
- -rw-r--r-- 0.0 unx 7174 b- 2499 defN 1981-01-01 01:01:02 224958b0 assets/public/_nuxt/9510cf6.js
- -rw-r--r-- 0.0 unx 728 b- 434 defN 1981-01-01 01:01:02 3a8755cc assets/public/_nuxt/95719e4.js
- -rw-r--r-- 0.0 unx 15184 b- 5073 defN 1981-01-01 01:01:02 585a2629 assets/public/_nuxt/96acd35.js
- -rw-r--r-- 0.0 unx 413 b- 262 defN 1981-01-01 01:01:02 b8784f6f assets/public/_nuxt/97c2751.js
- -rw-r--r-- 0.0 unx 5998 b- 2379 defN 1981-01-01 01:01:02 c4511f7b assets/public/_nuxt/9889013.js
- -rw-r--r-- 0.0 unx 7407 b- 2285 defN 1981-01-01 01:01:02 9765de2f assets/public/_nuxt/9cc72bb.js
- -rw-r--r-- 0.0 unx 17149 b- 5242 defN 1981-01-01 01:01:02 9d6986dd assets/public/_nuxt/9d5d175.js
- -rw-r--r-- 0.0 unx 71416 b- 23608 defN 1981-01-01 01:01:02 668e7d55 assets/public/_nuxt/9e58578.js
- -rw-r--r-- 0.0 unx 105 b- 90 defN 1981-01-01 01:01:02 29cc3867 assets/public/_nuxt/9e8a5d3.js
- -rw-r--r-- 0.0 unx 2629 b- 1207 defN 1981-01-01 01:01:02 5215d0b2 assets/public/_nuxt/LICENSES
- -rw-r--r-- 0.0 unx 4943 b- 2106 defN 1981-01-01 01:01:02 4e9ed795 assets/public/_nuxt/a30369a.js
- -rw-r--r-- 0.0 unx 6036 b- 2342 defN 1981-01-01 01:01:02 2b3d79f6 assets/public/_nuxt/a3a7c15.js
- -rw-r--r-- 0.0 unx 6391 b- 2336 defN 1981-01-01 01:01:02 189ce7ae assets/public/_nuxt/a4870fe.js
- -rw-r--r-- 0.0 unx 1686 b- 791 defN 1981-01-01 01:01:02 1ca52f9e assets/public/_nuxt/a605840.js
- -rw-r--r-- 0.0 unx 3325 b- 1575 defN 1981-01-01 01:01:02 72d7495e assets/public/_nuxt/a71a0e8.js
- -rw-r--r-- 0.0 unx 8344 b- 2863 defN 1981-01-01 01:01:02 3f641d00 assets/public/_nuxt/a7cc0b0.js
- -rw-r--r-- 0.0 unx 4633 b- 1888 defN 1981-01-01 01:01:02 e0d6dcba assets/public/_nuxt/ab248f1.js
+ -rw-r--r-- 0.0 unx 3791 b- 1481 defN 1981-01-01 01:01:02 f6554341 assets/public/_nuxt/01588ba.js
+ -rw-r--r-- 0.0 unx 2090 b- 733 defN 1981-01-01 01:01:02 17132077 assets/public/_nuxt/01797fa.js
+ -rw-r--r-- 0.0 unx 1235 b- 630 defN 1981-01-01 01:01:02 0c429f41 assets/public/_nuxt/01df849.js
+ -rw-r--r-- 0.0 unx 7174 b- 2498 defN 1981-01-01 01:01:02 42e442ba assets/public/_nuxt/036e196.js
+ -rw-r--r-- 0.0 unx 16306 b- 5401 defN 1981-01-01 01:01:02 fbd674d5 assets/public/_nuxt/046353d.js
+ -rw-r--r-- 0.0 unx 265116 b- 90818 defN 1981-01-01 01:01:02 176d2a6d assets/public/_nuxt/06042f1.js
+ -rw-r--r-- 0.0 unx 3289 b- 1581 defN 1981-01-01 01:01:02 8beaf794 assets/public/_nuxt/07c35dc.js
+ -rw-r--r-- 0.0 unx 3325 b- 1576 defN 1981-01-01 01:01:02 485f461e assets/public/_nuxt/08b01d1.js
+ -rw-r--r-- 0.0 unx 2616 b- 1012 defN 1981-01-01 01:01:02 ca40bff9 assets/public/_nuxt/08c356c.js
+ -rw-r--r-- 0.0 unx 6502 b- 2385 defN 1981-01-01 01:01:02 52ea65f8 assets/public/_nuxt/0a5cf9e.js
+ -rw-r--r-- 0.0 unx 15638 b- 3891 defN 1981-01-01 01:01:02 0b7d48f1 assets/public/_nuxt/0ba336a.js
+ -rw-r--r-- 0.0 unx 8060 b- 3223 defN 1981-01-01 01:01:02 2d3eeb80 assets/public/_nuxt/0bf0124.js
+ -rw-r--r-- 0.0 unx 5998 b- 2378 defN 1981-01-01 01:01:02 1585c847 assets/public/_nuxt/0d6c446.js
+ -rw-r--r-- 0.0 unx 18428 b- 4430 defN 1981-01-01 01:01:02 df0c5a77 assets/public/_nuxt/0e69746.js
+ -rw-r--r-- 0.0 unx 2276 b- 1095 defN 1981-01-01 01:01:02 31e648c4 assets/public/_nuxt/0eb2552.js
+ -rw-r--r-- 0.0 unx 105 b- 90 defN 1981-01-01 01:01:02 2050e686 assets/public/_nuxt/107740d.js
+ -rw-r--r-- 0.0 unx 10798 b- 3827 defN 1981-01-01 01:01:02 519a0c9c assets/public/_nuxt/11bc007.js
+ -rw-r--r-- 0.0 unx 413 b- 262 defN 1981-01-01 01:01:02 75957cdf assets/public/_nuxt/12109eb.js
+ -rw-r--r-- 0.0 unx 1459 b- 655 defN 1981-01-01 01:01:02 ad0c6d8c assets/public/_nuxt/168b6e1.js
+ -rw-r--r-- 0.0 unx 23679 b- 6448 defN 1981-01-01 01:01:02 411e49f2 assets/public/_nuxt/17d7422.js
+ -rw-r--r-- 0.0 unx 18573 b- 4422 defN 1981-01-01 01:01:02 d2490f55 assets/public/_nuxt/1ac841b.js
+ -rw-r--r-- 0.0 unx 1290 b- 659 defN 1981-01-01 01:01:02 77007e44 assets/public/_nuxt/1d532cf.js
+ -rw-r--r-- 0.0 unx 7718 b- 2522 defN 1981-01-01 01:01:02 4cf77819 assets/public/_nuxt/1e69b56.js
+ -rw-r--r-- 0.0 unx 22432 b- 6113 defN 1981-01-01 01:01:02 224e6c2f assets/public/_nuxt/247a2d1.js
+ -rw-r--r-- 0.0 unx 37661 b- 6152 defN 1981-01-01 01:01:02 c3525c15 assets/public/_nuxt/264e380.js
+ -rw-r--r-- 0.0 unx 6633 b- 2525 defN 1981-01-01 01:01:02 80c1b502 assets/public/_nuxt/28a0228.js
+ -rw-r--r-- 0.0 unx 1982 b- 649 defN 1981-01-01 01:01:02 94a1b7c9 assets/public/_nuxt/28ca37b.js
+ -rw-r--r-- 0.0 unx 6391 b- 2336 defN 1981-01-01 01:01:02 abc11006 assets/public/_nuxt/2c10f8c.js
+ -rw-r--r-- 0.0 unx 1328 b- 627 defN 1981-01-01 01:01:02 e44eb071 assets/public/_nuxt/2ce2c51.js
+ -rw-r--r-- 0.0 unx 12466 b- 3578 defN 1981-01-01 01:01:02 5c85fa5c assets/public/_nuxt/2fbcd62.js
+ -rw-r--r-- 0.0 unx 11336 b- 3666 defN 1981-01-01 01:01:02 9bc2617b assets/public/_nuxt/310f961.js
+ -rw-r--r-- 0.0 unx 42241 b- 9786 defN 1981-01-01 01:01:02 6d6e90cb assets/public/_nuxt/32ae7ce.js
+ -rw-r--r-- 0.0 unx 4392 b- 1411 defN 1981-01-01 01:01:02 2f9fb3f4 assets/public/_nuxt/34a864d.js
+ -rw-r--r-- 0.0 unx 3673 b- 1673 defN 1981-01-01 01:01:02 66a64739 assets/public/_nuxt/358cd50.js
+ -rw-r--r-- 0.0 unx 6036 b- 2342 defN 1981-01-01 01:01:02 e5d8c637 assets/public/_nuxt/3b9cb43.js
+ -rw-r--r-- 0.0 unx 3662 b- 1232 defN 1981-01-01 01:01:02 10f79268 assets/public/_nuxt/3c127e1.js
+ -rw-r--r-- 0.0 unx 22557 b- 5573 defN 1981-01-01 01:01:02 d39610a2 assets/public/_nuxt/3e49002.js
+ -rw-r--r-- 0.0 unx 2143 b- 840 defN 1981-01-01 01:01:02 d6a4c95b assets/public/_nuxt/4456889.js
+ -rw-r--r-- 0.0 unx 5259 b- 1603 defN 1981-01-01 01:01:02 2b5a7a5c assets/public/_nuxt/45111b0.js
+ -rw-r--r-- 0.0 unx 15566 b- 5227 defN 1981-01-01 01:01:02 dafc0afe assets/public/_nuxt/487e9a6.js
+ -rw-r--r-- 0.0 unx 49139 b- 11247 defN 1981-01-01 01:01:02 2f5df607 assets/public/_nuxt/4921b57.js
+ -rw-r--r-- 0.0 unx 14948 b- 4979 defN 1981-01-01 01:01:02 f55b31c2 assets/public/_nuxt/4e34e2a.js
+ -rw-r--r-- 0.0 unx 4022 b- 2144 defN 1981-01-01 01:01:02 93dfa28f assets/public/_nuxt/50147d2.js
+ -rw-r--r-- 0.0 unx 374 b- 248 defN 1981-01-01 01:01:02 619e9dd6 assets/public/_nuxt/50c6cdd.js
+ -rw-r--r-- 0.0 unx 386 b- 243 defN 1981-01-01 01:01:02 d8152a1c assets/public/_nuxt/51b380a.js
+ -rw-r--r-- 0.0 unx 13238 b- 3988 defN 1981-01-01 01:01:02 048c3478 assets/public/_nuxt/51cc489.js
+ -rw-r--r-- 0.0 unx 3523 b- 1279 defN 1981-01-01 01:01:02 7f709e8b assets/public/_nuxt/53ffd81.js
+ -rw-r--r-- 0.0 unx 1265 b- 592 defN 1981-01-01 01:01:02 dd7bc6e6 assets/public/_nuxt/56c9ce9.js
+ -rw-r--r-- 0.0 unx 5771 b- 1880 defN 1981-01-01 01:01:02 b71aa186 assets/public/_nuxt/59c1bed.js
+ -rw-r--r-- 0.0 unx 15798 b- 4347 defN 1981-01-01 01:01:02 30f2cd2d assets/public/_nuxt/5af5206.js
+ -rw-r--r-- 0.0 unx 16389 b- 5314 defN 1981-01-01 01:01:02 e84a9b12 assets/public/_nuxt/5c53865.js
+ -rw-r--r-- 0.0 unx 15665 b- 5406 defN 1981-01-01 01:01:02 7a2d2f9d assets/public/_nuxt/5d45bb5.js
+ -rw-r--r-- 0.0 unx 14858 b- 5165 defN 1981-01-01 01:01:02 51e02b81 assets/public/_nuxt/5e3aac1.js
+ -rw-r--r-- 0.0 unx 421 b- 263 defN 1981-01-01 01:01:02 e7ac09a2 assets/public/_nuxt/5fb75e6.js
+ -rw-r--r-- 0.0 unx 16233 b- 5429 defN 1981-01-01 01:01:02 aec36cf7 assets/public/_nuxt/6060200.js
+ -rw-r--r-- 0.0 unx 12831 b- 4431 defN 1981-01-01 01:01:02 a346160c assets/public/_nuxt/6290b28.js
+ -rw-r--r-- 0.0 unx 3385 b- 1331 defN 1981-01-01 01:01:02 9ec4e99c assets/public/_nuxt/6501a75.js
+ -rw-r--r-- 0.0 unx 6613 b- 2203 defN 1981-01-01 01:01:02 c63f565b assets/public/_nuxt/6a55691.js
+ -rw-r--r-- 0.0 unx 105 b- 90 defN 1981-01-01 01:01:02 e9d0b9b9 assets/public/_nuxt/6b007c9.js
+ -rw-r--r-- 0.0 unx 2351 b- 1026 defN 1981-01-01 01:01:02 58215a03 assets/public/_nuxt/6e89692.js
+ -rw-r--r-- 0.0 unx 7407 b- 2284 defN 1981-01-01 01:01:02 ff5f08d3 assets/public/_nuxt/6eaf600.js
+ -rw-r--r-- 0.0 unx 5688 b- 2214 defN 1981-01-01 01:01:02 53a852ee assets/public/_nuxt/73a8e7a.js
+ -rw-r--r-- 0.0 unx 3469 b- 1383 defN 1981-01-01 01:01:02 d3a73150 assets/public/_nuxt/79d23c9.js
+ -rw-r--r-- 0.0 unx 1336 b- 600 defN 1981-01-01 01:01:02 de8cd3ff assets/public/_nuxt/79df1c6.js
+ -rw-r--r-- 0.0 unx 105 b- 90 defN 1981-01-01 01:01:02 8a5a102b assets/public/_nuxt/7a8f61a.js
+ -rw-r--r-- 0.0 unx 8156 b- 2750 defN 1981-01-01 01:01:02 19752acc assets/public/_nuxt/7b3e3cb.js
+ -rw-r--r-- 0.0 unx 15816 b- 5368 defN 1981-01-01 01:01:02 7dc8168d assets/public/_nuxt/7bca14b.js
+ -rw-r--r-- 0.0 unx 1686 b- 791 defN 1981-01-01 01:01:02 3aa4c59d assets/public/_nuxt/7f8ddcd.js
+ -rw-r--r-- 0.0 unx 8303 b- 3006 defN 1981-01-01 01:01:02 0ece8851 assets/public/_nuxt/82accb5.js
+ -rw-r--r-- 0.0 unx 4943 b- 2109 defN 1981-01-01 01:01:02 dc34af9d assets/public/_nuxt/861af37.js
+ -rw-r--r-- 0.0 unx 18594 b- 6305 defN 1981-01-01 01:01:02 a12e2739 assets/public/_nuxt/8662c55.js
+ -rw-r--r-- 0.0 unx 26572 b- 5470 defN 1981-01-01 01:01:02 4fd314dc assets/public/_nuxt/87b19de.js
+ -rw-r--r-- 0.0 unx 368231 b- 76343 defN 1981-01-01 01:01:02 9aecc099 assets/public/_nuxt/87c630b.js
+ -rw-r--r-- 0.0 unx 326440 b- 92860 defN 1981-01-01 01:01:02 a2737b3d assets/public/_nuxt/885180f.js
+ -rw-r--r-- 0.0 unx 1334 b- 617 defN 1981-01-01 01:01:02 2cc7b5e2 assets/public/_nuxt/88ef226.js
+ -rw-r--r-- 0.0 unx 15184 b- 5073 defN 1981-01-01 01:01:02 ec28abf7 assets/public/_nuxt/892b0f0.js
+ -rw-r--r-- 0.0 unx 16518 b- 5411 defN 1981-01-01 01:01:02 6124e86e assets/public/_nuxt/8a0d8d0.js
+ -rw-r--r-- 0.0 unx 850603 b- 169835 defN 1981-01-01 01:01:02 9e6cdd4e assets/public/_nuxt/8c14085.js
+ -rw-r--r-- 0.0 unx 4358 b- 1373 defN 1981-01-01 01:01:02 c02d668d assets/public/_nuxt/8e09520.js
+ -rw-r--r-- 0.0 unx 1705 b- 813 defN 1981-01-01 01:01:02 2a8c27d9 assets/public/_nuxt/8e66a26.js
+ -rw-r--r-- 0.0 unx 1233 b- 577 defN 1981-01-01 01:01:02 64840526 assets/public/_nuxt/8f2bc6a.js
+ -rw-r--r-- 0.0 unx 2028 b- 1004 defN 1981-01-01 01:01:02 e3289897 assets/public/_nuxt/8f56d6c.js
+ -rw-r--r-- 0.0 unx 3886 b- 1422 defN 1981-01-01 01:01:02 71f30a98 assets/public/_nuxt/90ea5fa.js
+ -rw-r--r-- 0.0 unx 7041 b- 2314 defN 1981-01-01 01:01:02 21cbe442 assets/public/_nuxt/919f5ac.js
+ -rw-r--r-- 0.0 unx 105 b- 90 defN 1981-01-01 01:01:02 b203899a assets/public/_nuxt/91b3b44.js
+ -rw-r--r-- 0.0 unx 33475 b- 9005 defN 1981-01-01 01:01:02 64469889 assets/public/_nuxt/955e300.js
+ -rw-r--r-- 0.0 unx 8344 b- 2863 defN 1981-01-01 01:01:02 cc6a142b assets/public/_nuxt/96e1053.js
+ -rw-r--r-- 0.0 unx 525694 b- 138146 defN 1981-01-01 01:01:02 058392aa assets/public/_nuxt/99dc90e.js
+ -rw-r--r-- 0.0 unx 71416 b- 23608 defN 1981-01-01 01:01:02 f55793e4 assets/public/_nuxt/9e69495.js
+ -rw-r--r-- 0.0 unx 13818 b- 5113 defN 1981-01-01 01:01:02 5f083330 assets/public/_nuxt/9f1c45e.js
+ -rw-r--r-- 0.0 unx 14413 b- 3998 defN 1981-01-01 01:01:02 d4b92394 assets/public/_nuxt/9f2408d.js
+ -rw-r--r-- 0.0 unx 1086 b- 498 defN 1981-01-01 01:01:02 18eef8e7 assets/public/_nuxt/9f7608e.js
+ -rw-r--r-- 0.0 unx 3185 b- 1169 defN 1981-01-01 01:01:02 45cbeb5c assets/public/_nuxt/LICENSES
+ -rw-r--r-- 0.0 unx 2243 b- 900 defN 1981-01-01 01:01:02 bbb1567d assets/public/_nuxt/a1f6b9f.js
+ -rw-r--r-- 0.0 unx 2985 b- 1216 defN 1981-01-01 01:01:02 1b306b82 assets/public/_nuxt/a3a3696.js
+ -rw-r--r-- 0.0 unx 8026 b- 2563 defN 1981-01-01 01:01:02 49801ca4 assets/public/_nuxt/aa83735.js
+ -rw-r--r-- 0.0 unx 13382 b- 4609 defN 1981-01-01 01:01:02 59c86cb8 assets/public/_nuxt/adbe7a9.js
-rw-r--r-- 0.0 unx 908418 b- 258674 defN 1981-01-01 01:01:02 2239e6e9 assets/public/_nuxt/b01c5966d11a80138825.worker.js
- -rw-r--r-- 0.0 unx 1336 b- 600 defN 1981-01-01 01:01:02 93ff0b0f assets/public/_nuxt/b08ef84.js
- -rw-r--r-- 0.0 unx 13238 b- 3987 defN 1981-01-01 01:01:02 2a05586e assets/public/_nuxt/b26a9dc.js
- -rw-r--r-- 0.0 unx 25917 b- 7333 defN 1981-01-01 01:01:02 eb5e7b5d assets/public/_nuxt/b5b2778.js
- -rw-r--r-- 0.0 unx 3385 b- 1330 defN 1981-01-01 01:01:02 6b778634 assets/public/_nuxt/b7b6c68.js
- -rw-r--r-- 0.0 unx 8303 b- 3006 defN 1981-01-01 01:01:02 e2e01f52 assets/public/_nuxt/bb32993.js
- -rw-r--r-- 0.0 unx 2431 b- 952 defN 1981-01-01 01:01:02 94220b0a assets/public/_nuxt/bd74cc4.js
- -rw-r--r-- 0.0 unx 3901 b- 1606 defN 1981-01-01 01:01:02 8cfcaf97 assets/public/_nuxt/c1bba69.js
- -rw-r--r-- 0.0 unx 13382 b- 4610 defN 1981-01-01 01:01:02 13998e8d assets/public/_nuxt/c1d6b79.js
- -rw-r--r-- 0.0 unx 1328 b- 627 defN 1981-01-01 01:01:02 423fd604 assets/public/_nuxt/c4bc375.js
- -rw-r--r-- 0.0 unx 6502 b- 2387 defN 1981-01-01 01:01:02 dbd98e59 assets/public/_nuxt/c70f81b.js
- -rw-r--r-- 0.0 unx 32462 b- 8369 defN 1981-01-01 01:01:02 484e20db assets/public/_nuxt/caac198.js
- -rw-r--r-- 0.0 unx 8026 b- 2565 defN 1981-01-01 01:01:02 87a5167d assets/public/_nuxt/cb1252e.js
- -rw-r--r-- 0.0 unx 3662 b- 1232 defN 1981-01-01 01:01:02 df738dd1 assets/public/_nuxt/cb50546.js
- -rw-r--r-- 0.0 unx 6633 b- 2525 defN 1981-01-01 01:01:02 33c965be assets/public/_nuxt/d28ea2d.js
- -rw-r--r-- 0.0 unx 3673 b- 1673 defN 1981-01-01 01:01:02 86dd7219 assets/public/_nuxt/d3b9c5a.js
- -rw-r--r-- 0.0 unx 5174 b- 2045 defN 1981-01-01 01:01:02 b0cf7412 assets/public/_nuxt/d3c401e.js
- -rw-r--r-- 0.0 unx 2243 b- 900 defN 1981-01-01 01:01:02 7536d447 assets/public/_nuxt/d47df4a.js
- -rw-r--r-- 0.0 unx 412 b- 263 defN 1981-01-01 01:01:02 657179f6 assets/public/_nuxt/da98601.js
- -rw-r--r-- 0.0 unx 33475 b- 9006 defN 1981-01-01 01:01:02 533773d5 assets/public/_nuxt/db5dc7e.js
- -rw-r--r-- 0.0 unx 15778 b- 5344 defN 1981-01-01 01:01:02 68dcfaec assets/public/_nuxt/e4ce0a3.js
- -rw-r--r-- 0.0 unx 8156 b- 2748 defN 1981-01-01 01:01:02 7d9c82d2 assets/public/_nuxt/e5ce909.js
- -rw-r--r-- 0.0 unx 2985 b- 1216 defN 1981-01-01 01:01:02 302ef59a assets/public/_nuxt/e600ee5.js
- -rw-r--r-- 0.0 unx 1235 b- 629 defN 1981-01-01 01:01:02 1230ab7e assets/public/_nuxt/e918fe0.js
- -rw-r--r-- 0.0 unx 18428 b- 4433 defN 1981-01-01 01:01:02 6198e87f assets/public/_nuxt/ebf3ed5.js
- -rw-r--r-- 0.0 unx 775 b- 370 defN 1981-01-01 01:01:02 1a8dcd1f assets/public/_nuxt/ee55788.js
- -rw-r--r-- 0.0 unx 105 b- 90 defN 1981-01-01 01:01:02 83c6ceca assets/public/_nuxt/ee6f48d.js
- -rw-r--r-- 0.0 unx 1334 b- 617 defN 1981-01-01 01:01:02 b57c4b03 assets/public/_nuxt/eea0a23.js
- -rw-r--r-- 0.0 unx 326440 b- 92855 defN 1981-01-01 01:01:02 2f0cf894 assets/public/_nuxt/f2f5086.js
- -rw-r--r-- 0.0 unx 12831 b- 4431 defN 1981-01-01 01:01:02 876a795d assets/public/_nuxt/f454689.js
- -rw-r--r-- 0.0 unx 21464 b- 6199 defN 1981-01-01 01:01:02 9c6fd997 assets/public/_nuxt/f54f82d.js
- -rw-r--r-- 0.0 unx 10798 b- 3828 defN 1981-01-01 01:01:02 97500da1 assets/public/_nuxt/f5ab458.js
- -rw-r--r-- 0.0 unx 7431 b- 2865 defN 1981-01-01 01:01:02 1ae91075 assets/public/_nuxt/f6244f1.js
- -rw-r--r-- 0.0 unx 4392 b- 1411 defN 1981-01-01 01:01:02 c294d56a assets/public/_nuxt/f6fa63c.js
- -rw-r--r-- 0.0 unx 18594 b- 6308 defN 1981-01-01 01:01:02 f99bf96e assets/public/_nuxt/f93a4e3.js
- -rw-r--r-- 0.0 unx 2616 b- 1012 defN 1981-01-01 01:01:02 8999dfba assets/public/_nuxt/f993a73.js
- -rw-r--r-- 0.0 unx 5606 b- 2485 defN 1981-01-01 01:01:02 9d159254 assets/public/_nuxt/f9c8251.js
- -rw-r--r-- 0.0 unx 4358 b- 1374 defN 1981-01-01 01:01:02 cfc8b7ce assets/public/_nuxt/faf8f32.js
- -rw-r--r-- 0.0 unx 10283 b- 3093 defN 1981-01-01 01:01:02 173a9e72 assets/public/_nuxt/fb09471.js
- -rw-r--r-- 0.0 unx 5864 b- 2087 defN 1981-01-01 01:01:02 75e10b01 assets/public/_nuxt/ff95dfa.js
+ -rw-r--r-- 0.0 unx 6606 b- 2055 defN 1981-01-01 01:01:02 20760b1b assets/public/_nuxt/b387789.js
+ -rw-r--r-- 0.0 unx 417 b- 215 defN 1981-01-01 01:01:02 a74b64d8 assets/public/_nuxt/b7d113e.js
+ -rw-r--r-- 0.0 unx 25917 b- 7332 defN 1981-01-01 01:01:02 dfe5a468 assets/public/_nuxt/b7df27d.js
+ -rw-r--r-- 0.0 unx 32462 b- 8369 defN 1981-01-01 01:01:02 aecc4884 assets/public/_nuxt/b7ee2f2.js
+ -rw-r--r-- 0.0 unx 728 b- 435 defN 1981-01-01 01:01:02 e99a63c0 assets/public/_nuxt/bb0e24e.js
+ -rw-r--r-- 0.0 unx 15778 b- 5344 defN 1981-01-01 01:01:02 0c638f42 assets/public/_nuxt/bc178cb.js
+ -rw-r--r-- 0.0 unx 21464 b- 6199 defN 1981-01-01 01:01:02 a532615e assets/public/_nuxt/bca89c4.js
+ -rw-r--r-- 0.0 unx 10283 b- 3094 defN 1981-01-01 01:01:02 9d4086e7 assets/public/_nuxt/bea0d6b.js
+ -rw-r--r-- 0.0 unx 26863 b- 6502 defN 1981-01-01 01:01:02 c02f505a assets/public/_nuxt/c0823d5.js
+ -rw-r--r-- 0.0 unx 3901 b- 1604 defN 1981-01-01 01:01:02 a98b498f assets/public/_nuxt/cb6c36a.js
+ -rw-r--r-- 0.0 unx 4567 b- 1365 defN 1981-01-01 01:01:02 68f82dba assets/public/_nuxt/cd76291.js
+ -rw-r--r-- 0.0 unx 6360 b- 2192 defN 1981-01-01 01:01:02 fb3d3abf assets/public/_nuxt/cf3975e.js
+ -rw-r--r-- 0.0 unx 7431 b- 2864 defN 1981-01-01 01:01:02 a6d42c2f assets/public/_nuxt/d3e15b3.js
+ -rw-r--r-- 0.0 unx 1919 b- 821 defN 1981-01-01 01:01:02 1ee53fd2 assets/public/_nuxt/d43b905.js
+ -rw-r--r-- 0.0 unx 502 b- 282 defN 1981-01-01 01:01:02 a6a2ad2e assets/public/_nuxt/d6fe516.js
+ -rw-r--r-- 0.0 unx 2933 b- 1132 defN 1981-01-01 01:01:02 b3ef74c3 assets/public/_nuxt/dc47e85.js
+ -rw-r--r-- 0.0 unx 1979 b- 753 defN 1981-01-01 01:01:02 9e96581a assets/public/_nuxt/dc8daab.js
+ -rw-r--r-- 0.0 unx 2431 b- 952 defN 1981-01-01 01:01:02 fc99f037 assets/public/_nuxt/dcb6bd8.js
+ -rw-r--r-- 0.0 unx 14843 b- 5073 defN 1981-01-01 01:01:02 877469ed assets/public/_nuxt/dd05d7a.js
+ -rw-r--r-- 0.0 unx 10596 b- 3016 defN 1981-01-01 01:01:02 4541a08a assets/public/_nuxt/e4810d5.js
+ -rw-r--r-- 0.0 unx 5174 b- 2045 defN 1981-01-01 01:01:02 4934f090 assets/public/_nuxt/e55a633.js
+ -rw-r--r-- 0.0 unx 5864 b- 2086 defN 1981-01-01 01:01:02 896a8efb assets/public/_nuxt/e6df9ec.js
+ -rw-r--r-- 0.0 unx 26869 b- 6069 defN 1981-01-01 01:01:02 97f617f9 assets/public/_nuxt/e7e66f4.js
+ -rw-r--r-- 0.0 unx 15874 b- 5039 defN 1981-01-01 01:01:02 55e8cc9f assets/public/_nuxt/e932b13.js
+ -rw-r--r-- 0.0 unx 19628 b- 5655 defN 1981-01-01 01:01:02 0a88b62d assets/public/_nuxt/eae1643.js
+ -rw-r--r-- 0.0 unx 412 b- 263 defN 1981-01-01 01:01:02 437fef0d assets/public/_nuxt/ed18518.js
+ -rw-r--r-- 0.0 unx 7055 b- 2424 defN 1981-01-01 01:01:02 7214b9d2 assets/public/_nuxt/ed1a1d5.js
+ -rw-r--r-- 0.0 unx 5606 b- 2485 defN 1981-01-01 01:01:02 e316d36b assets/public/_nuxt/f091b8e.js
+ -rw-r--r-- 0.0 unx 775 b- 370 defN 1981-01-01 01:01:02 35dad783 assets/public/_nuxt/f317acb.js
+ -rw-r--r-- 0.0 unx 17149 b- 5242 defN 1981-01-01 01:01:02 386f0f4f assets/public/_nuxt/f5ad4d3.js
+ -rw-r--r-- 0.0 unx 4633 b- 1888 defN 1981-01-01 01:01:02 fbbc1db2 assets/public/_nuxt/f7a3d0c.js
+ -rw-r--r-- 0.0 unx 2042 b- 936 defN 1981-01-01 01:01:02 c7110809 assets/public/_nuxt/f801bd8.js
+ -rw-r--r-- 0.0 unx 20119 b- 6982 defN 1981-01-01 01:01:02 96c5bf9c assets/public/_nuxt/f94d77c.js
+ -rw-r--r-- 0.0 unx 2952 b- 1391 defN 1981-01-01 01:01:02 fa416791 assets/public/_nuxt/f9d78dd.js
+ -rw-r--r-- 0.0 unx 20770 b- 5896 defN 1981-01-01 01:01:02 38b608e6 assets/public/_nuxt/fd6bc64.js
+ -rw-r--r-- 0.0 unx 105 b- 90 defN 1981-01-01 01:01:02 280d41b7 assets/public/_nuxt/fddff61.js
-rw-r--r-- 0.0 unx 6076 b- 3737 defN 1981-01-01 01:01:02 a2322dc5 assets/public/_nuxt/fonts/absicons.34dd222.woff
-rw-r--r-- 0.0 unx 6000 b- 3716 defN 1981-01-01 01:01:02 f3e1c391 assets/public/_nuxt/fonts/absicons.9055ca6.ttf
-rw-r--r-- 0.0 unx 6168 b- 3762 defN 1981-01-01 01:01:02 f358d7dd assets/public/_nuxt/fonts/absicons.b12f032.eot
- -rw-r--r-- 0.0 unx 15328 b- 5910 defN 1981-01-01 01:01:02 445cd2ad assets/public/_nuxt/img/absicons.3bfb178.svg
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/account/index.html
+ -rw-r--r-- 0.0 unx 15295 b- 5907 defN 1981-01-01 01:01:02 f2ada283 assets/public/_nuxt/img/absicons.4e08e15.svg
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/account/index.html
-rw-r--r-- 0.0 unx 107910 b- 107910 stor 1981-01-01 01:01:02 79bc2fba assets/public/book_placeholder.jpg
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/bookshelf/add-podcast/index.html
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/bookshelf/authors/index.html
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/bookshelf/collections/index.html
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/bookshelf/index.html
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/bookshelf/latest/index.html
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/bookshelf/library/index.html
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/bookshelf/playlists/index.html
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/bookshelf/series/index.html
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/connect/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/bookshelf/add-podcast/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/bookshelf/authors/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/bookshelf/collections/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/bookshelf/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/bookshelf/latest/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/bookshelf/library/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/bookshelf/playlists/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/bookshelf/series/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/connect/index.html
-rw-r--r-- 0.0 unx 53351 b- 13622 defN 1981-01-01 01:01:02 f8b60138 assets/public/cordova.js
-rw-r--r-- 0.0 unx 609 b- 252 defN 1981-01-01 01:01:02 52fd5605 assets/public/cordova_plugins.js
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/downloading/index.html
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/downloads/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/downloading/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/downloads/index.html
-rw-r--r-- 0.0 unx 1411 b- 1416 defN 1981-01-01 01:01:02 1f058299 assets/public/favicon.ico
-rw-r--r-- 0.0 unx 356840 b- 173019 defN 1981-01-01 01:01:02 ae858e24 assets/public/fonts/MaterialIcons-Regular.ttf
-rw-r--r-- 0.0 unx 339168 b- 190155 defN 1981-01-01 01:01:02 86e650f4 assets/public/fonts/MaterialIconsOutlined-Regular.otf
- -rw-r--r-- 0.0 unx 4513 b- 2009 defN 1981-01-01 01:01:02 48c27fea assets/public/fonts/Source_Sans_Pro/OFL.txt
+ -rw-r--r-- 0.0 unx 4420 b- 1965 defN 1981-01-01 01:01:02 8d05f2b7 assets/public/fonts/Source_Sans_Pro/OFL.txt
-rw-r--r-- 0.0 unx 246624 b- 107153 defN 1981-01-01 01:01:02 ccadf1f4 assets/public/fonts/Source_Sans_Pro/SourceSansPro-Light.ttf
-rw-r--r-- 0.0 unx 248132 b- 108287 defN 1981-01-01 01:01:02 509e5e23 assets/public/fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf
-rw-r--r-- 0.0 unx 247892 b- 108000 defN 1981-01-01 01:01:02 52e62b72 assets/public/fonts/Source_Sans_Pro/SourceSansPro-SemiBold.ttf
- -rw-r--r-- 0.0 unx 4769 b- 2032 defN 1981-01-01 01:01:02 5b084670 assets/public/fonts/Ubuntu_Mono/UFL.txt
+ -rw-r--r-- 0.0 unx 4673 b- 1991 defN 1981-01-01 01:01:02 88e9330a assets/public/fonts/Ubuntu_Mono/UFL.txt
-rw-r--r-- 0.0 unx 189892 b- 106384 defN 1981-01-01 01:01:02 882140db assets/public/fonts/Ubuntu_Mono/UbuntuMono-Regular.ttf
-rw-r--r-- 0.0 unx 6168 b- 3762 defN 1981-01-01 01:01:02 f358d7dd assets/public/fonts/absicons/absicons.eot
- -rw-r--r-- 0.0 unx 15328 b- 5910 defN 1981-01-01 01:01:02 445cd2ad assets/public/fonts/absicons/absicons.svg
+ -rw-r--r-- 0.0 unx 15295 b- 5907 defN 1981-01-01 01:01:02 f2ada283 assets/public/fonts/absicons/absicons.svg
-rw-r--r-- 0.0 unx 6000 b- 3716 defN 1981-01-01 01:01:02 f3e1c391 assets/public/fonts/absicons/absicons.ttf
-rw-r--r-- 0.0 unx 6076 b- 3737 defN 1981-01-01 01:01:02 a2322dc5 assets/public/fonts/absicons/absicons.woff
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/index.html
- -rw-r--r-- 0.0 unx 119114 b- 28475 defN 1981-01-01 01:01:02 f1eafb4f assets/public/libarchive/wasm-gen/libarchive.js
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/index.html
+ -rw-r--r-- 0.0 unx 119100 b- 28469 defN 1981-01-01 01:01:02 fce35553 assets/public/libarchive/wasm-gen/libarchive.js
-rw-r--r-- 0.0 unx 896488 b- 402044 defN 1981-01-01 01:01:02 79960ed1 assets/public/libarchive/wasm-gen/libarchive.wasm
-rw-r--r-- 0.0 unx 86588 b- 23453 defN 1981-01-01 01:01:02 6523a9eb assets/public/libarchive/worker-bundle.js
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/localMedia/folders/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/localMedia/folders/index.html
-rw-r--r-- 0.0 unx 4257 b- 1408 defN 1981-01-01 01:01:02 cb97014d assets/public/plugins/cordova-plugin-screen-orientation/www/screenorientation.js
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/search/index.html
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/settings/index.html
- -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 9c41c1f6 assets/public/stats/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/search/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/settings/index.html
+ -rw-r--r-- 0.0 unx 2695 b- 1030 defN 1981-01-01 01:01:02 31e2bf5e assets/public/stats/index.html
-rw-r--r-- 0.0 unx 116707 b- 116707 stor 1981-01-01 01:01:02 12b1e15a assets/public/wood_panels.jpg
If you have any ideas there, I gladly try again.
Complete "short output" from the scanners here:
$ iod repo apkscan
Processing '/web/ftp/repo/fdroid/repo/com.audiobookshelf.app_108.apk' (com.audiobookshelf.app) as #1
- Checking the app's AndroidManifest.xml …
! repo/com.audiobookshelf.app_108.apk declares flag(s): usesCleartextTraffic
! repo/com.audiobookshelf.app_108.apk declares sensitive permission(s): android.permission.READ_EXTERNAL_STORAGE
! repo/com.audiobookshelf.app_108.apk contains signature block blobs: 0x504b4453 (DEPENDENCY_INFO_BLOCK; GOOGLE)
So I guess the storage permission is for accessing audio books stored locally on the device?
Meanwhile, AudioBookshelf should show up here with the next sync around 7 pm UTC. Be welcome to pick a badge to link there e.g. from your Readme :smiley:
PS: I had to add…
AntiFeatures:
NonFreeComp:
en-US: The app contains libraries of Google Cast, Google Mobile Services and Firebase.
de: Die App enthält Bibliotheken von Google Cast, Google Mobile Services und Firebase.
NonFreeNet:
en-US: The app potentially connects to Google Servers (Firebase).
de: Die App verbindet sich potentiell zu Google Servern (Firebase).
Are those libraries really needed? Maybe a FOSS flavor could be established coming without them?
Could the app be added to F-droid? It would be great exposure for the app and for the users. Nowadays, I don't download almost anything from the Play Store and would still like to download the app.
Thanks ahead of time!
You can check the link below on how to submit the app https://f-droid.org/en/contribute/