├── .all-contributorsrc ├── .bettercodehub.yml ├── .dockerignore ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md ├── dco.yml ├── dependabot.yml ├── labeler.yml └── workflows │ ├── label.yml │ ├── new-translations.yml │ └── no-response.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── EmbyStat.Clients.Base ├── Api │ └── IMediaServerApi.cs ├── ClientStrategy.cs ├── EmbyStat.Clients.Base.csproj ├── Http │ ├── BaseHttpClient.cs │ ├── IBaseHttpClient.cs │ ├── IRefitHttpClientFactory.cs │ ├── RefitHttpClientFactory.cs │ └── ServerSearcher.cs ├── IClientFactory.cs ├── IClientStrategy.cs ├── IMetadataClientFactory.cs ├── Metadata │ └── IMetadataClient.cs └── WebSocket │ ├── IWebSocketApi.cs │ ├── IWebSocketClient.cs │ └── WebSocketApi.cs ├── EmbyStat.Clients.Emby ├── EmbyClientFactory.cs ├── EmbyStat.Clients.Emby.csproj ├── Http │ ├── EmbyBaseHttpClient.cs │ └── IEmbyBaseHttpClient.cs └── WebSocket │ ├── EmbyWebSocketClient.cs │ └── IEmbyWebSocketClient.cs ├── EmbyStat.Clients.GitHub ├── EmbyStat.Clients.GitHub.csproj ├── GitHubClient.cs ├── IGitHubApi.cs ├── IGitHubClient.cs └── Models │ ├── Asset.cs │ ├── Author.cs │ ├── PackageInfo.cs │ ├── ReleaseObject.cs │ └── UpdateResult.cs ├── EmbyStat.Clients.Jellyfin ├── EmbyStat.Clients.Jellyfin.csproj ├── Http │ ├── IJellyfinBaseHttpClient.cs │ └── JellyfinBaseHttpClient.cs ├── JellyfinClientFactory.cs └── WebSocket │ └── IJellyfinWebSocketClient.cs ├── EmbyStat.Clients.Tmdb ├── EmbyStat.Clients.Tmdb.csproj ├── ITmdbClient.cs ├── TmdbClient.cs └── TmdbClientFactory.cs ├── EmbyStat.Clients.TvMaze ├── EmbyStat.Clients.TvMaze.csproj ├── ITvMazeShowClient.cs ├── TvMazeClientFactory.cs └── TvMazeShowClient.cs ├── EmbyStat.Common ├── ChartGrouping.cs ├── Constants.cs ├── Converters │ ├── SessionConverter.cs │ └── TopCardHelper.cs ├── EmbyStat.Common.csproj ├── Enums │ ├── CardType.cs │ ├── ImageType.cs │ ├── LibraryType.cs │ ├── LocationType.cs │ ├── MediaProtocol.cs │ ├── MediaStreamType.cs │ ├── MediaType.cs │ ├── MetadataServerType.cs │ ├── PersonType.cs │ ├── PlayMethod.cs │ ├── RepeatMode.cs │ ├── ServerType.cs │ ├── StatisticType.cs │ ├── TranscodeReason.cs │ ├── UpdateLevel.cs │ ├── UpdateTrain.cs │ └── Video3DFormat.cs ├── Exceptions │ ├── ApiError.cs │ ├── BusinessException.cs │ ├── BusinessExceptionFilterAttribute.cs │ ├── EmbyStatStartupException.cs │ ├── NotFoundException.cs │ └── WizardNotFinishedException.cs ├── Extensions │ ├── DictionaryExtensions.cs │ ├── DoubleExtensions.cs │ ├── IntExtensions.cs │ ├── ItemQueryExtensions.cs │ ├── LibrarySyncTypeExtensions.cs │ ├── ListExtensions.cs │ ├── MediaExtensions.cs │ ├── MediaServerExtensions.cs │ ├── MovieExtensions.cs │ ├── RoundNumberExtension.cs │ ├── ShowExtensions.cs │ ├── StringExtensions.cs │ └── VirtualEpisodeExtensions.cs ├── Generators │ └── KeyGenerator.cs ├── Helpers │ └── ListContainer.cs └── Models │ ├── Account │ ├── AccessToken.cs │ ├── AuthenticateRequest.cs │ ├── AuthenticateResponse.cs │ ├── ChangePasswordRequest.cs │ ├── ChangeUserNameRequest.cs │ └── RefreshTokenRequest.cs │ ├── Cards │ ├── Card.cs │ └── TopCard.cs │ ├── Charts │ ├── Chart.cs │ └── SimpleChartData.cs │ ├── DataGrid │ └── Page.cs │ ├── Entities │ ├── Device.cs │ ├── EmbyStatUser.cs │ ├── Events │ │ ├── Play.cs │ │ ├── PlayState.cs │ │ └── Session.cs │ ├── FilterValues.cs │ ├── Genre.cs │ ├── Helpers │ │ ├── Extra.cs │ │ ├── ILinkedMedia.cs │ │ ├── LabelValuePair.cs │ │ ├── Media.cs │ │ ├── MediaPerson.cs │ │ ├── RefreshToken.cs │ │ └── Video.cs │ ├── Job.cs │ ├── Language.cs │ ├── Library.cs │ ├── LibrarySyncType.cs │ ├── MediaServerInfo.cs │ ├── MediaServerStatus.cs │ ├── MediaServerUserView.cs │ ├── Movies │ │ └── Movie.cs │ ├── Person.cs │ ├── PluginInfo.cs │ ├── Shows │ │ ├── Episode.cs │ │ ├── Season.cs │ │ └── Show.cs │ ├── Statistic.cs │ ├── Streams │ │ ├── AudioStream.cs │ │ ├── MediaSource.cs │ │ ├── SubtitleStream.cs │ │ └── VideoStream.cs │ └── Users │ │ └── MediaServerUser.cs │ ├── GenericEventArgs.cs │ ├── ItemQuery.cs │ ├── MediaServer │ ├── MediaServerUserRow.cs │ └── UserMediaView.cs │ ├── MediaServerUdpBroadcast.cs │ ├── Net │ ├── BaseItemDto.cs │ ├── BaseItemPerson.cs │ ├── BaseMediaSourceInfo.cs │ ├── BaseMediaStream.cs │ ├── BaseUserDto.cs │ └── UserData.cs │ ├── OptionSerializerAttribute.cs │ ├── Query │ └── Filter.cs │ ├── Show │ └── VirtualEpisode.cs │ ├── StartupOptions.cs │ ├── Tasks │ ├── Enum │ │ ├── JobState.cs │ │ └── ProgressLogType.cs │ ├── JobLog.cs │ └── JobProgress.cs │ └── WebSocketMessage.cs ├── EmbyStat.Configuration ├── Config.cs ├── ConfigurationService.cs ├── EmbyStat.Configuration.csproj ├── Interfaces │ └── IConfigurationService.cs └── InvalidConfigFileException.cs ├── EmbyStat.Controllers ├── About │ ├── AboutController.cs │ └── AboutViewModel.cs ├── Account │ └── AccountController.cs ├── EmbyStat.Controllers.csproj ├── Filters │ ├── FilterController.cs │ └── FilterValuesViewModel.cs ├── HelperClasses │ ├── ActiveFilterViewModel.cs │ ├── CardViewModel.cs │ ├── ChartViewModel.cs │ ├── LabelValuePairViewModel.cs │ ├── LibraryViewModel.cs │ ├── PageViewModel.cs │ ├── Streams │ │ ├── AudioStreamViewModel.cs │ │ ├── MediaSourceViewModel.cs │ │ ├── MoviePersonViewModel.cs │ │ ├── SubtitleStreamViewModel.cs │ │ └── VideoStreamViewModel.cs │ ├── TopCardViewModel.cs │ └── UserMediaViewViewModel.cs ├── Job │ ├── JobController.cs │ └── JobViewModel.cs ├── Log │ ├── LogController.cs │ └── LogFileViewModel.cs ├── MapProfiles.cs ├── MediaServer │ ├── LoginViewModel.cs │ ├── MediaServerController.cs │ ├── MediaServerLibraryViewModel.cs │ ├── MediaServerUserRowViewModel.cs │ ├── MediaServerUserStatisticsViewModel.cs │ ├── PluginViewModel.cs │ ├── ServerInfoViewModel.cs │ ├── StatusViewModel.cs │ ├── UdpBroadcastViewModel.cs │ ├── UrlViewModel.cs │ ├── UserFullViewModel.cs │ ├── UserIdViewModel.cs │ └── UserOverviewViewModel.cs ├── Middleware │ └── RequestLoggingMiddleware.cs ├── Movie │ ├── MovieController.cs │ ├── MovieRowViewModel.cs │ ├── MovieStatisticsViewModel.cs │ ├── MovieViewModel.cs │ ├── ShortMovieViewModel.cs │ ├── SuspiciousMovieViewModel.cs │ └── SuspiciousTablesViewModel.cs ├── Settings │ ├── ConfigViewModel.cs │ ├── LanguageViewModel.cs │ └── SettingsController.cs ├── Show │ ├── ShowChartsViewModel.cs │ ├── ShowController.cs │ ├── ShowDetailViewModel.cs │ ├── ShowRowViewModel.cs │ ├── ShowStatisticsViewModel.cs │ └── VirtualEpisodeViewModel.cs └── System │ ├── SystemController.cs │ └── UpdateResultViewModel.cs ├── EmbyStat.Core ├── About │ ├── AboutModel.cs │ ├── AboutService.cs │ └── Interfaces │ │ └── IAboutService.cs ├── Abstract │ ├── MediaService.cs │ └── StatisticHelper.cs ├── Account │ ├── AccountService.cs │ └── Interfaces │ │ └── IAccountService.cs ├── Authentication │ └── AuthenticationHelper.cs ├── DataStore │ ├── EsDbContext.cs │ ├── ISqliteBootstrap.cs │ ├── Migrations │ │ └── Sqlite │ │ │ ├── 20220622095519_Init.Designer.cs │ │ │ ├── 20220622095519_Init.cs │ │ │ ├── 20220711095301_SyncTypeAdded.Designer.cs │ │ │ ├── 20220711095301_SyncTypeAdded.cs │ │ │ ├── 20220712101203_MovedSyncTypeTable.Designer.cs │ │ │ ├── 20220712101203_MovedSyncTypeTable.cs │ │ │ ├── 20220712221112_MovedSyncDateTimeToLibrarySyncTypes.Designer.cs │ │ │ ├── 20220712221112_MovedSyncDateTimeToLibrarySyncTypes.cs │ │ │ └── EsDbContextModelSnapshot.cs │ ├── Seeds │ │ ├── JobSeed.cs │ │ ├── LanguageSeed.cs │ │ └── MediaServerSeed.cs │ └── SqliteBootstrap.cs ├── Disk │ ├── DiskProvider.cs │ └── Interfaces │ │ └── IDiskProvider.cs ├── EmbyStat.Core.csproj ├── EnvironmentInfo │ ├── Interfaces │ │ ├── IOsInfo.cs │ │ └── IOsVersionAdapter.cs │ ├── OsInfo.cs │ ├── OsVersionAdapters │ │ ├── FreebsdVersionAdapter.cs │ │ ├── MacOsVersionAdapter.cs │ │ ├── ReleaseFileVersionAdapter.cs │ │ └── WindowsVersionInfo.cs │ └── OsVersionModel.cs ├── Filters │ ├── FilterRepository.cs │ ├── FilterService.cs │ └── Interfaces │ │ ├── IFilterRepository.cs │ │ └── IFilterService.cs ├── Genres │ ├── GenreRepository.cs │ └── Interfaces │ │ └── IGenreRepository.cs ├── Hubs │ ├── EmbyStatHub.cs │ ├── HubHelper.cs │ └── IHubHelper.cs ├── Jobs │ ├── Interfaces │ │ ├── IJobRepository.cs │ │ └── IJobService.cs │ ├── JobRepository.cs │ └── JobService.cs ├── Languages │ ├── Interfaces │ │ ├── ILanguageRepository.cs │ │ └── ILanguageService.cs │ ├── LanguageRepository.cs │ └── LanguageService.cs ├── Logging │ ├── Interfaces │ │ └── ILogsService.cs │ ├── LogFile.cs │ └── LogService.cs ├── MediaHelpers │ └── Interfaces │ │ └── IMediaRepository.cs ├── MediaServers │ ├── Interfaces │ │ ├── IMediaServerRepository.cs │ │ └── IMediaServerService.cs │ ├── MediaServerRepository.cs │ ├── MediaServerService.cs │ └── MediaServerUserStatistics.cs ├── Movies │ ├── Interfaces │ │ ├── IMovieRepository.cs │ │ └── IMovieService.cs │ ├── MovieRepository.cs │ ├── MovieService.cs │ ├── MovieStatistics.cs │ ├── ShortMovie.cs │ ├── SuspiciousMovie.cs │ └── SuspiciousTables.cs ├── People │ ├── Interfaces │ │ └── IPersonRepository.cs │ └── PersonRepository.cs ├── Processes │ ├── Interfaces │ │ └── IProcessProvider.cs │ ├── ProcessOutput.cs │ ├── ProcessOutputLevel.cs │ ├── ProcessOutputLine.cs │ └── ProcessProvider.cs ├── Sessions │ ├── Interfaces │ │ ├── ISessionRepository.cs │ │ └── ISessionService.cs │ └── SessionService.cs ├── Shows │ ├── Interfaces │ │ ├── IShowRepository.cs │ │ └── IShowService.cs │ ├── ShowCharts.cs │ ├── ShowRepository.cs │ ├── ShowService.cs │ └── ShowStatistics.cs ├── Statistics │ ├── Interfaces │ │ └── IStatisticsRepository.cs │ └── StatisticsRepository.cs ├── System │ ├── Interfaces │ │ └── ISystemService.cs │ └── SystemService.cs ├── Updates │ ├── Interfaces │ │ └── IUpdateService.cs │ └── UpdateService.cs └── WebSockets │ ├── Interfaces │ └── IWebSocketService.cs │ └── WebSocketService.cs ├── EmbyStat.DI ├── DiExtensions.cs └── EmbyStat.DI.csproj ├── EmbyStat.Hosts.Cmd ├── ApplicationModes.cs ├── DefaultConfig.cs ├── EmbyStat.Hosts.Cmd.csproj ├── Program.cs └── Startup.cs ├── EmbyStat.Jobs ├── BaseJob.cs ├── EmbyStat.Jobs.csproj ├── IBaseJob.cs ├── IJobInitializer.cs ├── JobInitializer.cs └── Jobs │ ├── Interfaces │ ├── ICheckUpdateJob.cs │ ├── IDatabaseCleanupJob.cs │ ├── IMovieSyncJob.cs │ ├── IPingEmbyJob.cs │ ├── IShowSyncJob.cs │ └── ISmallSyncJob.cs │ ├── Maintenance │ ├── DatabaseCleanupJob.cs │ └── PingEmbyJob.cs │ ├── Sync │ ├── MovieSyncJob.cs │ ├── ShowSyncJob.cs │ └── SmallSyncJob.cs │ └── Updater │ └── CheckUpdateJob.cs ├── EmbyStat.Migrator ├── EmbyStat.Migrator.csproj ├── Interfaces │ ├── IMigration.cs │ ├── IMigrationRunner.cs │ └── IMigrationSourceItem.cs ├── MigrationRunner.cs ├── Migrations │ └── 0001_CreateUserSettings.cs ├── Models │ ├── AssemblyMigrationSourceItem.cs │ ├── Migration.cs │ └── version.cs └── ServiceCollectionMigratorExtention.cs ├── EmbyStat.Web ├── .config │ └── dotnet-tools.json ├── ClientApp │ ├── .eslintrc.yml │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── locales │ │ │ ├── base.json │ │ │ ├── da-DK.json │ │ │ ├── de-DE.json │ │ │ ├── el-GR.json │ │ │ ├── en-US.json │ │ │ ├── es-ES.json │ │ │ ├── fi-FI.json │ │ │ ├── fr-FR.json │ │ │ ├── hu-HU.json │ │ │ ├── it-IT.json │ │ │ ├── nl-NL.json │ │ │ ├── no-NO.json │ │ │ ├── pl-PL.json │ │ │ ├── pt-BR.json │ │ │ ├── pt-PT.json │ │ │ ├── ro-RO.json │ │ │ ├── sv-SE.json │ │ │ └── zh-CN.json │ │ ├── manifest.json │ │ ├── robots.txt │ │ └── runtime-config.js │ ├── src │ │ ├── App.tsx │ │ ├── authentication │ │ │ ├── index.tsx │ │ │ └── requireAuth.tsx │ │ ├── i18n.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── pages │ │ │ ├── about │ │ │ │ ├── About.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── useAbout.tsx │ │ │ │ └── index.tsx │ │ │ ├── home │ │ │ │ ├── home.tsx │ │ │ │ └── index.tsx │ │ │ ├── jobs │ │ │ │ ├── JobItem.tsx │ │ │ │ ├── JobList.tsx │ │ │ │ ├── JobLogs.tsx │ │ │ │ ├── JobSettingsDialog.tsx │ │ │ │ ├── Jobs.tsx │ │ │ │ └── index.tsx │ │ │ ├── login │ │ │ │ ├── Login.tsx │ │ │ │ ├── LoginForm.tsx │ │ │ │ ├── RecoverPasswordForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── logs │ │ │ │ ├── Logs.tsx │ │ │ │ └── index.tsx │ │ │ ├── movies │ │ │ │ ├── General.tsx │ │ │ │ ├── List.tsx │ │ │ │ ├── MovieFilters.tsx │ │ │ │ ├── Movies.tsx │ │ │ │ ├── Table │ │ │ │ │ ├── Helpers │ │ │ │ │ │ ├── Body.tsx │ │ │ │ │ │ ├── DataLine.tsx │ │ │ │ │ │ ├── MultiString.tsx │ │ │ │ │ │ ├── Row.tsx │ │ │ │ │ │ ├── StreamLists.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── MovieDetailRow.tsx │ │ │ │ │ ├── Table.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── useMovieTable.tsx │ │ │ │ └── index.tsx │ │ │ ├── server │ │ │ │ ├── Server.tsx │ │ │ │ ├── ServerInfo.tsx │ │ │ │ ├── ServerPlugins.tsx │ │ │ │ ├── components │ │ │ │ │ ├── EsServerDetails.tsx │ │ │ │ │ ├── EsServerExtraInfo.tsx │ │ │ │ │ ├── EsServerFeatures.tsx │ │ │ │ │ ├── EsServerPaths.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── settings │ │ │ │ ├── Movies.tsx │ │ │ │ ├── Server.tsx │ │ │ │ ├── Settings.tsx │ │ │ │ ├── Shows.tsx │ │ │ │ ├── components │ │ │ │ │ ├── EsLanguageCard.tsx │ │ │ │ │ ├── EsMediaServerCard.tsx │ │ │ │ │ ├── EsPasswordCard.tsx │ │ │ │ │ ├── EsRollbarCard.tsx │ │ │ │ │ ├── EsTmdbApiCard.tsx │ │ │ │ │ ├── EsUserCard.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── shows │ │ │ │ ├── General.tsx │ │ │ │ ├── List.tsx │ │ │ │ ├── ShowFilters.tsx │ │ │ │ ├── Shows.tsx │ │ │ │ ├── Table │ │ │ │ │ ├── Body.tsx │ │ │ │ │ ├── EpisodeColumn.tsx │ │ │ │ │ ├── MissingEpisodeList.tsx │ │ │ │ │ ├── Row.tsx │ │ │ │ │ ├── ShowDetailRow.tsx │ │ │ │ │ ├── Table.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── useShowTable.tsx │ │ │ │ └── index.tsx │ │ │ ├── users │ │ │ │ ├── Users.tsx │ │ │ │ ├── components │ │ │ │ │ ├── EsUserStatistics.tsx │ │ │ │ │ ├── EsUserTable.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── useUserDetails.tsx │ │ │ │ │ └── useUserTable.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── subpages │ │ │ │ │ ├── UserDetails.tsx │ │ │ │ │ ├── components │ │ │ │ │ ├── Header.tsx │ │ │ │ │ ├── User.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ └── wizard │ │ │ │ ├── Interfaces.tsx │ │ │ │ ├── Steps │ │ │ │ ├── ConfigureLibrary.tsx │ │ │ │ ├── Finish.tsx │ │ │ │ ├── Helpers │ │ │ │ │ ├── NewServerCard.tsx │ │ │ │ │ ├── ServerCard.tsx │ │ │ │ │ ├── TestFailed.tsx │ │ │ │ │ ├── TestSuccessFul.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Intro.tsx │ │ │ │ ├── MediaServerDetails.tsx │ │ │ │ ├── SearchMediaServer.tsx │ │ │ │ ├── TestMediaServer.tsx │ │ │ │ ├── UserDetails.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── Wizard.tsx │ │ │ │ └── index.tsx │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ ├── routes.tsx │ │ ├── setupTests.ts │ │ ├── shared │ │ │ ├── assets │ │ │ │ ├── icons │ │ │ │ │ └── flags │ │ │ │ │ │ ├── ara.svg │ │ │ │ │ │ ├── bas.svg │ │ │ │ │ │ ├── bul.svg │ │ │ │ │ │ ├── cat.svg │ │ │ │ │ │ ├── chi.svg │ │ │ │ │ │ ├── cze.svg │ │ │ │ │ │ ├── dan.svg │ │ │ │ │ │ ├── dut.svg │ │ │ │ │ │ ├── eng.svg │ │ │ │ │ │ ├── est.svg │ │ │ │ │ │ ├── fin.svg │ │ │ │ │ │ ├── fre.svg │ │ │ │ │ │ ├── ger.svg │ │ │ │ │ │ ├── gre.svg │ │ │ │ │ │ ├── heb.svg │ │ │ │ │ │ ├── hin.svg │ │ │ │ │ │ ├── hrv.svg │ │ │ │ │ │ ├── hun.svg │ │ │ │ │ │ ├── ice.svg │ │ │ │ │ │ ├── ind.svg │ │ │ │ │ │ ├── ita.svg │ │ │ │ │ │ ├── jpn.svg │ │ │ │ │ │ ├── kor.svg │ │ │ │ │ │ ├── lav.svg │ │ │ │ │ │ ├── lit.svg │ │ │ │ │ │ ├── mac.svg │ │ │ │ │ │ ├── may.svg │ │ │ │ │ │ ├── nor.svg │ │ │ │ │ │ ├── per.svg │ │ │ │ │ │ ├── pol.svg │ │ │ │ │ │ ├── por-bra.svg │ │ │ │ │ │ ├── por.svg │ │ │ │ │ │ ├── rum.svg │ │ │ │ │ │ ├── rus.svg │ │ │ │ │ │ ├── scc.svg │ │ │ │ │ │ ├── slo.svg │ │ │ │ │ │ ├── slv.svg │ │ │ │ │ │ ├── spa.svg │ │ │ │ │ │ ├── srp.svg │ │ │ │ │ │ ├── swa.svg │ │ │ │ │ │ ├── swe.svg │ │ │ │ │ │ ├── tha.svg │ │ │ │ │ │ ├── tur.svg │ │ │ │ │ │ ├── ukr.svg │ │ │ │ │ │ └── vie.svg │ │ │ │ └── images │ │ │ │ │ ├── emby.png │ │ │ │ │ ├── jellyfin.png │ │ │ │ │ ├── logo-small.png │ │ │ │ │ ├── no-poster.png │ │ │ │ │ ├── running-logo.gif │ │ │ │ │ └── under-construction.webp │ │ │ ├── components │ │ │ │ ├── blockers │ │ │ │ │ ├── EsJobRunning.tsx │ │ │ │ │ ├── EsNoMedia.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── buttons │ │ │ │ │ ├── EsButton.tsx │ │ │ │ │ ├── EsHyperLinkButton.tsx │ │ │ │ │ ├── EsRoundIconButton.tsx │ │ │ │ │ ├── EsSaveButton.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── cards │ │ │ │ │ ├── EsBasicCard.tsx │ │ │ │ │ ├── EsSaveCard.tsx │ │ │ │ │ ├── EsTopListCard.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── charts │ │ │ │ │ ├── EsBarGraph.tsx │ │ │ │ │ ├── EsPieChart.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esAppBar │ │ │ │ │ ├── EsAppBar.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esAvatar │ │ │ │ │ ├── EsAvatar.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esBoolCheck │ │ │ │ │ ├── EsBoolCheck.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esChipList │ │ │ │ │ ├── EsChipList.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esDateOrNever │ │ │ │ │ ├── EsDateOrNever.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esFlag │ │ │ │ │ ├── EsFlag.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esFlagList │ │ │ │ │ ├── EsFlagList.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esLibrarySelector │ │ │ │ │ ├── EsLibrarySelector.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esLoading │ │ │ │ │ ├── EsLoading.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esMenuDrawer │ │ │ │ │ ├── EsMenuDrawer.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── menuItems.tsx │ │ │ │ ├── esPageLoader │ │ │ │ │ ├── EsPageLoader.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esPoster │ │ │ │ │ ├── EsPoster.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esScrollbar │ │ │ │ │ ├── EsScrollbar.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esSortLabel │ │ │ │ │ ├── EsSortLabel.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esTextInput │ │ │ │ │ ├── esTextInput.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── esTitle │ │ │ │ │ ├── EsChipTitle.tsx │ │ │ │ │ ├── EsTitle.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── filter │ │ │ │ │ ├── EsFilterChip.tsx │ │ │ │ │ ├── EsFilterContainer.tsx │ │ │ │ │ ├── EsFilterInputContainer.tsx │ │ │ │ │ ├── EsFlagMenuItem.tsx │ │ │ │ │ ├── EsNewFilterDialog.tsx │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── EsFilterDropdownField.tsx │ │ │ │ │ │ ├── EsFilterNumberField.tsx │ │ │ │ │ │ ├── EsFilterRangeField.tsx │ │ │ │ │ │ └── EsFilterTextField.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── table │ │ │ │ │ ├── EsBoolRow.tsx │ │ │ │ │ ├── EsDetailRowSkeleton.tsx │ │ │ │ │ ├── EsFetchFailedRow.tsx │ │ │ │ │ ├── EsTableHeader.tsx │ │ │ │ │ ├── EsTablePagination.tsx │ │ │ │ │ ├── Types.tsx │ │ │ │ │ └── index.tsx │ │ │ ├── context │ │ │ │ ├── ILibraryContext.tsx │ │ │ │ ├── jobs │ │ │ │ │ ├── JobContextProvider.tsx │ │ │ │ │ ├── JobState.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── library │ │ │ │ │ ├── LibrariesContextProvider.tsx │ │ │ │ │ ├── LibrariesState.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── mediaServerUser │ │ │ │ │ ├── MediaServerUserContextProvider.tsx │ │ │ │ │ ├── MediaServerUserState.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── movies │ │ │ │ │ ├── MoviesContextProvider.tsx │ │ │ │ │ ├── MoviesState.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── server │ │ │ │ │ ├── ServerContextProvider.tsx │ │ │ │ │ ├── ServerState.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── settings │ │ │ │ │ ├── SettingsContextProvider.tsx │ │ │ │ │ ├── SettingsState.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── shows │ │ │ │ │ ├── ShowsContextProvider.tsx │ │ │ │ │ ├── ShowsState.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── signalr │ │ │ │ │ ├── SignalRContextProvider.tsx │ │ │ │ │ ├── SignalRState.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── user │ │ │ │ │ ├── UserContextProvider.tsx │ │ │ │ │ ├── UserState.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── wizard │ │ │ │ │ ├── WizardContextProvider.tsx │ │ │ │ │ └── WizardState.tsx │ │ │ ├── hooks │ │ │ │ ├── index.tsx │ │ │ │ ├── useEsLocation.tsx │ │ │ │ ├── useFilterHelpers.tsx │ │ │ │ ├── useHasAnyAdmins.tsx │ │ │ │ ├── useLocale.tsx │ │ │ │ ├── useMediaServerUrls.tsx │ │ │ │ ├── usePalette.tsx │ │ │ │ ├── useSearchMediaServers.tsx │ │ │ │ ├── useServerType.tsx │ │ │ │ └── useShowDetails.tsx │ │ │ ├── models │ │ │ │ ├── about │ │ │ │ │ ├── About.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── common │ │ │ │ │ ├── Card.tsx │ │ │ │ │ ├── Chart.tsx │ │ │ │ │ ├── Color.tsx │ │ │ │ │ ├── LabelValuePair.tsx │ │ │ │ │ ├── Media.tsx │ │ │ │ │ ├── TablePage.tsx │ │ │ │ │ ├── TopCard.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── filter │ │ │ │ │ ├── ActiveFilter.tsx │ │ │ │ │ ├── FilterConstants.tsx │ │ │ │ │ ├── FilterDefinition.tsx │ │ │ │ │ ├── FilterValues.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── jobs │ │ │ │ │ ├── JobLogLine.tsx │ │ │ │ │ ├── JobProgress.tsx │ │ │ │ │ ├── Jobs.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── language │ │ │ │ │ ├── Language.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── library │ │ │ │ │ ├── Library.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── login │ │ │ │ │ ├── AuthenticateResponse.tsx │ │ │ │ │ ├── JwtPayloadCustom.tsx │ │ │ │ │ ├── User.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── logs │ │ │ │ │ ├── LogFile.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── mediaServer │ │ │ │ │ ├── MediaServer.tsx │ │ │ │ │ ├── MediaServerInfo.tsx │ │ │ │ │ ├── MediaServerLogin.tsx │ │ │ │ │ ├── MediaServerPlugin.tsx │ │ │ │ │ ├── MediaServerUdpBroadcast.tsx │ │ │ │ │ ├── MediaServerUser.tsx │ │ │ │ │ ├── MediaServerUserRow.tsx │ │ │ │ │ ├── MediaServerUserStatistics.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── movie │ │ │ │ │ ├── Movie.tsx │ │ │ │ │ ├── MovieRow.tsx │ │ │ │ │ ├── MovieStatistics.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── settings │ │ │ │ │ ├── Settings.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── show │ │ │ │ │ ├── ShowRow.tsx │ │ │ │ │ ├── ShowStatistics.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── user │ │ │ │ │ ├── User.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── wizard │ │ │ │ │ ├── Wizard.tsx │ │ │ │ │ └── index.tsx │ │ │ ├── services │ │ │ │ ├── aboutService.tsx │ │ │ │ ├── accountService.tsx │ │ │ │ ├── axiosInstance.tsx │ │ │ │ ├── filterService.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── jobService.tsx │ │ │ │ ├── logService.tsx │ │ │ │ ├── movieService.tsx │ │ │ │ ├── serverService.tsx │ │ │ │ ├── settingsService.tsx │ │ │ │ ├── showService.tsx │ │ │ │ └── systemService.tsx │ │ │ └── utils │ │ │ │ ├── SnackbarUtilsConfigurator.tsx │ │ │ │ ├── calculateFileSize.tsx │ │ │ │ ├── convertToIcon.tsx │ │ │ │ ├── customWindow.tsx │ │ │ │ ├── generateStreamChipLabel.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── jobIds.tsx │ │ ├── styles │ │ │ └── theme.tsx │ │ └── tests │ │ │ ├── hooks │ │ │ └── useMediaServerUrls.test.tsx │ │ │ └── utils │ │ │ └── calculateFileSize.test.tsx │ └── tsconfig.json └── EmbyStat.Web.csproj ├── EmbyStat.sln ├── EmbyStat.sln.DotSettings ├── GitVersion.yml ├── LICENSE ├── README.md ├── Templates └── unraid │ ├── EmbyStatBeta.xml │ ├── unraid-blue-256px.png │ ├── unraid-blue-48px.png │ ├── unraid-blue-512px.png │ ├── unraid-blue-white_inside-256px.png │ ├── unraid-blue-white_inside-48px.png │ ├── unraid-blue-white_inside-512px.png │ ├── unraid-white&blue-256px.png │ ├── unraid-white&blue-48px.png │ ├── unraid-white&blue-512px.png │ ├── unraid-white-256px.png │ ├── unraid-white-48px.png │ └── unraid-white-512px.png ├── Tests.Unit ├── Builders │ ├── ConfigBuilder.cs │ ├── DeviceBuilder.cs │ ├── EpisodeBuilder.cs │ ├── FilterBuilder.cs │ ├── LibraryBuilder.cs │ ├── MediaServerUserBuilder.cs │ ├── MovieBuilder.cs │ ├── QueryResultBuilder.cs │ ├── SeasonBuilder.cs │ ├── ShowBuilder.cs │ ├── SubtitleStreamBuilder.cs │ ├── VideoStreamBuilder.cs │ └── ViewModels │ │ └── ConfigViewModelBuilder.cs ├── Clients │ ├── BaseHttpClientTests.cs │ ├── EmbyHttpClientTests.cs │ └── JellyFinHttpClientTests.cs ├── Controllers │ ├── FilterControllerTests.cs │ ├── JobControllerTests.cs │ ├── MediaServerControllerTests.cs │ ├── MovieControllerTests.cs │ ├── PluginControllerTests.cs │ ├── SettingsControllerTests.cs │ └── ShowControllerTests.cs ├── Converters │ └── TopCardConverterTests.cs ├── Extensions │ ├── DoubleExtensionTests.cs │ ├── IntExtensionTests.cs │ ├── ItemQueryExtensionTests.cs │ ├── ListExtensionTests.cs │ ├── MediServerExtensionTests.cs │ ├── MediaExtensionTests.cs │ ├── MovieExtensionTests.cs │ ├── RoundNumberExtensionTests.cs │ ├── ShowExtensionTests.cs │ └── StringExtensionTests.cs ├── Factory │ ├── EmbyClientFactoryTests.cs │ └── JellyfinClientFactoryTests.cs ├── Helpers │ ├── FakeRoleManager.cs │ ├── FakeSignInManager.cs │ └── FakeUserManager.cs ├── Jobs │ └── JobInitializerTests.cs ├── Models │ ├── EmbyUdpBroadcastTests.cs │ ├── MediaServerSettingsTests.cs │ └── StartupOptionsTests.cs ├── Services │ ├── AboutServiceTests.cs │ ├── AccountServiceTests.cs │ ├── FilterServiceTests.cs │ ├── JobServiceTests.cs │ ├── LanguageServiceTests.cs │ ├── LogServiceTests.cs │ ├── MediaServerServiceTests.cs │ ├── MovieServiceTests.cs │ ├── SessionServiceTests.cs │ ├── SettingsServiceTests.cs │ ├── ShowServiceTests.cs │ └── SystemServiceTests.cs └── Tests.Unit.csproj ├── Updater ├── Models │ └── StartupOptions.cs ├── Program.cs ├── Updater.cs ├── Updater.csproj └── nlog.config ├── branding ├── NSIS │ ├── install.ico │ ├── installer-header.bmp │ ├── installer-header.png │ ├── installer-right.bmp │ ├── installer-right.png │ └── uninstall.ico └── logo-color.png ├── commands.txt ├── crowdin.yml ├── nuget.config └── version.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.bettercodehub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/.bettercodehub.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | ko_fi: embystat 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/dco.yml: -------------------------------------------------------------------------------- 1 | require: 2 | members: false -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.github/workflows/new-translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/.github/workflows/new-translations.yml -------------------------------------------------------------------------------- /.github/workflows/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/.github/workflows/no-response.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/Api/IMediaServerApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/Api/IMediaServerApi.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/ClientStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/ClientStrategy.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/EmbyStat.Clients.Base.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/EmbyStat.Clients.Base.csproj -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/Http/BaseHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/Http/BaseHttpClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/Http/IBaseHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/Http/IBaseHttpClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/Http/IRefitHttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/Http/IRefitHttpClientFactory.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/Http/RefitHttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/Http/RefitHttpClientFactory.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/Http/ServerSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/Http/ServerSearcher.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/IClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/IClientFactory.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/IClientStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/IClientStrategy.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/IMetadataClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/IMetadataClientFactory.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/Metadata/IMetadataClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/Metadata/IMetadataClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/WebSocket/IWebSocketApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/WebSocket/IWebSocketApi.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/WebSocket/IWebSocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/WebSocket/IWebSocketClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Base/WebSocket/WebSocketApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Base/WebSocket/WebSocketApi.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Emby/EmbyClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Emby/EmbyClientFactory.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Emby/EmbyStat.Clients.Emby.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Emby/EmbyStat.Clients.Emby.csproj -------------------------------------------------------------------------------- /EmbyStat.Clients.Emby/Http/EmbyBaseHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Emby/Http/EmbyBaseHttpClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Emby/Http/IEmbyBaseHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Emby/Http/IEmbyBaseHttpClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Emby/WebSocket/EmbyWebSocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Emby/WebSocket/EmbyWebSocketClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Emby/WebSocket/IEmbyWebSocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Emby/WebSocket/IEmbyWebSocketClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.GitHub/EmbyStat.Clients.GitHub.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.GitHub/EmbyStat.Clients.GitHub.csproj -------------------------------------------------------------------------------- /EmbyStat.Clients.GitHub/GitHubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.GitHub/GitHubClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.GitHub/IGitHubApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.GitHub/IGitHubApi.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.GitHub/IGitHubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.GitHub/IGitHubClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.GitHub/Models/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.GitHub/Models/Asset.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.GitHub/Models/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.GitHub/Models/Author.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.GitHub/Models/PackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.GitHub/Models/PackageInfo.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.GitHub/Models/ReleaseObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.GitHub/Models/ReleaseObject.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.GitHub/Models/UpdateResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.GitHub/Models/UpdateResult.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Jellyfin/EmbyStat.Clients.Jellyfin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Jellyfin/EmbyStat.Clients.Jellyfin.csproj -------------------------------------------------------------------------------- /EmbyStat.Clients.Jellyfin/Http/IJellyfinBaseHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Jellyfin/Http/IJellyfinBaseHttpClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Jellyfin/Http/JellyfinBaseHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Jellyfin/Http/JellyfinBaseHttpClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Jellyfin/JellyfinClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Jellyfin/JellyfinClientFactory.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Jellyfin/WebSocket/IJellyfinWebSocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Jellyfin/WebSocket/IJellyfinWebSocketClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Tmdb/EmbyStat.Clients.Tmdb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Tmdb/EmbyStat.Clients.Tmdb.csproj -------------------------------------------------------------------------------- /EmbyStat.Clients.Tmdb/ITmdbClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Tmdb/ITmdbClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Tmdb/TmdbClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Tmdb/TmdbClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.Tmdb/TmdbClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.Tmdb/TmdbClientFactory.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.TvMaze/EmbyStat.Clients.TvMaze.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.TvMaze/EmbyStat.Clients.TvMaze.csproj -------------------------------------------------------------------------------- /EmbyStat.Clients.TvMaze/ITvMazeShowClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.TvMaze/ITvMazeShowClient.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.TvMaze/TvMazeClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.TvMaze/TvMazeClientFactory.cs -------------------------------------------------------------------------------- /EmbyStat.Clients.TvMaze/TvMazeShowClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Clients.TvMaze/TvMazeShowClient.cs -------------------------------------------------------------------------------- /EmbyStat.Common/ChartGrouping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/ChartGrouping.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Constants.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Converters/SessionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Converters/SessionConverter.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Converters/TopCardHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Converters/TopCardHelper.cs -------------------------------------------------------------------------------- /EmbyStat.Common/EmbyStat.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/EmbyStat.Common.csproj -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/CardType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/CardType.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/ImageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/ImageType.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/LibraryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/LibraryType.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/LocationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/LocationType.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/MediaProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/MediaProtocol.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/MediaStreamType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/MediaStreamType.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/MediaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/MediaType.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/MetadataServerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/MetadataServerType.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/PersonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/PersonType.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/PlayMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/PlayMethod.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/RepeatMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/RepeatMode.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/ServerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/ServerType.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/StatisticType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/StatisticType.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/TranscodeReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/TranscodeReason.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/UpdateLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/UpdateLevel.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/UpdateTrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/UpdateTrain.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Enums/Video3DFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Enums/Video3DFormat.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Exceptions/ApiError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Exceptions/ApiError.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Exceptions/BusinessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Exceptions/BusinessException.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Exceptions/BusinessExceptionFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Exceptions/BusinessExceptionFilterAttribute.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Exceptions/EmbyStatStartupException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Exceptions/EmbyStatStartupException.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Exceptions/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Exceptions/NotFoundException.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Exceptions/WizardNotFinishedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Exceptions/WizardNotFinishedException.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Extensions/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Extensions/DictionaryExtensions.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Extensions/DoubleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Extensions/DoubleExtensions.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Extensions/IntExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Extensions/IntExtensions.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Extensions/ItemQueryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Extensions/ItemQueryExtensions.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Extensions/LibrarySyncTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Extensions/LibrarySyncTypeExtensions.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Extensions/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Extensions/ListExtensions.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Extensions/MediaExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Extensions/MediaExtensions.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Extensions/MediaServerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Extensions/MediaServerExtensions.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Extensions/MovieExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Extensions/MovieExtensions.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Extensions/RoundNumberExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Extensions/RoundNumberExtension.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Extensions/ShowExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Extensions/ShowExtensions.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Extensions/VirtualEpisodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Extensions/VirtualEpisodeExtensions.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Generators/KeyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Generators/KeyGenerator.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Helpers/ListContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Helpers/ListContainer.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Account/AccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Account/AccessToken.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Account/AuthenticateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Account/AuthenticateRequest.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Account/AuthenticateResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Account/AuthenticateResponse.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Account/ChangePasswordRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Account/ChangePasswordRequest.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Account/ChangeUserNameRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Account/ChangeUserNameRequest.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Account/RefreshTokenRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Account/RefreshTokenRequest.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Cards/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Cards/Card.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Cards/TopCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Cards/TopCard.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Charts/Chart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Charts/Chart.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Charts/SimpleChartData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Charts/SimpleChartData.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/DataGrid/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/DataGrid/Page.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Device.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/EmbyStatUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/EmbyStatUser.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Events/Play.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Events/Play.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Events/PlayState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Events/PlayState.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Events/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Events/Session.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/FilterValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/FilterValues.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Genre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Genre.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Helpers/Extra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Helpers/Extra.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Helpers/ILinkedMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Helpers/ILinkedMedia.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Helpers/LabelValuePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Helpers/LabelValuePair.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Helpers/Media.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Helpers/Media.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Helpers/MediaPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Helpers/MediaPerson.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Helpers/RefreshToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Helpers/RefreshToken.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Helpers/Video.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Helpers/Video.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Job.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Job.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Language.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Library.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/LibrarySyncType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/LibrarySyncType.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/MediaServerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/MediaServerInfo.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/MediaServerStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/MediaServerStatus.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/MediaServerUserView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/MediaServerUserView.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Movies/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Movies/Movie.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Person.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/PluginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/PluginInfo.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Shows/Episode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Shows/Episode.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Shows/Season.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Shows/Season.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Shows/Show.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Shows/Show.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Statistic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Statistic.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Streams/AudioStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Streams/AudioStream.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Streams/MediaSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Streams/MediaSource.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Streams/SubtitleStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Streams/SubtitleStream.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Streams/VideoStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Streams/VideoStream.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Entities/Users/MediaServerUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Entities/Users/MediaServerUser.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/GenericEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/GenericEventArgs.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/ItemQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/ItemQuery.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/MediaServer/MediaServerUserRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/MediaServer/MediaServerUserRow.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/MediaServer/UserMediaView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/MediaServer/UserMediaView.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/MediaServerUdpBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/MediaServerUdpBroadcast.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Net/BaseItemDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Net/BaseItemDto.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Net/BaseItemPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Net/BaseItemPerson.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Net/BaseMediaSourceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Net/BaseMediaSourceInfo.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Net/BaseMediaStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Net/BaseMediaStream.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Net/BaseUserDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Net/BaseUserDto.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Net/UserData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Net/UserData.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/OptionSerializerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/OptionSerializerAttribute.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Query/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Query/Filter.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Show/VirtualEpisode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Show/VirtualEpisode.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/StartupOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/StartupOptions.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Tasks/Enum/JobState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Tasks/Enum/JobState.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Tasks/Enum/ProgressLogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Tasks/Enum/ProgressLogType.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Tasks/JobLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Tasks/JobLog.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/Tasks/JobProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/Tasks/JobProgress.cs -------------------------------------------------------------------------------- /EmbyStat.Common/Models/WebSocketMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Common/Models/WebSocketMessage.cs -------------------------------------------------------------------------------- /EmbyStat.Configuration/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Configuration/Config.cs -------------------------------------------------------------------------------- /EmbyStat.Configuration/ConfigurationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Configuration/ConfigurationService.cs -------------------------------------------------------------------------------- /EmbyStat.Configuration/EmbyStat.Configuration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Configuration/EmbyStat.Configuration.csproj -------------------------------------------------------------------------------- /EmbyStat.Configuration/Interfaces/IConfigurationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Configuration/Interfaces/IConfigurationService.cs -------------------------------------------------------------------------------- /EmbyStat.Configuration/InvalidConfigFileException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Configuration/InvalidConfigFileException.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/About/AboutController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/About/AboutController.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/About/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/About/AboutViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Account/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Account/AccountController.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/EmbyStat.Controllers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/EmbyStat.Controllers.csproj -------------------------------------------------------------------------------- /EmbyStat.Controllers/Filters/FilterController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Filters/FilterController.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Filters/FilterValuesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Filters/FilterValuesViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/HelperClasses/ActiveFilterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/HelperClasses/ActiveFilterViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/HelperClasses/CardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/HelperClasses/CardViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/HelperClasses/ChartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/HelperClasses/ChartViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/HelperClasses/LabelValuePairViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/HelperClasses/LabelValuePairViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/HelperClasses/LibraryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/HelperClasses/LibraryViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/HelperClasses/PageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/HelperClasses/PageViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/HelperClasses/Streams/AudioStreamViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/HelperClasses/Streams/AudioStreamViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/HelperClasses/Streams/MediaSourceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/HelperClasses/Streams/MediaSourceViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/HelperClasses/Streams/MoviePersonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/HelperClasses/Streams/MoviePersonViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/HelperClasses/Streams/SubtitleStreamViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/HelperClasses/Streams/SubtitleStreamViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/HelperClasses/Streams/VideoStreamViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/HelperClasses/Streams/VideoStreamViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/HelperClasses/TopCardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/HelperClasses/TopCardViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/HelperClasses/UserMediaViewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/HelperClasses/UserMediaViewViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Job/JobController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Job/JobController.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Job/JobViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Job/JobViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Log/LogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Log/LogController.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Log/LogFileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Log/LogFileViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/MapProfiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/MapProfiles.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/MediaServer/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/MediaServer/LoginViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/MediaServer/MediaServerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/MediaServer/MediaServerController.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/MediaServer/MediaServerLibraryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/MediaServer/MediaServerLibraryViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/MediaServer/MediaServerUserRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/MediaServer/MediaServerUserRowViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/MediaServer/MediaServerUserStatisticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/MediaServer/MediaServerUserStatisticsViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/MediaServer/PluginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/MediaServer/PluginViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/MediaServer/ServerInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/MediaServer/ServerInfoViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/MediaServer/StatusViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/MediaServer/StatusViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/MediaServer/UdpBroadcastViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/MediaServer/UdpBroadcastViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/MediaServer/UrlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/MediaServer/UrlViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/MediaServer/UserFullViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/MediaServer/UserFullViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/MediaServer/UserIdViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/MediaServer/UserIdViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/MediaServer/UserOverviewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/MediaServer/UserOverviewViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Middleware/RequestLoggingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Middleware/RequestLoggingMiddleware.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Movie/MovieController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Movie/MovieController.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Movie/MovieRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Movie/MovieRowViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Movie/MovieStatisticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Movie/MovieStatisticsViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Movie/MovieViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Movie/MovieViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Movie/ShortMovieViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Movie/ShortMovieViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Movie/SuspiciousMovieViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Movie/SuspiciousMovieViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Movie/SuspiciousTablesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Movie/SuspiciousTablesViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Settings/ConfigViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Settings/ConfigViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Settings/LanguageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Settings/LanguageViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Settings/SettingsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Settings/SettingsController.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Show/ShowChartsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Show/ShowChartsViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Show/ShowController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Show/ShowController.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Show/ShowDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Show/ShowDetailViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Show/ShowRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Show/ShowRowViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Show/ShowStatisticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Show/ShowStatisticsViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/Show/VirtualEpisodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/Show/VirtualEpisodeViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/System/SystemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/System/SystemController.cs -------------------------------------------------------------------------------- /EmbyStat.Controllers/System/UpdateResultViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Controllers/System/UpdateResultViewModel.cs -------------------------------------------------------------------------------- /EmbyStat.Core/About/AboutModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/About/AboutModel.cs -------------------------------------------------------------------------------- /EmbyStat.Core/About/AboutService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/About/AboutService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/About/Interfaces/IAboutService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/About/Interfaces/IAboutService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Abstract/MediaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Abstract/MediaService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Abstract/StatisticHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Abstract/StatisticHelper.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Account/AccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Account/AccountService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Account/Interfaces/IAccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Account/Interfaces/IAccountService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Authentication/AuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Authentication/AuthenticationHelper.cs -------------------------------------------------------------------------------- /EmbyStat.Core/DataStore/EsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/DataStore/EsDbContext.cs -------------------------------------------------------------------------------- /EmbyStat.Core/DataStore/ISqliteBootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/DataStore/ISqliteBootstrap.cs -------------------------------------------------------------------------------- /EmbyStat.Core/DataStore/Migrations/Sqlite/20220622095519_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/DataStore/Migrations/Sqlite/20220622095519_Init.Designer.cs -------------------------------------------------------------------------------- /EmbyStat.Core/DataStore/Migrations/Sqlite/20220622095519_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/DataStore/Migrations/Sqlite/20220622095519_Init.cs -------------------------------------------------------------------------------- /EmbyStat.Core/DataStore/Migrations/Sqlite/20220711095301_SyncTypeAdded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/DataStore/Migrations/Sqlite/20220711095301_SyncTypeAdded.cs -------------------------------------------------------------------------------- /EmbyStat.Core/DataStore/Migrations/Sqlite/EsDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/DataStore/Migrations/Sqlite/EsDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /EmbyStat.Core/DataStore/Seeds/JobSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/DataStore/Seeds/JobSeed.cs -------------------------------------------------------------------------------- /EmbyStat.Core/DataStore/Seeds/LanguageSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/DataStore/Seeds/LanguageSeed.cs -------------------------------------------------------------------------------- /EmbyStat.Core/DataStore/Seeds/MediaServerSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/DataStore/Seeds/MediaServerSeed.cs -------------------------------------------------------------------------------- /EmbyStat.Core/DataStore/SqliteBootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/DataStore/SqliteBootstrap.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Disk/DiskProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Disk/DiskProvider.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Disk/Interfaces/IDiskProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Disk/Interfaces/IDiskProvider.cs -------------------------------------------------------------------------------- /EmbyStat.Core/EmbyStat.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/EmbyStat.Core.csproj -------------------------------------------------------------------------------- /EmbyStat.Core/EnvironmentInfo/Interfaces/IOsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/EnvironmentInfo/Interfaces/IOsInfo.cs -------------------------------------------------------------------------------- /EmbyStat.Core/EnvironmentInfo/Interfaces/IOsVersionAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/EnvironmentInfo/Interfaces/IOsVersionAdapter.cs -------------------------------------------------------------------------------- /EmbyStat.Core/EnvironmentInfo/OsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/EnvironmentInfo/OsInfo.cs -------------------------------------------------------------------------------- /EmbyStat.Core/EnvironmentInfo/OsVersionAdapters/FreebsdVersionAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/EnvironmentInfo/OsVersionAdapters/FreebsdVersionAdapter.cs -------------------------------------------------------------------------------- /EmbyStat.Core/EnvironmentInfo/OsVersionAdapters/MacOsVersionAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/EnvironmentInfo/OsVersionAdapters/MacOsVersionAdapter.cs -------------------------------------------------------------------------------- /EmbyStat.Core/EnvironmentInfo/OsVersionAdapters/WindowsVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/EnvironmentInfo/OsVersionAdapters/WindowsVersionInfo.cs -------------------------------------------------------------------------------- /EmbyStat.Core/EnvironmentInfo/OsVersionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/EnvironmentInfo/OsVersionModel.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Filters/FilterRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Filters/FilterRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Filters/FilterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Filters/FilterService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Filters/Interfaces/IFilterRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Filters/Interfaces/IFilterRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Filters/Interfaces/IFilterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Filters/Interfaces/IFilterService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Genres/GenreRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Genres/GenreRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Genres/Interfaces/IGenreRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Genres/Interfaces/IGenreRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Hubs/EmbyStatHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Hubs/EmbyStatHub.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Hubs/HubHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Hubs/HubHelper.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Hubs/IHubHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Hubs/IHubHelper.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Jobs/Interfaces/IJobRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Jobs/Interfaces/IJobRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Jobs/Interfaces/IJobService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Jobs/Interfaces/IJobService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Jobs/JobRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Jobs/JobRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Jobs/JobService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Jobs/JobService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Languages/Interfaces/ILanguageRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Languages/Interfaces/ILanguageRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Languages/Interfaces/ILanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Languages/Interfaces/ILanguageService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Languages/LanguageRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Languages/LanguageRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Languages/LanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Languages/LanguageService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Logging/Interfaces/ILogsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Logging/Interfaces/ILogsService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Logging/LogFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Logging/LogFile.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Logging/LogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Logging/LogService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/MediaHelpers/Interfaces/IMediaRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/MediaHelpers/Interfaces/IMediaRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/MediaServers/Interfaces/IMediaServerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/MediaServers/Interfaces/IMediaServerRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/MediaServers/Interfaces/IMediaServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/MediaServers/Interfaces/IMediaServerService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/MediaServers/MediaServerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/MediaServers/MediaServerRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/MediaServers/MediaServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/MediaServers/MediaServerService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/MediaServers/MediaServerUserStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/MediaServers/MediaServerUserStatistics.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Movies/Interfaces/IMovieRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Movies/Interfaces/IMovieRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Movies/Interfaces/IMovieService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Movies/Interfaces/IMovieService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Movies/MovieRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Movies/MovieRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Movies/MovieService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Movies/MovieService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Movies/MovieStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Movies/MovieStatistics.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Movies/ShortMovie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Movies/ShortMovie.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Movies/SuspiciousMovie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Movies/SuspiciousMovie.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Movies/SuspiciousTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Movies/SuspiciousTables.cs -------------------------------------------------------------------------------- /EmbyStat.Core/People/Interfaces/IPersonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/People/Interfaces/IPersonRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/People/PersonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/People/PersonRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Processes/Interfaces/IProcessProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Processes/Interfaces/IProcessProvider.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Processes/ProcessOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Processes/ProcessOutput.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Processes/ProcessOutputLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Processes/ProcessOutputLevel.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Processes/ProcessOutputLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Processes/ProcessOutputLine.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Processes/ProcessProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Processes/ProcessProvider.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Sessions/Interfaces/ISessionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Sessions/Interfaces/ISessionRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Sessions/Interfaces/ISessionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Sessions/Interfaces/ISessionService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Sessions/SessionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Sessions/SessionService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Shows/Interfaces/IShowRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Shows/Interfaces/IShowRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Shows/Interfaces/IShowService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Shows/Interfaces/IShowService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Shows/ShowCharts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Shows/ShowCharts.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Shows/ShowRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Shows/ShowRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Shows/ShowService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Shows/ShowService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Shows/ShowStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Shows/ShowStatistics.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Statistics/Interfaces/IStatisticsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Statistics/Interfaces/IStatisticsRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Statistics/StatisticsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Statistics/StatisticsRepository.cs -------------------------------------------------------------------------------- /EmbyStat.Core/System/Interfaces/ISystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/System/Interfaces/ISystemService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/System/SystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/System/SystemService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Updates/Interfaces/IUpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Updates/Interfaces/IUpdateService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/Updates/UpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/Updates/UpdateService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/WebSockets/Interfaces/IWebSocketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/WebSockets/Interfaces/IWebSocketService.cs -------------------------------------------------------------------------------- /EmbyStat.Core/WebSockets/WebSocketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Core/WebSockets/WebSocketService.cs -------------------------------------------------------------------------------- /EmbyStat.DI/DiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.DI/DiExtensions.cs -------------------------------------------------------------------------------- /EmbyStat.DI/EmbyStat.DI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.DI/EmbyStat.DI.csproj -------------------------------------------------------------------------------- /EmbyStat.Hosts.Cmd/ApplicationModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Hosts.Cmd/ApplicationModes.cs -------------------------------------------------------------------------------- /EmbyStat.Hosts.Cmd/DefaultConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Hosts.Cmd/DefaultConfig.cs -------------------------------------------------------------------------------- /EmbyStat.Hosts.Cmd/EmbyStat.Hosts.Cmd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Hosts.Cmd/EmbyStat.Hosts.Cmd.csproj -------------------------------------------------------------------------------- /EmbyStat.Hosts.Cmd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Hosts.Cmd/Program.cs -------------------------------------------------------------------------------- /EmbyStat.Hosts.Cmd/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Hosts.Cmd/Startup.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/BaseJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/BaseJob.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/EmbyStat.Jobs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/EmbyStat.Jobs.csproj -------------------------------------------------------------------------------- /EmbyStat.Jobs/IBaseJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/IBaseJob.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/IJobInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/IJobInitializer.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/JobInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/JobInitializer.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/Jobs/Interfaces/ICheckUpdateJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/Jobs/Interfaces/ICheckUpdateJob.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/Jobs/Interfaces/IDatabaseCleanupJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/Jobs/Interfaces/IDatabaseCleanupJob.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/Jobs/Interfaces/IMovieSyncJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/Jobs/Interfaces/IMovieSyncJob.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/Jobs/Interfaces/IPingEmbyJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/Jobs/Interfaces/IPingEmbyJob.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/Jobs/Interfaces/IShowSyncJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/Jobs/Interfaces/IShowSyncJob.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/Jobs/Interfaces/ISmallSyncJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/Jobs/Interfaces/ISmallSyncJob.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/Jobs/Maintenance/DatabaseCleanupJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/Jobs/Maintenance/DatabaseCleanupJob.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/Jobs/Maintenance/PingEmbyJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/Jobs/Maintenance/PingEmbyJob.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/Jobs/Sync/MovieSyncJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/Jobs/Sync/MovieSyncJob.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/Jobs/Sync/ShowSyncJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/Jobs/Sync/ShowSyncJob.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/Jobs/Sync/SmallSyncJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/Jobs/Sync/SmallSyncJob.cs -------------------------------------------------------------------------------- /EmbyStat.Jobs/Jobs/Updater/CheckUpdateJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Jobs/Jobs/Updater/CheckUpdateJob.cs -------------------------------------------------------------------------------- /EmbyStat.Migrator/EmbyStat.Migrator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Migrator/EmbyStat.Migrator.csproj -------------------------------------------------------------------------------- /EmbyStat.Migrator/Interfaces/IMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Migrator/Interfaces/IMigration.cs -------------------------------------------------------------------------------- /EmbyStat.Migrator/Interfaces/IMigrationRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Migrator/Interfaces/IMigrationRunner.cs -------------------------------------------------------------------------------- /EmbyStat.Migrator/Interfaces/IMigrationSourceItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Migrator/Interfaces/IMigrationSourceItem.cs -------------------------------------------------------------------------------- /EmbyStat.Migrator/MigrationRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Migrator/MigrationRunner.cs -------------------------------------------------------------------------------- /EmbyStat.Migrator/Migrations/0001_CreateUserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Migrator/Migrations/0001_CreateUserSettings.cs -------------------------------------------------------------------------------- /EmbyStat.Migrator/Models/AssemblyMigrationSourceItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Migrator/Models/AssemblyMigrationSourceItem.cs -------------------------------------------------------------------------------- /EmbyStat.Migrator/Models/Migration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Migrator/Models/Migration.cs -------------------------------------------------------------------------------- /EmbyStat.Migrator/Models/version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Migrator/Models/version.cs -------------------------------------------------------------------------------- /EmbyStat.Migrator/ServiceCollectionMigratorExtention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Migrator/ServiceCollectionMigratorExtention.cs -------------------------------------------------------------------------------- /EmbyStat.Web/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/.config/dotnet-tools.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/.eslintrc.yml -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/.gitignore -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/.vscode/settings.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/README.md -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/package-lock.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/package.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/favicon.ico -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/index.html -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/base.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/da-DK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/da-DK.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/de-DE.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/el-GR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/el-GR.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/en-US.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/es-ES.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/fi-FI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/fi-FI.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/fr-FR.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/hu-HU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/hu-HU.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/it-IT.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/nl-NL.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/no-NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/no-NO.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/pl-PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/pl-PL.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/pt-BR.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/pt-PT.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/ro-RO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/ro-RO.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/sv-SE.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/locales/zh-CN.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/manifest.json -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/robots.txt -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/public/runtime-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/public/runtime-config.js -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/App.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/authentication/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './requireAuth'; 2 | 3 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/authentication/requireAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/authentication/requireAuth.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/i18n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/i18n.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/index.css -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/about/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/about/About.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/about/hooks/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './useAbout'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/about/hooks/useAbout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/about/hooks/useAbout.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/about/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/about/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/home/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/home/home.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/home/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './home'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/jobs/JobItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/jobs/JobItem.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/jobs/JobList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/jobs/JobList.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/jobs/JobLogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/jobs/JobLogs.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/jobs/JobSettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/jobs/JobSettingsDialog.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/jobs/Jobs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/jobs/Jobs.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/jobs/index.tsx: -------------------------------------------------------------------------------- 1 | export {Jobs as default} from './Jobs'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/login/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/login/Login.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/login/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/login/LoginForm.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/login/RecoverPasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/login/RecoverPasswordForm.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/login/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/logs/Logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/logs/Logs.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/logs/index.tsx: -------------------------------------------------------------------------------- 1 | export {Logs as default} from './Logs'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/General.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/movies/General.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/movies/List.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/MovieFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/movies/MovieFilters.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/Movies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/movies/Movies.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/Table/Helpers/Body.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/movies/Table/Helpers/Body.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/Table/Helpers/DataLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/movies/Table/Helpers/DataLine.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/Table/Helpers/MultiString.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/movies/Table/Helpers/MultiString.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/Table/Helpers/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/movies/Table/Helpers/Row.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/Table/Helpers/StreamLists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/movies/Table/Helpers/StreamLists.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/Table/Helpers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/movies/Table/Helpers/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/Table/MovieDetailRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/movies/Table/MovieDetailRow.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/Table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/movies/Table/Table.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/Table/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Table'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/Table/useMovieTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/movies/Table/useMovieTable.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/movies/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/movies/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/server/Server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/server/Server.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/server/ServerInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/server/ServerInfo.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/server/ServerPlugins.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/server/ServerPlugins.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/server/components/EsServerDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/server/components/EsServerDetails.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/server/components/EsServerExtraInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/server/components/EsServerExtraInfo.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/server/components/EsServerFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/server/components/EsServerFeatures.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/server/components/EsServerPaths.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/server/components/EsServerPaths.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/server/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/server/components/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/server/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Server'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/settings/Movies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/settings/Movies.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/settings/Server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/settings/Server.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/settings/Settings.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/settings/Shows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/settings/Shows.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/settings/components/EsLanguageCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/settings/components/EsLanguageCard.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/settings/components/EsPasswordCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/settings/components/EsPasswordCard.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/settings/components/EsRollbarCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/settings/components/EsRollbarCard.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/settings/components/EsTmdbApiCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/settings/components/EsTmdbApiCard.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/settings/components/EsUserCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/settings/components/EsUserCard.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/settings/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/settings/components/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/settings/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/shows/General.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/shows/General.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/shows/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/shows/List.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/shows/ShowFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/shows/ShowFilters.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/shows/Shows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/shows/Shows.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/shows/Table/Body.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/shows/Table/Body.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/shows/Table/EpisodeColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/shows/Table/EpisodeColumn.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/shows/Table/MissingEpisodeList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/shows/Table/MissingEpisodeList.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/shows/Table/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/shows/Table/Row.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/shows/Table/ShowDetailRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/shows/Table/ShowDetailRow.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/shows/Table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/shows/Table/Table.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/shows/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/shows/Table/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/shows/Table/useShowTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/shows/Table/useShowTable.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/shows/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/shows/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/users/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/users/Users.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/users/components/EsUserStatistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/users/components/EsUserStatistics.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/users/components/EsUserTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/users/components/EsUserTable.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/users/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/users/components/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/users/hooks/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './useUserTable'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/users/hooks/useUserDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/users/hooks/useUserDetails.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/users/hooks/useUserTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/users/hooks/useUserTable.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/users/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Users'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/users/subpages/UserDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/users/subpages/UserDetails.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/users/subpages/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/users/subpages/components/Header.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/users/subpages/components/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/users/subpages/components/User.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/users/subpages/components/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './User'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/users/subpages/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './UserDetails'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Interfaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Interfaces.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Steps/ConfigureLibrary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Steps/ConfigureLibrary.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Steps/Finish.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Steps/Finish.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Steps/Helpers/NewServerCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Steps/Helpers/NewServerCard.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Steps/Helpers/ServerCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Steps/Helpers/ServerCard.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Steps/Helpers/TestFailed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Steps/Helpers/TestFailed.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Steps/Helpers/TestSuccessFul.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Steps/Helpers/TestSuccessFul.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Steps/Helpers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Steps/Helpers/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Steps/Intro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Steps/Intro.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Steps/MediaServerDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Steps/MediaServerDetails.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Steps/SearchMediaServer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Steps/SearchMediaServer.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Steps/TestMediaServer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Steps/TestMediaServer.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Steps/UserDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Steps/UserDetails.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Steps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Steps/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/Wizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/Wizard.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/pages/wizard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/pages/wizard/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/reportWebVitals.ts -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/routes.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/setupTests.ts -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/ara.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/ara.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/bas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/bas.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/bul.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/bul.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/cat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/cat.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/chi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/chi.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/cze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/cze.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/dan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/dan.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/dut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/dut.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/eng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/eng.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/est.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/est.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/fin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/fin.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/fre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/fre.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/ger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/ger.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/gre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/gre.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/heb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/heb.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/hin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/hin.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/hrv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/hrv.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/hun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/hun.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/ice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/ice.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/ind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/ind.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/ita.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/ita.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/jpn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/jpn.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/kor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/kor.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/lav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/lav.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/lit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/lit.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/mac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/mac.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/may.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/may.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/nor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/nor.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/per.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/per.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/pol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/pol.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/por-bra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/por-bra.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/por.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/por.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/rum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/rum.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/rus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/rus.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/scc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/scc.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/slo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/slo.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/slv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/slv.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/spa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/spa.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/srp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/srp.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/swa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/swa.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/swe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/swe.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/tha.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/tha.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/tur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/tur.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/ukr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/ukr.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/vie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/icons/flags/vie.svg -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/images/emby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/images/emby.png -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/images/jellyfin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/images/jellyfin.png -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/images/logo-small.png -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/images/no-poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/images/no-poster.png -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/images/running-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/images/running-logo.gif -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/assets/images/under-construction.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/assets/images/under-construction.webp -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/blockers/EsJobRunning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/blockers/EsJobRunning.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/blockers/EsNoMedia.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/blockers/EsNoMedia.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/blockers/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsNoMedia'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/buttons/EsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/buttons/EsButton.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/buttons/EsSaveButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/buttons/EsSaveButton.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/buttons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/buttons/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/cards/EsBasicCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/cards/EsBasicCard.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/cards/EsSaveCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/cards/EsSaveCard.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/cards/EsTopListCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/cards/EsTopListCard.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/cards/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/cards/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/charts/EsBarGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/charts/EsBarGraph.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/charts/EsPieChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/charts/EsPieChart.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/charts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/charts/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esAppBar/EsAppBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esAppBar/EsAppBar.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esAppBar/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsAppBar'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esAvatar/EsAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esAvatar/EsAvatar.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esAvatar/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsAvatar'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esBoolCheck/EsBoolCheck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esBoolCheck/EsBoolCheck.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esBoolCheck/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsBoolCheck'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esChipList/EsChipList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esChipList/EsChipList.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esChipList/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsChipList'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esDateOrNever/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsDateOrNever'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esFlag/EsFlag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esFlag/EsFlag.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esFlag/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsFlag'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esFlagList/EsFlagList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esFlagList/EsFlagList.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esFlagList/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsFlagList'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esLibrarySelector/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsLibrarySelector'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esLoading/EsLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esLoading/EsLoading.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esLoading/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsLoading'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esMenuDrawer/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsMenuDrawer'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esMenuDrawer/menuItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esMenuDrawer/menuItems.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esPageLoader/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsPageLoader'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esPoster/EsPoster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esPoster/EsPoster.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esPoster/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsPoster'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esScrollbar/EsScrollbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esScrollbar/EsScrollbar.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esScrollbar/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsScrollbar'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esSortLabel/EsSortLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esSortLabel/EsSortLabel.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esSortLabel/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './EsSortLabel'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esTextInput/esTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esTextInput/esTextInput.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esTextInput/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './esTextInput'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esTitle/EsChipTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esTitle/EsChipTitle.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esTitle/EsTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esTitle/EsTitle.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/esTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/esTitle/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/filter/EsFilterChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/filter/EsFilterChip.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/filter/EsFilterContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/filter/EsFilterContainer.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/filter/EsFlagMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/filter/EsFlagMenuItem.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/filter/EsNewFilterDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/filter/EsNewFilterDialog.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/filter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/filter/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/table/EsBoolRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/table/EsBoolRow.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/table/EsFetchFailedRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/table/EsFetchFailedRow.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/table/EsTableHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/table/EsTableHeader.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/table/EsTablePagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/table/EsTablePagination.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/table/Types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/table/Types.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/components/table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/components/table/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/ILibraryContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/ILibraryContext.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/jobs/JobContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/jobs/JobContextProvider.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/jobs/JobState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/jobs/JobState.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/jobs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/jobs/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/library/LibrariesState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/library/LibrariesState.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/library/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/library/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/mediaServerUser/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/mediaServerUser/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/movies/MoviesState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/movies/MoviesState.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/movies/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/movies/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/server/ServerState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/server/ServerState.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/server/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/server/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/settings/SettingsState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/settings/SettingsState.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/settings/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/shows/ShowsContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/shows/ShowsContextProvider.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/shows/ShowsState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/shows/ShowsState.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/shows/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/shows/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/signalr/SignalRState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/signalr/SignalRState.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/signalr/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/signalr/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/user/UserContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/user/UserContextProvider.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/user/UserState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/user/UserState.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/user/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/user/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/context/wizard/WizardState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/context/wizard/WizardState.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/hooks/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/hooks/useEsLocation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/hooks/useEsLocation.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/hooks/useFilterHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/hooks/useFilterHelpers.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/hooks/useHasAnyAdmins.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/hooks/useHasAnyAdmins.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/hooks/useLocale.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/hooks/useLocale.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/hooks/useMediaServerUrls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/hooks/useMediaServerUrls.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/hooks/usePalette.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/hooks/usePalette.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/hooks/useSearchMediaServers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/hooks/useSearchMediaServers.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/hooks/useServerType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/hooks/useServerType.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/hooks/useShowDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/hooks/useShowDetails.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/about/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/about/About.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/about/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './About'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/common/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/common/Card.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/common/Chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/common/Chart.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/common/Color.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/common/Color.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/common/LabelValuePair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/common/LabelValuePair.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/common/Media.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/common/Media.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/common/TablePage.tsx: -------------------------------------------------------------------------------- 1 | export interface TablePage { 2 | data: T[]; 3 | totalCount: number; 4 | } 5 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/common/TopCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/common/TopCard.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/common/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/common/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/filter/ActiveFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/filter/ActiveFilter.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/filter/FilterConstants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/filter/FilterConstants.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/filter/FilterDefinition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/filter/FilterDefinition.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/filter/FilterValues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/filter/FilterValues.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/filter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/filter/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/jobs/JobLogLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/jobs/JobLogLine.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/jobs/JobProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/jobs/JobProgress.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/jobs/Jobs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/jobs/Jobs.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/jobs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/jobs/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/language/Language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/language/Language.ts -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/language/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Language'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/library/Library.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/library/Library.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/library/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Library'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/login/AuthenticateResponse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/login/AuthenticateResponse.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/login/JwtPayloadCustom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/login/JwtPayloadCustom.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/login/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/login/User.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/login/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/logs/LogFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/logs/LogFile.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/logs/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './LogFile'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/mediaServer/MediaServer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/mediaServer/MediaServer.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/mediaServer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/mediaServer/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/movie/Movie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/movie/Movie.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/movie/MovieRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/movie/MovieRow.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/movie/MovieStatistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/movie/MovieStatistics.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/movie/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/movie/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/settings/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/settings/Settings.ts -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/settings/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Settings'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/show/ShowRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/show/ShowRow.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/show/ShowStatistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/show/ShowStatistics.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/show/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/show/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/user/User.tsx: -------------------------------------------------------------------------------- 1 | export interface User { 2 | username: string; 3 | } 4 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/user/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './User'; 2 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/wizard/Wizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/models/wizard/Wizard.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/models/wizard/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Wizard'; 2 | 3 | -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/services/aboutService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/services/aboutService.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/services/accountService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/services/accountService.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/services/axiosInstance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/services/axiosInstance.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/services/filterService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/services/filterService.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/services/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/services/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/services/jobService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/services/jobService.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/services/logService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/services/logService.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/services/movieService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/services/movieService.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/services/serverService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/services/serverService.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/services/settingsService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/services/settingsService.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/services/showService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/services/showService.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/services/systemService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/services/systemService.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/utils/SnackbarUtilsConfigurator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/utils/SnackbarUtilsConfigurator.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/utils/calculateFileSize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/utils/calculateFileSize.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/utils/convertToIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/utils/convertToIcon.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/utils/customWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/utils/customWindow.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/utils/generateStreamChipLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/utils/generateStreamChipLabel.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/utils/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/utils/index.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/shared/utils/jobIds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/shared/utils/jobIds.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/styles/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/styles/theme.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/tests/hooks/useMediaServerUrls.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/tests/hooks/useMediaServerUrls.test.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/src/tests/utils/calculateFileSize.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/src/tests/utils/calculateFileSize.test.tsx -------------------------------------------------------------------------------- /EmbyStat.Web/ClientApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/ClientApp/tsconfig.json -------------------------------------------------------------------------------- /EmbyStat.Web/EmbyStat.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.Web/EmbyStat.Web.csproj -------------------------------------------------------------------------------- /EmbyStat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.sln -------------------------------------------------------------------------------- /EmbyStat.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/EmbyStat.sln.DotSettings -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/README.md -------------------------------------------------------------------------------- /Templates/unraid/EmbyStatBeta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Templates/unraid/EmbyStatBeta.xml -------------------------------------------------------------------------------- /Templates/unraid/unraid-blue-256px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Templates/unraid/unraid-blue-256px.png -------------------------------------------------------------------------------- /Templates/unraid/unraid-blue-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Templates/unraid/unraid-blue-48px.png -------------------------------------------------------------------------------- /Templates/unraid/unraid-blue-512px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Templates/unraid/unraid-blue-512px.png -------------------------------------------------------------------------------- /Templates/unraid/unraid-blue-white_inside-256px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Templates/unraid/unraid-blue-white_inside-256px.png -------------------------------------------------------------------------------- /Templates/unraid/unraid-blue-white_inside-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Templates/unraid/unraid-blue-white_inside-48px.png -------------------------------------------------------------------------------- /Templates/unraid/unraid-blue-white_inside-512px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Templates/unraid/unraid-blue-white_inside-512px.png -------------------------------------------------------------------------------- /Templates/unraid/unraid-white&blue-256px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Templates/unraid/unraid-white&blue-256px.png -------------------------------------------------------------------------------- /Templates/unraid/unraid-white&blue-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Templates/unraid/unraid-white&blue-48px.png -------------------------------------------------------------------------------- /Templates/unraid/unraid-white&blue-512px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Templates/unraid/unraid-white&blue-512px.png -------------------------------------------------------------------------------- /Templates/unraid/unraid-white-256px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Templates/unraid/unraid-white-256px.png -------------------------------------------------------------------------------- /Templates/unraid/unraid-white-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Templates/unraid/unraid-white-48px.png -------------------------------------------------------------------------------- /Templates/unraid/unraid-white-512px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Templates/unraid/unraid-white-512px.png -------------------------------------------------------------------------------- /Tests.Unit/Builders/ConfigBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Builders/ConfigBuilder.cs -------------------------------------------------------------------------------- /Tests.Unit/Builders/DeviceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Builders/DeviceBuilder.cs -------------------------------------------------------------------------------- /Tests.Unit/Builders/EpisodeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Builders/EpisodeBuilder.cs -------------------------------------------------------------------------------- /Tests.Unit/Builders/FilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Builders/FilterBuilder.cs -------------------------------------------------------------------------------- /Tests.Unit/Builders/LibraryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Builders/LibraryBuilder.cs -------------------------------------------------------------------------------- /Tests.Unit/Builders/MediaServerUserBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Builders/MediaServerUserBuilder.cs -------------------------------------------------------------------------------- /Tests.Unit/Builders/MovieBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Builders/MovieBuilder.cs -------------------------------------------------------------------------------- /Tests.Unit/Builders/QueryResultBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Builders/QueryResultBuilder.cs -------------------------------------------------------------------------------- /Tests.Unit/Builders/SeasonBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Builders/SeasonBuilder.cs -------------------------------------------------------------------------------- /Tests.Unit/Builders/ShowBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Builders/ShowBuilder.cs -------------------------------------------------------------------------------- /Tests.Unit/Builders/SubtitleStreamBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Builders/SubtitleStreamBuilder.cs -------------------------------------------------------------------------------- /Tests.Unit/Builders/VideoStreamBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Builders/VideoStreamBuilder.cs -------------------------------------------------------------------------------- /Tests.Unit/Builders/ViewModels/ConfigViewModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Builders/ViewModels/ConfigViewModelBuilder.cs -------------------------------------------------------------------------------- /Tests.Unit/Clients/BaseHttpClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Clients/BaseHttpClientTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Clients/EmbyHttpClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Clients/EmbyHttpClientTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Clients/JellyFinHttpClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Clients/JellyFinHttpClientTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Controllers/FilterControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Controllers/FilterControllerTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Controllers/JobControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Controllers/JobControllerTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Controllers/MediaServerControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Controllers/MediaServerControllerTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Controllers/MovieControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Controllers/MovieControllerTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Controllers/PluginControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Controllers/PluginControllerTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Controllers/SettingsControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Controllers/SettingsControllerTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Controllers/ShowControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Controllers/ShowControllerTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Converters/TopCardConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Converters/TopCardConverterTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Extensions/DoubleExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Extensions/DoubleExtensionTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Extensions/IntExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Extensions/IntExtensionTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Extensions/ItemQueryExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Extensions/ItemQueryExtensionTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Extensions/ListExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Extensions/ListExtensionTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Extensions/MediServerExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Extensions/MediServerExtensionTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Extensions/MediaExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Extensions/MediaExtensionTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Extensions/MovieExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Extensions/MovieExtensionTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Extensions/RoundNumberExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Extensions/RoundNumberExtensionTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Extensions/ShowExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Extensions/ShowExtensionTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Extensions/StringExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Extensions/StringExtensionTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Factory/EmbyClientFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Factory/EmbyClientFactoryTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Factory/JellyfinClientFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Factory/JellyfinClientFactoryTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Helpers/FakeRoleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Helpers/FakeRoleManager.cs -------------------------------------------------------------------------------- /Tests.Unit/Helpers/FakeSignInManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Helpers/FakeSignInManager.cs -------------------------------------------------------------------------------- /Tests.Unit/Helpers/FakeUserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Helpers/FakeUserManager.cs -------------------------------------------------------------------------------- /Tests.Unit/Jobs/JobInitializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Jobs/JobInitializerTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Models/EmbyUdpBroadcastTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Models/EmbyUdpBroadcastTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Models/MediaServerSettingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Models/MediaServerSettingsTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Models/StartupOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Models/StartupOptionsTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Services/AboutServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Services/AboutServiceTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Services/AccountServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Services/AccountServiceTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Services/FilterServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Services/FilterServiceTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Services/JobServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Services/JobServiceTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Services/LanguageServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Services/LanguageServiceTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Services/LogServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Services/LogServiceTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Services/MediaServerServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Services/MediaServerServiceTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Services/MovieServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Services/MovieServiceTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Services/SessionServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Services/SessionServiceTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Services/SettingsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Services/SettingsServiceTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Services/ShowServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Services/ShowServiceTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Services/SystemServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Services/SystemServiceTests.cs -------------------------------------------------------------------------------- /Tests.Unit/Tests.Unit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Tests.Unit/Tests.Unit.csproj -------------------------------------------------------------------------------- /Updater/Models/StartupOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Updater/Models/StartupOptions.cs -------------------------------------------------------------------------------- /Updater/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Updater/Program.cs -------------------------------------------------------------------------------- /Updater/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Updater/Updater.cs -------------------------------------------------------------------------------- /Updater/Updater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Updater/Updater.csproj -------------------------------------------------------------------------------- /Updater/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/Updater/nlog.config -------------------------------------------------------------------------------- /branding/NSIS/install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/branding/NSIS/install.ico -------------------------------------------------------------------------------- /branding/NSIS/installer-header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/branding/NSIS/installer-header.bmp -------------------------------------------------------------------------------- /branding/NSIS/installer-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/branding/NSIS/installer-header.png -------------------------------------------------------------------------------- /branding/NSIS/installer-right.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/branding/NSIS/installer-right.bmp -------------------------------------------------------------------------------- /branding/NSIS/installer-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/branding/NSIS/installer-right.png -------------------------------------------------------------------------------- /branding/NSIS/uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/branding/NSIS/uninstall.ico -------------------------------------------------------------------------------- /branding/logo-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/branding/logo-color.png -------------------------------------------------------------------------------- /commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/commands.txt -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/crowdin.yml -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/nuget.config -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mregni/EmbyStat/HEAD/version.json --------------------------------------------------------------------------------