-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #406 from lovegaoshi/dev
fix: play store
- Loading branch information
Showing
46 changed files
with
946 additions
and
1,244 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
// GMHikaru | ||
import { fetchYTIChannel } from '../../src/utils/mediafetch/ytbchannel'; | ||
import fetcher from '../../src/utils/mediafetch/bilivideo'; | ||
test('bilivideo', async () => { | ||
const result = await fetchYTIChannel('@MioriCelesta'); | ||
console.log(result); | ||
return; | ||
const content = await fetcher.regexFetch({ | ||
import fetcher from '../../src/utils/mediafetch/ytbchannel'; | ||
test('YT channel', async () => { | ||
// HACK: due to yti limiatations this only gets up to 30 videos | ||
const result = await fetcher.regexFetch({ | ||
reExtracted: fetcher.regexSearchMatch.exec( | ||
'https://www.bilibili.com/video/BV1KW4y1p7oT/?spm_id_from=333.999.0.0' | ||
'https://www.youtube.com/c/@MioriCelesta' | ||
)!, | ||
}); | ||
// console.log(content); | ||
expect(content?.songList[0]?.id).not.toBeNull(); | ||
expect(result.songList[0]?.id).not.toBeNull(); | ||
}); |
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 |
---|---|---|
|
@@ -32,14 +32,14 @@ | |
"@react-native-community/netinfo": "^11.3.1", | ||
"@react-native-cookies/cookies": "^6.2.1", | ||
"@react-native-masked-view/masked-view": "^0.3.1", | ||
"@react-native/babel-preset": "^0.74.81", | ||
"@react-native/metro-config": "^0.74.81", | ||
"@react-native/babel-preset": "^0.74.83", | ||
"@react-native/metro-config": "^0.74.83", | ||
"@react-navigation/drawer": "^6.6.15", | ||
"@react-navigation/material-top-tabs": "^6.6.13", | ||
"@react-navigation/native": "^6.1.17", | ||
"@react-navigation/native-stack": "^6.9.26", | ||
"@sentry/react-native": "^5.22.0", | ||
"@sharcoux/slider": "^7.1.1", | ||
"@sentry/react-native": "^5.22.1", | ||
"@sharcoux/slider": "^7.2.1", | ||
"@shopify/flash-list": "^1.6.4", | ||
"@shopify/react-native-skia": "1.2.3", | ||
"axios": "^1.6.8", | ||
|
@@ -51,10 +51,10 @@ | |
"colord": "^2.9.3", | ||
"crypto-js": "^4.2.0", | ||
"d3": "^7.9.0", | ||
"dayjs": "^1.11.10", | ||
"dayjs": "^1.11.11", | ||
"deepmerge": "^4.3.1", | ||
"dropbox": "git+https://[email protected]/lovegaoshi/dropbox-sdk-js.git", | ||
"expo": "^50.0.17", | ||
"expo": "^50.0.18", | ||
"expo-clipboard": "~5.0.1", | ||
"expo-document-picker": "~11.10.1", | ||
"expo-image": "1.10.6", | ||
|
@@ -63,32 +63,32 @@ | |
"fflate": "^0.8.2", | ||
"ffmpeg-kit-react-native": "^6.0.2", | ||
"he": "^1.2.0", | ||
"i18next": "^23.11.2", | ||
"i18next": "^23.11.3", | ||
"js-base64": "^3.7.7", | ||
"libmuse": "git+https://github.com/lovegaoshi/muse.git#apm-release", | ||
"lottie-react-native": "^6.7.2", | ||
"lru-cache": "7.14.0", | ||
"md5": "^2.3.0", | ||
"metro": "^0.80.8", | ||
"metro": "^0.80.9", | ||
"patch-package": "^8.0.0", | ||
"postinstall-postinstall": "^2.1.0", | ||
"qs": "^6.12.1", | ||
"react": "18.2.0", | ||
"react": "18.3.1", | ||
"react-i18next": "^14.1.1", | ||
"react-native": "0.73.7", | ||
"react-native": "0.73.8", | ||
"react-native-app-auth": "^7.1.3", | ||
"react-native-background-timer": "git+https://github.com/lovegaoshi/react-native-background-timer.git", | ||
"react-native-blob-jsi-helper": "^0.3.1", | ||
"react-native-blob-util": "^0.19.9", | ||
"react-native-device-info": "^10.13.2", | ||
"react-native-draggable-flatlist": "^4.0.1", | ||
"react-native-gesture-handler": "2.16.0", | ||
"react-native-gesture-handler": "2.16.1", | ||
"react-native-get-random-values": "^1.11.0", | ||
"react-native-image-colors": "^2.4.0", | ||
"react-native-lyric": "git+https://github.com/lovegaoshi/react-native-lyric.git#dev", | ||
"react-native-pager-view": "^6.3.1", | ||
"react-native-paper": "^5.12.3", | ||
"react-native-qrcode-svg": "^6.3.0", | ||
"react-native-qrcode-svg": "^6.3.1", | ||
"react-native-reanimated": "^3.8.1", | ||
"react-native-safe-area-context": "^4.10.1", | ||
"react-native-screens": "3.31.1", | ||
|
@@ -100,42 +100,42 @@ | |
"react-native-text-ticker": "git+https://[email protected]/lovegaoshi/react-native-text-ticker.git", | ||
"react-native-track-player": "git+https://[email protected]/lovegaoshi/react-native-track-player.git#APM", | ||
"react-native-url-polyfill": "^2.0.0", | ||
"react-native-vector-icons": "^10.0.3", | ||
"react-native-vector-icons": "^10.1.0", | ||
"react-native-video": "git+https://github.com/lovegaoshi/react-native-video.git#dev-android-cache", | ||
"react-native-webview": "^13.8.6", | ||
"react-native-webview": "^13.8.7", | ||
"sp-react-native-in-app-updates": "^1.4.0", | ||
"use-debounce": "^10.0.0", | ||
"uuid": "^9.0.1", | ||
"youtubei.js": "^9.3.0", | ||
"youtubei.js": "^9.4.0", | ||
"ytdl-core": "git+https://[email protected]/lovegaoshi/node-ytdl-core.git", | ||
"zustand": "^4.5.2" | ||
}, | ||
"resolutions": { | ||
"metro": "^0.80.8" | ||
"metro": "^0.80.9" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.24.4", | ||
"@babel/core": "^7.24.5", | ||
"@babel/plugin-syntax-import-attributes": "^7.24.1", | ||
"@babel/preset-env": "^7.24.4", | ||
"@babel/preset-env": "^7.24.5", | ||
"@babel/preset-typescript": "^7.24.1", | ||
"@babel/runtime": "^7.24.4", | ||
"@babel/runtime": "^7.24.5", | ||
"@react-native-community/eslint-config": "^3.2.0", | ||
"@tsconfig/react-native": "^3.0.5", | ||
"@types/base-64": "^1.0.2", | ||
"@types/d3": "^7.4.3", | ||
"@types/he": "^1.2.3", | ||
"@types/jest": "^29.5.12", | ||
"@types/md5": "^2.3.5", | ||
"@types/node": "^20.12.7", | ||
"@types/react": "^18.2.79", | ||
"@types/node": "^20.12.8", | ||
"@types/react": "^18.3.1", | ||
"@types/react-native": "^0.73.0", | ||
"@types/react-native-background-timer": "^2.0.2", | ||
"@types/react-native-share-menu": "^5.0.5", | ||
"@types/react-native-video": "^5.0.20", | ||
"@types/react-test-renderer": "^18.0.7", | ||
"@types/react-test-renderer": "^18.3.0", | ||
"@types/uuid": "^9.0.8", | ||
"@typescript-eslint/eslint-plugin": "^7.7.1", | ||
"@typescript-eslint/parser": "^7.7.1", | ||
"@typescript-eslint/eslint-plugin": "^7.8.0", | ||
"@typescript-eslint/parser": "^7.8.0", | ||
"@welldone-software/why-did-you-render": "^8.0.1", | ||
"argparse": "^2.0.1", | ||
"babel-jest": "^29.7.0", | ||
|
@@ -149,14 +149,14 @@ | |
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"eslint-plugin-react": "^7.34.1", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"eslint-plugin-react-hooks": "^4.6.2", | ||
"gts": "^5.3.0", | ||
"jest": "^29.7.0", | ||
"metro-react-native-babel-preset": "0.77.0", | ||
"prettier": "^3.2.5", | ||
"react-native-clean-project": "^4.0.3", | ||
"react-native-dotenv": "^3.4.11", | ||
"react-test-renderer": "18.2.0", | ||
"react-test-renderer": "18.3.1", | ||
"reactotron-react-native": "^5.1.6", | ||
"rimraf": "^5.0.5", | ||
"typescript": "5.4.5" | ||
|
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/node_modules/react-native-tab-view/src/TabBar.tsx b/node_modules/react-native-tab-view/src/TabBar.tsx | ||
index e8d0b4c..8773976 100644 | ||
--- a/node_modules/react-native-tab-view/src/TabBar.tsx | ||
+++ b/node_modules/react-native-tab-view/src/TabBar.tsx | ||
@@ -448,7 +448,7 @@ export function TabBar<T extends Route>({ | ||
{renderTabBarItem ? ( | ||
renderTabBarItem(props) | ||
) : ( | ||
- <TabBarItem {...props} /> | ||
+ <TabBarItem {...props} key={props.key} /> | ||
)} | ||
</> | ||
); |
This file was deleted.
Oops, something went wrong.
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
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
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.