├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── AngelLive.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── swiftpm │ └── Package.resolved ├── Package.resolved ├── README.md ├── ScreenShot ├── iOS.png ├── macOS.png └── tvOS.png ├── Shared ├── .gitignore ├── AngelLiveCore │ ├── Package.swift │ ├── Sources │ │ └── AngelLiveCore │ │ │ ├── AngelLiveCore.swift │ │ │ ├── DanmakuKit │ │ │ ├── Core │ │ │ │ ├── DanmakuAsyncLayer.swift │ │ │ │ ├── DanmakuCell.swift │ │ │ │ ├── DanmakuCellModel.swift │ │ │ │ ├── DanmakuPlatform.swift │ │ │ │ ├── DanmakuQueuePool.swift │ │ │ │ ├── DanmakuTextCell.swift │ │ │ │ ├── DanmakuTextCellModel.swift │ │ │ │ ├── DanmakuTrack.swift │ │ │ │ └── DanmakuView.swift │ │ │ ├── DanmakuKit.swift │ │ │ └── Gif │ │ │ │ ├── DanmakuGifCell.swift │ │ │ │ ├── DanmakuGifCellModel.swift │ │ │ │ └── GifAnimator.swift │ │ │ ├── Extensions │ │ │ ├── Error+LiveParse.swift │ │ │ ├── UIColor+Extension.swift │ │ │ └── UserDefaults+Extension.swift │ │ │ ├── Models │ │ │ ├── AppFavoriteModel.swift │ │ │ ├── DanmuSettingModel.swift │ │ │ ├── FavoriteStateModel.swift │ │ │ ├── GeneralSettingModel.swift │ │ │ ├── HistoryModel.swift │ │ │ ├── PlatformViewModel.swift │ │ │ ├── PlayerSettingModel.swift │ │ │ ├── SearchViewModel.swift │ │ │ └── SettingStore.swift │ │ │ ├── Services │ │ │ ├── ApiManager.swift │ │ │ ├── BilibiliCookieManager.swift │ │ │ ├── BilibiliCookieSyncService.swift │ │ │ ├── FavoriteService.swift │ │ │ └── LiveService.swift │ │ │ └── WelcomeView │ │ │ ├── WelcomeManager.swift │ │ │ ├── WelcomePageView.swift │ │ │ └── WelcomeView.swift │ └── Tests │ │ └── AngelLiveCoreTests │ │ └── AngelLiveCoreTests.swift ├── AngelLiveDependencies │ ├── Package.swift │ └── Sources │ │ └── Export.swift └── SharedAssets │ ├── Package.swift │ ├── README.md │ └── Sources │ └── SharedAssets │ ├── Resources │ └── Assets.xcassets │ │ ├── AccentColor.colorset │ │ └── Contents.json │ │ ├── AppAccentColor.colorset │ │ └── Contents.json │ │ ├── AppIcon.imageset │ │ ├── AppIcon.jpeg │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── YY直播-big.imageset │ │ ├── Contents.json │ │ ├── YY直播-大-夜间.png │ │ └── YY直播-大.png │ │ ├── YY直播-small.imageset │ │ ├── Contents.json │ │ ├── YY直播-小-夜间.png │ │ └── YY直播-小.png │ │ ├── YouTube-big.imageset │ │ ├── Contents.json │ │ ├── YouTube-big.png │ │ └── YouTube-大-夜间.png │ │ ├── YouTube-small.imageset │ │ ├── Contents.json │ │ ├── YouTube-small.png │ │ └── YouTube-小-夜间.png │ │ ├── bilibili.imageset │ │ ├── Contents.json │ │ └── bilibili.png │ │ ├── bilibili_2.imageset │ │ ├── B站.png │ │ └── Contents.json │ │ ├── douyin.imageset │ │ ├── Contents.json │ │ └── douyin.png │ │ ├── douyu.imageset │ │ ├── Contents.json │ │ └── douyu.png │ │ ├── egame.imageset │ │ ├── Contents.json │ │ └── egame.png │ │ ├── favorite_right_hint.colorset │ │ └── Contents.json │ │ ├── hintBackgroundColor.colorset │ │ └── Contents.json │ │ ├── huya.imageset │ │ ├── Contents.json │ │ └── huya.png │ │ ├── icon-danmu-close-focus.imageset │ │ ├── Contents.json │ │ └── icon-danmu-close-focus.png │ │ ├── icon-danmu-close-normal.imageset │ │ ├── Contents.json │ │ └── icon-danmu-close-normal.png │ │ ├── icon-danmu-open-focus.imageset │ │ ├── Contents.json │ │ └── icon-danmu-open-focus.png │ │ ├── icon-danmu-open-normal.imageset │ │ ├── Contents.json │ │ └── icon-danmu-open-normal.png │ │ ├── icon-danmu-setting-focus.imageset │ │ ├── Contents.json │ │ └── icon-danmu-setting-focus.png │ │ ├── icon-danmu-setting-normal.imageset │ │ ├── Contents.json │ │ └── icon-danmu-setting-normal.png │ │ ├── icon-danmu-setting.imageset │ │ ├── Contents.json │ │ └── icon-danmu-setting.png │ │ ├── icon.imageset │ │ ├── Contents.json │ │ └── icon.jpg │ │ ├── icon_back.imageset │ │ ├── Contents.json │ │ └── back-1280-768.png │ │ ├── left_menu_background.colorset │ │ └── Contents.json │ │ ├── left_menu_border.colorset │ │ └── Contents.json │ │ ├── live_card_bili.imageset │ │ ├── B站.png │ │ └── Contents.json │ │ ├── live_card_cc.imageset │ │ ├── Contents.json │ │ └── 网易CC.png │ │ ├── live_card_douyin.imageset │ │ ├── Contents.json │ │ └── 抖音.png │ │ ├── live_card_douyu.imageset │ │ ├── Contents.json │ │ └── 斗鱼.png │ │ ├── live_card_huya.imageset │ │ ├── Contents.json │ │ └── 虎牙.png │ │ ├── live_card_ks.imageset │ │ ├── Contents.json │ │ └── 快手.png │ │ ├── live_card_youtube.imageset │ │ ├── Contents.json │ │ └── YouTube.png │ │ ├── live_card_yy.imageset │ │ ├── Contents.json │ │ └── YY.png │ │ ├── mini_live_card_bili.imageset │ │ ├── B站.png │ │ └── Contents.json │ │ ├── mini_live_card_cc.imageset │ │ ├── Contents.json │ │ └── 网易CC.png │ │ ├── mini_live_card_douyin.imageset │ │ ├── Contents.json │ │ └── 抖音.png │ │ ├── mini_live_card_douyu.imageset │ │ ├── Contents.json │ │ └── 斗鱼.png │ │ ├── mini_live_card_huya.imageset │ │ ├── Contents.json │ │ └── 虎牙.png │ │ ├── mini_live_card_ks.imageset │ │ ├── Contents.json │ │ └── 快手.png │ │ ├── mini_live_card_youtube.imageset │ │ ├── Contents.json │ │ └── YouTube.png │ │ ├── mini_live_card_yy.imageset │ │ ├── Contents.json │ │ └── YY.png │ │ ├── pad_live_card_bili.imageset │ │ ├── B站.png │ │ └── Contents.json │ │ ├── pad_live_card_cc.imageset │ │ ├── Contents.json │ │ └── 网易CC.png │ │ ├── pad_live_card_douyin.imageset │ │ ├── Contents.json │ │ └── 抖音.png │ │ ├── pad_live_card_douyu.imageset │ │ ├── Contents.json │ │ └── 斗鱼.png │ │ ├── pad_live_card_huya.imageset │ │ ├── Contents.json │ │ └── 虎牙.png │ │ ├── pad_live_card_ks.imageset │ │ ├── Contents.json │ │ └── 快手.png │ │ ├── pad_live_card_youtube.imageset │ │ ├── Contents.json │ │ └── YouTube.png │ │ ├── pad_live_card_yy.imageset │ │ ├── Contents.json │ │ └── YY.png │ │ ├── placeholder.imageset │ │ ├── Contents.json │ │ └── placeholder.png │ │ ├── platform-bg.imageset │ │ ├── BG-夜间.png │ │ ├── BG2.png │ │ └── Contents.json │ │ ├── platform-bg2.imageset │ │ ├── Contents.json │ │ └── platform-bg2.png │ │ ├── qrcode-github.imageset │ │ ├── Contents.json │ │ └── qrcode-github.png │ │ ├── qrcode-telegram.imageset │ │ ├── Contents.json │ │ └── qrcode-telegram.png │ │ ├── sl-background.colorset │ │ └── Contents.json │ │ ├── 哔哩哔哩-big.imageset │ │ ├── B站-大-夜间.png │ │ ├── B站-大.png │ │ └── Contents.json │ │ ├── 哔哩哔哩-small.imageset │ │ ├── B站-小-夜间.png │ │ ├── B站-小.png │ │ └── Contents.json │ │ ├── 快手-big.imageset │ │ ├── Contents.json │ │ ├── 快手-大-夜间.png │ │ └── 快手-大.png │ │ ├── 快手-small.imageset │ │ ├── Contents.json │ │ ├── 快手-小-夜间.png │ │ └── 快手-小.png │ │ ├── 抖音-big.imageset │ │ ├── Contents.json │ │ ├── 抖音-大-夜间.png │ │ └── 抖音-大.png │ │ ├── 抖音-small.imageset │ │ ├── Contents.json │ │ ├── 抖音-小-夜间.png │ │ └── 抖音-小.png │ │ ├── 斗鱼-big.imageset │ │ ├── Contents.json │ │ ├── 斗鱼-大-夜间.png │ │ └── 斗鱼-大.png │ │ ├── 斗鱼-small.imageset │ │ ├── Contents.json │ │ ├── 斗鱼-小-夜间.png │ │ └── 斗鱼-小.png │ │ ├── 网易CC-big.imageset │ │ ├── CC直播-大-夜间.png │ │ ├── CC直播-大.png │ │ └── Contents.json │ │ ├── 网易CC-small.imageset │ │ ├── CC直播-小-夜间.png │ │ ├── CC直播-小.png │ │ └── Contents.json │ │ ├── 虎牙-big.imageset │ │ ├── Contents.json │ │ ├── 虎牙-大-夜间.png │ │ └── 虎牙-大.png │ │ └── 虎牙-small.imageset │ │ ├── Contents.json │ │ ├── 虎牙-小-夜间.png │ │ └── 虎牙-小.png │ └── SharedAssets.swift ├── SimpleLiveTVOS.xcodeproj └── project.xcworkspace │ └── xcuserdata │ └── pc.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── TV ├── ARCHITECTURE.md ├── AngelLiveTVOS.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── AngelLiveTVOS.xcscheme ├── AngelLiveTVOS │ ├── AngelLiveTVOS.entitlements │ ├── Other │ │ ├── AppState.swift │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ │ ├── App Icon - App Store.imagestack │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── back-1280-768.png │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── front-1280-768.png │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── middle-1280-768.png │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── App Icon.imagestack │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── back-400-240.png │ │ │ │ │ │ │ └── back-800-480.png │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── front-400-240.png │ │ │ │ │ │ │ └── front-800-480.png │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── middle-400-240.png │ │ │ │ │ │ └── middle-800-480.png │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ │ ├── 2320-720.png │ │ │ │ │ ├── 4640-720.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Top Shelf Image.imageset │ │ │ │ │ ├── 1920-720.png │ │ │ │ │ ├── 3840-720.png │ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── SimpleLiveTVOSApp.swift │ │ └── loading.mp4 │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── Source │ │ ├── DetailPlayer │ │ │ ├── DanmuView.swift │ │ │ ├── DetailPlayerView.swift │ │ │ ├── PlayerControlCardView.swift │ │ │ ├── PlayerControlCardViewModel.swift │ │ │ ├── PlayerControlView.swift │ │ │ └── RoomInfoViewModel.swift │ │ ├── Error │ │ │ └── ErrorView.swift │ │ ├── Extensions │ │ │ └── View+GlassEffect.swift │ │ ├── Favorite │ │ │ ├── FavoriteMainView.swift │ │ │ └── FavoriteStateModel.swift │ │ ├── List │ │ │ ├── IndicatorMenuView.swift │ │ │ ├── LeftMenu.swift │ │ │ ├── ListMainView.swift │ │ │ ├── LiveCardView.swift │ │ │ └── LiveViewModel.swift │ │ ├── Platform │ │ │ ├── PlatformView.swift │ │ │ └── PlatformViewModel.swift │ │ ├── Search │ │ │ ├── SearchRoomView.swift │ │ │ └── SearchStore.swift │ │ └── Setting │ │ │ ├── AboutUSView.swift │ │ │ ├── AccountManagementView.swift │ │ │ ├── DanmuSettingMainView.swift │ │ │ ├── DanmuSettingView.swift │ │ │ ├── GeneralSettingView.swift │ │ │ ├── HistoryListView.swift │ │ │ ├── OpenSourceListView.swift │ │ │ ├── SettingStore.swift │ │ │ ├── SettingView.swift │ │ │ └── SyncView.swift │ ├── Third │ │ ├── DanmakuKit │ │ │ └── Classes │ │ │ │ ├── Core │ │ │ │ ├── DanmakuAsyncLayer.swift │ │ │ │ ├── DanmakuCell.swift │ │ │ │ ├── DanmakuCellModel.swift │ │ │ │ ├── DanmakuQueuePool.swift │ │ │ │ ├── DanmakuTextCell.swift │ │ │ │ ├── DanmakuTextCellModel.swift │ │ │ │ ├── DanmakuTrack.swift │ │ │ │ └── DanmakuView.swift │ │ │ │ └── Gif │ │ │ │ ├── DanmakuGifCell.swift │ │ │ │ ├── DanmakuGifCellModel.swift │ │ │ │ └── GifAnimator.swift │ │ └── Sync │ │ │ └── SyncSocketManager.swift │ └── Tools │ │ └── Common │ │ ├── SharedComponents │ │ ├── Loading │ │ │ ├── FullScreenLoadingView.swift │ │ │ └── LoadingView.swift │ │ └── QRCode │ │ │ ├── QRCodeView.swift │ │ │ └── QRCodeViewModel.swift │ │ └── Utils │ │ ├── Common.swift │ │ ├── Data+Extension.swift │ │ ├── String+Extension.swift │ │ ├── SwipeView.swift │ │ ├── UIColor+Extension.swift │ │ ├── UserDefaults+Extension.swift │ │ └── ViewDebug.swift ├── LICENSE ├── README.md ├── ScreenShot │ ├── dark_mode.png │ └── normal.png └── buildServer.json ├── docs ├── SwiftUI.json ├── documentation__SwiftUI__ScrollPhase.json ├── documentation__SwiftUI__ScrollPosition.json ├── documentation__SwiftUI__View__onScrollPhaseChange(_:).json ├── documentation__SwiftUI__View__scrollTransition(_:axis:transition:).json ├── documentation__TechnologyOverviews__adopting-liquid-glass.json ├── documentation__Updates__SwiftUI.json ├── technologies.json ├── tutorials__Sample-Apps.json └── tutorials__swiftui-concepts.json ├── iOS ├── AngelLive.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── AngelLive.xcscheme └── AngelLive │ ├── AngelLive.entitlements │ ├── AngelLive │ ├── AngelLiveApp.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon.jpeg │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Components │ │ ├── CloudSyncTabIcon.swift │ │ ├── ErrorView.swift │ │ ├── InteractiveSegmentedControl.swift │ │ ├── LiveRoomCard.swift │ │ ├── LiveRoomCardSkeleton.swift │ │ ├── PageScrollDetector.swift │ │ ├── PageView.swift │ │ └── SegmentedControl.swift │ ├── Constants.swift │ ├── ContentView.swift │ ├── Extensions │ │ └── LiveModel+Identity.swift │ ├── Managers │ │ └── PlayerCoordinatorManager.swift │ ├── Models │ │ └── ChatMessage.swift │ ├── Utils │ │ └── QRCodeGenerator.swift │ ├── ViewModels │ │ ├── PlatformDetailViewModel.swift │ │ └── RoomInfoViewModel.swift │ └── Views │ │ ├── Bilibili │ │ ├── BilibiliLoginViewModel.swift │ │ ├── BilibiliLoginWebView.swift │ │ ├── BilibiliUserInfo.swift │ │ ├── BilibiliUserService.swift │ │ ├── BilibiliWebLoginView.swift │ │ └── TvOSSyncSheet.swift │ │ ├── DetailPlayerView.swift │ │ ├── FavoriteView.swift │ │ ├── PlatformDetailView.swift │ │ ├── PlatformView.swift │ │ ├── Player │ │ ├── AirPlayView.swift │ │ ├── BlurredBackgroundView.swift │ │ ├── ChatBubbleView.swift │ │ ├── ChatListView.swift │ │ ├── DanmakuSettingsSheet.swift │ │ ├── DanmuView.swift │ │ ├── MoreActionsButton.swift │ │ ├── PlayerContainerView.swift │ │ ├── PlayerUI │ │ │ ├── GestureView.swift │ │ │ ├── KSCorePlayerView.swift │ │ │ ├── KSVideoPlayerView.swift │ │ │ ├── KSVideoPlayerViewBuilder.swift │ │ │ ├── README.md │ │ │ ├── VerticalLiveControllerView.swift │ │ │ ├── VideoControllerView.swift │ │ │ └── ViewExtension.swift │ │ ├── SettingsButton.swift │ │ ├── StreamerInfoView.swift │ │ ├── TimerManager.swift │ │ └── TimerPickerView.swift │ │ ├── SearchView.swift │ │ ├── Setting │ │ ├── AboutUSView.swift │ │ ├── DanmuSettingView.swift │ │ ├── GeneralSettingView.swift │ │ ├── HistoryListView.swift │ │ ├── OpenSourceListView.swift │ │ ├── SettingView.swift │ │ ├── SyncView.swift │ │ └── TVOSSyncView.swift │ │ └── UIKit │ │ ├── View │ │ ├── LiveRoomCollectionViewCell.swift │ │ ├── PlatformDetailSkeletonView.swift │ │ └── SubCategoryCell.swift │ │ └── ViewControllers │ │ ├── CategoryGridViewController.swift │ │ ├── CategoryManagementViewController.swift │ │ ├── PlatformDetailViewController.swift │ │ ├── PlatformDetailViewControllerWrapper.swift │ │ ├── RoomListViewController.swift │ │ └── SubCategoryViewController.swift │ └── Info.plist └── macOS ├── AngelLiveMacOS.xcodeproj ├── project.pbxproj ├── project.pbxproj.backup ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── AngelLiveMacOS.xcscheme └── AngelLiveMacOS ├── AngelLiveMacOS.entitlements ├── AngelLiveMacOSApp.swift ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ ├── 1024.png │ ├── 128.png │ ├── 16.png │ ├── 256.png │ ├── 32.png │ ├── 512.png │ ├── 64.png │ └── Contents.json ├── Contents.json └── logoicon.imageset │ ├── AppIcon.jpeg │ └── Contents.json ├── Components ├── ErrorView.swift ├── LiveRoomCardButton.swift └── LiveRoomCardSkeleton.swift ├── Constants.swift ├── ContentView.swift ├── Extensions └── LiveModel+Hashable.swift ├── Info.plist ├── Managers └── FullscreenPlayerManager.swift ├── Models └── ChatMessage.swift ├── ViewModels ├── PlatformDetailViewModel.swift ├── RoomInfoViewModel.swift └── ToastManager.swift └── Views ├── Bilibili ├── BilibiliLoginViewModel.swift ├── BilibiliLoginWebView.swift ├── BilibiliUserInfo.swift ├── BilibiliUserService.swift ├── BilibiliWebLoginView.swift └── TvOSSyncSheet.swift ├── CategoryManagementView.swift ├── DanmakuSettingsPanel.swift ├── DanmuView.swift ├── FavoriteView.swift ├── PlatformDetailView.swift ├── PlatformView.swift ├── PlayerControlView.swift ├── RoomPlayerView.swift ├── SearchView.swift └── SettingView.swift /.gitattributes: -------------------------------------------------------------------------------- 1 | SimpleLiveTVOS/Other/Info.plist filter=apikey -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /AngelLive.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/AngelLive.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AngelLive.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/AngelLive.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Package.resolved -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShot/iOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/ScreenShot/iOS.png -------------------------------------------------------------------------------- /ScreenShot/macOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/ScreenShot/macOS.png -------------------------------------------------------------------------------- /ScreenShot/tvOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/ScreenShot/tvOS.png -------------------------------------------------------------------------------- /Shared/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/.gitignore -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Package.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/AngelLiveCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/AngelLiveCore.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuAsyncLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuAsyncLayer.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuCell.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuCellModel.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuPlatform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuPlatform.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuQueuePool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuQueuePool.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuTextCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuTextCell.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuTextCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuTextCellModel.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuTrack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuTrack.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Core/DanmakuView.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/DanmakuKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/DanmakuKit.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Gif/DanmakuGifCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Gif/DanmakuGifCell.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Gif/DanmakuGifCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Gif/DanmakuGifCellModel.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Gif/GifAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/DanmakuKit/Gif/GifAnimator.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Extensions/Error+LiveParse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Extensions/Error+LiveParse.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Extensions/UIColor+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Extensions/UIColor+Extension.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Extensions/UserDefaults+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Extensions/UserDefaults+Extension.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Models/AppFavoriteModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Models/AppFavoriteModel.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Models/DanmuSettingModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Models/DanmuSettingModel.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Models/FavoriteStateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Models/FavoriteStateModel.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Models/GeneralSettingModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Models/GeneralSettingModel.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Models/HistoryModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Models/HistoryModel.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Models/PlatformViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Models/PlatformViewModel.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Models/PlayerSettingModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Models/PlayerSettingModel.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Models/SearchViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Models/SearchViewModel.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Models/SettingStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Models/SettingStore.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Services/ApiManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Services/ApiManager.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Services/BilibiliCookieManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Services/BilibiliCookieManager.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Services/BilibiliCookieSyncService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Services/BilibiliCookieSyncService.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Services/FavoriteService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Services/FavoriteService.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/Services/LiveService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/Services/LiveService.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/WelcomeView/WelcomeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/WelcomeView/WelcomeManager.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/WelcomeView/WelcomePageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/WelcomeView/WelcomePageView.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Sources/AngelLiveCore/WelcomeView/WelcomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Sources/AngelLiveCore/WelcomeView/WelcomeView.swift -------------------------------------------------------------------------------- /Shared/AngelLiveCore/Tests/AngelLiveCoreTests/AngelLiveCoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveCore/Tests/AngelLiveCoreTests/AngelLiveCoreTests.swift -------------------------------------------------------------------------------- /Shared/AngelLiveDependencies/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveDependencies/Package.swift -------------------------------------------------------------------------------- /Shared/AngelLiveDependencies/Sources/Export.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/AngelLiveDependencies/Sources/Export.swift -------------------------------------------------------------------------------- /Shared/SharedAssets/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Package.swift -------------------------------------------------------------------------------- /Shared/SharedAssets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/README.md -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/AppAccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/AppAccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/AppIcon.imageset/AppIcon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/AppIcon.imageset/AppIcon.jpeg -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/AppIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/AppIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YY直播-big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YY直播-big.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YY直播-big.imageset/YY直播-大-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YY直播-big.imageset/YY直播-大-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YY直播-big.imageset/YY直播-大.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YY直播-big.imageset/YY直播-大.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YY直播-small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YY直播-small.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YY直播-small.imageset/YY直播-小-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YY直播-small.imageset/YY直播-小-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YY直播-small.imageset/YY直播-小.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YY直播-small.imageset/YY直播-小.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YouTube-big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YouTube-big.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YouTube-big.imageset/YouTube-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YouTube-big.imageset/YouTube-big.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YouTube-big.imageset/YouTube-大-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YouTube-big.imageset/YouTube-大-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YouTube-small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YouTube-small.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YouTube-small.imageset/YouTube-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YouTube-small.imageset/YouTube-small.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YouTube-small.imageset/YouTube-小-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/YouTube-small.imageset/YouTube-小-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/bilibili.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/bilibili.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/bilibili.imageset/bilibili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/bilibili.imageset/bilibili.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/bilibili_2.imageset/B站.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/bilibili_2.imageset/B站.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/bilibili_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/bilibili_2.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/douyin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/douyin.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/douyin.imageset/douyin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/douyin.imageset/douyin.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/douyu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/douyu.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/douyu.imageset/douyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/douyu.imageset/douyu.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/egame.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/egame.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/egame.imageset/egame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/egame.imageset/egame.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/favorite_right_hint.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/favorite_right_hint.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/hintBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/hintBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/huya.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/huya.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/huya.imageset/huya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/huya.imageset/huya.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-close-focus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-close-focus.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-close-focus.imageset/icon-danmu-close-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-close-focus.imageset/icon-danmu-close-focus.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-close-normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-close-normal.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-close-normal.imageset/icon-danmu-close-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-close-normal.imageset/icon-danmu-close-normal.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-open-focus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-open-focus.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-open-focus.imageset/icon-danmu-open-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-open-focus.imageset/icon-danmu-open-focus.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-open-normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-open-normal.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-open-normal.imageset/icon-danmu-open-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-open-normal.imageset/icon-danmu-open-normal.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-setting-focus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-setting-focus.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-setting-focus.imageset/icon-danmu-setting-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-setting-focus.imageset/icon-danmu-setting-focus.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-setting-normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-setting-normal.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-setting-normal.imageset/icon-danmu-setting-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-setting-normal.imageset/icon-danmu-setting-normal.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-setting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-setting.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-setting.imageset/icon-danmu-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon-danmu-setting.imageset/icon-danmu-setting.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon.imageset/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon.imageset/icon.jpg -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon_back.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon_back.imageset/back-1280-768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/icon_back.imageset/back-1280-768.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/left_menu_background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/left_menu_background.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/left_menu_border.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/left_menu_border.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_bili.imageset/B站.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_bili.imageset/B站.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_bili.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_bili.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_cc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_cc.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_cc.imageset/网易CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_cc.imageset/网易CC.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_douyin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_douyin.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_douyin.imageset/抖音.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_douyin.imageset/抖音.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_douyu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_douyu.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_douyu.imageset/斗鱼.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_douyu.imageset/斗鱼.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_huya.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_huya.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_huya.imageset/虎牙.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_huya.imageset/虎牙.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_ks.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_ks.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_ks.imageset/快手.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_ks.imageset/快手.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_youtube.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_youtube.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_youtube.imageset/YouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_youtube.imageset/YouTube.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_yy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_yy.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_yy.imageset/YY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/live_card_yy.imageset/YY.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_bili.imageset/B站.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_bili.imageset/B站.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_bili.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_bili.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_cc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_cc.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_cc.imageset/网易CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_cc.imageset/网易CC.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_douyin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_douyin.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_douyin.imageset/抖音.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_douyin.imageset/抖音.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_douyu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_douyu.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_douyu.imageset/斗鱼.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_douyu.imageset/斗鱼.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_huya.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_huya.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_huya.imageset/虎牙.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_huya.imageset/虎牙.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_ks.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_ks.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_ks.imageset/快手.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_ks.imageset/快手.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_youtube.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_youtube.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_youtube.imageset/YouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_youtube.imageset/YouTube.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_yy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_yy.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_yy.imageset/YY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/mini_live_card_yy.imageset/YY.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_bili.imageset/B站.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_bili.imageset/B站.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_bili.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_bili.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_cc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_cc.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_cc.imageset/网易CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_cc.imageset/网易CC.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_douyin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_douyin.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_douyin.imageset/抖音.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_douyin.imageset/抖音.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_douyu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_douyu.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_douyu.imageset/斗鱼.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_douyu.imageset/斗鱼.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_huya.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_huya.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_huya.imageset/虎牙.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_huya.imageset/虎牙.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_ks.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_ks.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_ks.imageset/快手.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_ks.imageset/快手.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_youtube.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_youtube.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_youtube.imageset/YouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_youtube.imageset/YouTube.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_yy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_yy.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_yy.imageset/YY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/pad_live_card_yy.imageset/YY.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/placeholder.imageset/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/placeholder.imageset/placeholder.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/platform-bg.imageset/BG-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/platform-bg.imageset/BG-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/platform-bg.imageset/BG2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/platform-bg.imageset/BG2.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/platform-bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/platform-bg.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/platform-bg2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/platform-bg2.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/platform-bg2.imageset/platform-bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/platform-bg2.imageset/platform-bg2.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/qrcode-github.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/qrcode-github.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/qrcode-github.imageset/qrcode-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/qrcode-github.imageset/qrcode-github.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/qrcode-telegram.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/qrcode-telegram.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/qrcode-telegram.imageset/qrcode-telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/qrcode-telegram.imageset/qrcode-telegram.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/sl-background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/sl-background.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/哔哩哔哩-big.imageset/B站-大-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/哔哩哔哩-big.imageset/B站-大-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/哔哩哔哩-big.imageset/B站-大.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/哔哩哔哩-big.imageset/B站-大.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/哔哩哔哩-big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/哔哩哔哩-big.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/哔哩哔哩-small.imageset/B站-小-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/哔哩哔哩-small.imageset/B站-小-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/哔哩哔哩-small.imageset/B站-小.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/哔哩哔哩-small.imageset/B站-小.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/哔哩哔哩-small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/哔哩哔哩-small.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/快手-big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/快手-big.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/快手-big.imageset/快手-大-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/快手-big.imageset/快手-大-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/快手-big.imageset/快手-大.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/快手-big.imageset/快手-大.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/快手-small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/快手-small.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/快手-small.imageset/快手-小-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/快手-small.imageset/快手-小-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/快手-small.imageset/快手-小.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/快手-small.imageset/快手-小.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/抖音-big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/抖音-big.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/抖音-big.imageset/抖音-大-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/抖音-big.imageset/抖音-大-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/抖音-big.imageset/抖音-大.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/抖音-big.imageset/抖音-大.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/抖音-small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/抖音-small.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/抖音-small.imageset/抖音-小-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/抖音-small.imageset/抖音-小-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/抖音-small.imageset/抖音-小.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/抖音-small.imageset/抖音-小.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/斗鱼-big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/斗鱼-big.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/斗鱼-big.imageset/斗鱼-大-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/斗鱼-big.imageset/斗鱼-大-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/斗鱼-big.imageset/斗鱼-大.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/斗鱼-big.imageset/斗鱼-大.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/斗鱼-small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/斗鱼-small.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/斗鱼-small.imageset/斗鱼-小-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/斗鱼-small.imageset/斗鱼-小-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/斗鱼-small.imageset/斗鱼-小.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/斗鱼-small.imageset/斗鱼-小.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/网易CC-big.imageset/CC直播-大-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/网易CC-big.imageset/CC直播-大-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/网易CC-big.imageset/CC直播-大.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/网易CC-big.imageset/CC直播-大.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/网易CC-big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/网易CC-big.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/网易CC-small.imageset/CC直播-小-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/网易CC-small.imageset/CC直播-小-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/网易CC-small.imageset/CC直播-小.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/网易CC-small.imageset/CC直播-小.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/网易CC-small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/网易CC-small.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/虎牙-big.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/虎牙-big.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/虎牙-big.imageset/虎牙-大-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/虎牙-big.imageset/虎牙-大-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/虎牙-big.imageset/虎牙-大.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/虎牙-big.imageset/虎牙-大.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/虎牙-small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/虎牙-small.imageset/Contents.json -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/虎牙-small.imageset/虎牙-小-夜间.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/虎牙-small.imageset/虎牙-小-夜间.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/虎牙-small.imageset/虎牙-小.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/Resources/Assets.xcassets/虎牙-small.imageset/虎牙-小.png -------------------------------------------------------------------------------- /Shared/SharedAssets/Sources/SharedAssets/SharedAssets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/Shared/SharedAssets/Sources/SharedAssets/SharedAssets.swift -------------------------------------------------------------------------------- /SimpleLiveTVOS.xcodeproj/project.xcworkspace/xcuserdata/pc.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/SimpleLiveTVOS.xcodeproj/project.xcworkspace/xcuserdata/pc.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TV/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/ARCHITECTURE.md -------------------------------------------------------------------------------- /TV/AngelLiveTVOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TV/AngelLiveTVOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TV/AngelLiveTVOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TV/AngelLiveTVOS.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /TV/AngelLiveTVOS.xcodeproj/xcshareddata/xcschemes/AngelLiveTVOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS.xcodeproj/xcshareddata/xcschemes/AngelLiveTVOS.xcscheme -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/AngelLiveTVOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/AngelLiveTVOS.entitlements -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/AppState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/AppState.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/back-1280-768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/back-1280-768.png -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/front-1280-768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/front-1280-768.png -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/middle-1280-768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/middle-1280-768.png -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/back-400-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/back-400-240.png -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/back-800-480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/back-800-480.png -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/front-400-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/front-400-240.png -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/front-800-480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/front-800-480.png -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/middle-400-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/middle-400-240.png -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/middle-800-480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/middle-800-480.png -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/2320-720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/2320-720.png -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/4640-720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/4640-720.png -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/1920-720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/1920-720.png -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/3840-720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/3840-720.png -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/ContentView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/Info.plist -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/SimpleLiveTVOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/SimpleLiveTVOSApp.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Other/loading.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Other/loading.mp4 -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/DetailPlayer/DanmuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/DetailPlayer/DanmuView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/DetailPlayer/DetailPlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/DetailPlayer/DetailPlayerView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/DetailPlayer/PlayerControlCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/DetailPlayer/PlayerControlCardView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/DetailPlayer/PlayerControlCardViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/DetailPlayer/PlayerControlCardViewModel.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/DetailPlayer/PlayerControlView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/DetailPlayer/PlayerControlView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/DetailPlayer/RoomInfoViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/DetailPlayer/RoomInfoViewModel.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Error/ErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Error/ErrorView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Extensions/View+GlassEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Extensions/View+GlassEffect.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Favorite/FavoriteMainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Favorite/FavoriteMainView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Favorite/FavoriteStateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Favorite/FavoriteStateModel.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/List/IndicatorMenuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/List/IndicatorMenuView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/List/LeftMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/List/LeftMenu.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/List/ListMainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/List/ListMainView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/List/LiveCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/List/LiveCardView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/List/LiveViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/List/LiveViewModel.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Platform/PlatformView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Platform/PlatformView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Platform/PlatformViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Platform/PlatformViewModel.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Search/SearchRoomView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Search/SearchRoomView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Search/SearchStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Search/SearchStore.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Setting/AboutUSView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Setting/AboutUSView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Setting/AccountManagementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Setting/AccountManagementView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Setting/DanmuSettingMainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Setting/DanmuSettingMainView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Setting/DanmuSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Setting/DanmuSettingView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Setting/GeneralSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Setting/GeneralSettingView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Setting/HistoryListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Setting/HistoryListView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Setting/OpenSourceListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Setting/OpenSourceListView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Setting/SettingStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Setting/SettingStore.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Setting/SettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Setting/SettingView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Source/Setting/SyncView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Source/Setting/SyncView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuAsyncLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuAsyncLayer.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuCell.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuCellModel.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuQueuePool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuQueuePool.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuTextCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuTextCell.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuTextCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuTextCellModel.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuTrack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuTrack.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Core/DanmakuView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Gif/DanmakuGifCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Gif/DanmakuGifCell.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Gif/DanmakuGifCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Gif/DanmakuGifCellModel.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Gif/GifAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Third/DanmakuKit/Classes/Gif/GifAnimator.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Third/Sync/SyncSocketManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Third/Sync/SyncSocketManager.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Tools/Common/SharedComponents/Loading/FullScreenLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Tools/Common/SharedComponents/Loading/FullScreenLoadingView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Tools/Common/SharedComponents/Loading/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Tools/Common/SharedComponents/Loading/LoadingView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Tools/Common/SharedComponents/QRCode/QRCodeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Tools/Common/SharedComponents/QRCode/QRCodeView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Tools/Common/SharedComponents/QRCode/QRCodeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Tools/Common/SharedComponents/QRCode/QRCodeViewModel.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Tools/Common/Utils/Common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Tools/Common/Utils/Common.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Tools/Common/Utils/Data+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Tools/Common/Utils/Data+Extension.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Tools/Common/Utils/String+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Tools/Common/Utils/String+Extension.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Tools/Common/Utils/SwipeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Tools/Common/Utils/SwipeView.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Tools/Common/Utils/UIColor+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Tools/Common/Utils/UIColor+Extension.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Tools/Common/Utils/UserDefaults+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Tools/Common/Utils/UserDefaults+Extension.swift -------------------------------------------------------------------------------- /TV/AngelLiveTVOS/Tools/Common/Utils/ViewDebug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/AngelLiveTVOS/Tools/Common/Utils/ViewDebug.swift -------------------------------------------------------------------------------- /TV/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/LICENSE -------------------------------------------------------------------------------- /TV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/README.md -------------------------------------------------------------------------------- /TV/ScreenShot/dark_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/ScreenShot/dark_mode.png -------------------------------------------------------------------------------- /TV/ScreenShot/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/ScreenShot/normal.png -------------------------------------------------------------------------------- /TV/buildServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/TV/buildServer.json -------------------------------------------------------------------------------- /docs/SwiftUI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/docs/SwiftUI.json -------------------------------------------------------------------------------- /docs/documentation__SwiftUI__ScrollPhase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/docs/documentation__SwiftUI__ScrollPhase.json -------------------------------------------------------------------------------- /docs/documentation__SwiftUI__ScrollPosition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/docs/documentation__SwiftUI__ScrollPosition.json -------------------------------------------------------------------------------- /docs/documentation__SwiftUI__View__onScrollPhaseChange(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/docs/documentation__SwiftUI__View__onScrollPhaseChange(_:).json -------------------------------------------------------------------------------- /docs/documentation__SwiftUI__View__scrollTransition(_:axis:transition:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/docs/documentation__SwiftUI__View__scrollTransition(_:axis:transition:).json -------------------------------------------------------------------------------- /docs/documentation__TechnologyOverviews__adopting-liquid-glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/docs/documentation__TechnologyOverviews__adopting-liquid-glass.json -------------------------------------------------------------------------------- /docs/documentation__Updates__SwiftUI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/docs/documentation__Updates__SwiftUI.json -------------------------------------------------------------------------------- /docs/technologies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/docs/technologies.json -------------------------------------------------------------------------------- /docs/tutorials__Sample-Apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/docs/tutorials__Sample-Apps.json -------------------------------------------------------------------------------- /docs/tutorials__swiftui-concepts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/docs/tutorials__swiftui-concepts.json -------------------------------------------------------------------------------- /iOS/AngelLive.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS/AngelLive.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS/AngelLive.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /iOS/AngelLive.xcodeproj/xcshareddata/xcschemes/AngelLive.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive.xcodeproj/xcshareddata/xcschemes/AngelLive.xcscheme -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive.entitlements -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/AngelLiveApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/AngelLiveApp.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Assets.xcassets/AppIcon.appiconset/AppIcon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Assets.xcassets/AppIcon.appiconset/AppIcon.jpeg -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Components/CloudSyncTabIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Components/CloudSyncTabIcon.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Components/ErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Components/ErrorView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Components/InteractiveSegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Components/InteractiveSegmentedControl.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Components/LiveRoomCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Components/LiveRoomCard.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Components/LiveRoomCardSkeleton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Components/LiveRoomCardSkeleton.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Components/PageScrollDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Components/PageScrollDetector.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Components/PageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Components/PageView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Components/SegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Components/SegmentedControl.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Constants.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/ContentView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Extensions/LiveModel+Identity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Extensions/LiveModel+Identity.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Managers/PlayerCoordinatorManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Managers/PlayerCoordinatorManager.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Models/ChatMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Models/ChatMessage.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Utils/QRCodeGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Utils/QRCodeGenerator.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/ViewModels/PlatformDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/ViewModels/PlatformDetailViewModel.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/ViewModels/RoomInfoViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/ViewModels/RoomInfoViewModel.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Bilibili/BilibiliLoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Bilibili/BilibiliLoginViewModel.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Bilibili/BilibiliLoginWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Bilibili/BilibiliLoginWebView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Bilibili/BilibiliUserInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Bilibili/BilibiliUserInfo.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Bilibili/BilibiliUserService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Bilibili/BilibiliUserService.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Bilibili/BilibiliWebLoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Bilibili/BilibiliWebLoginView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Bilibili/TvOSSyncSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Bilibili/TvOSSyncSheet.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/DetailPlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/DetailPlayerView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/FavoriteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/FavoriteView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/PlatformDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/PlatformDetailView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/PlatformView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/PlatformView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/AirPlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/AirPlayView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/BlurredBackgroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/BlurredBackgroundView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/ChatBubbleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/ChatBubbleView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/ChatListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/ChatListView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/DanmakuSettingsSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/DanmakuSettingsSheet.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/DanmuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/DanmuView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/MoreActionsButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/MoreActionsButton.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/PlayerContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/PlayerContainerView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/PlayerUI/GestureView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/PlayerUI/GestureView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/PlayerUI/KSCorePlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/PlayerUI/KSCorePlayerView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/PlayerUI/KSVideoPlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/PlayerUI/KSVideoPlayerView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/PlayerUI/KSVideoPlayerViewBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/PlayerUI/KSVideoPlayerViewBuilder.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/PlayerUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/PlayerUI/README.md -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/PlayerUI/VerticalLiveControllerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/PlayerUI/VerticalLiveControllerView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/PlayerUI/VideoControllerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/PlayerUI/VideoControllerView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/PlayerUI/ViewExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/PlayerUI/ViewExtension.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/SettingsButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/SettingsButton.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/StreamerInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/StreamerInfoView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/TimerManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/TimerManager.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Player/TimerPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Player/TimerPickerView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/SearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/SearchView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Setting/AboutUSView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Setting/AboutUSView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Setting/DanmuSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Setting/DanmuSettingView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Setting/GeneralSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Setting/GeneralSettingView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Setting/HistoryListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Setting/HistoryListView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Setting/OpenSourceListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Setting/OpenSourceListView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Setting/SettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Setting/SettingView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Setting/SyncView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Setting/SyncView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/Setting/TVOSSyncView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/Setting/TVOSSyncView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/UIKit/View/LiveRoomCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/UIKit/View/LiveRoomCollectionViewCell.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/UIKit/View/PlatformDetailSkeletonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/UIKit/View/PlatformDetailSkeletonView.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/UIKit/View/SubCategoryCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/UIKit/View/SubCategoryCell.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/UIKit/ViewControllers/CategoryGridViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/UIKit/ViewControllers/CategoryGridViewController.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/UIKit/ViewControllers/CategoryManagementViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/UIKit/ViewControllers/CategoryManagementViewController.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/UIKit/ViewControllers/PlatformDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/UIKit/ViewControllers/PlatformDetailViewController.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/UIKit/ViewControllers/PlatformDetailViewControllerWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/UIKit/ViewControllers/PlatformDetailViewControllerWrapper.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/UIKit/ViewControllers/RoomListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/UIKit/ViewControllers/RoomListViewController.swift -------------------------------------------------------------------------------- /iOS/AngelLive/AngelLive/Views/UIKit/ViewControllers/SubCategoryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/AngelLive/Views/UIKit/ViewControllers/SubCategoryViewController.swift -------------------------------------------------------------------------------- /iOS/AngelLive/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/iOS/AngelLive/Info.plist -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS.xcodeproj/project.pbxproj.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS.xcodeproj/project.pbxproj.backup -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS.xcodeproj/xcshareddata/xcschemes/AngelLiveMacOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS.xcodeproj/xcshareddata/xcschemes/AngelLiveMacOS.xcscheme -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/AngelLiveMacOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/AngelLiveMacOS.entitlements -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/AngelLiveMacOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/AngelLiveMacOSApp.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Assets.xcassets/logoicon.imageset/AppIcon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Assets.xcassets/logoicon.imageset/AppIcon.jpeg -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Assets.xcassets/logoicon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Assets.xcassets/logoicon.imageset/Contents.json -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Components/ErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Components/ErrorView.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Components/LiveRoomCardButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Components/LiveRoomCardButton.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Components/LiveRoomCardSkeleton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Components/LiveRoomCardSkeleton.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Constants.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/ContentView.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Extensions/LiveModel+Hashable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Extensions/LiveModel+Hashable.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Info.plist -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Managers/FullscreenPlayerManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Managers/FullscreenPlayerManager.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Models/ChatMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Models/ChatMessage.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/ViewModels/PlatformDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/ViewModels/PlatformDetailViewModel.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/ViewModels/RoomInfoViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/ViewModels/RoomInfoViewModel.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/ViewModels/ToastManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/ViewModels/ToastManager.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/Bilibili/BilibiliLoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/Bilibili/BilibiliLoginViewModel.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/Bilibili/BilibiliLoginWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/Bilibili/BilibiliLoginWebView.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/Bilibili/BilibiliUserInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/Bilibili/BilibiliUserInfo.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/Bilibili/BilibiliUserService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/Bilibili/BilibiliUserService.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/Bilibili/BilibiliWebLoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/Bilibili/BilibiliWebLoginView.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/Bilibili/TvOSSyncSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/Bilibili/TvOSSyncSheet.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/CategoryManagementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/CategoryManagementView.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/DanmakuSettingsPanel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/DanmakuSettingsPanel.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/DanmuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/DanmuView.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/FavoriteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/FavoriteView.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/PlatformDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/PlatformDetailView.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/PlatformView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/PlatformView.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/PlayerControlView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/PlayerControlView.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/RoomPlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/RoomPlayerView.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/SearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/SearchView.swift -------------------------------------------------------------------------------- /macOS/AngelLiveMacOS/Views/SettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcccccc/AngelLive/HEAD/macOS/AngelLiveMacOS/Views/SettingView.swift --------------------------------------------------------------------------------