-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pre-resolve network feature and HLS patching
- Introduced a new button and tooltip for pre-resolve network settings in `BrtPlayer.vue`. - Added `HlsPatched` class to handle custom HLS loading logic. - Implemented `resolveMasterManifestWorker` for resolving master manifests in a web worker. - Added utility functions for segment handling and network requests. - Updated dependencies in `package.json` to include `p-limit` and `ts-retry`. - Configured server URL in `capacitor.config.json` for development.
- Loading branch information
1 parent
95a323f
commit 3e55f90
Showing
16 changed files
with
581 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,7 @@ | |
}, | ||
"bundledWebRuntime": false, | ||
"webDir": "www", | ||
"server": {} | ||
"server": { | ||
"url": "http://10.0.5.2:9500" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN | ||
include ':capacitor-android' | ||
project(':capacitor-android').projectDir = new File('../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/android/capacitor') | ||
project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor') | ||
|
||
include ':capacitor-community-firebase-analytics' | ||
project(':capacitor-community-firebase-analytics').projectDir = new File('../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor-community/firebase-analytics/android') | ||
project(':capacitor-community-firebase-analytics').projectDir = new File('../node_modules/@capacitor-community/firebase-analytics/android') | ||
|
||
include ':capacitor-app' | ||
project(':capacitor-app').projectDir = new File('../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/app/android') | ||
project(':capacitor-app').projectDir = new File('../node_modules/@capacitor/app/android') | ||
|
||
include ':capacitor-browser' | ||
project(':capacitor-browser').projectDir = new File('../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/browser/android') | ||
project(':capacitor-browser').projectDir = new File('../node_modules/@capacitor/browser/android') | ||
|
||
include ':capacitor-device' | ||
project(':capacitor-device').projectDir = new File('../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/device/android') | ||
project(':capacitor-device').projectDir = new File('../node_modules/@capacitor/device/android') | ||
|
||
include ':capacitor-filesystem' | ||
project(':capacitor-filesystem').projectDir = new File('../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/filesystem/android') | ||
project(':capacitor-filesystem').projectDir = new File('../node_modules/@capacitor/filesystem/android') | ||
|
||
include ':capacitor-haptics' | ||
project(':capacitor-haptics').projectDir = new File('../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/haptics/android') | ||
project(':capacitor-haptics').projectDir = new File('../node_modules/@capacitor/haptics/android') | ||
|
||
include ':capacitor-preferences' | ||
project(':capacitor-preferences').projectDir = new File('../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/preferences/android') | ||
project(':capacitor-preferences').projectDir = new File('../node_modules/@capacitor/preferences/android') | ||
|
||
include ':capacitor-share' | ||
project(':capacitor-share').projectDir = new File('../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/share/android') | ||
project(':capacitor-share').projectDir = new File('../node_modules/@capacitor/share/android') | ||
|
||
include ':capacitor-status-bar' | ||
project(':capacitor-status-bar').projectDir = new File('../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@capacitor/status-bar/android') | ||
project(':capacitor-status-bar').projectDir = new File('../node_modules/@capacitor/status-bar/android') | ||
|
||
include ':hugotomazi-capacitor-navigation-bar' | ||
project(':hugotomazi-capacitor-navigation-bar').projectDir = new File('../node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@hugotomazi/capacitor-navigation-bar/android') | ||
project(':hugotomazi-capacitor-navigation-bar').projectDir = new File('../node_modules/@hugotomazi/capacitor-navigation-bar/android') |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,7 @@ | |
}, | ||
"bundledWebRuntime": false, | ||
"webDir": "www", | ||
"server": {} | ||
"server": { | ||
"url": "http://10.0.5.2:9500" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "git.shin.animevsub", | ||
"version": "1.8.39", | ||
"version": "1.8.42", | ||
"description": "Watch Anime without advertising, free, private.", | ||
"author": "Tachibana Shin <[email protected]>", | ||
"private": true, | ||
|
@@ -22,7 +22,6 @@ | |
"@capacitor/share": "^5.0.8", | ||
"@capacitor/status-bar": "^5.0.8", | ||
"@hugotomazi/capacitor-navigation-bar": "^3.0.0", | ||
"@jcesarmobile/ssl-skip": "^0.2.0", | ||
"cordova-plugin-screen-orientation": "^3.0.4" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.