Skip to content

Commit

Permalink
chorE: dep upg
Browse files Browse the repository at this point in the history
  • Loading branch information
lovegaoshi committed Nov 12, 2024
1 parent 676e518 commit d5924cb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion azusa-player-mobile
Submodule azusa-player-mobile updated 42 files
+2 −1 .vscode/settings.json
+8 −0 __tests__/mediafetch/ytbsearch.test.ts
+1 −0 android/app/src/main/AndroidManifest.xml
+1 −1 android/gradle.properties
+1 −1 android/settings.gradle
+383 −349 ios/Podfile.lock
+6 −6 package.json
+0 −0 patches/@react-navigation+drawer+7.0.1.patch
+90 −0 patches/react-native-draggable-flatlist+4.0.1.patch
+0 −17 patches/react-native-reanimated+3.16.1.patch
+6 −2 src/App.tsx
+1 −2 src/AzusaPlayer.tsx
+1 −0 src/components/billing/View.tsx
+4 −0 src/components/billing/bill.ts
+6 −4 src/components/bottomtab/NoxBottomTab.tsx
+8 −2 src/components/explore/SongRow.tsx
+4 −1 src/components/explore/SongTab.tsx
+12 −11 src/components/landscape/LandscapeActions.tsx
+6 −1 src/components/player/PlayerTopInfo.tsx
+9 −7 src/components/player/View.tsx
+5 −2 src/components/player/controls/Progress.tsx
+4 −1 src/components/playlist/BiliSearch/BiliSearchbar.tsx
+1 −3 src/components/playlist/Menu/PlaylistMenuButton.tsx
+3 −3 src/components/playlist/SongList/SongList.tsx
+2 −2 src/components/playlist/View.tsx
+10 −6 src/components/playlists/Playlists.tsx
+1 −1 src/components/playlists/ShuffleAllButton.tsx
+4 −2 src/components/playlists/View.tsx
+9 −1 src/components/setting/DeveloperSettings.tsx
+1 −1 src/components/setting/View.tsx
+1 −1 src/components/setting/appearances/View.tsx
+3 −3 src/enums/BottomTab.ts
+1 −1 src/enums/Playlist.ts
+11 −3 src/hooks/useNavigation.ts
+3 −3 src/hooks/usePlayback.migrate.ts
+2 −2 src/hooks/usePlaybackAA.ts
+2 −2 src/hooks/usePlaybackCarplay.ts
+4 −4 src/hooks/useSetupPlayer.ts
+48 −0 src/hooks/useVIP.ts
+9 −0 src/types/component.d.ts
+21 −1 src/utils/Bilibili/BiliUser.ts
+123 −75 yarn.lock
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
"react-window": "^1.8.10",
"stream-browserify": "^3.0.0",
"util": "^0.12.5",
"uuid": "^11.0.2",
"uuid": "^11.0.3",
"youtubei.js": "^11.0.1",
"zustand": "^5.0.1"
},
Expand Down
2 changes: 2 additions & 0 deletions src/stores/useInitializeStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { initializeR128Gain } from '@APM/utils/ffmpeg/r128Store';
import { initialize as initializeAppStore } from '@APM/stores/appStore';
import { useNoxSetting } from '@APM/stores/useApp';
import { initPlayerObject, importStorageRaw } from '@utils/ChromeStorage';
import { initialize as initializeRegexStore } from './regexStore';
import useApp from '@stores/useApp';
import versionUpdate from '@utils/versionupdater/versionupdater';

Expand All @@ -12,6 +13,7 @@ const useInitializeStore = () => {
const initializeStores = async () => {
await versionUpdate();
initializeAppStore();
await initializeRegexStore();
initializeR128Gain();
const initializedObject = await initPlayerObject();
initApp(initializedObject);
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9404,7 +9404,7 @@ __metadata:
tsconfig-paths-webpack-plugin: "npm:^4.1.0"
typescript: "npm:^5.6.3"
util: "npm:^0.12.5"
uuid: "npm:^11.0.2"
uuid: "npm:^11.0.3"
webpack: "npm:^5.96.1"
webpack-cli: "npm:^5.1.4"
webpack-config-utils: "npm:^2.3.1"
Expand Down Expand Up @@ -12429,12 +12429,12 @@ __metadata:
languageName: node
linkType: hard

"uuid@npm:^11.0.2":
version: 11.0.2
resolution: "uuid@npm:11.0.2"
"uuid@npm:^11.0.3":
version: 11.0.3
resolution: "uuid@npm:11.0.3"
bin:
uuid: dist/esm/bin/uuid
checksum: 10c0/bd0670a0d6f77f1932da7544c51c32ceb467f3835382df2265f3275c4981d32c136a08a4369fb027ecfffd0b2ae48f19a28266ef636c7347264d5720e85d5ba0
checksum: 10c0/cee762fc76d949a2ff9205770334699e0043d52bb766472593a25f150077c9deed821230251ea3d6ab3943a5ea137d2826678797f1d5f6754c7ce5ce27e9f7a6
languageName: node
linkType: hard

Expand Down

0 comments on commit d5924cb

Please sign in to comment.