├── .gitattributes ├── .github ├── release-drafter.yml └── workflows │ └── release-drafter.yml ├── .gitignore ├── Hohoema.Core ├── .editorconfig ├── Contracts │ ├── Maintenances │ │ └── IMaintenance.cs │ ├── Migrations │ │ └── IMigateAsync.cs │ ├── Navigations │ │ ├── INavigationParameters.cs │ │ └── INavigationResult.cs │ ├── Playlist │ │ ├── PlayLiveRequestMessage.cs │ │ └── VideoPlayedMessage.cs │ ├── Services │ │ ├── IDialogService.cs │ │ ├── ILocalizeService.cs │ │ ├── IMylistGroupDialogService.cs │ │ ├── INotificationService.cs │ │ └── ISelectionDialogService.cs │ └── Subscriptions │ │ ├── SubscriptionFeedVideoMessages.cs │ │ ├── SubscriptionGroupId.cs │ │ ├── SubscriptionGroupMessages.cs │ │ ├── SubscriptionMessages.cs │ │ └── SusbcriptionId.cs ├── Helpers │ ├── ApiContractHelper.cs │ ├── AsyncLock.cs │ ├── ClipboardHelper.cs │ ├── ColorExtention.cs │ ├── ConnectionRetryUtil.cs │ ├── DeviceTypeHelper.cs │ ├── DisplayRequestHelper.cs │ ├── FilePathHelper.cs │ ├── HtmlFileHelper.cs │ ├── HttpRandomAccessStream.cs │ ├── IAsyncInitialize.cs │ ├── InputCapabilityHelper.cs │ ├── InternetConnection.cs │ ├── ListExtention.cs │ ├── NumberToKMGTPEZYStringHelper.cs │ ├── ObservableHashSet.cs │ ├── ObservableObjectDebugHelper.cs │ ├── ShareHelper.cs │ ├── StorageFolderExtention.cs │ └── StringHelper.cs ├── Hohoema.Core.csproj ├── Infra │ ├── FlagsRepositoryBase.cs │ ├── HohoemaExpception.cs │ ├── LiteDbService.cs │ ├── ProviderBase.cs │ └── SystemTextJsonSerializer.cs ├── IsExternalInit.cs ├── MessengerObservableExtensions.cs ├── Models │ ├── Application │ │ ├── AppFlagsRepository.cs │ │ ├── AppUpdateNotice.cs │ │ ├── AppearanceSettings.cs │ │ ├── ApplicationInteractionMode.cs │ │ ├── ApplicationLayout.cs │ │ ├── BackupManager.cs │ │ ├── FeatureFlags.cs │ │ ├── HohoemaAppServiceLevel.cs │ │ ├── LisenceSummary.cs │ │ ├── PlayerDisplayView.cs │ │ ├── ThumbnailCacheManager.cs │ │ └── ToastNotificationConstants.cs │ ├── LocalMylist │ │ ├── LocalMylistRepository.cs │ │ └── LocalPlaylist.cs │ ├── Niconico │ │ ├── AccountManager.cs │ │ ├── Channel │ │ │ ├── ChannelNameCacheRepository.cs │ │ │ ├── ChannelProvider.cs │ │ │ ├── ChannelVideoContent.cs │ │ │ ├── ChannelVideoPlaylist.cs │ │ │ ├── ChannelVideoPlaylistSortOption.cs │ │ │ └── IChannel.cs │ │ ├── Follow │ │ │ ├── FollowItemInfo.cs │ │ │ ├── FollowItemType.cs │ │ │ ├── IFollowable.cs │ │ │ └── LoginUser │ │ │ │ ├── ChannelFollowProvider.cs │ │ │ │ ├── CommunituFollowAdditionalInfo.cs │ │ │ │ ├── IFollowProvider.cs │ │ │ │ ├── MylistFollowProvider.cs │ │ │ │ ├── TagFollowProvider.cs │ │ │ │ └── UserFollowProvider.cs │ │ ├── FollowableExtension.cs │ │ ├── INiconicoContent.cs │ │ ├── Live │ │ │ ├── ILiveContent.cs │ │ │ ├── LoginUser │ │ │ │ └── LoginUserLiveReservationProvider.cs │ │ │ ├── NicoLiveCacheRepository.cs │ │ │ └── NicoLiveProvider.cs │ │ ├── Mylist │ │ │ ├── IMylist.cs │ │ │ ├── LoginUser │ │ │ │ ├── LoginUserMylistPlaylist.cs │ │ │ │ └── LoginUserMylistProvider.cs │ │ │ ├── MylistItemsGetResult.cs │ │ │ ├── MylistPlaylist.cs │ │ │ ├── MylistPlaylistExtension.cs │ │ │ └── MylistProvider.cs │ │ ├── NiconicoObjectExtension.cs │ │ ├── NiconicoSession.cs │ │ ├── Recommend │ │ │ └── RecommendProvider.cs │ │ ├── Search │ │ │ ├── SearchHistory.cs │ │ │ ├── SearchProvider.cs │ │ │ ├── SearchVideoPlaylist.cs │ │ │ └── SearchVideoPlaylistSortOption.cs │ │ ├── Series │ │ │ └── SeriesVideoPlaylist.cs │ │ ├── User │ │ │ ├── IUser.cs │ │ │ ├── UserNameProvider.cs │ │ │ ├── UserProvider.cs │ │ │ ├── UserVideoPlaylist.cs │ │ │ └── UserVideoPlaylistSortOption.cs │ │ └── Video │ │ │ ├── ITag.cs │ │ │ ├── IVideoContent.cs │ │ │ ├── LoginUserHistoryProvider.cs │ │ │ ├── NicoVideo.cs │ │ │ ├── NicoVideoOwner.cs │ │ │ ├── NicoVideoProvider.cs │ │ │ ├── NicoVideoQuality.cs │ │ │ ├── NvapiVideoContent.cs │ │ │ ├── Ranking │ │ │ ├── RankingGenreCache.cs │ │ │ └── RankingProvider.cs │ │ │ ├── Series │ │ │ ├── ISeries.cs │ │ │ └── SeriesProvider.cs │ │ │ ├── VideoCacheSettings_Legacy.cs │ │ │ ├── VideoFilteringSettings.cs │ │ │ ├── VideoPlayedHistoryRepository.cs │ │ │ └── VideoRankingSettings.cs │ ├── Notification │ │ ├── InAppNotificationMessage.cs │ │ └── LiteNotificationMessage.cs │ ├── PageNavigation │ │ ├── HohoemaPageType.cs │ │ ├── IPinablePage.cs │ │ ├── ISearchHistory.cs │ │ ├── ITitleUpdatablePage.cs │ │ ├── MylistUserSelectedSortRepository.cs │ │ ├── RestoreNavigationManager.cs │ │ └── SearchTarget.cs │ ├── Pins │ │ ├── HohoemaPin.cs │ │ └── PinSettings.cs │ ├── Player │ │ ├── Comment │ │ │ ├── CommentDisplayMode.cs │ │ │ ├── CommentFliteringRepository.cs │ │ │ ├── CommentSizeMode.cs │ │ │ ├── IComment.cs │ │ │ ├── ICommentFilter.cs │ │ │ └── ICommentService.cs │ │ ├── INiconicoVideoSessionProvider.cs │ │ ├── IStreamingSession.cs │ │ ├── Live │ │ │ ├── LiveSuggestion.cs │ │ │ ├── LiveVidePagePayload.cs │ │ │ └── NicoLiveInfoType.cs │ │ ├── MediaPlayerSoundVolumeManager.cs │ │ ├── PlayerSettings.cs │ │ ├── Video │ │ │ ├── Cache │ │ │ │ ├── CacheRequestRepository.cs │ │ │ │ ├── CachefolderAccessState.cs │ │ │ │ ├── NicoVideoCacheProgress.cs │ │ │ │ ├── NicoVideoCacheState.cs │ │ │ │ ├── NicoVideoCached.cs │ │ │ │ └── VideoCacheManagerLegacy.cs │ │ │ ├── Comment │ │ │ │ ├── CommentClient.cs │ │ │ │ ├── CommentCommandPermissionType.cs │ │ │ │ ├── CommentServerInfo.cs │ │ │ │ ├── NicoScript.cs │ │ │ │ ├── VideoComment.cs │ │ │ │ └── VideoCommentService.cs │ │ │ ├── NicoVideoCanNotDownloadReason.cs │ │ │ ├── NicoVideoQualityEntity.cs │ │ │ ├── NicoVideoQuality_Legacy.cs │ │ │ ├── NicoVideoSessionProvider.cs │ │ │ ├── NicoVideoTag.cs │ │ │ └── VideoStreamingSession │ │ │ │ ├── CachedVideoStreamingSession.cs │ │ │ │ ├── DomandStreamingSession.cs │ │ │ │ ├── IVideoStreamingSession.cs │ │ │ │ └── VideoStreamingSession.cs │ │ └── VideoStreamingOriginOrchestrator.cs │ ├── Playlist │ │ ├── BufferedPlaylistItemsSource.cs │ │ ├── HohoemaPlaylistPlayer.cs │ │ ├── IPlaylist.cs │ │ ├── IPlaylistFactoryResolver.cs │ │ ├── PlaylistExtension.cs │ │ ├── PlaylistItemSortOrder.cs │ │ ├── PlaylistItemsSourceOrigin.cs │ │ ├── QueuePlaylist.cs │ │ └── QueuePlaylistSetting.cs │ ├── Purchase │ │ └── HohoemaPurchase.cs │ ├── Subscriptions │ │ ├── SubscFeedVideoRepository.cs │ │ ├── SubscriptionGroupPlaylist.cs │ │ ├── SubscriptionGroupRepository.cs │ │ ├── SubscriptionManager.cs │ │ ├── SubscriptionPlaylist.cs │ │ ├── SubscriptionRepository.cs │ │ └── SubscriptionSettings.cs │ └── VideoCache │ │ ├── IVideoCacheDownloadOperation.cs │ │ ├── IVideoCacheDownloadOperationOutput.cs │ │ ├── NicoVideoCacheQualityHelper.cs │ │ ├── PrepareNextVideoCacheDownloadingResult.cs │ │ ├── VideoCacheDownloadOperation.cs │ │ ├── VideoCacheDownloadOperationCreationResult.cs │ │ ├── VideoCacheDownloadOperationFailedReason.cs │ │ ├── VideoCacheDownloadOperationOutputWithEncryption.cs │ │ ├── VideoCacheDownloadOperationProgress.cs │ │ ├── VideoCacheDownloadOperationResult.cs │ │ ├── VideoCacheEntity.cs │ │ ├── VideoCacheException.cs │ │ ├── VideoCacheItem.cs │ │ ├── VideoCacheItemRepository.cs │ │ ├── VideoCacheManager.cs │ │ ├── VideoCacheSaveFolderManager.cs │ │ ├── VideoCacheSettings.cs │ │ └── VideoCacheStatus.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Hohoema.Models.rd.xml └── Services │ ├── LocalMylistManager.cs │ ├── Maintenance │ └── VideoThumbnailImageCacheMaintenance.cs │ ├── Migration │ ├── CommentFilteringNGScoreZeroFixture.cs │ └── SearchTargetMigration_V_1_1_0.cs │ ├── Niconico │ ├── FollowNotificationAndConfirmListener.cs │ ├── LoginUserOwnedMylistManager.cs │ └── WatchHistoryManager.cs │ ├── Playlist │ ├── MylistResolver.cs │ ├── PlaylistFactory │ │ ├── ChannelVideoPlaylistFactory.cs │ │ ├── LocalMylistPlaylistFactory.cs │ │ ├── MylistPlaylistFactory.cs │ │ ├── SeriesVideoPlaylistFactory.cs │ │ ├── SubscriptionGroupPlaylistFactory.cs │ │ ├── SubscriptionPlaylistFactory.cs │ │ └── UserVideoPlaylistFactory.cs │ └── PlaylistItemsSourceResolver.cs │ └── Videos │ ├── CommentDisplayingRangeExtractor.cs │ └── CommentFilteringFacade.cs ├── Hohoema.sln ├── Hohoema ├── .editorconfig ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── BadgeLogo.scale-100.png │ ├── BadgeLogo.scale-125.png │ ├── BadgeLogo.scale-150.png │ ├── BadgeLogo.scale-200.png │ ├── BadgeLogo.scale-400.png │ ├── LibLisencies │ │ └── _lisence_summary.json │ ├── LockScreenLogo.scale-100.png │ ├── LockScreenLogo.scale-150.png │ ├── NewStoreLogo.scale-100.png │ ├── NewStoreLogo.scale-125.png │ ├── NewStoreLogo.scale-150.png │ ├── NewStoreLogo.scale-200.png │ ├── NewStoreLogo.scale-400.png │ ├── ProtocolLogo.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square30x30Logo.scale-100.png │ ├── Square30x30Logo.scale-200.png │ ├── Square310x310Logo.scale-100.png │ ├── Square310x310Logo.scale-125.png │ ├── Square310x310Logo.scale-150.png │ ├── Square310x310Logo.scale-200.png │ ├── Square310x310Logo.scale-400.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ ├── Square44x44Logo.targetsize-48.png │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ ├── Square71x71Logo.scale-100.png │ ├── Square71x71Logo.scale-125.png │ ├── Square71x71Logo.scale-150.png │ ├── Square71x71Logo.scale-200.png │ ├── Square71x71Logo.scale-400.png │ ├── StoreTesting.xml │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ ├── Wide310x150Logo.scale-400.png │ ├── hohoema-icon-final.png │ ├── html │ │ └── template.html │ └── xbox_encrypt_key.txt ├── Contracts │ ├── AppLifecycle │ │ ├── ISuspendAndResumeAware.cs │ │ └── IToastActivationAware.cs │ ├── Navigations │ │ ├── INavigationAware.cs │ │ ├── INavigationService.cs │ │ ├── IPageNavigatable.cs │ │ ├── IViewLocator.cs │ │ ├── NavigationAsyncRequestMessage.cs │ │ ├── NavigationMessengerExtension.cs │ │ └── NavigationParameters.cs │ ├── Player │ │ ├── ChangePlayerDisplayViewRequestMessage.cs │ │ ├── IPlayerView.cs │ │ └── PlayRequestMessage.cs │ ├── Subscriptions │ │ └── ISubscriptionDialogService.cs │ └── ViewModels │ │ └── IWatchHistory.cs ├── Database │ └── HohoemaLiteDbContext.cs ├── FodyWeavers.xsd ├── GlobalSuppressions.cs ├── Hohoema.GlobalUsings.cs ├── Hohoema.csproj ├── IsExternalInit.cs ├── Locales │ ├── LocaleToDisplayNameConverter.cs │ ├── LocalizeConverter.cs │ ├── LocalizeWithParameterConverter.cs │ ├── en-US.txt │ ├── ja-JP.txt │ └── zh-CHS.txt ├── NdgrClientSharp │ └── netstandard2.0 │ │ ├── NdgrClientSharp.Protocol.deps.json │ │ ├── NdgrClientSharp.Protocol.dll │ │ ├── NdgrClientSharp.deps.json │ │ └── NdgrClientSharp.dll ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Services │ ├── ApplicationLayoutManager.cs │ ├── CheckingClipboardAndNotificationService.cs │ ├── CurrentActiveWindowUIContextService.cs │ ├── DialogService.cs │ ├── LocalizeService.cs │ ├── Navigations │ │ ├── NavigationService.cs │ │ ├── NavigationTriggerFromExternal.cs │ │ └── PagePayload │ │ │ ├── LoginRedirectPayload.cs │ │ │ ├── MylistPagePayload.cs │ │ │ ├── PagePayloadBase.cs │ │ │ ├── Search │ │ │ ├── CommunitySearchPagePayloadContent.cs │ │ │ ├── ISearchPagePayloadContent.cs │ │ │ ├── KeywordSearchPagePayloadContent.cs │ │ │ ├── LiveSearchPagePayloadContent.cs │ │ │ ├── MylistSearchPagePayloadContent.cs │ │ │ ├── SearchPagePayload.cs │ │ │ ├── SearchPagePayloadContentBase.cs │ │ │ ├── SearchPagePayloadContentHelper.cs │ │ │ ├── TagSearchPagePayloadContent.cs │ │ │ └── VideoSearchOption.cs │ │ │ ├── SecondaryViewNavigatePayload.cs │ │ │ └── VideoPlayPayload.cs │ ├── NiconicoLoginService.cs │ ├── NoProcessUIScreenContext.cs │ ├── NotificationService.cs │ ├── Player │ │ ├── AppWindowSecondaryViewPlayerManager.cs │ │ ├── CloseToastNotificationWhenPlayStarted.cs │ │ ├── KeepActiveDisplayWhenPlaying.cs │ │ ├── ObservableMediaPlayer.cs │ │ ├── PrimaryViewPlayerManager.cs │ │ ├── SecondaryViewPlayerManager.cs │ │ └── Videos │ │ │ ├── RelatedVideoContentsAggregator.cs │ │ │ ├── VideoCommentPlayer.cs │ │ │ ├── VideoEndedRecommendation.cs │ │ │ ├── VideoPlayRequestBridgeToPlayer.cs │ │ │ └── VideoStreamingOriginOrchestrator.cs │ ├── Playlist │ │ ├── AutoSkipToPlaylistNextVideoWhenPlayFailed.cs │ │ └── PlaylistSelectDialogService.cs │ ├── Subscriptions │ │ ├── SubscriptionDialogService.cs │ │ ├── SubscriptionUpdateManager.cs │ │ └── SyncWatchHistoryOnLoggedIn.cs │ └── VideoCache │ │ ├── Events │ │ ├── EndCacheSaveFolderChangingMessage.cs │ │ ├── StartCacheSaveFolderChangingAsyncRequestMessage.cs │ │ ├── VideoCacheProgressChangedMessage.cs │ │ └── VideoCacheStatusChangedMessage.cs │ │ ├── Migration │ │ └── VideoCacheDatabaseMigration_V_0_29_0.cs │ │ ├── NotificationCacheVideoDeletedService.cs │ │ ├── VideoCacheDownloadOperationManager.cs │ │ └── VideoCacheFolderManager.cs ├── Styles │ ├── DefaultStyle.xaml │ ├── FixedHeaderListViewStyle.xaml │ ├── HohoemaListItemStyle.xaml │ ├── ListViewItemStyles.xaml │ ├── NiconicoStyles.xaml │ ├── SettingsControlStyles.xaml │ ├── TVSafeColor.xaml │ ├── TVStyle.xaml │ ├── UWPUIControlsDefaultStyles.xaml │ ├── VideoListItemControlDefaultTemplate.xaml │ ├── VideoListItemControlDefaultTemplate.xaml.cs │ └── VideoProgressBarStyle.xaml ├── ViewModels │ ├── CommandBase.cs │ ├── Flyouts │ │ ├── FollowItemFlyoutViewModel.cs │ │ ├── MylistItemFlyoutViewModel.cs │ │ └── SubscriptionItemFlyoutViewModel.cs │ ├── Hohoema.LocalMylist │ │ └── LocalMylistCreateCommand.cs │ ├── HohoemaListingPageItemBase.cs │ ├── HohoemaListingPageViewModelBase.cs │ ├── HohoemaPageViewModelBase.cs │ ├── HohoemaSecondaryViewFrameViewModel.cs │ ├── HohoemaVideoListException.cs │ ├── IHohoemaListItem.cs │ ├── Navigation.Commands │ │ ├── OpenContentOwnerPageCommand.cs │ │ ├── OpenPageCommand.cs │ │ ├── OpenPageWithIdCommand.cs │ │ ├── OpenVideoListPageCommand.cs │ │ ├── OpenVideoOwnerMylistListCommand.cs │ │ ├── OpenVideoOwnerSeriesListCommand.cs │ │ ├── OpenVideoOwnerVideoListCommand.cs │ │ └── SearchCommand.cs │ ├── NavigationAwareViewModelBase.cs │ ├── NavigationQueryHelper.cs │ ├── Niconico.Account │ │ └── LogoutFromNiconicoCommand.cs │ ├── Niconico.Follow │ │ ├── FollowContext.cs │ │ ├── FollowListup │ │ │ ├── FollowChannelGroupViewModel.cs │ │ │ ├── FollowChannelIncrementalSource.cs │ │ │ ├── FollowChannelViewModel.cs │ │ │ ├── FollowGroupViewModel.cs │ │ │ ├── FollowIncrementalSourceBase.cs │ │ │ ├── FollowMylistGroupViewModel.cs │ │ │ ├── FollowMylistIncrementalSource.cs │ │ │ ├── FollowMylistViewModel.cs │ │ │ ├── FollowTagGroupViewModel.cs │ │ │ ├── FollowTagIncrementalSource.cs │ │ │ ├── FollowTagViewModel.cs │ │ │ ├── FollowUserGroupViewModel.cs │ │ │ ├── FollowUserIncrementalSource.cs │ │ │ └── FollowUserViewModel.cs │ │ └── IFollowContext.cs │ ├── Niconico.Likes │ │ └── VideoLikesContext.cs │ ├── Niconico.Live │ │ ├── LiveInfoListItemViewModel.cs │ │ ├── NicoLiveUserIdAddToNGCommand.cs │ │ ├── NicoLiveUserIdRemoveFromNGCommand.cs │ │ ├── OpenBroadcasterInfoCommand.cs │ │ └── OpenLiveContentCommand.cs │ ├── Niconico.Ranking │ │ ├── FavoriteRankingGenreGroupItem.cs │ │ ├── FavoriteRankingGenreItemCommand.cs │ │ ├── HiddenGenreItem.cs │ │ ├── HiddenRankingGenreItemCommand.cs │ │ ├── Messages │ │ │ └── RankingGenreCustomizeEvent.cs │ │ ├── RankingGenreItem.cs │ │ ├── RankingItem.cs │ │ └── UnFavoriteRankingGenreItemCommand.cs │ ├── Niconico.Search │ │ ├── RemoveSearchHistoryCommand.cs │ │ └── VideoSearchIncrementalSource.cs │ ├── Niconico.Series │ │ ├── SeriesOwnerViewModel.cs │ │ └── UserSeriesItemViewModel.cs │ ├── Niconico.Share │ │ ├── CopyToClipboardCommand.cs │ │ ├── CopyToClipboardWithShareTextCommand.cs │ │ ├── OpenLinkCommand.cs │ │ └── OpenShareUICommand.cs │ ├── Niconico.Video │ │ ├── Commands │ │ │ ├── HiddenVideoOwnerAddCommand.cs │ │ │ ├── HiddenVideoOwnerRemoveCommand.cs │ │ │ ├── LocalPlaylistAddItemCommand.cs │ │ │ ├── LocalPlaylistCreateCommand.cs │ │ │ ├── LocalPlaylistDeleteCommand.cs │ │ │ ├── LocalPlaylistRemoveItemCommand.cs │ │ │ ├── MylistAddItemCommand.cs │ │ │ ├── MylistCopyItemCommand.cs │ │ │ ├── MylistCreateCommand.cs │ │ │ ├── MylistMoveItemCommand.cs │ │ │ ├── MylistRemoveItemCommand.cs │ │ │ ├── OpenVideoOwnerPageCommand.cs │ │ │ ├── PlaylistPlayAllCommand.cs │ │ │ ├── PlaylistPlayFromHereCommand.cs │ │ │ ├── QueueAddItemCommand.cs │ │ │ ├── QueueRemoveItemCommand.cs │ │ │ ├── RemoveWatchedItemsInAfterWatchPlaylistCommand.cs │ │ │ ├── SelectionAllSelectCommand.cs │ │ │ ├── SelectionExitCommand.cs │ │ │ ├── SelectionModeToggleCommand.cs │ │ │ ├── SelectionStartCommand.cs │ │ │ ├── VideoContentSelectionCommandBase.cs │ │ │ ├── VideoPlayCommand.cs │ │ │ ├── WatchHistoryRemoveAllCommand.cs │ │ │ └── WatchHistoryRemoveItemCommand.cs │ │ ├── VideoItemsSelectionContext.cs │ │ └── VideoListItemControlViewModel.cs │ ├── Player │ │ ├── CommentCommandEditerViewModel.cs │ │ ├── MediaPlayerSeekCommand.cs │ │ ├── MediaPlayerSetPlaybackRateCommand.cs │ │ ├── MediaPlayerToggleMuteCommand.cs │ │ ├── MediaPlayerVolumeChangeCommand.cs │ │ ├── ShowPrimaryViewCommand.cs │ │ ├── TogglePlayerDisplayViewCommand.cs │ │ └── Video │ │ │ ├── ChangeVideoQualityCommand.cs │ │ │ └── VideoTogglePlayPauseCommand.cs │ ├── PrimaryWindowCoreLayout │ │ ├── IDraggableAreaAware.cs │ │ ├── LiveMenuSubPageContent.cs │ │ ├── MenuItemBase.cs │ │ ├── MenuItemViewModel.cs │ │ ├── QueueMenuItemViewModel.cs │ │ ├── SeparatorMenuItemViewModel.cs │ │ └── VideoMenuSubPageContent.cs │ ├── SelectableItem.cs │ ├── Subscriptions │ │ ├── AddKeywordSearchSubscriptionCommand.cs │ │ ├── AddSubscriptionCommand.cs │ │ └── AddTagSearchSubscriptionCommand.cs │ ├── VideoCache.Commands │ │ ├── CacheAddRequestCommand.cs │ │ └── CacheDeleteRequestCommand.cs │ └── VideoListingPageViewModelBase.cs ├── Views.Hohoema │ ├── LocalMylist │ │ ├── LocalPlaylistManagePage.xaml │ │ ├── LocalPlaylistManagePage.xaml.cs │ │ ├── LocalPlaylistManagePageViewModel.cs │ │ ├── LocalPlaylistPage.xaml │ │ ├── LocalPlaylistPage.xaml.cs │ │ └── LocalPlaylistPageViewModel.cs │ ├── Queue │ │ ├── VideoQueuePage.xaml │ │ ├── VideoQueuePage.xaml.cs │ │ └── VideoQueuePageViewModel.cs │ ├── Subscription │ │ ├── EditSubscriptionGroupDialog.xaml │ │ ├── EditSubscriptionGroupDialog.xaml.cs │ │ ├── SubscVideoListPage.xaml │ │ ├── SubscVideoListPage.xaml.cs │ │ ├── SubscVideoListPageViewModel.cs │ │ ├── SubscriptionManagementPage.xaml │ │ ├── SubscriptionManagementPage.xaml.cs │ │ └── SubscriptionManagementPageViewModel.cs │ └── VideoCache │ │ ├── CacheManagementPage.xaml │ │ ├── CacheManagementPage.xaml.cs │ │ └── CacheManagementPageViewModel.cs ├── Views.Niconico │ ├── Activity │ │ ├── WatchHistoryPage.xaml │ │ ├── WatchHistoryPage.xaml.cs │ │ └── WatchHistoryPageViewModel.cs │ ├── Channel │ │ ├── ChannelVideoPage.xaml │ │ ├── ChannelVideoPage.xaml.cs │ │ └── ChannelVideoPageViewModel.cs │ ├── Follow │ │ ├── FollowManagePage.xaml │ │ ├── FollowManagePage.xaml.cs │ │ └── FollowManagePageViewModel.cs │ ├── FollowingsActivity │ │ ├── FollowingsActivityPage.xaml │ │ ├── FollowingsActivityPage.xaml.cs │ │ └── FollowingsActivityPageViewModel.cs │ ├── Live │ │ ├── LiveInfomationPage.xaml │ │ ├── LiveInfomationPage.xaml.cs │ │ ├── LiveInfomationPageViewModel.cs │ │ ├── LiveVideoListItem.xaml │ │ ├── LiveVideoListItem.xaml.cs │ │ ├── TimeshiftPage.xaml │ │ ├── TimeshiftPage.xaml.cs │ │ └── TimeshiftPageViewModel.cs │ ├── Mylist │ │ ├── MylistPage.xaml │ │ ├── MylistPage.xaml.cs │ │ ├── MylistPageViewModel.cs │ │ ├── OwnerMylistManagePage.xaml │ │ ├── OwnerMylistManagePage.xaml.cs │ │ ├── OwnerMylistManagePageViewModel.cs │ │ ├── UserMylistPage.xaml │ │ ├── UserMylistPage.xaml.cs │ │ └── UserMylistPageViewModel.cs │ ├── Search │ │ ├── CommunityInfoControlViewModel.cs │ │ ├── SearchHistoryListItem.xaml │ │ ├── SearchHistoryListItem.xaml.cs │ │ ├── SearchHistoryListItemViewModel.cs │ │ ├── SearchPage.xaml │ │ ├── SearchPage.xaml.cs │ │ ├── SearchPageViewModel.cs │ │ ├── SearchResultCommunityPage.xaml │ │ ├── SearchResultCommunityPage.xaml.cs │ │ ├── SearchResultCommunityPageViewModel.cs │ │ ├── SearchResultKeywordPage.xaml │ │ ├── SearchResultKeywordPage.xaml.cs │ │ ├── SearchResultKeywordPageViewModel.cs │ │ ├── SearchResultLivePage.xaml │ │ ├── SearchResultLivePage.xaml.cs │ │ ├── SearchResultLivePageViewModel.cs │ │ ├── SearchResultMylistPage.xaml │ │ ├── SearchResultMylistPage.xaml.cs │ │ ├── SearchResultMylistPageViewModel.cs │ │ ├── SearchResultTagPage.xaml │ │ ├── SearchResultTagPage.xaml.cs │ │ └── SearchResultTagPageViewModel.cs │ ├── Series │ │ ├── SeriesPage.xaml │ │ ├── SeriesPage.xaml.cs │ │ ├── SeriesPageViewModel.cs │ │ ├── UserSeriesPage.xaml │ │ ├── UserSeriesPage.xaml.cs │ │ └── UserSeriesPageViewModel.cs │ ├── User │ │ ├── UserInfoPage.xaml │ │ ├── UserInfoPage.xaml.cs │ │ ├── UserInfoPageViewModel.cs │ │ ├── UserVideoPage.xaml │ │ ├── UserVideoPage.xaml.cs │ │ └── UserVideoPageViewModel.cs │ ├── Video │ │ ├── VideoInfomationPage.xaml │ │ ├── VideoInfomationPage.xaml.cs │ │ └── VideoInfomationPageViewModel.cs │ └── VideoRanking │ │ ├── RankingCategoryListPage.xaml │ │ ├── RankingCategoryListPage.xaml.cs │ │ ├── RankingCategoryListPageViewModel.cs │ │ ├── RankingCategoryPage.xaml │ │ ├── RankingCategoryPage.xaml.cs │ │ └── RankingCategoryPageViewModel.cs ├── Views.Player │ ├── CommentCommandEditer.xaml │ ├── CommentCommandEditer.xaml.cs │ ├── LegacyVideoPlayerPage.xaml │ ├── LegacyVideoPlayerPage.xaml.cs │ ├── LegacyVideoPlayerPageViewModel.cs │ ├── LivePlayerPage.xaml │ ├── LivePlayerPage.xaml.cs │ ├── LivePlayerPageViewModel.cs │ ├── LivePlayerPageViewModel_CommentSubscribe.cs │ ├── PlayerSidePaneContentType.cs │ ├── VideoPlayerPage.xaml │ ├── VideoPlayerPage.xaml.cs │ ├── VideoPlayerPageViewModel.cs │ ├── VideoPlayerUI │ │ ├── DesktopPlayerUI.xaml │ │ ├── DesktopPlayerUI.xaml.cs │ │ ├── NallowPlayerUI.xaml │ │ ├── NallowPlayerUI.xaml.cs │ │ ├── SeekbarSlider.xaml │ │ ├── SeekbarSlider.xaml.cs │ │ └── VideoQualityListItemContainerStyleSelector.cs │ ├── _CommentRenderer │ │ ├── CommentRenderer.xaml │ │ ├── CommentRenderer.xaml.cs │ │ ├── CommentRendererHelper.cs │ │ ├── CommentUI.xaml │ │ └── CommentUI.xaml.cs │ ├── _DownloadProgress │ │ ├── DownloadProgressBar.xaml │ │ ├── DownloadProgressBar.xaml.cs │ │ ├── ProgressBarFragment.xaml │ │ ├── ProgressBarFragment.xaml.cs │ │ └── ProgressFragment.cs │ └── _PlayerSidePaneContent │ │ ├── EmptySidePaneContentViewModel.cs │ │ ├── LiveCommentsSidePaneContent.xaml │ │ ├── LiveCommentsSidePaneContent.xaml.cs │ │ ├── LiveCommentsSidePaneContentViewModel.cs │ │ ├── LiveSettingsSidePaneContent.xaml │ │ ├── LiveSettingsSidePaneContent.xaml.cs │ │ ├── PlayerSidePaneContentTemplateSelector.cs │ │ ├── PlaylistSidePaneContent.xaml │ │ ├── PlaylistSidePaneContent.xaml.cs │ │ ├── PlaylistSidePaneContentViewModel.cs │ │ ├── RelatedVideosSidePaneContent.xaml │ │ ├── RelatedVideosSidePaneContent.xaml.cs │ │ ├── RelatedVideosSidePaneContentViewModel.cs │ │ ├── SettingsSidePaneContentViewModel.cs │ │ ├── SidePaneContentViewModelBase.cs │ │ ├── VideoCommentSidePaneContent.xaml │ │ ├── VideoCommentSidePaneContent.xaml.cs │ │ ├── VideoCommentSidePaneContentViewModel.cs │ │ ├── VideoSettingsSidePaneContent.xaml │ │ └── VideoSettingsSidePaneContent.xaml.cs └── Views │ ├── BlankPage.xaml │ ├── BlankPage.xaml.cs │ ├── BlankPageViewModel.cs │ ├── Controls │ ├── AppTitleBar.xaml │ ├── AppTitleBar.xaml.cs │ ├── DelayedAutoTriggerButton.xaml │ ├── DelayedAutoTriggerButton.xaml.cs │ ├── HohoemaInAppNotification.xaml │ ├── HohoemaInAppNotification.xaml.cs │ ├── IchibaItemCard.xaml │ ├── IchibaItemCard.xaml.cs │ ├── ListItem │ │ ├── HohoemaListItemMiniCard.xaml │ │ ├── HohoemaListItemMiniCard.xaml.cs │ │ ├── HohoemaListItemVideo.xaml │ │ └── HohoemaListItemVideo.xaml.cs │ ├── LiteInAppNotification │ │ ├── LiteInAppNotification.Constants.cs │ │ ├── LiteInAppNotification.Properties.cs │ │ ├── LiteInAppNotification.cs │ │ └── LiteInAppNotification.xaml │ ├── TransientContainer │ │ ├── TransientContainer.Properties.cs │ │ ├── TransientContainer.cs │ │ └── TransientContainer.xaml │ └── VideoList │ │ ├── VideoCacheListItem.cs │ │ ├── VideoCacheListItem.xaml │ │ ├── VideoItemsListView.xaml │ │ ├── VideoItemsListView.xaml.cs │ │ ├── VideoListItemControl.cs │ │ └── VideoListItemControl.xaml │ ├── Converters │ ├── CacheStateToColorBrushConverter.cs │ ├── ColorToBrushConverter.cs │ ├── DateTimetoStringConverter.cs │ ├── EnumToNumberConverter.cs │ ├── ExpiredDateTimeToStringConverter.cs │ ├── InvertVisibilityConverter.cs │ ├── ItemClickEventArgsConverter.cs │ ├── PageTypeToIconConverter.cs │ ├── RelationalDateTimeConverter.cs │ ├── SizeToRectConverter.cs │ ├── SoundVolumeConveter.cs │ ├── StringJoinConverter.cs │ ├── StringToUriConverter.cs │ ├── SwipeSeekValueToTimeSpan.cs │ ├── TiemSpanToLocalizedStringConverter.cs │ ├── TimeSpanToMovieLengthStringValueConverter.cs │ ├── TimeSpanToSecondsConverter.cs │ ├── ToKMGTPEZYConverter.cs │ ├── ToUserFriendlyNumber.cs │ ├── TransparentColorConverter.cs │ └── VideoPositionToTimeConverter.cs │ ├── DebugPage.xaml │ ├── DebugPage.xaml.cs │ ├── DebugPageViewModel.cs │ ├── Dialogs │ ├── AdvancedSelectDialog.xaml │ ├── AdvancedSelectDialog.xaml.cs │ ├── HohoemaErrorReportDialog.xaml │ ├── HohoemaErrorReportDialog.xaml.cs │ ├── MarkdownTextDialog.xaml │ ├── MarkdownTextDialog.xaml.cs │ ├── MultiChoiceDialog.xaml │ ├── MultiChoiceDialog.xaml.cs │ ├── NiconicoLoginDialog.xaml │ ├── NiconicoLoginDialog.xaml.cs │ ├── NiconicoTwoFactorAuthDialog.xaml │ ├── NiconicoTwoFactorAuthDialog.xaml.cs │ ├── TwoFactorAuthDialog.xaml │ ├── TwoFactorAuthDialog.xaml.cs │ ├── _ContentSelectDialog │ │ ├── ContentSelectDialog.xaml │ │ ├── ContentSelectDialog.xaml.cs │ │ └── ContentSelectDialogContext.cs │ ├── _EditMylistGroupDialog │ │ ├── EditMylistGroupDialog.xaml │ │ ├── EditMylistGroupDialog.xaml.cs │ │ └── EditMylistGroupDialogContext.cs │ └── _TextInputDialog │ │ ├── TextInputDialog.xaml │ │ ├── TextInputDialog.xaml.cs │ │ └── TextInputDialogContext.cs │ ├── Extensions │ ├── ContextFlyoutExtension.cs │ ├── DependencyObjectExtensions.cs │ ├── Flyout │ │ └── FlyoutCustomContext.cs │ ├── ListViewBase │ │ ├── GroupHeaderContextFlyoutTemplate.cs │ │ ├── ItemContextFlyoutTemplate.cs │ │ ├── ListViewItemDeferInitialize.cs │ │ ├── ListViewSelectedItemsGetter.cs │ │ └── ListViewVerticalOffsetGetter.cs │ ├── LocalizeExtension.cs │ ├── MediaPlayer │ │ ├── MediaPlayerElementContentHeightGetter.cs │ │ └── MediaPlayerSetter.cs │ ├── VIsualStateManager │ │ └── DebugCurrentState.cs │ └── WebView │ │ ├── IgnoreScrolling.cs │ │ ├── LoadHtmlString.cs │ │ ├── PreventSpoilerXYNavigationInWebView.cs │ │ ├── WebViewAutoResizeToContent.cs │ │ └── WebViewNotifyUriClicked.cs │ ├── Flyouts │ ├── ChannelInfoFlyout.xaml │ ├── ChannelInfoFlyout.xaml.cs │ ├── LiveListItemFlyout.xaml │ ├── LiveListItemFlyout.xaml.cs │ ├── MylistItemFlyout.xaml │ ├── MylistItemFlyout.xaml.cs │ ├── RankingGenreItemFlyout.xaml │ ├── RankingGenreItemFlyout.xaml.cs │ ├── RankingGenreItemGroupFlyout.xaml │ ├── RankingGenreItemGroupFlyout.xaml.cs │ ├── SearchHistoryListItemFlyout.xaml │ ├── SearchHistoryListItemFlyout.xaml.cs │ ├── SubscriptionItemFlyout.xaml │ ├── SubscriptionItemFlyout.xaml.cs │ ├── UserInfoFlyout.xaml │ ├── UserInfoFlyout.xaml.cs │ ├── VideoItemFlyout.xaml │ └── VideoItemFlyout.xaml.cs │ ├── Helpers │ ├── SystemThemeHelper.cs │ ├── VisibilityExtension.cs │ └── VisualTreeExtention.cs │ ├── Interaction │ ├── Actions │ │ ├── CallDisposeAction.cs │ │ └── ScrollViewerVerticalPositionSettingsAction.cs │ ├── Behaviors │ │ ├── FocusGetter.cs │ │ ├── ListViewItemTappedCommand.cs │ │ ├── ListViewScrollFollowsToItemBehavior.cs │ │ ├── MultiSelection.cs │ │ ├── SetFocus.cs │ │ └── VisiblityFadeChanger.cs │ ├── Flyout │ │ ├── CloseFlyoutAction.cs │ │ ├── MenuFlyoutItemsSetter.cs │ │ ├── MenuFlyoutSubItemItemsSetter.cs │ │ └── OpenFlyout.cs │ └── Input │ │ ├── HideInputPaneAction.cs │ │ ├── KeyboardTrigger.cs │ │ ├── MouseWheelTrigger.cs │ │ ├── PointerCursolAutoHideBehavior.cs │ │ ├── Swipe.cs │ │ └── XYNavigationExtentions.cs │ ├── MediaElementExtention.cs │ ├── Mylist │ ├── MylistCardView.cs │ └── MylistCardView.xaml │ ├── NoUIProcessScreen.xaml │ ├── NoUIProcessScreen.xaml.cs │ ├── PrimaryWindowCoreLayout.xaml │ ├── PrimaryWindowCoreLayout.xaml.cs │ ├── PrimaryWindowCoreLayoutViewModel.cs │ ├── SecondaryWindowCoreLayout.xaml │ ├── SecondaryWindowCoreLayout.xaml.cs │ ├── SettingsPage.xaml │ ├── SettingsPage.xaml.cs │ ├── SettingsPageViewModel.cs │ ├── StateTrigger │ ├── CompactOverlayViewModeTrigger.cs │ ├── CompositeStateTrigger.cs │ ├── EqualConditionStateTrigger.cs │ ├── FlyoutIsOpenStateTrigger.cs │ ├── FocusTrigger.cs │ ├── InvertibleStateTrigger.cs │ ├── IsAssignableFromStateTrigger.cs │ ├── IsShowWithPrimaryViewTrigger.cs │ ├── IsShowWithSecondaryViewTrigger.cs │ ├── IsSupportCompactOverlayTrigger.cs │ ├── PointerFocusTrigger.cs │ ├── UIIntractionTriggerBase.cs │ ├── WindowActiveTrigger.cs │ └── WindowInWindowViewModeTrigger.cs │ ├── TemplateSelector │ ├── ContentTemplateSelector.cs │ ├── HohoemaFlyoutTemplateSelector.cs │ ├── ListItemContainerStyleSelector.cs │ ├── MenuSubPageTemplateSelector.cs │ ├── NullableTemplateSelector.cs │ ├── TypeBasedTemplateSelector.cs │ └── ValueDataTemplateSelector.cs │ └── UINavigation │ ├── UINavigationManager.cs │ └── UINavigationTrigger.cs ├── HohoemaModelTest ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── ExtractContenntIdTest.cs ├── HohoemaModelTest.csproj ├── Package.appxmanifest ├── PlaylistTest.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── UnitTestApp.xaml └── UnitTestApp.xaml.cs ├── LICENSE ├── R3.UWP ├── DispatcherQueueTimerProvider.cs ├── Properties │ ├── AssemblyInfo.cs │ └── R3.UWP.rd.xml ├── R3.UWP.csproj └── WinRTProviderInitializer.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/.gitignore -------------------------------------------------------------------------------- /Hohoema.Core/.editorconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Maintenances/IMaintenance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Maintenances/IMaintenance.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Migrations/IMigateAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Migrations/IMigateAsync.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Navigations/INavigationParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Navigations/INavigationParameters.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Navigations/INavigationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Navigations/INavigationResult.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Playlist/PlayLiveRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Playlist/PlayLiveRequestMessage.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Playlist/VideoPlayedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Playlist/VideoPlayedMessage.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Services/IDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Services/IDialogService.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Services/ILocalizeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Services/ILocalizeService.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Services/IMylistGroupDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Services/IMylistGroupDialogService.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Services/INotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Services/INotificationService.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Services/ISelectionDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Services/ISelectionDialogService.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Subscriptions/SubscriptionFeedVideoMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Subscriptions/SubscriptionFeedVideoMessages.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Subscriptions/SubscriptionGroupId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Subscriptions/SubscriptionGroupId.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Subscriptions/SubscriptionGroupMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Subscriptions/SubscriptionGroupMessages.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Subscriptions/SubscriptionMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Subscriptions/SubscriptionMessages.cs -------------------------------------------------------------------------------- /Hohoema.Core/Contracts/Subscriptions/SusbcriptionId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Contracts/Subscriptions/SusbcriptionId.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/ApiContractHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/ApiContractHelper.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/AsyncLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/AsyncLock.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/ClipboardHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/ClipboardHelper.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/ColorExtention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/ColorExtention.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/ConnectionRetryUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/ConnectionRetryUtil.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/DeviceTypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/DeviceTypeHelper.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/DisplayRequestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/DisplayRequestHelper.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/FilePathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/FilePathHelper.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/HtmlFileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/HtmlFileHelper.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/HttpRandomAccessStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/HttpRandomAccessStream.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/IAsyncInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/IAsyncInitialize.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/InputCapabilityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/InputCapabilityHelper.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/InternetConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/InternetConnection.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/ListExtention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/ListExtention.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/NumberToKMGTPEZYStringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/NumberToKMGTPEZYStringHelper.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/ObservableHashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/ObservableHashSet.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/ObservableObjectDebugHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/ObservableObjectDebugHelper.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/ShareHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/ShareHelper.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/StorageFolderExtention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/StorageFolderExtention.cs -------------------------------------------------------------------------------- /Hohoema.Core/Helpers/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Helpers/StringHelper.cs -------------------------------------------------------------------------------- /Hohoema.Core/Hohoema.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Hohoema.Core.csproj -------------------------------------------------------------------------------- /Hohoema.Core/Infra/FlagsRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Infra/FlagsRepositoryBase.cs -------------------------------------------------------------------------------- /Hohoema.Core/Infra/HohoemaExpception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Infra/HohoemaExpception.cs -------------------------------------------------------------------------------- /Hohoema.Core/Infra/LiteDbService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Infra/LiteDbService.cs -------------------------------------------------------------------------------- /Hohoema.Core/Infra/ProviderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Infra/ProviderBase.cs -------------------------------------------------------------------------------- /Hohoema.Core/Infra/SystemTextJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Infra/SystemTextJsonSerializer.cs -------------------------------------------------------------------------------- /Hohoema.Core/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/IsExternalInit.cs -------------------------------------------------------------------------------- /Hohoema.Core/MessengerObservableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/MessengerObservableExtensions.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Application/AppFlagsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Application/AppFlagsRepository.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Application/AppUpdateNotice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Application/AppUpdateNotice.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Application/AppearanceSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Application/AppearanceSettings.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Application/ApplicationInteractionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Application/ApplicationInteractionMode.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Application/ApplicationLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Application/ApplicationLayout.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Application/BackupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Application/BackupManager.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Application/FeatureFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Application/FeatureFlags.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Application/HohoemaAppServiceLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Application/HohoemaAppServiceLevel.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Application/LisenceSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Application/LisenceSummary.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Application/PlayerDisplayView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Application/PlayerDisplayView.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Application/ThumbnailCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Application/ThumbnailCacheManager.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Application/ToastNotificationConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Application/ToastNotificationConstants.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/LocalMylist/LocalMylistRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/LocalMylist/LocalMylistRepository.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/LocalMylist/LocalPlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/LocalMylist/LocalPlaylist.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/AccountManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/AccountManager.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Channel/ChannelNameCacheRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Channel/ChannelNameCacheRepository.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Channel/ChannelProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Channel/ChannelProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Channel/ChannelVideoContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Channel/ChannelVideoContent.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Channel/ChannelVideoPlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Channel/ChannelVideoPlaylist.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Channel/ChannelVideoPlaylistSortOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Channel/ChannelVideoPlaylistSortOption.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Channel/IChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Channel/IChannel.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Follow/FollowItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Follow/FollowItemInfo.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Follow/FollowItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Follow/FollowItemType.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Follow/IFollowable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Follow/IFollowable.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Follow/LoginUser/ChannelFollowProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Follow/LoginUser/ChannelFollowProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Follow/LoginUser/IFollowProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Follow/LoginUser/IFollowProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Follow/LoginUser/MylistFollowProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Follow/LoginUser/MylistFollowProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Follow/LoginUser/TagFollowProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Follow/LoginUser/TagFollowProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Follow/LoginUser/UserFollowProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Follow/LoginUser/UserFollowProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/FollowableExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/FollowableExtension.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/INiconicoContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/INiconicoContent.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Live/ILiveContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Live/ILiveContent.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Live/NicoLiveCacheRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Live/NicoLiveCacheRepository.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Live/NicoLiveProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Live/NicoLiveProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Mylist/IMylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Mylist/IMylist.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Mylist/LoginUser/LoginUserMylistPlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Mylist/LoginUser/LoginUserMylistPlaylist.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Mylist/LoginUser/LoginUserMylistProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Mylist/LoginUser/LoginUserMylistProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Mylist/MylistItemsGetResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Mylist/MylistItemsGetResult.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Mylist/MylistPlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Mylist/MylistPlaylist.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Mylist/MylistPlaylistExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Mylist/MylistPlaylistExtension.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Mylist/MylistProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Mylist/MylistProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/NiconicoObjectExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/NiconicoObjectExtension.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/NiconicoSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/NiconicoSession.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Recommend/RecommendProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Recommend/RecommendProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Search/SearchHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Search/SearchHistory.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Search/SearchProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Search/SearchProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Search/SearchVideoPlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Search/SearchVideoPlaylist.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Search/SearchVideoPlaylistSortOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Search/SearchVideoPlaylistSortOption.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Series/SeriesVideoPlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Series/SeriesVideoPlaylist.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/User/IUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/User/IUser.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/User/UserNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/User/UserNameProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/User/UserProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/User/UserProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/User/UserVideoPlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/User/UserVideoPlaylist.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/User/UserVideoPlaylistSortOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/User/UserVideoPlaylistSortOption.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/ITag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/ITag.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/IVideoContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/IVideoContent.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/LoginUserHistoryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/LoginUserHistoryProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/NicoVideo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/NicoVideo.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/NicoVideoOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/NicoVideoOwner.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/NicoVideoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/NicoVideoProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/NicoVideoQuality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/NicoVideoQuality.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/NvapiVideoContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/NvapiVideoContent.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/Ranking/RankingGenreCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/Ranking/RankingGenreCache.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/Ranking/RankingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/Ranking/RankingProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/Series/ISeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/Series/ISeries.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/Series/SeriesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/Series/SeriesProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/VideoCacheSettings_Legacy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/VideoCacheSettings_Legacy.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/VideoFilteringSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/VideoFilteringSettings.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/VideoPlayedHistoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/VideoPlayedHistoryRepository.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Niconico/Video/VideoRankingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Niconico/Video/VideoRankingSettings.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Notification/InAppNotificationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Notification/InAppNotificationMessage.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Notification/LiteNotificationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Notification/LiteNotificationMessage.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/PageNavigation/HohoemaPageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/PageNavigation/HohoemaPageType.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/PageNavigation/IPinablePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/PageNavigation/IPinablePage.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/PageNavigation/ISearchHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/PageNavigation/ISearchHistory.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/PageNavigation/ITitleUpdatablePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/PageNavigation/ITitleUpdatablePage.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/PageNavigation/MylistUserSelectedSortRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/PageNavigation/MylistUserSelectedSortRepository.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/PageNavigation/RestoreNavigationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/PageNavigation/RestoreNavigationManager.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/PageNavigation/SearchTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/PageNavigation/SearchTarget.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Pins/HohoemaPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Pins/HohoemaPin.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Pins/PinSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Pins/PinSettings.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Comment/CommentDisplayMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Comment/CommentDisplayMode.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Comment/CommentFliteringRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Comment/CommentFliteringRepository.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Comment/CommentSizeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Comment/CommentSizeMode.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Comment/IComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Comment/IComment.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Comment/ICommentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Comment/ICommentFilter.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Comment/ICommentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Comment/ICommentService.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/INiconicoVideoSessionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/INiconicoVideoSessionProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/IStreamingSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/IStreamingSession.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Live/LiveSuggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Live/LiveSuggestion.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Live/LiveVidePagePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Live/LiveVidePagePayload.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Live/NicoLiveInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Live/NicoLiveInfoType.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/MediaPlayerSoundVolumeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/MediaPlayerSoundVolumeManager.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/PlayerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/PlayerSettings.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/Cache/CacheRequestRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/Cache/CacheRequestRepository.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/Cache/CachefolderAccessState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/Cache/CachefolderAccessState.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/Cache/NicoVideoCacheProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/Cache/NicoVideoCacheProgress.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/Cache/NicoVideoCacheState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/Cache/NicoVideoCacheState.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/Cache/NicoVideoCached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/Cache/NicoVideoCached.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/Cache/VideoCacheManagerLegacy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/Cache/VideoCacheManagerLegacy.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/Comment/CommentClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/Comment/CommentClient.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/Comment/CommentCommandPermissionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/Comment/CommentCommandPermissionType.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/Comment/CommentServerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/Comment/CommentServerInfo.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/Comment/NicoScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/Comment/NicoScript.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/Comment/VideoComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/Comment/VideoComment.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/Comment/VideoCommentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/Comment/VideoCommentService.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/NicoVideoCanNotDownloadReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/NicoVideoCanNotDownloadReason.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/NicoVideoQualityEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/NicoVideoQualityEntity.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/NicoVideoQuality_Legacy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/NicoVideoQuality_Legacy.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/NicoVideoSessionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/NicoVideoSessionProvider.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/Video/NicoVideoTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/Video/NicoVideoTag.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Player/VideoStreamingOriginOrchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Player/VideoStreamingOriginOrchestrator.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Playlist/BufferedPlaylistItemsSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Playlist/BufferedPlaylistItemsSource.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Playlist/HohoemaPlaylistPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Playlist/HohoemaPlaylistPlayer.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Playlist/IPlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Playlist/IPlaylist.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Playlist/IPlaylistFactoryResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Playlist/IPlaylistFactoryResolver.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Playlist/PlaylistExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Playlist/PlaylistExtension.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Playlist/PlaylistItemSortOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Playlist/PlaylistItemSortOrder.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Playlist/PlaylistItemsSourceOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Playlist/PlaylistItemsSourceOrigin.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Playlist/QueuePlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Playlist/QueuePlaylist.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Playlist/QueuePlaylistSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Playlist/QueuePlaylistSetting.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Purchase/HohoemaPurchase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Purchase/HohoemaPurchase.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Subscriptions/SubscFeedVideoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Subscriptions/SubscFeedVideoRepository.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Subscriptions/SubscriptionGroupPlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Subscriptions/SubscriptionGroupPlaylist.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Subscriptions/SubscriptionGroupRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Subscriptions/SubscriptionGroupRepository.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Subscriptions/SubscriptionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Subscriptions/SubscriptionManager.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Subscriptions/SubscriptionPlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Subscriptions/SubscriptionPlaylist.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Subscriptions/SubscriptionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Subscriptions/SubscriptionRepository.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/Subscriptions/SubscriptionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/Subscriptions/SubscriptionSettings.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/IVideoCacheDownloadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/IVideoCacheDownloadOperation.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/IVideoCacheDownloadOperationOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/IVideoCacheDownloadOperationOutput.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/NicoVideoCacheQualityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/NicoVideoCacheQualityHelper.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/PrepareNextVideoCacheDownloadingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/PrepareNextVideoCacheDownloadingResult.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/VideoCacheDownloadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/VideoCacheDownloadOperation.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/VideoCacheDownloadOperationCreationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/VideoCacheDownloadOperationCreationResult.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/VideoCacheDownloadOperationFailedReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/VideoCacheDownloadOperationFailedReason.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/VideoCacheDownloadOperationProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/VideoCacheDownloadOperationProgress.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/VideoCacheDownloadOperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/VideoCacheDownloadOperationResult.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/VideoCacheEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/VideoCacheEntity.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/VideoCacheException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/VideoCacheException.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/VideoCacheItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/VideoCacheItem.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/VideoCacheItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/VideoCacheItemRepository.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/VideoCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/VideoCacheManager.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/VideoCacheSaveFolderManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/VideoCacheSaveFolderManager.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/VideoCacheSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/VideoCacheSettings.cs -------------------------------------------------------------------------------- /Hohoema.Core/Models/VideoCache/VideoCacheStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Models/VideoCache/VideoCacheStatus.cs -------------------------------------------------------------------------------- /Hohoema.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Hohoema.Core/Properties/Hohoema.Models.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Properties/Hohoema.Models.rd.xml -------------------------------------------------------------------------------- /Hohoema.Core/Services/LocalMylistManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Services/LocalMylistManager.cs -------------------------------------------------------------------------------- /Hohoema.Core/Services/Maintenance/VideoThumbnailImageCacheMaintenance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Services/Maintenance/VideoThumbnailImageCacheMaintenance.cs -------------------------------------------------------------------------------- /Hohoema.Core/Services/Migration/CommentFilteringNGScoreZeroFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Services/Migration/CommentFilteringNGScoreZeroFixture.cs -------------------------------------------------------------------------------- /Hohoema.Core/Services/Migration/SearchTargetMigration_V_1_1_0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Services/Migration/SearchTargetMigration_V_1_1_0.cs -------------------------------------------------------------------------------- /Hohoema.Core/Services/Niconico/FollowNotificationAndConfirmListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Services/Niconico/FollowNotificationAndConfirmListener.cs -------------------------------------------------------------------------------- /Hohoema.Core/Services/Niconico/LoginUserOwnedMylistManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Services/Niconico/LoginUserOwnedMylistManager.cs -------------------------------------------------------------------------------- /Hohoema.Core/Services/Niconico/WatchHistoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Services/Niconico/WatchHistoryManager.cs -------------------------------------------------------------------------------- /Hohoema.Core/Services/Playlist/MylistResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Services/Playlist/MylistResolver.cs -------------------------------------------------------------------------------- /Hohoema.Core/Services/Playlist/PlaylistFactory/MylistPlaylistFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Services/Playlist/PlaylistFactory/MylistPlaylistFactory.cs -------------------------------------------------------------------------------- /Hohoema.Core/Services/Playlist/PlaylistFactory/UserVideoPlaylistFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Services/Playlist/PlaylistFactory/UserVideoPlaylistFactory.cs -------------------------------------------------------------------------------- /Hohoema.Core/Services/Playlist/PlaylistItemsSourceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Services/Playlist/PlaylistItemsSourceResolver.cs -------------------------------------------------------------------------------- /Hohoema.Core/Services/Videos/CommentDisplayingRangeExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Services/Videos/CommentDisplayingRangeExtractor.cs -------------------------------------------------------------------------------- /Hohoema.Core/Services/Videos/CommentFilteringFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.Core/Services/Videos/CommentFilteringFacade.cs -------------------------------------------------------------------------------- /Hohoema.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema.sln -------------------------------------------------------------------------------- /Hohoema/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/.editorconfig -------------------------------------------------------------------------------- /Hohoema/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/App.xaml -------------------------------------------------------------------------------- /Hohoema/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/App.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Assets/BadgeLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/BadgeLogo.scale-100.png -------------------------------------------------------------------------------- /Hohoema/Assets/BadgeLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/BadgeLogo.scale-125.png -------------------------------------------------------------------------------- /Hohoema/Assets/BadgeLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/BadgeLogo.scale-150.png -------------------------------------------------------------------------------- /Hohoema/Assets/BadgeLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/BadgeLogo.scale-200.png -------------------------------------------------------------------------------- /Hohoema/Assets/BadgeLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/BadgeLogo.scale-400.png -------------------------------------------------------------------------------- /Hohoema/Assets/LibLisencies/_lisence_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/LibLisencies/_lisence_summary.json -------------------------------------------------------------------------------- /Hohoema/Assets/LockScreenLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/LockScreenLogo.scale-100.png -------------------------------------------------------------------------------- /Hohoema/Assets/LockScreenLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/LockScreenLogo.scale-150.png -------------------------------------------------------------------------------- /Hohoema/Assets/NewStoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/NewStoreLogo.scale-100.png -------------------------------------------------------------------------------- /Hohoema/Assets/NewStoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/NewStoreLogo.scale-125.png -------------------------------------------------------------------------------- /Hohoema/Assets/NewStoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/NewStoreLogo.scale-150.png -------------------------------------------------------------------------------- /Hohoema/Assets/NewStoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/NewStoreLogo.scale-200.png -------------------------------------------------------------------------------- /Hohoema/Assets/NewStoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/NewStoreLogo.scale-400.png -------------------------------------------------------------------------------- /Hohoema/Assets/ProtocolLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/ProtocolLogo.png -------------------------------------------------------------------------------- /Hohoema/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Hohoema/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /Hohoema/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /Hohoema/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Hohoema/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square30x30Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square30x30Logo.scale-100.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square30x30Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square30x30Logo.scale-200.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square310x310Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square310x310Logo.scale-125.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square310x310Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square310x310Logo.scale-150.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square310x310Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square310x310Logo.scale-200.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square310x310Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square310x310Logo.scale-400.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.targetsize-16_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.targetsize-16_altform-unplated.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.targetsize-256_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.targetsize-256_altform-unplated.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.targetsize-32_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.targetsize-32_altform-unplated.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square44x44Logo.targetsize-48_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square44x44Logo.targetsize-48_altform-unplated.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square71x71Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square71x71Logo.scale-125.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square71x71Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square71x71Logo.scale-150.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square71x71Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square71x71Logo.scale-200.png -------------------------------------------------------------------------------- /Hohoema/Assets/Square71x71Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Square71x71Logo.scale-400.png -------------------------------------------------------------------------------- /Hohoema/Assets/StoreTesting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/StoreTesting.xml -------------------------------------------------------------------------------- /Hohoema/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /Hohoema/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /Hohoema/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /Hohoema/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Hohoema/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /Hohoema/Assets/hohoema-icon-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/hohoema-icon-final.png -------------------------------------------------------------------------------- /Hohoema/Assets/html/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Assets/html/template.html -------------------------------------------------------------------------------- /Hohoema/Assets/xbox_encrypt_key.txt: -------------------------------------------------------------------------------- 1 | sh%Pp!o1)F[6|!3{Ddp_ -------------------------------------------------------------------------------- /Hohoema/Contracts/AppLifecycle/ISuspendAndResumeAware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Contracts/AppLifecycle/ISuspendAndResumeAware.cs -------------------------------------------------------------------------------- /Hohoema/Contracts/AppLifecycle/IToastActivationAware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Contracts/AppLifecycle/IToastActivationAware.cs -------------------------------------------------------------------------------- /Hohoema/Contracts/Navigations/INavigationAware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Contracts/Navigations/INavigationAware.cs -------------------------------------------------------------------------------- /Hohoema/Contracts/Navigations/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Contracts/Navigations/INavigationService.cs -------------------------------------------------------------------------------- /Hohoema/Contracts/Navigations/IPageNavigatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Contracts/Navigations/IPageNavigatable.cs -------------------------------------------------------------------------------- /Hohoema/Contracts/Navigations/IViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Contracts/Navigations/IViewLocator.cs -------------------------------------------------------------------------------- /Hohoema/Contracts/Navigations/NavigationAsyncRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Contracts/Navigations/NavigationAsyncRequestMessage.cs -------------------------------------------------------------------------------- /Hohoema/Contracts/Navigations/NavigationMessengerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Contracts/Navigations/NavigationMessengerExtension.cs -------------------------------------------------------------------------------- /Hohoema/Contracts/Navigations/NavigationParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Contracts/Navigations/NavigationParameters.cs -------------------------------------------------------------------------------- /Hohoema/Contracts/Player/ChangePlayerDisplayViewRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Contracts/Player/ChangePlayerDisplayViewRequestMessage.cs -------------------------------------------------------------------------------- /Hohoema/Contracts/Player/IPlayerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Contracts/Player/IPlayerView.cs -------------------------------------------------------------------------------- /Hohoema/Contracts/Player/PlayRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Contracts/Player/PlayRequestMessage.cs -------------------------------------------------------------------------------- /Hohoema/Contracts/Subscriptions/ISubscriptionDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Contracts/Subscriptions/ISubscriptionDialogService.cs -------------------------------------------------------------------------------- /Hohoema/Contracts/ViewModels/IWatchHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Contracts/ViewModels/IWatchHistory.cs -------------------------------------------------------------------------------- /Hohoema/Database/HohoemaLiteDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Database/HohoemaLiteDbContext.cs -------------------------------------------------------------------------------- /Hohoema/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/FodyWeavers.xsd -------------------------------------------------------------------------------- /Hohoema/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Hohoema/Hohoema.GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Hohoema.GlobalUsings.cs -------------------------------------------------------------------------------- /Hohoema/Hohoema.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Hohoema.csproj -------------------------------------------------------------------------------- /Hohoema/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/IsExternalInit.cs -------------------------------------------------------------------------------- /Hohoema/Locales/LocaleToDisplayNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Locales/LocaleToDisplayNameConverter.cs -------------------------------------------------------------------------------- /Hohoema/Locales/LocalizeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Locales/LocalizeConverter.cs -------------------------------------------------------------------------------- /Hohoema/Locales/LocalizeWithParameterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Locales/LocalizeWithParameterConverter.cs -------------------------------------------------------------------------------- /Hohoema/Locales/en-US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Locales/en-US.txt -------------------------------------------------------------------------------- /Hohoema/Locales/ja-JP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Locales/ja-JP.txt -------------------------------------------------------------------------------- /Hohoema/Locales/zh-CHS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Locales/zh-CHS.txt -------------------------------------------------------------------------------- /Hohoema/NdgrClientSharp/netstandard2.0/NdgrClientSharp.Protocol.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/NdgrClientSharp/netstandard2.0/NdgrClientSharp.Protocol.deps.json -------------------------------------------------------------------------------- /Hohoema/NdgrClientSharp/netstandard2.0/NdgrClientSharp.Protocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/NdgrClientSharp/netstandard2.0/NdgrClientSharp.Protocol.dll -------------------------------------------------------------------------------- /Hohoema/NdgrClientSharp/netstandard2.0/NdgrClientSharp.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/NdgrClientSharp/netstandard2.0/NdgrClientSharp.deps.json -------------------------------------------------------------------------------- /Hohoema/NdgrClientSharp/netstandard2.0/NdgrClientSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/NdgrClientSharp/netstandard2.0/NdgrClientSharp.dll -------------------------------------------------------------------------------- /Hohoema/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Package.appxmanifest -------------------------------------------------------------------------------- /Hohoema/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Hohoema/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Hohoema/Services/ApplicationLayoutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/ApplicationLayoutManager.cs -------------------------------------------------------------------------------- /Hohoema/Services/CheckingClipboardAndNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/CheckingClipboardAndNotificationService.cs -------------------------------------------------------------------------------- /Hohoema/Services/CurrentActiveWindowUIContextService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/CurrentActiveWindowUIContextService.cs -------------------------------------------------------------------------------- /Hohoema/Services/DialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/DialogService.cs -------------------------------------------------------------------------------- /Hohoema/Services/LocalizeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/LocalizeService.cs -------------------------------------------------------------------------------- /Hohoema/Services/Navigations/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Navigations/NavigationService.cs -------------------------------------------------------------------------------- /Hohoema/Services/Navigations/NavigationTriggerFromExternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Navigations/NavigationTriggerFromExternal.cs -------------------------------------------------------------------------------- /Hohoema/Services/Navigations/PagePayload/LoginRedirectPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Navigations/PagePayload/LoginRedirectPayload.cs -------------------------------------------------------------------------------- /Hohoema/Services/Navigations/PagePayload/MylistPagePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Navigations/PagePayload/MylistPagePayload.cs -------------------------------------------------------------------------------- /Hohoema/Services/Navigations/PagePayload/PagePayloadBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Navigations/PagePayload/PagePayloadBase.cs -------------------------------------------------------------------------------- /Hohoema/Services/Navigations/PagePayload/Search/SearchPagePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Navigations/PagePayload/Search/SearchPagePayload.cs -------------------------------------------------------------------------------- /Hohoema/Services/Navigations/PagePayload/Search/VideoSearchOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Navigations/PagePayload/Search/VideoSearchOption.cs -------------------------------------------------------------------------------- /Hohoema/Services/Navigations/PagePayload/SecondaryViewNavigatePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Navigations/PagePayload/SecondaryViewNavigatePayload.cs -------------------------------------------------------------------------------- /Hohoema/Services/Navigations/PagePayload/VideoPlayPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Navigations/PagePayload/VideoPlayPayload.cs -------------------------------------------------------------------------------- /Hohoema/Services/NiconicoLoginService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/NiconicoLoginService.cs -------------------------------------------------------------------------------- /Hohoema/Services/NoProcessUIScreenContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/NoProcessUIScreenContext.cs -------------------------------------------------------------------------------- /Hohoema/Services/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/NotificationService.cs -------------------------------------------------------------------------------- /Hohoema/Services/Player/AppWindowSecondaryViewPlayerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Player/AppWindowSecondaryViewPlayerManager.cs -------------------------------------------------------------------------------- /Hohoema/Services/Player/CloseToastNotificationWhenPlayStarted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Player/CloseToastNotificationWhenPlayStarted.cs -------------------------------------------------------------------------------- /Hohoema/Services/Player/KeepActiveDisplayWhenPlaying.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Player/KeepActiveDisplayWhenPlaying.cs -------------------------------------------------------------------------------- /Hohoema/Services/Player/ObservableMediaPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Player/ObservableMediaPlayer.cs -------------------------------------------------------------------------------- /Hohoema/Services/Player/PrimaryViewPlayerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Player/PrimaryViewPlayerManager.cs -------------------------------------------------------------------------------- /Hohoema/Services/Player/SecondaryViewPlayerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Player/SecondaryViewPlayerManager.cs -------------------------------------------------------------------------------- /Hohoema/Services/Player/Videos/RelatedVideoContentsAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Player/Videos/RelatedVideoContentsAggregator.cs -------------------------------------------------------------------------------- /Hohoema/Services/Player/Videos/VideoCommentPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Player/Videos/VideoCommentPlayer.cs -------------------------------------------------------------------------------- /Hohoema/Services/Player/Videos/VideoEndedRecommendation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Player/Videos/VideoEndedRecommendation.cs -------------------------------------------------------------------------------- /Hohoema/Services/Player/Videos/VideoPlayRequestBridgeToPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Player/Videos/VideoPlayRequestBridgeToPlayer.cs -------------------------------------------------------------------------------- /Hohoema/Services/Player/Videos/VideoStreamingOriginOrchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Player/Videos/VideoStreamingOriginOrchestrator.cs -------------------------------------------------------------------------------- /Hohoema/Services/Playlist/AutoSkipToPlaylistNextVideoWhenPlayFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Playlist/AutoSkipToPlaylistNextVideoWhenPlayFailed.cs -------------------------------------------------------------------------------- /Hohoema/Services/Playlist/PlaylistSelectDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Playlist/PlaylistSelectDialogService.cs -------------------------------------------------------------------------------- /Hohoema/Services/Subscriptions/SubscriptionDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Subscriptions/SubscriptionDialogService.cs -------------------------------------------------------------------------------- /Hohoema/Services/Subscriptions/SubscriptionUpdateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Subscriptions/SubscriptionUpdateManager.cs -------------------------------------------------------------------------------- /Hohoema/Services/Subscriptions/SyncWatchHistoryOnLoggedIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/Subscriptions/SyncWatchHistoryOnLoggedIn.cs -------------------------------------------------------------------------------- /Hohoema/Services/VideoCache/Events/EndCacheSaveFolderChangingMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/VideoCache/Events/EndCacheSaveFolderChangingMessage.cs -------------------------------------------------------------------------------- /Hohoema/Services/VideoCache/Events/VideoCacheProgressChangedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/VideoCache/Events/VideoCacheProgressChangedMessage.cs -------------------------------------------------------------------------------- /Hohoema/Services/VideoCache/Events/VideoCacheStatusChangedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/VideoCache/Events/VideoCacheStatusChangedMessage.cs -------------------------------------------------------------------------------- /Hohoema/Services/VideoCache/NotificationCacheVideoDeletedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/VideoCache/NotificationCacheVideoDeletedService.cs -------------------------------------------------------------------------------- /Hohoema/Services/VideoCache/VideoCacheDownloadOperationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/VideoCache/VideoCacheDownloadOperationManager.cs -------------------------------------------------------------------------------- /Hohoema/Services/VideoCache/VideoCacheFolderManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Services/VideoCache/VideoCacheFolderManager.cs -------------------------------------------------------------------------------- /Hohoema/Styles/DefaultStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Styles/DefaultStyle.xaml -------------------------------------------------------------------------------- /Hohoema/Styles/FixedHeaderListViewStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Styles/FixedHeaderListViewStyle.xaml -------------------------------------------------------------------------------- /Hohoema/Styles/HohoemaListItemStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Styles/HohoemaListItemStyle.xaml -------------------------------------------------------------------------------- /Hohoema/Styles/ListViewItemStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Styles/ListViewItemStyles.xaml -------------------------------------------------------------------------------- /Hohoema/Styles/NiconicoStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Styles/NiconicoStyles.xaml -------------------------------------------------------------------------------- /Hohoema/Styles/SettingsControlStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Styles/SettingsControlStyles.xaml -------------------------------------------------------------------------------- /Hohoema/Styles/TVSafeColor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Styles/TVSafeColor.xaml -------------------------------------------------------------------------------- /Hohoema/Styles/TVStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Styles/TVStyle.xaml -------------------------------------------------------------------------------- /Hohoema/Styles/UWPUIControlsDefaultStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Styles/UWPUIControlsDefaultStyles.xaml -------------------------------------------------------------------------------- /Hohoema/Styles/VideoListItemControlDefaultTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Styles/VideoListItemControlDefaultTemplate.xaml -------------------------------------------------------------------------------- /Hohoema/Styles/VideoListItemControlDefaultTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Styles/VideoListItemControlDefaultTemplate.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Styles/VideoProgressBarStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Styles/VideoProgressBarStyle.xaml -------------------------------------------------------------------------------- /Hohoema/ViewModels/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/CommandBase.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Flyouts/FollowItemFlyoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Flyouts/FollowItemFlyoutViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Flyouts/MylistItemFlyoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Flyouts/MylistItemFlyoutViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Flyouts/SubscriptionItemFlyoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Flyouts/SubscriptionItemFlyoutViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Hohoema.LocalMylist/LocalMylistCreateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Hohoema.LocalMylist/LocalMylistCreateCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/HohoemaListingPageItemBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/HohoemaListingPageItemBase.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/HohoemaListingPageViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/HohoemaListingPageViewModelBase.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/HohoemaPageViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/HohoemaPageViewModelBase.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/HohoemaSecondaryViewFrameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/HohoemaSecondaryViewFrameViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/HohoemaVideoListException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/HohoemaVideoListException.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/IHohoemaListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/IHohoemaListItem.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Navigation.Commands/OpenContentOwnerPageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Navigation.Commands/OpenContentOwnerPageCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Navigation.Commands/OpenPageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Navigation.Commands/OpenPageCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Navigation.Commands/OpenPageWithIdCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Navigation.Commands/OpenPageWithIdCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Navigation.Commands/OpenVideoListPageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Navigation.Commands/OpenVideoListPageCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Navigation.Commands/OpenVideoOwnerMylistListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Navigation.Commands/OpenVideoOwnerMylistListCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Navigation.Commands/OpenVideoOwnerSeriesListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Navigation.Commands/OpenVideoOwnerSeriesListCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Navigation.Commands/OpenVideoOwnerVideoListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Navigation.Commands/OpenVideoOwnerVideoListCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Navigation.Commands/SearchCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Navigation.Commands/SearchCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/NavigationAwareViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/NavigationAwareViewModelBase.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/NavigationQueryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/NavigationQueryHelper.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Account/LogoutFromNiconicoCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Account/LogoutFromNiconicoCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Follow/FollowContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Follow/FollowContext.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Follow/FollowListup/FollowChannelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Follow/FollowListup/FollowChannelViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Follow/FollowListup/FollowGroupViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Follow/FollowListup/FollowGroupViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Follow/FollowListup/FollowMylistViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Follow/FollowListup/FollowMylistViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Follow/FollowListup/FollowTagGroupViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Follow/FollowListup/FollowTagGroupViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Follow/FollowListup/FollowTagViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Follow/FollowListup/FollowTagViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Follow/FollowListup/FollowUserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Follow/FollowListup/FollowUserViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Follow/IFollowContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Follow/IFollowContext.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Likes/VideoLikesContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Likes/VideoLikesContext.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Live/LiveInfoListItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Live/LiveInfoListItemViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Live/NicoLiveUserIdAddToNGCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Live/NicoLiveUserIdAddToNGCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Live/NicoLiveUserIdRemoveFromNGCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Live/NicoLiveUserIdRemoveFromNGCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Live/OpenBroadcasterInfoCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Live/OpenBroadcasterInfoCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Live/OpenLiveContentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Live/OpenLiveContentCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Ranking/FavoriteRankingGenreGroupItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Ranking/FavoriteRankingGenreGroupItem.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Ranking/FavoriteRankingGenreItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Ranking/FavoriteRankingGenreItemCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Ranking/HiddenGenreItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Ranking/HiddenGenreItem.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Ranking/HiddenRankingGenreItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Ranking/HiddenRankingGenreItemCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Ranking/RankingGenreItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Ranking/RankingGenreItem.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Ranking/RankingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Ranking/RankingItem.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Ranking/UnFavoriteRankingGenreItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Ranking/UnFavoriteRankingGenreItemCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Search/RemoveSearchHistoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Search/RemoveSearchHistoryCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Search/VideoSearchIncrementalSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Search/VideoSearchIncrementalSource.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Series/SeriesOwnerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Series/SeriesOwnerViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Series/UserSeriesItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Series/UserSeriesItemViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Share/CopyToClipboardCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Share/CopyToClipboardCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Share/CopyToClipboardWithShareTextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Share/CopyToClipboardWithShareTextCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Share/OpenLinkCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Share/OpenLinkCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Share/OpenShareUICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Share/OpenShareUICommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/HiddenVideoOwnerAddCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/HiddenVideoOwnerAddCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/LocalPlaylistCreateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/LocalPlaylistCreateCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/LocalPlaylistDeleteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/LocalPlaylistDeleteCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/MylistAddItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/MylistAddItemCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/MylistCopyItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/MylistCopyItemCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/MylistCreateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/MylistCreateCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/MylistMoveItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/MylistMoveItemCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/MylistRemoveItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/MylistRemoveItemCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/OpenVideoOwnerPageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/OpenVideoOwnerPageCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/PlaylistPlayAllCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/PlaylistPlayAllCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/QueueAddItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/QueueAddItemCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/QueueRemoveItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/QueueRemoveItemCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/SelectionAllSelectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/SelectionAllSelectCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/SelectionExitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/SelectionExitCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/SelectionModeToggleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/SelectionModeToggleCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/SelectionStartCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/SelectionStartCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/Commands/VideoPlayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/Commands/VideoPlayCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/VideoItemsSelectionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/VideoItemsSelectionContext.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Niconico.Video/VideoListItemControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Niconico.Video/VideoListItemControlViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Player/CommentCommandEditerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Player/CommentCommandEditerViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Player/MediaPlayerSeekCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Player/MediaPlayerSeekCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Player/MediaPlayerSetPlaybackRateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Player/MediaPlayerSetPlaybackRateCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Player/MediaPlayerToggleMuteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Player/MediaPlayerToggleMuteCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Player/MediaPlayerVolumeChangeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Player/MediaPlayerVolumeChangeCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Player/ShowPrimaryViewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Player/ShowPrimaryViewCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Player/TogglePlayerDisplayViewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Player/TogglePlayerDisplayViewCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Player/Video/ChangeVideoQualityCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Player/Video/ChangeVideoQualityCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Player/Video/VideoTogglePlayPauseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Player/Video/VideoTogglePlayPauseCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/PrimaryWindowCoreLayout/IDraggableAreaAware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/PrimaryWindowCoreLayout/IDraggableAreaAware.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/PrimaryWindowCoreLayout/LiveMenuSubPageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/PrimaryWindowCoreLayout/LiveMenuSubPageContent.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/PrimaryWindowCoreLayout/MenuItemBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/PrimaryWindowCoreLayout/MenuItemBase.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/PrimaryWindowCoreLayout/MenuItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/PrimaryWindowCoreLayout/MenuItemViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/PrimaryWindowCoreLayout/QueueMenuItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/PrimaryWindowCoreLayout/QueueMenuItemViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/PrimaryWindowCoreLayout/SeparatorMenuItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/PrimaryWindowCoreLayout/SeparatorMenuItemViewModel.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/PrimaryWindowCoreLayout/VideoMenuSubPageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/PrimaryWindowCoreLayout/VideoMenuSubPageContent.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/SelectableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/SelectableItem.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Subscriptions/AddKeywordSearchSubscriptionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Subscriptions/AddKeywordSearchSubscriptionCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Subscriptions/AddSubscriptionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Subscriptions/AddSubscriptionCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/Subscriptions/AddTagSearchSubscriptionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/Subscriptions/AddTagSearchSubscriptionCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/VideoCache.Commands/CacheAddRequestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/VideoCache.Commands/CacheAddRequestCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/VideoCache.Commands/CacheDeleteRequestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/VideoCache.Commands/CacheDeleteRequestCommand.cs -------------------------------------------------------------------------------- /Hohoema/ViewModels/VideoListingPageViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/ViewModels/VideoListingPageViewModelBase.cs -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/LocalMylist/LocalPlaylistManagePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/LocalMylist/LocalPlaylistManagePage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/LocalMylist/LocalPlaylistManagePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/LocalMylist/LocalPlaylistManagePage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/LocalMylist/LocalPlaylistManagePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/LocalMylist/LocalPlaylistManagePageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/LocalMylist/LocalPlaylistPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/LocalMylist/LocalPlaylistPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/LocalMylist/LocalPlaylistPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/LocalMylist/LocalPlaylistPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/LocalMylist/LocalPlaylistPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/LocalMylist/LocalPlaylistPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/Queue/VideoQueuePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/Queue/VideoQueuePage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/Queue/VideoQueuePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/Queue/VideoQueuePage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/Queue/VideoQueuePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/Queue/VideoQueuePageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/Subscription/EditSubscriptionGroupDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/Subscription/EditSubscriptionGroupDialog.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/Subscription/EditSubscriptionGroupDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/Subscription/EditSubscriptionGroupDialog.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/Subscription/SubscVideoListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/Subscription/SubscVideoListPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/Subscription/SubscVideoListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/Subscription/SubscVideoListPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/Subscription/SubscVideoListPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/Subscription/SubscVideoListPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/Subscription/SubscriptionManagementPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/Subscription/SubscriptionManagementPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/Subscription/SubscriptionManagementPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/Subscription/SubscriptionManagementPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/VideoCache/CacheManagementPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/VideoCache/CacheManagementPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/VideoCache/CacheManagementPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/VideoCache/CacheManagementPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Hohoema/VideoCache/CacheManagementPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Hohoema/VideoCache/CacheManagementPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Activity/WatchHistoryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Activity/WatchHistoryPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Activity/WatchHistoryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Activity/WatchHistoryPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Activity/WatchHistoryPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Activity/WatchHistoryPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Channel/ChannelVideoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Channel/ChannelVideoPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Channel/ChannelVideoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Channel/ChannelVideoPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Channel/ChannelVideoPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Channel/ChannelVideoPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Follow/FollowManagePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Follow/FollowManagePage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Follow/FollowManagePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Follow/FollowManagePage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Follow/FollowManagePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Follow/FollowManagePageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/FollowingsActivity/FollowingsActivityPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/FollowingsActivity/FollowingsActivityPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/FollowingsActivity/FollowingsActivityPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/FollowingsActivity/FollowingsActivityPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Live/LiveInfomationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Live/LiveInfomationPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Live/LiveInfomationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Live/LiveInfomationPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Live/LiveInfomationPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Live/LiveInfomationPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Live/LiveVideoListItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Live/LiveVideoListItem.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Live/LiveVideoListItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Live/LiveVideoListItem.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Live/TimeshiftPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Live/TimeshiftPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Live/TimeshiftPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Live/TimeshiftPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Live/TimeshiftPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Live/TimeshiftPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Mylist/MylistPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Mylist/MylistPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Mylist/MylistPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Mylist/MylistPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Mylist/MylistPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Mylist/MylistPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Mylist/OwnerMylistManagePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Mylist/OwnerMylistManagePage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Mylist/OwnerMylistManagePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Mylist/OwnerMylistManagePage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Mylist/OwnerMylistManagePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Mylist/OwnerMylistManagePageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Mylist/UserMylistPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Mylist/UserMylistPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Mylist/UserMylistPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Mylist/UserMylistPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Mylist/UserMylistPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Mylist/UserMylistPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/CommunityInfoControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/CommunityInfoControlViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchHistoryListItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchHistoryListItem.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchHistoryListItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchHistoryListItem.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchHistoryListItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchHistoryListItemViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultCommunityPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultCommunityPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultCommunityPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultCommunityPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultCommunityPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultCommunityPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultKeywordPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultKeywordPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultKeywordPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultKeywordPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultKeywordPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultKeywordPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultLivePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultLivePage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultLivePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultLivePage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultLivePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultLivePageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultMylistPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultMylistPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultMylistPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultMylistPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultMylistPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultMylistPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultTagPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultTagPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultTagPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultTagPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Search/SearchResultTagPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Search/SearchResultTagPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Series/SeriesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Series/SeriesPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Series/SeriesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Series/SeriesPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Series/SeriesPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Series/SeriesPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Series/UserSeriesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Series/UserSeriesPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Series/UserSeriesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Series/UserSeriesPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Series/UserSeriesPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Series/UserSeriesPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/User/UserInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/User/UserInfoPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/User/UserInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/User/UserInfoPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/User/UserInfoPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/User/UserInfoPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/User/UserVideoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/User/UserVideoPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/User/UserVideoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/User/UserVideoPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/User/UserVideoPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/User/UserVideoPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Video/VideoInfomationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Video/VideoInfomationPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Video/VideoInfomationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Video/VideoInfomationPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/Video/VideoInfomationPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/Video/VideoInfomationPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/VideoRanking/RankingCategoryListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/VideoRanking/RankingCategoryListPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/VideoRanking/RankingCategoryListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/VideoRanking/RankingCategoryListPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/VideoRanking/RankingCategoryListPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/VideoRanking/RankingCategoryListPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/VideoRanking/RankingCategoryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/VideoRanking/RankingCategoryPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/VideoRanking/RankingCategoryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/VideoRanking/RankingCategoryPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Niconico/VideoRanking/RankingCategoryPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Niconico/VideoRanking/RankingCategoryPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/CommentCommandEditer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/CommentCommandEditer.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Player/CommentCommandEditer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/CommentCommandEditer.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/LegacyVideoPlayerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/LegacyVideoPlayerPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Player/LegacyVideoPlayerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/LegacyVideoPlayerPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/LegacyVideoPlayerPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/LegacyVideoPlayerPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/LivePlayerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/LivePlayerPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Player/LivePlayerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/LivePlayerPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/LivePlayerPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/LivePlayerPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/LivePlayerPageViewModel_CommentSubscribe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/LivePlayerPageViewModel_CommentSubscribe.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/PlayerSidePaneContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/PlayerSidePaneContentType.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/VideoPlayerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/VideoPlayerPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Player/VideoPlayerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/VideoPlayerPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/VideoPlayerPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/VideoPlayerPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/VideoPlayerUI/DesktopPlayerUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/VideoPlayerUI/DesktopPlayerUI.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Player/VideoPlayerUI/DesktopPlayerUI.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/VideoPlayerUI/DesktopPlayerUI.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/VideoPlayerUI/NallowPlayerUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/VideoPlayerUI/NallowPlayerUI.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Player/VideoPlayerUI/NallowPlayerUI.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/VideoPlayerUI/NallowPlayerUI.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/VideoPlayerUI/SeekbarSlider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/VideoPlayerUI/SeekbarSlider.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Player/VideoPlayerUI/SeekbarSlider.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/VideoPlayerUI/SeekbarSlider.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/_CommentRenderer/CommentRenderer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/_CommentRenderer/CommentRenderer.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Player/_CommentRenderer/CommentRenderer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/_CommentRenderer/CommentRenderer.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/_CommentRenderer/CommentRendererHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/_CommentRenderer/CommentRendererHelper.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/_CommentRenderer/CommentUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/_CommentRenderer/CommentUI.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Player/_CommentRenderer/CommentUI.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/_CommentRenderer/CommentUI.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/_DownloadProgress/DownloadProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/_DownloadProgress/DownloadProgressBar.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Player/_DownloadProgress/DownloadProgressBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/_DownloadProgress/DownloadProgressBar.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/_DownloadProgress/ProgressBarFragment.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/_DownloadProgress/ProgressBarFragment.xaml -------------------------------------------------------------------------------- /Hohoema/Views.Player/_DownloadProgress/ProgressBarFragment.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/_DownloadProgress/ProgressBarFragment.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/_DownloadProgress/ProgressFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/_DownloadProgress/ProgressFragment.cs -------------------------------------------------------------------------------- /Hohoema/Views.Player/_PlayerSidePaneContent/PlaylistSidePaneContent.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views.Player/_PlayerSidePaneContent/PlaylistSidePaneContent.xaml -------------------------------------------------------------------------------- /Hohoema/Views/BlankPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/BlankPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views/BlankPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/BlankPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/BlankPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/BlankPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views/Controls/AppTitleBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/AppTitleBar.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Controls/AppTitleBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/AppTitleBar.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Controls/DelayedAutoTriggerButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/DelayedAutoTriggerButton.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Controls/DelayedAutoTriggerButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/DelayedAutoTriggerButton.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Controls/HohoemaInAppNotification.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/HohoemaInAppNotification.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Controls/HohoemaInAppNotification.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/HohoemaInAppNotification.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Controls/IchibaItemCard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/IchibaItemCard.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Controls/IchibaItemCard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/IchibaItemCard.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Controls/ListItem/HohoemaListItemMiniCard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/ListItem/HohoemaListItemMiniCard.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Controls/ListItem/HohoemaListItemMiniCard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/ListItem/HohoemaListItemMiniCard.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Controls/ListItem/HohoemaListItemVideo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/ListItem/HohoemaListItemVideo.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Controls/ListItem/HohoemaListItemVideo.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/ListItem/HohoemaListItemVideo.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Controls/LiteInAppNotification/LiteInAppNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/LiteInAppNotification/LiteInAppNotification.cs -------------------------------------------------------------------------------- /Hohoema/Views/Controls/LiteInAppNotification/LiteInAppNotification.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/LiteInAppNotification/LiteInAppNotification.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Controls/TransientContainer/TransientContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/TransientContainer/TransientContainer.cs -------------------------------------------------------------------------------- /Hohoema/Views/Controls/TransientContainer/TransientContainer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/TransientContainer/TransientContainer.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Controls/VideoList/VideoCacheListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/VideoList/VideoCacheListItem.cs -------------------------------------------------------------------------------- /Hohoema/Views/Controls/VideoList/VideoCacheListItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/VideoList/VideoCacheListItem.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Controls/VideoList/VideoItemsListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/VideoList/VideoItemsListView.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Controls/VideoList/VideoItemsListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/VideoList/VideoItemsListView.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Controls/VideoList/VideoListItemControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/VideoList/VideoListItemControl.cs -------------------------------------------------------------------------------- /Hohoema/Views/Controls/VideoList/VideoListItemControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Controls/VideoList/VideoListItemControl.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Converters/CacheStateToColorBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/CacheStateToColorBrushConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/ColorToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/ColorToBrushConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/DateTimetoStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/DateTimetoStringConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/EnumToNumberConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/EnumToNumberConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/ExpiredDateTimeToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/ExpiredDateTimeToStringConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/InvertVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/InvertVisibilityConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/ItemClickEventArgsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/ItemClickEventArgsConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/PageTypeToIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/PageTypeToIconConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/RelationalDateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/RelationalDateTimeConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/SizeToRectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/SizeToRectConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/SoundVolumeConveter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/SoundVolumeConveter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/StringJoinConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/StringJoinConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/StringToUriConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/StringToUriConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/SwipeSeekValueToTimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/SwipeSeekValueToTimeSpan.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/TiemSpanToLocalizedStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/TiemSpanToLocalizedStringConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/TimeSpanToMovieLengthStringValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/TimeSpanToMovieLengthStringValueConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/TimeSpanToSecondsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/TimeSpanToSecondsConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/ToKMGTPEZYConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/ToKMGTPEZYConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/ToUserFriendlyNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/ToUserFriendlyNumber.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/TransparentColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/TransparentColorConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Converters/VideoPositionToTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Converters/VideoPositionToTimeConverter.cs -------------------------------------------------------------------------------- /Hohoema/Views/DebugPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/DebugPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views/DebugPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/DebugPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/DebugPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/DebugPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/AdvancedSelectDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/AdvancedSelectDialog.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/AdvancedSelectDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/AdvancedSelectDialog.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/HohoemaErrorReportDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/HohoemaErrorReportDialog.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/HohoemaErrorReportDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/HohoemaErrorReportDialog.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/MarkdownTextDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/MarkdownTextDialog.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/MarkdownTextDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/MarkdownTextDialog.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/MultiChoiceDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/MultiChoiceDialog.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/MultiChoiceDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/MultiChoiceDialog.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/NiconicoLoginDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/NiconicoLoginDialog.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/NiconicoLoginDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/NiconicoLoginDialog.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/NiconicoTwoFactorAuthDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/NiconicoTwoFactorAuthDialog.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/NiconicoTwoFactorAuthDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/NiconicoTwoFactorAuthDialog.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/TwoFactorAuthDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/TwoFactorAuthDialog.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/TwoFactorAuthDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/TwoFactorAuthDialog.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/_ContentSelectDialog/ContentSelectDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/_ContentSelectDialog/ContentSelectDialog.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/_ContentSelectDialog/ContentSelectDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/_ContentSelectDialog/ContentSelectDialog.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/_ContentSelectDialog/ContentSelectDialogContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/_ContentSelectDialog/ContentSelectDialogContext.cs -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/_EditMylistGroupDialog/EditMylistGroupDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/_EditMylistGroupDialog/EditMylistGroupDialog.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/_TextInputDialog/TextInputDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/_TextInputDialog/TextInputDialog.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/_TextInputDialog/TextInputDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/_TextInputDialog/TextInputDialog.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Dialogs/_TextInputDialog/TextInputDialogContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Dialogs/_TextInputDialog/TextInputDialogContext.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/ContextFlyoutExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/ContextFlyoutExtension.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/DependencyObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/DependencyObjectExtensions.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/Flyout/FlyoutCustomContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/Flyout/FlyoutCustomContext.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/ListViewBase/ItemContextFlyoutTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/ListViewBase/ItemContextFlyoutTemplate.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/ListViewBase/ListViewItemDeferInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/ListViewBase/ListViewItemDeferInitialize.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/ListViewBase/ListViewSelectedItemsGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/ListViewBase/ListViewSelectedItemsGetter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/ListViewBase/ListViewVerticalOffsetGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/ListViewBase/ListViewVerticalOffsetGetter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/LocalizeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/LocalizeExtension.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/MediaPlayer/MediaPlayerSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/MediaPlayer/MediaPlayerSetter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/VIsualStateManager/DebugCurrentState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/VIsualStateManager/DebugCurrentState.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/WebView/IgnoreScrolling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/WebView/IgnoreScrolling.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/WebView/LoadHtmlString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/WebView/LoadHtmlString.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/WebView/PreventSpoilerXYNavigationInWebView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/WebView/PreventSpoilerXYNavigationInWebView.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/WebView/WebViewAutoResizeToContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/WebView/WebViewAutoResizeToContent.cs -------------------------------------------------------------------------------- /Hohoema/Views/Extensions/WebView/WebViewNotifyUriClicked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Extensions/WebView/WebViewNotifyUriClicked.cs -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/ChannelInfoFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/ChannelInfoFlyout.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/ChannelInfoFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/ChannelInfoFlyout.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/LiveListItemFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/LiveListItemFlyout.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/LiveListItemFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/LiveListItemFlyout.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/MylistItemFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/MylistItemFlyout.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/MylistItemFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/MylistItemFlyout.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/RankingGenreItemFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/RankingGenreItemFlyout.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/RankingGenreItemFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/RankingGenreItemFlyout.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/RankingGenreItemGroupFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/RankingGenreItemGroupFlyout.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/RankingGenreItemGroupFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/RankingGenreItemGroupFlyout.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/SearchHistoryListItemFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/SearchHistoryListItemFlyout.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/SearchHistoryListItemFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/SearchHistoryListItemFlyout.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/SubscriptionItemFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/SubscriptionItemFlyout.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/SubscriptionItemFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/SubscriptionItemFlyout.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/UserInfoFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/UserInfoFlyout.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/UserInfoFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/UserInfoFlyout.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/VideoItemFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/VideoItemFlyout.xaml -------------------------------------------------------------------------------- /Hohoema/Views/Flyouts/VideoItemFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Flyouts/VideoItemFlyout.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/Helpers/SystemThemeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Helpers/SystemThemeHelper.cs -------------------------------------------------------------------------------- /Hohoema/Views/Helpers/VisibilityExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Helpers/VisibilityExtension.cs -------------------------------------------------------------------------------- /Hohoema/Views/Helpers/VisualTreeExtention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Helpers/VisualTreeExtention.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Actions/CallDisposeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Actions/CallDisposeAction.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Behaviors/FocusGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Behaviors/FocusGetter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Behaviors/ListViewItemTappedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Behaviors/ListViewItemTappedCommand.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Behaviors/MultiSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Behaviors/MultiSelection.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Behaviors/SetFocus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Behaviors/SetFocus.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Behaviors/VisiblityFadeChanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Behaviors/VisiblityFadeChanger.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Flyout/CloseFlyoutAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Flyout/CloseFlyoutAction.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Flyout/MenuFlyoutItemsSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Flyout/MenuFlyoutItemsSetter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Flyout/MenuFlyoutSubItemItemsSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Flyout/MenuFlyoutSubItemItemsSetter.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Flyout/OpenFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Flyout/OpenFlyout.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Input/HideInputPaneAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Input/HideInputPaneAction.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Input/KeyboardTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Input/KeyboardTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Input/MouseWheelTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Input/MouseWheelTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Input/PointerCursolAutoHideBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Input/PointerCursolAutoHideBehavior.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Input/Swipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Input/Swipe.cs -------------------------------------------------------------------------------- /Hohoema/Views/Interaction/Input/XYNavigationExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Interaction/Input/XYNavigationExtentions.cs -------------------------------------------------------------------------------- /Hohoema/Views/MediaElementExtention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/MediaElementExtention.cs -------------------------------------------------------------------------------- /Hohoema/Views/Mylist/MylistCardView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Mylist/MylistCardView.cs -------------------------------------------------------------------------------- /Hohoema/Views/Mylist/MylistCardView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/Mylist/MylistCardView.xaml -------------------------------------------------------------------------------- /Hohoema/Views/NoUIProcessScreen.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/NoUIProcessScreen.xaml -------------------------------------------------------------------------------- /Hohoema/Views/NoUIProcessScreen.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/NoUIProcessScreen.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/PrimaryWindowCoreLayout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/PrimaryWindowCoreLayout.xaml -------------------------------------------------------------------------------- /Hohoema/Views/PrimaryWindowCoreLayout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/PrimaryWindowCoreLayout.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/PrimaryWindowCoreLayoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/PrimaryWindowCoreLayoutViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views/SecondaryWindowCoreLayout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/SecondaryWindowCoreLayout.xaml -------------------------------------------------------------------------------- /Hohoema/Views/SecondaryWindowCoreLayout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/SecondaryWindowCoreLayout.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/SettingsPage.xaml -------------------------------------------------------------------------------- /Hohoema/Views/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /Hohoema/Views/SettingsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/SettingsPageViewModel.cs -------------------------------------------------------------------------------- /Hohoema/Views/StateTrigger/CompactOverlayViewModeTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/StateTrigger/CompactOverlayViewModeTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/StateTrigger/CompositeStateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/StateTrigger/CompositeStateTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/StateTrigger/EqualConditionStateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/StateTrigger/EqualConditionStateTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/StateTrigger/FlyoutIsOpenStateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/StateTrigger/FlyoutIsOpenStateTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/StateTrigger/FocusTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/StateTrigger/FocusTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/StateTrigger/InvertibleStateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/StateTrigger/InvertibleStateTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/StateTrigger/IsAssignableFromStateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/StateTrigger/IsAssignableFromStateTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/StateTrigger/IsShowWithPrimaryViewTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/StateTrigger/IsShowWithPrimaryViewTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/StateTrigger/IsShowWithSecondaryViewTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/StateTrigger/IsShowWithSecondaryViewTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/StateTrigger/IsSupportCompactOverlayTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/StateTrigger/IsSupportCompactOverlayTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/StateTrigger/PointerFocusTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/StateTrigger/PointerFocusTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/StateTrigger/UIIntractionTriggerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/StateTrigger/UIIntractionTriggerBase.cs -------------------------------------------------------------------------------- /Hohoema/Views/StateTrigger/WindowActiveTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/StateTrigger/WindowActiveTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/StateTrigger/WindowInWindowViewModeTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/StateTrigger/WindowInWindowViewModeTrigger.cs -------------------------------------------------------------------------------- /Hohoema/Views/TemplateSelector/ContentTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/TemplateSelector/ContentTemplateSelector.cs -------------------------------------------------------------------------------- /Hohoema/Views/TemplateSelector/HohoemaFlyoutTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/TemplateSelector/HohoemaFlyoutTemplateSelector.cs -------------------------------------------------------------------------------- /Hohoema/Views/TemplateSelector/ListItemContainerStyleSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/TemplateSelector/ListItemContainerStyleSelector.cs -------------------------------------------------------------------------------- /Hohoema/Views/TemplateSelector/MenuSubPageTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/TemplateSelector/MenuSubPageTemplateSelector.cs -------------------------------------------------------------------------------- /Hohoema/Views/TemplateSelector/NullableTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/TemplateSelector/NullableTemplateSelector.cs -------------------------------------------------------------------------------- /Hohoema/Views/TemplateSelector/TypeBasedTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/TemplateSelector/TypeBasedTemplateSelector.cs -------------------------------------------------------------------------------- /Hohoema/Views/TemplateSelector/ValueDataTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/TemplateSelector/ValueDataTemplateSelector.cs -------------------------------------------------------------------------------- /Hohoema/Views/UINavigation/UINavigationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/UINavigation/UINavigationManager.cs -------------------------------------------------------------------------------- /Hohoema/Views/UINavigation/UINavigationTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/Hohoema/Views/UINavigation/UINavigationTrigger.cs -------------------------------------------------------------------------------- /HohoemaModelTest/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/HohoemaModelTest/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /HohoemaModelTest/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/HohoemaModelTest/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /HohoemaModelTest/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/HohoemaModelTest/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /HohoemaModelTest/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/HohoemaModelTest/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /HohoemaModelTest/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/HohoemaModelTest/Assets/StoreLogo.png -------------------------------------------------------------------------------- /HohoemaModelTest/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/HohoemaModelTest/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /HohoemaModelTest/ExtractContenntIdTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/HohoemaModelTest/ExtractContenntIdTest.cs -------------------------------------------------------------------------------- /HohoemaModelTest/HohoemaModelTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/HohoemaModelTest/HohoemaModelTest.csproj -------------------------------------------------------------------------------- /HohoemaModelTest/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/HohoemaModelTest/Package.appxmanifest -------------------------------------------------------------------------------- /HohoemaModelTest/PlaylistTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/HohoemaModelTest/PlaylistTest.cs -------------------------------------------------------------------------------- /HohoemaModelTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/HohoemaModelTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HohoemaModelTest/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/HohoemaModelTest/Properties/Default.rd.xml -------------------------------------------------------------------------------- /HohoemaModelTest/UnitTestApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/HohoemaModelTest/UnitTestApp.xaml -------------------------------------------------------------------------------- /HohoemaModelTest/UnitTestApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/HohoemaModelTest/UnitTestApp.xaml.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/LICENSE -------------------------------------------------------------------------------- /R3.UWP/DispatcherQueueTimerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/R3.UWP/DispatcherQueueTimerProvider.cs -------------------------------------------------------------------------------- /R3.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/R3.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /R3.UWP/Properties/R3.UWP.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/R3.UWP/Properties/R3.UWP.rd.xml -------------------------------------------------------------------------------- /R3.UWP/R3.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/R3.UWP/R3.UWP.csproj -------------------------------------------------------------------------------- /R3.UWP/WinRTProviderInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/R3.UWP/WinRTProviderInitializer.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor4kichi/Hohoema/HEAD/README.md --------------------------------------------------------------------------------