Skip to content

Commit

Permalink
chore: yarn dep
Browse files Browse the repository at this point in the history
  • Loading branch information
lovegaoshi committed Nov 8, 2024
1 parent dc30915 commit 088fa89
Show file tree
Hide file tree
Showing 4 changed files with 129 additions and 220 deletions.
2 changes: 1 addition & 1 deletion azusa-player-mobile
Submodule azusa-player-mobile updated 93 files
+16 −0 .github/workflows/android-weekly.yml
+16 −0 .github/workflows/play-release.yml
+11 −0 .yarn/patches/@react-native-gradle-plugin-npm-0.76.1-f19c439d00.patch
+55 −0 .yarn/patches/react-native-npm-0.76.1-c738a2fa39.patch
+2 −2 __tests__/mediafetch/ytbplaylist.test.ts
+34 −6 android/app/src/main/java/com/noxplay/noxplayer/APMWidget.kt
+0 −2 android/app/src/main/java/com/noxplay/noxplayer/APMWidgetModule.kt
+46 −13 android/app/src/main/java/com/noxplay/noxplayer/MainActivity.kt
+19 −21 android/app/src/main/java/com/noxplay/noxplayer/MainApplication.kt
+7 −0 android/app/src/main/java/com/noxplay/noxplayer/NoxModule.kt
+7 −2 android/app/src/main/res/layout/a_p_m_widget.xml
+1 −0 android/app/src/main/res/values/strings.xml
+1 −1 android/build.gradle
+1 −1 android/gradle.properties
+11 −3 android/settings.gradle
+4 −1 app.json
+4 −4 ios/APM.xcodeproj/project.pbxproj
+2 −1 ios/Gemfile
+1 −1 ios/Podfile
+41 −34 package.json
+0 −12 patches/@react-native-masked-view+masked-view+0.3.1.patch
+20 −0 patches/@react-navigation+drawer+7.0.0.patch
+13 −0 patches/@sharcoux+slider+8.0.4.patch
+13 −0 patches/react-native-paper+5.12.5.patch
+101 −76 patches/react-native-screens+4.0.0.patch
+0 −13 patches/react-native-tab-view+3.5.2.patch
+10 −1 src/AzusaPlayer.tsx
+9 −8 src/components/bottomtab/NoxBottomTab.tsx
+9 −1 src/components/buttons/AddPlaylistButton.tsx
+22 −0 src/components/buttons/ShadowedElement.tsx
+2 −1 src/components/commonui/AutoComplete.tsx
+107 −0 src/components/commonui/Collapsible.tsx
+0 −2 src/components/dialogs/GenericInputDialog.tsx
+1 −1 src/components/dialogs/NoxInput.tsx
+13 −16 src/components/explore/Bilibili.tsx
+4 −8 src/components/explore/View.tsx
+15 −13 src/components/explore/YTMusic.tsx
+0 −63 src/components/explore/bilibili/useBiliExplore.tsx
+0 −43 src/components/explore/ytmusic/useYTMExplore.tsx
+4 −0 src/components/landscape/AzusaPlayerLandscape.tsx
+19 −14 src/components/login/SiteSelector.tsx
+18 −4 src/components/login/google/YTM.tsx
+1 −1 src/components/login/google/useYTMLogin.ts
+14 −0 src/components/login/useCollapsible.ts
+2 −2 src/components/player/Lyric.tsx
+2 −0 src/components/player/PlayerTopInfo.tsx
+6 −11 src/components/player/TrackInfo/ABSliderMenu.tsx
+2 −3 src/components/player/TrackInfo/TrackInfoTemplate.tsx
+2 −2 src/components/player/controls/Progress.tsx
+2 −6 src/components/player/controls/ProgressBar.tsx
+28 −4 src/components/player/controls/usePlayerControls.ts
+3 −2 src/components/playlist/Info/PlaylistInfo.tsx
+3 −0 src/components/playlist/Menu/PlaylistMenuButton.tsx
+2 −2 src/components/playlist/SongList/SongInfo.tsx
+10 −11 src/components/playlist/SongList/SongList.tsx
+7 −4 src/components/playlists/Playlists.tsx
+9 −1 src/components/playlists/ShuffleAllButton.tsx
+7 −1 src/components/playlists/TimerButton.tsx
+0 −2 src/components/playlists/TimerDialog.tsx
+8 −2 src/components/playlists/View.tsx
+1 −0 src/components/setting/SkinSearchbar.tsx
+0 −5 src/components/setting/SplashSettings.tsx
+5 −4 src/components/setting/appearances/NoWeebDialog.tsx
+0 −1 src/components/setting/sync/PersonalSyncButton.tsx
+12 −6 src/components/setting/useRenderSetting.tsx
+1 −1 src/components/style.ts
+1 −3 src/components/styles/AzusaThemeRaw.ts
+43 −0 src/components/styles/NoxMD3ThemeConvert.js
+12 −16 src/components/styles/NoxTheme.ts
+29 −0 src/components/styles/NoxThemeGen.js
+2 −2 src/components/styles/SteriaThemeDark.js
+28 −26 src/components/styles/steria.json
+73 −73 src/components/styles/steriaGarb.json
+1 −1 src/hooks/useLyric.ts
+15 −1 src/hooks/useSetupPlayer.ts
+5 −5 src/localization/en/translation.json
+1 −1 src/objects/Song.ts
+0 −9 src/services/PlaybackService.ts
+5 −2 src/services/SetupService.ts
+3 −23 src/stores/appStore.ts
+47 −0 src/stores/explore/bilibili.ts
+37 −0 src/stores/explore/ytm.ts
+4 −5 src/stores/initializeStores.ts
+37 −0 src/stores/regexStore.ts
+3 −2 src/types/style.d.ts
+1 −1 src/utils/BiliSubscribe.ts
+1 −1 src/utils/LyricFetch.ts
+3 −8 src/utils/RNTPUtils.ts
+0 −1 src/utils/mediafetch/ytbChannel.ts
+0 −1 src/utils/mediafetch/ytbvideo.muse.ts
+0 −2 src/utils/mediafetch/ytbvideo.ytbi.ts
+29 −0 src/utils/muse.ts
+1,377 −2,443 yarn.lock
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@babel/preset-typescript": "^7.26.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@types/base-64": "^1.0.2",
"@types/chrome": "^0.0.279",
"@types/chrome": "^0.0.280",
"@types/he": "^1.2.3",
"@types/js-base64": "^3.3.1",
"@types/md5": "^2.3.5",
Expand Down Expand Up @@ -51,16 +51,16 @@
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.9.1",
"mini-css-extract-plugin": "^2.9.2",
"node-sass": "^9.0.0",
"prettier": "^3.3.3",
"progress-bar-webpack-plugin": "^2.1.0",
"react-refresh": "^0.14.2",
"sass-loader": "^16.0.2",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-config-utils": "^2.3.1",
"webpack-dev-server": "^5.1.0"
Expand All @@ -80,7 +80,7 @@
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@hello-pangea/dnd": "^17.0.0",
"@mui/icons-material": "^6.1.6",
"@mui/lab": "6.0.0-beta.13",
"@mui/lab": "6.0.0-dev.240424162023-9968b4889d",
"@mui/material": "^6.1.6",
"@mui/styles": "^6.1.6",
"axios": "^1.7.7",
Expand All @@ -101,7 +101,7 @@
"file-saver": "^2.0.5",
"fs": "^0.0.1-security",
"he": "^1.2.0",
"i18next": "^23.16.4",
"i18next": "^23.16.5",
"libmuse": "https://github.com/lovegaoshi/muse.git#commit=0bffe2319baf825037bece6869d360d6d307eb72",
"material-ui-confirm": "^3.0.16",
"md5": "^2.3.0",
Expand All @@ -114,11 +114,11 @@
"react-click-n-hold": "^1.0.7",
"react-contexify": "^6.0.0",
"react-dom": "^18.3.1",
"react-hotkeys-hook": "^4.5.1",
"react-i18next": "^15.1.0",
"react-hotkeys-hook": "^4.6.1",
"react-i18next": "^15.1.1",
"react-jinke-music-player": "git+https://[email protected]/lovegaoshi/react-music-player.git",
"react-lrc": "^3.2.1",
"react-swipeable": "^7.0.1",
"react-swipeable": "^7.0.2",
"react-window": "^1.8.10",
"stream-browserify": "^3.0.0",
"util": "^0.12.5",
Expand Down
1 change: 1 addition & 0 deletions src/stores/regexStore.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from '@APM/stores/regexStore';
Loading

0 comments on commit 088fa89

Please sign in to comment.