├── .editorconfig ├── .erb ├── configs │ ├── .eslintrc │ ├── webpack.config.base.ts │ ├── webpack.config.eslint.ts │ ├── webpack.config.main.prod.ts │ ├── webpack.config.preload.dev.ts │ ├── webpack.config.renderer.dev.dll.ts │ ├── webpack.config.renderer.dev.ts │ ├── webpack.config.renderer.prod.ts │ └── webpack.paths.ts ├── img │ ├── erb-banner.svg │ ├── erb-logo.png │ └── palette-sponsor-banner.svg ├── mocks │ └── fileMock.js ├── note.MD └── scripts │ ├── .eslintrc │ ├── check-build-exists.ts │ ├── check-native-dep.js │ ├── check-node-env.js │ ├── check-port-in-use.js │ ├── clean.js │ ├── delete-source-maps.js │ ├── electron-rebuild.js │ ├── link-modules.ts │ └── notarize.js ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── FUNDING.yml ├── config.yml ├── note.MD └── workflows │ └── publish.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── note.MD └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── Attributions.md ├── assets.d.ts ├── entitlements.mac.plist ├── gear.png ├── icon.icns ├── icon.ico ├── icon.png ├── icon.svg ├── icons │ ├── 1024x1024.png │ ├── 128x128.png │ ├── 16x16.png │ ├── 24x24.png │ ├── 256x256.png │ ├── 32x32.png │ ├── 48x48.png │ ├── 512x512.png │ ├── 64x64.png │ └── 96x96.png ├── lightweight-48.png ├── note.MD ├── restore-window-64.png ├── restore-window.png └── settings-gear.png ├── help ├── FAQ.md ├── FilterAndSortList.md ├── InstallHelp.md ├── MyAnimeListToAniListTransfer.md ├── Other.md ├── Setup.md └── Updates.md ├── images ├── banner │ ├── AniCour.png │ ├── AniCourBanner.png │ ├── AniCourBannerWide.png │ └── AniCourSmall.png ├── help │ ├── AniCourAdvancedFiltering.png │ ├── AniCourInstallationMenu1.png │ ├── AniCourInstallationMenu2.png │ ├── AniCourNoCodeSigning.png │ ├── AniCourNoCodeSigningInitial.png │ ├── AniCourSaveInformation.png │ ├── AniCourSettingsButton.png │ ├── AniCourSettingsMenu.png │ ├── AniCourSetupFinished.png │ ├── AniCourSync.png │ ├── AniCourTokenButton.png │ ├── AniCourTokenLoginPage.png │ ├── AniCourTokenPage.png │ ├── AniCourUsernameAndTokenMessage.png │ ├── AniCourUsernameInput.png │ ├── AniListProfilePage.png │ ├── AniListProfilePageTooltip.png │ └── AniListTokenTooltip.png ├── readme │ ├── Advanced │ │ ├── Advanced.png │ │ ├── AdvancedCropped.png │ │ ├── AniCourAdvancedInfo2.png │ │ └── AniCourTrailer.png │ ├── AniCourAdvancedInfo1.png │ ├── AniCourAdvancedInfo2.png │ ├── AniCourAdvancedSideBySide.png │ ├── AniCourAdvancedThemes2.png │ ├── AniCourAdvancedThemes3.png │ ├── AniCourCompact2.jpg │ ├── AniCourCompactAndList.png │ ├── AniCourCompactFiltered.jpg │ ├── AniCourContextMenu.png │ ├── AniCourGridView.png │ ├── AniCourGridView2.png │ ├── AniCourGridView3.png │ ├── AniCourListView.png │ ├── AniCourListViewFiltered.png │ ├── AniCourNewListView.png │ ├── AniCourNews.png │ ├── AniCourNews2.png │ ├── AniCourNews3.png │ ├── AniCourNewsAdvanced.png │ ├── AniCourNewsSideBySide.png │ ├── AniCourSearch.png │ ├── AniCourSeasons.png │ ├── AniCourTrailer.png │ ├── News │ │ ├── AniCourNews.png │ │ ├── AniCourNewsAdvanced.png │ │ ├── News.png │ │ └── NewsCropped.png │ ├── Search │ │ ├── AniCourSearch.png │ │ ├── AniCourSearch3.png │ │ ├── AniCourSearchFull.png │ │ ├── Search.png │ │ └── SearchCropped.png │ └── SeasonViews │ │ ├── AniCourCompactSeason.jpg │ │ ├── AniCourGridViewSeason.png │ │ ├── AniCourGridViewSeason2.png │ │ ├── AniCourListViewSeason.png │ │ ├── AniCourSeasonsViews.png │ │ └── AniCourSeasonsViewsCropped.png └── transfer │ ├── ExportMyAnimeList.png │ └── ImportAniList.png ├── package.json ├── release ├── app │ ├── package-lock.json │ └── package.json └── note.MD ├── src ├── __tests__ │ └── App.test.tsx ├── main │ ├── functions │ │ └── mainFunctions.ts │ ├── main.ts │ ├── menu.ts │ ├── preload.ts │ └── util.ts └── renderer │ ├── App.tsx │ ├── AppOld.tsx │ ├── IPC_notes.md │ ├── components │ ├── app │ │ ├── etc │ │ │ ├── ContextMenu.tsx │ │ │ ├── ContextMenuAlternative.tsx │ │ │ ├── ContextMenuNested.tsx │ │ │ ├── CustomTooltip1.tsx │ │ │ ├── CustomTooltipFixedWidth.tsx │ │ │ ├── DeleteModal.tsx │ │ │ ├── ErrorAPI.tsx │ │ │ ├── ErrorCredentials.tsx │ │ │ ├── ErrorNewsFetch.tsx │ │ │ ├── LoadingMessage.tsx │ │ │ ├── LoadingNews.tsx │ │ │ ├── MediaProgress.tsx │ │ │ ├── NextAiringEpisodeIndicator.tsx │ │ │ ├── ProgressBar.tsx │ │ │ ├── ProgressStepper.tsx │ │ │ ├── ProgressStepperManga.tsx │ │ │ ├── ProgressStepperVertical.tsx │ │ │ ├── ProgressVolumesStepper.tsx │ │ │ ├── ResetMenuApp.tsx │ │ │ ├── ScoreSelect.tsx │ │ │ ├── SvgIcons.tsx │ │ │ └── table │ │ │ │ ├── TableAverageScore.tsx │ │ │ │ ├── TableChapters.tsx │ │ │ │ ├── TableEpisodes.tsx │ │ │ │ ├── TableProgressChapterStepper.tsx │ │ │ │ ├── TableProgressStepper.tsx │ │ │ │ ├── TableProgressVolumeStepper.tsx │ │ │ │ ├── TableReleased.tsx │ │ │ │ ├── TableScore.tsx │ │ │ │ ├── TableSeason.tsx │ │ │ │ ├── TableStatus.tsx │ │ │ │ ├── TableTitleMain.tsx │ │ │ │ ├── TableTitleOther.tsx │ │ │ │ ├── TableType.tsx │ │ │ │ ├── TableVolumes.tsx │ │ │ │ └── TanstackTableRow.tsx │ │ ├── history │ │ │ ├── HistoryButton.tsx │ │ │ └── HistoryTab.tsx │ │ ├── main │ │ │ ├── Main.tsx │ │ │ ├── MainCategoryBar.tsx │ │ │ ├── MainFilterCategoryBar.tsx │ │ │ ├── MainTab.tsx │ │ │ ├── MainTabCompact.tsx │ │ │ ├── MainTabLi.tsx │ │ │ ├── MainTabList.tsx │ │ │ ├── MediaCard.tsx │ │ │ ├── MediaCardCompact.tsx │ │ │ ├── MediaDataGrid.tsx │ │ │ ├── MediaTableVirtuoso.tsx │ │ │ ├── cards │ │ │ │ └── MainSkeletonCards.tsx │ │ │ └── tables │ │ │ │ ├── MainMediaTable.tsx │ │ │ │ ├── MainTanstackTable.tsx │ │ │ │ ├── MediaMuiReactTable.tsx │ │ │ │ └── makeData.ts │ │ ├── news │ │ │ ├── NewsAdvanced.tsx │ │ │ ├── NewsAdvancedAnn.tsx │ │ │ ├── NewsBar.tsx │ │ │ ├── NewsButtons.tsx │ │ │ ├── NewsButtonsAdvanced.tsx │ │ │ ├── NewsCardANN.tsx │ │ │ ├── NewsCardMAL.tsx │ │ │ ├── NewsFullscreen.tsx │ │ │ ├── NewsPage.tsx │ │ │ ├── NewsRefresh.tsx │ │ │ ├── NewsTab.tsx │ │ │ └── NewsTabANN.tsx │ │ ├── search │ │ │ ├── FilterSelect.tsx │ │ │ ├── Search.tsx │ │ │ ├── SearchCategoryBar.tsx │ │ │ ├── SearchFilterCategoryBar.tsx │ │ │ ├── SearchMain.tsx │ │ │ ├── SearchMediaCard.tsx │ │ │ ├── SearchMediaCardCompact.tsx │ │ │ ├── SearchTab.tsx │ │ │ ├── SearchTabLi.tsx │ │ │ ├── SearchTabList.tsx │ │ │ └── tables │ │ │ │ ├── SearchMediaTable.tsx │ │ │ │ ├── SearchTanstackTable.tsx │ │ │ │ └── SearchTitleTableBox.tsx │ │ ├── seasons │ │ │ ├── SeasonCategoryBar.tsx │ │ │ ├── SeasonFilterCategoryBar.tsx │ │ │ ├── SeasonMain.tsx │ │ │ ├── SeasonMediaCard.tsx │ │ │ ├── SeasonMediaCardCompact.tsx │ │ │ ├── SeasonMenu.tsx │ │ │ ├── SeasonSearch.tsx │ │ │ ├── SeasonSearchDialog.tsx │ │ │ ├── SeasonTab.tsx │ │ │ ├── SeasonTabLi.tsx │ │ │ ├── SeasonTabList.tsx │ │ │ └── tables │ │ │ │ ├── SeasonMediaTable.tsx │ │ │ │ ├── SeasonTanstackTable.tsx │ │ │ │ └── SeasonTitleTableBox.tsx │ │ ├── sidebar │ │ │ ├── FeatureButtonGroup.tsx │ │ │ ├── FeatureButtonGroupNews.tsx │ │ │ ├── ListViewToggle.tsx │ │ │ ├── SideBar.tsx │ │ │ └── SortMenu.tsx │ │ ├── styled │ │ │ └── StyledComponents.tsx │ │ └── test │ │ │ ├── MediaProgress.tsx │ │ │ └── MediaTable.tsx │ ├── mediaAdvanced │ │ ├── AdvancedMain.tsx │ │ ├── AdvancedMainNOL.tsx │ │ ├── MediaAdvanced.tsx │ │ ├── description │ │ │ └── AdvancedDescription.tsx │ │ ├── entryInput │ │ │ ├── notOnList │ │ │ │ ├── AddToList.tsx │ │ │ │ └── EntryInputNotOnList.tsx │ │ │ └── onList │ │ │ │ ├── EntryInputOnList.tsx │ │ │ │ ├── JoyDatePicker.tsx │ │ │ │ ├── MyDatePicker.tsx │ │ │ │ ├── MyDatePickerCompletedAt.tsx │ │ │ │ ├── MyDatePickerStartedAt.tsx │ │ │ │ ├── NotesInput.tsx │ │ │ │ ├── PrivateCheckBox.tsx │ │ │ │ ├── PrivateCheckBoxAlt.tsx │ │ │ │ ├── ProgressInput.tsx │ │ │ │ ├── ProgressVolumesInput.tsx │ │ │ │ ├── RepeatInput.tsx │ │ │ │ ├── ScoreInput.tsx │ │ │ │ ├── StatusSelect.tsx │ │ │ │ └── UpdateButton.tsx │ │ ├── extra │ │ │ ├── AdvancedExtra.tsx │ │ │ ├── AdvancedExtraSelect.tsx │ │ │ ├── AlternativeLink.tsx │ │ │ ├── DeleteButton.tsx │ │ │ ├── InfoButton.tsx │ │ │ ├── ThemeSongButton.tsx │ │ │ └── TrailerButton.tsx │ │ ├── image │ │ │ └── AdvancedImage.tsx │ │ ├── information │ │ │ ├── AdvancedInformation.tsx │ │ │ ├── AdvancedInformationDefault.tsx │ │ │ ├── AdvancedInformationDelete.tsx │ │ │ ├── AdvancedInformationThemes.tsx │ │ │ ├── AdvancedInformationTitles.tsx │ │ │ ├── AdvancedInformationTrailer.tsx │ │ │ ├── AdvancedMediaAverageScore.tsx │ │ │ ├── AdvancedMediaGenres.tsx │ │ │ ├── AdvancedMediaSeason.tsx │ │ │ ├── AdvancedMediaStatus.tsx │ │ │ ├── AdvancedMediaStudio.tsx │ │ │ ├── AdvancedMediaSynonyms.tsx │ │ │ ├── AdvancedMediaThemes.tsx │ │ │ └── AdvancedMediaType.tsx │ │ └── title │ │ │ └── AdvancedTitle.tsx │ ├── settings │ │ ├── Settings.tsx │ │ ├── SettingsMain.tsx │ │ ├── TestButton.tsx │ │ ├── about │ │ │ └── AboutSection.tsx │ │ ├── app │ │ │ ├── AdultLabel.tsx │ │ │ ├── DefaultStatus.tsx │ │ │ ├── NextAiringEpisodeMainList.tsx │ │ │ ├── SelectDefaultLink.tsx │ │ │ ├── SelectDefaultSeasonsSort.tsx │ │ │ ├── SelectDefaultView.tsx │ │ │ └── SelectSeasonChange.tsx │ │ ├── etc │ │ │ ├── CardContentPaddingAdjusted.tsx │ │ │ ├── CustomSettingsTooltip.tsx │ │ │ ├── SaveButton.tsx │ │ │ └── SubmitButton.tsx │ │ ├── lang │ │ │ └── SelectLanguage.tsx │ │ ├── reset │ │ │ └── ResetButton.tsx │ │ ├── services │ │ │ ├── AccountSection.tsx │ │ │ ├── ResetLoginButton.tsx │ │ │ ├── SelectList.tsx │ │ │ ├── SelectNews.tsx │ │ │ ├── TokenButton.tsx │ │ │ ├── TokenInput.tsx │ │ │ └── UsernameInput.tsx │ │ └── theme │ │ │ ├── SelectTheme.tsx │ │ │ └── ThemeToggle.tsx │ └── trailer │ │ ├── MyTrailer.tsx │ │ ├── TrailerAvailablePage.tsx │ │ ├── TrailerNotAvailablePage.tsx │ │ └── TrailerPage.tsx │ ├── context │ ├── AdultContext.tsx │ ├── CategoryContext.tsx │ ├── CategoryCountContext.tsx │ ├── CategoryLastContext.tsx │ ├── DefaultViewContext.tsx │ ├── FilterContext.tsx │ ├── FilteredListContext.tsx │ ├── ListServiceTypeContext.tsx │ ├── MainContext.tsx │ ├── MainListContext.tsx │ ├── MainViewContext.tsx │ ├── NewsAdvContext.tsx │ ├── NewsAnnContext.tsx │ ├── NewsContext.tsx │ ├── NewsInfoContext.tsx │ ├── NewsServiceTypeContext.tsx │ ├── SearchContext.tsx │ ├── SearchTermContext.tsx │ ├── SeasonInputContext.tsx │ ├── SeasonsContext.tsx │ ├── SidebarContext.tsx │ ├── SortContext.tsx │ ├── SortLastContext.tsx │ ├── ThemeContext.tsx │ ├── TitleContext.tsx │ ├── advanced │ │ ├── AdvancedDefaultLinkContext.tsx │ │ ├── AdvancedInputContext.tsx │ │ ├── AdvancedMediaContext.tsx │ │ ├── AdvancedMoreInfoContext.tsx │ │ └── AdvancedThemeSongContext.tsx │ ├── menu │ │ ├── MenuDataContext.tsx │ │ ├── PosXContext.tsx │ │ ├── PosYContext.tsx │ │ └── ShowMenuContext.tsx │ └── services │ │ ├── AniListTokenContext.tsx │ │ ├── AniListUsernameContext.tsx │ │ ├── MyAnimeListContext.tsx │ │ └── MyAnimeListTokenContext.tsx │ ├── extra │ ├── AniListAllTags.json │ └── AniListGenres.json │ ├── functions │ ├── AnimeThemeSongs.ts │ ├── CheckForListFlags.ts │ ├── LocationFunctions.tsx │ ├── MainMediaListFunctions.tsx │ ├── NewsFunctions.tsx │ ├── SearchFunctions.tsx │ ├── SeasonsFunctions.tsx │ ├── StatusFunction.tsx │ ├── TestSettingsFunction.tsx │ ├── UserFunctions.ts │ ├── api │ │ ├── mutations │ │ │ ├── addEntry.tsx │ │ │ ├── deleteEntry.tsx │ │ │ └── updateEntry.tsx │ │ ├── queries │ │ │ └── themeSongQuery.ts │ │ └── queue │ │ │ └── QueueMutationsFunctions.tsx │ ├── colors │ │ └── colorFunctions.ts │ ├── data │ │ ├── generator │ │ │ └── createMediaListEntryData.tsx │ │ ├── update │ │ │ ├── mainMediaList.tsx │ │ │ ├── searchList.tsx │ │ │ ├── seasonsList.tsx │ │ │ └── updateQueryClientLists.tsx │ │ └── validation │ │ │ └── ValidationFunctions.tsx │ ├── edit │ │ ├── adjustedLocationStatus.tsx │ │ ├── componentTypes.ts │ │ ├── createMediaListEntry.tsx │ │ ├── findMedia.tsx │ │ ├── formatInfo.ts │ │ ├── getAdjustedSiteLink.tsx │ │ ├── getSortValues.ts │ │ └── getTrailerPreviewLink.ts │ ├── input │ │ ├── InputFunctions.tsx │ │ └── LimitInputFunctions.tsx │ ├── sort │ │ ├── sortFunctions.ts │ │ ├── sortMainFunctions.ts │ │ ├── sortSearchFunctions.ts │ │ └── sortSeasonsFunctions.ts │ └── view │ │ ├── CountFunctions.tsx │ │ ├── DataTableFunctions.tsx │ │ ├── FilterFunctions.tsx │ │ ├── InfoViewFunctions.tsx │ │ ├── MainViewFunctions.tsx │ │ ├── SearchViewFunctions.tsx │ │ ├── SeasonViewFunctions.tsx │ │ └── TitlePreferenceFunctions.tsx │ ├── index.ejs │ ├── index.tsx │ ├── preload.d.ts │ ├── store.ts │ └── styles │ ├── App.scss │ ├── MediaAdvanced.scss │ ├── NewsAdvanced.scss │ ├── Trailer.scss │ └── tables.scss └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.editorconfig -------------------------------------------------------------------------------- /.erb/configs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/configs/.eslintrc -------------------------------------------------------------------------------- /.erb/configs/webpack.config.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/configs/webpack.config.base.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.eslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/configs/webpack.config.eslint.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.main.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/configs/webpack.config.main.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.preload.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/configs/webpack.config.preload.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.dll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/configs/webpack.config.renderer.dev.dll.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/configs/webpack.config.renderer.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/configs/webpack.config.renderer.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/configs/webpack.paths.ts -------------------------------------------------------------------------------- /.erb/img/erb-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/img/erb-banner.svg -------------------------------------------------------------------------------- /.erb/img/erb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/img/erb-logo.png -------------------------------------------------------------------------------- /.erb/img/palette-sponsor-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/img/palette-sponsor-banner.svg -------------------------------------------------------------------------------- /.erb/mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /.erb/note.MD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.erb/scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/scripts/.eslintrc -------------------------------------------------------------------------------- /.erb/scripts/check-build-exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/scripts/check-build-exists.ts -------------------------------------------------------------------------------- /.erb/scripts/check-native-dep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/scripts/check-native-dep.js -------------------------------------------------------------------------------- /.erb/scripts/check-node-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/scripts/check-node-env.js -------------------------------------------------------------------------------- /.erb/scripts/check-port-in-use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/scripts/check-port-in-use.js -------------------------------------------------------------------------------- /.erb/scripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/scripts/clean.js -------------------------------------------------------------------------------- /.erb/scripts/delete-source-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/scripts/delete-source-maps.js -------------------------------------------------------------------------------- /.erb/scripts/electron-rebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/scripts/electron-rebuild.js -------------------------------------------------------------------------------- /.erb/scripts/link-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/scripts/link-modules.ts -------------------------------------------------------------------------------- /.erb/scripts/notarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.erb/scripts/notarize.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/note.MD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/note.MD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/README.md -------------------------------------------------------------------------------- /assets/Attributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/Attributions.md -------------------------------------------------------------------------------- /assets/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/assets.d.ts -------------------------------------------------------------------------------- /assets/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/entitlements.mac.plist -------------------------------------------------------------------------------- /assets/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/gear.png -------------------------------------------------------------------------------- /assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/icon.icns -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /assets/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/icons/1024x1024.png -------------------------------------------------------------------------------- /assets/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/icons/128x128.png -------------------------------------------------------------------------------- /assets/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/icons/16x16.png -------------------------------------------------------------------------------- /assets/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/icons/24x24.png -------------------------------------------------------------------------------- /assets/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/icons/256x256.png -------------------------------------------------------------------------------- /assets/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/icons/32x32.png -------------------------------------------------------------------------------- /assets/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/icons/48x48.png -------------------------------------------------------------------------------- /assets/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/icons/512x512.png -------------------------------------------------------------------------------- /assets/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/icons/64x64.png -------------------------------------------------------------------------------- /assets/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/icons/96x96.png -------------------------------------------------------------------------------- /assets/lightweight-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/lightweight-48.png -------------------------------------------------------------------------------- /assets/note.MD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/restore-window-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/restore-window-64.png -------------------------------------------------------------------------------- /assets/restore-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/restore-window.png -------------------------------------------------------------------------------- /assets/settings-gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/assets/settings-gear.png -------------------------------------------------------------------------------- /help/FAQ.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /help/FilterAndSortList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/help/FilterAndSortList.md -------------------------------------------------------------------------------- /help/InstallHelp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/help/InstallHelp.md -------------------------------------------------------------------------------- /help/MyAnimeListToAniListTransfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/help/MyAnimeListToAniListTransfer.md -------------------------------------------------------------------------------- /help/Other.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /help/Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/help/Setup.md -------------------------------------------------------------------------------- /help/Updates.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/banner/AniCour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/banner/AniCour.png -------------------------------------------------------------------------------- /images/banner/AniCourBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/banner/AniCourBanner.png -------------------------------------------------------------------------------- /images/banner/AniCourBannerWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/banner/AniCourBannerWide.png -------------------------------------------------------------------------------- /images/banner/AniCourSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/banner/AniCourSmall.png -------------------------------------------------------------------------------- /images/help/AniCourAdvancedFiltering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourAdvancedFiltering.png -------------------------------------------------------------------------------- /images/help/AniCourInstallationMenu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourInstallationMenu1.png -------------------------------------------------------------------------------- /images/help/AniCourInstallationMenu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourInstallationMenu2.png -------------------------------------------------------------------------------- /images/help/AniCourNoCodeSigning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourNoCodeSigning.png -------------------------------------------------------------------------------- /images/help/AniCourNoCodeSigningInitial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourNoCodeSigningInitial.png -------------------------------------------------------------------------------- /images/help/AniCourSaveInformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourSaveInformation.png -------------------------------------------------------------------------------- /images/help/AniCourSettingsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourSettingsButton.png -------------------------------------------------------------------------------- /images/help/AniCourSettingsMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourSettingsMenu.png -------------------------------------------------------------------------------- /images/help/AniCourSetupFinished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourSetupFinished.png -------------------------------------------------------------------------------- /images/help/AniCourSync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourSync.png -------------------------------------------------------------------------------- /images/help/AniCourTokenButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourTokenButton.png -------------------------------------------------------------------------------- /images/help/AniCourTokenLoginPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourTokenLoginPage.png -------------------------------------------------------------------------------- /images/help/AniCourTokenPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourTokenPage.png -------------------------------------------------------------------------------- /images/help/AniCourUsernameAndTokenMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourUsernameAndTokenMessage.png -------------------------------------------------------------------------------- /images/help/AniCourUsernameInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniCourUsernameInput.png -------------------------------------------------------------------------------- /images/help/AniListProfilePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniListProfilePage.png -------------------------------------------------------------------------------- /images/help/AniListProfilePageTooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniListProfilePageTooltip.png -------------------------------------------------------------------------------- /images/help/AniListTokenTooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/help/AniListTokenTooltip.png -------------------------------------------------------------------------------- /images/readme/Advanced/Advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/Advanced/Advanced.png -------------------------------------------------------------------------------- /images/readme/Advanced/AdvancedCropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/Advanced/AdvancedCropped.png -------------------------------------------------------------------------------- /images/readme/Advanced/AniCourAdvancedInfo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/Advanced/AniCourAdvancedInfo2.png -------------------------------------------------------------------------------- /images/readme/Advanced/AniCourTrailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/Advanced/AniCourTrailer.png -------------------------------------------------------------------------------- /images/readme/AniCourAdvancedInfo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourAdvancedInfo1.png -------------------------------------------------------------------------------- /images/readme/AniCourAdvancedInfo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourAdvancedInfo2.png -------------------------------------------------------------------------------- /images/readme/AniCourAdvancedSideBySide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourAdvancedSideBySide.png -------------------------------------------------------------------------------- /images/readme/AniCourAdvancedThemes2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourAdvancedThemes2.png -------------------------------------------------------------------------------- /images/readme/AniCourAdvancedThemes3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourAdvancedThemes3.png -------------------------------------------------------------------------------- /images/readme/AniCourCompact2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourCompact2.jpg -------------------------------------------------------------------------------- /images/readme/AniCourCompactAndList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourCompactAndList.png -------------------------------------------------------------------------------- /images/readme/AniCourCompactFiltered.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourCompactFiltered.jpg -------------------------------------------------------------------------------- /images/readme/AniCourContextMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourContextMenu.png -------------------------------------------------------------------------------- /images/readme/AniCourGridView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourGridView.png -------------------------------------------------------------------------------- /images/readme/AniCourGridView2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourGridView2.png -------------------------------------------------------------------------------- /images/readme/AniCourGridView3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourGridView3.png -------------------------------------------------------------------------------- /images/readme/AniCourListView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourListView.png -------------------------------------------------------------------------------- /images/readme/AniCourListViewFiltered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourListViewFiltered.png -------------------------------------------------------------------------------- /images/readme/AniCourNewListView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourNewListView.png -------------------------------------------------------------------------------- /images/readme/AniCourNews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourNews.png -------------------------------------------------------------------------------- /images/readme/AniCourNews2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourNews2.png -------------------------------------------------------------------------------- /images/readme/AniCourNews3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourNews3.png -------------------------------------------------------------------------------- /images/readme/AniCourNewsAdvanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourNewsAdvanced.png -------------------------------------------------------------------------------- /images/readme/AniCourNewsSideBySide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourNewsSideBySide.png -------------------------------------------------------------------------------- /images/readme/AniCourSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourSearch.png -------------------------------------------------------------------------------- /images/readme/AniCourSeasons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourSeasons.png -------------------------------------------------------------------------------- /images/readme/AniCourTrailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/AniCourTrailer.png -------------------------------------------------------------------------------- /images/readme/News/AniCourNews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/News/AniCourNews.png -------------------------------------------------------------------------------- /images/readme/News/AniCourNewsAdvanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/News/AniCourNewsAdvanced.png -------------------------------------------------------------------------------- /images/readme/News/News.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/News/News.png -------------------------------------------------------------------------------- /images/readme/News/NewsCropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/News/NewsCropped.png -------------------------------------------------------------------------------- /images/readme/Search/AniCourSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/Search/AniCourSearch.png -------------------------------------------------------------------------------- /images/readme/Search/AniCourSearch3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/Search/AniCourSearch3.png -------------------------------------------------------------------------------- /images/readme/Search/AniCourSearchFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/Search/AniCourSearchFull.png -------------------------------------------------------------------------------- /images/readme/Search/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/Search/Search.png -------------------------------------------------------------------------------- /images/readme/Search/SearchCropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/Search/SearchCropped.png -------------------------------------------------------------------------------- /images/readme/SeasonViews/AniCourCompactSeason.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/SeasonViews/AniCourCompactSeason.jpg -------------------------------------------------------------------------------- /images/readme/SeasonViews/AniCourGridViewSeason.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/SeasonViews/AniCourGridViewSeason.png -------------------------------------------------------------------------------- /images/readme/SeasonViews/AniCourGridViewSeason2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/SeasonViews/AniCourGridViewSeason2.png -------------------------------------------------------------------------------- /images/readme/SeasonViews/AniCourListViewSeason.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/SeasonViews/AniCourListViewSeason.png -------------------------------------------------------------------------------- /images/readme/SeasonViews/AniCourSeasonsViews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/SeasonViews/AniCourSeasonsViews.png -------------------------------------------------------------------------------- /images/readme/SeasonViews/AniCourSeasonsViewsCropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/readme/SeasonViews/AniCourSeasonsViewsCropped.png -------------------------------------------------------------------------------- /images/transfer/ExportMyAnimeList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/transfer/ExportMyAnimeList.png -------------------------------------------------------------------------------- /images/transfer/ImportAniList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/images/transfer/ImportAniList.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/package.json -------------------------------------------------------------------------------- /release/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/release/app/package-lock.json -------------------------------------------------------------------------------- /release/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/release/app/package.json -------------------------------------------------------------------------------- /release/note.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/release/note.MD -------------------------------------------------------------------------------- /src/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/__tests__/App.test.tsx -------------------------------------------------------------------------------- /src/main/functions/mainFunctions.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/main/main.ts -------------------------------------------------------------------------------- /src/main/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/main/menu.ts -------------------------------------------------------------------------------- /src/main/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/main/preload.ts -------------------------------------------------------------------------------- /src/main/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/main/util.ts -------------------------------------------------------------------------------- /src/renderer/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/App.tsx -------------------------------------------------------------------------------- /src/renderer/AppOld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/AppOld.tsx -------------------------------------------------------------------------------- /src/renderer/IPC_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/IPC_notes.md -------------------------------------------------------------------------------- /src/renderer/components/app/etc/ContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/ContextMenu.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/ContextMenuAlternative.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/ContextMenuAlternative.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/ContextMenuNested.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/ContextMenuNested.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/CustomTooltip1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/CustomTooltip1.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/CustomTooltipFixedWidth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/CustomTooltipFixedWidth.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/DeleteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/DeleteModal.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/ErrorAPI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/ErrorAPI.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/ErrorCredentials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/ErrorCredentials.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/ErrorNewsFetch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/ErrorNewsFetch.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/LoadingMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/LoadingMessage.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/LoadingNews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/LoadingNews.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/MediaProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/MediaProgress.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/NextAiringEpisodeIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/NextAiringEpisodeIndicator.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/ProgressBar.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/ProgressStepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/ProgressStepper.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/ProgressStepperManga.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/ProgressStepperManga.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/ProgressStepperVertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/ProgressStepperVertical.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/ProgressVolumesStepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/ProgressVolumesStepper.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/ResetMenuApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/ResetMenuApp.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/ScoreSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/ScoreSelect.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/SvgIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/SvgIcons.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TableAverageScore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TableAverageScore.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TableChapters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TableChapters.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TableEpisodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TableEpisodes.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TableProgressChapterStepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TableProgressChapterStepper.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TableProgressStepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TableProgressStepper.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TableProgressVolumeStepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TableProgressVolumeStepper.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TableReleased.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TableReleased.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TableScore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TableScore.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TableSeason.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TableSeason.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TableStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TableStatus.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TableTitleMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TableTitleMain.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TableTitleOther.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TableTitleOther.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TableType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TableType.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TableVolumes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TableVolumes.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/etc/table/TanstackTableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/etc/table/TanstackTableRow.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/history/HistoryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/history/HistoryButton.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/history/HistoryTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/history/HistoryTab.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/Main.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/MainCategoryBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/MainCategoryBar.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/MainFilterCategoryBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/MainFilterCategoryBar.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/MainTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/MainTab.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/MainTabCompact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/MainTabCompact.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/MainTabLi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/MainTabLi.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/MainTabList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/MainTabList.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/MediaCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/MediaCard.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/MediaCardCompact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/MediaCardCompact.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/MediaDataGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/MediaDataGrid.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/MediaTableVirtuoso.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/MediaTableVirtuoso.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/cards/MainSkeletonCards.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/components/app/main/tables/MainMediaTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/tables/MainMediaTable.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/tables/MainTanstackTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/tables/MainTanstackTable.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/tables/MediaMuiReactTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/tables/MediaMuiReactTable.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/main/tables/makeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/main/tables/makeData.ts -------------------------------------------------------------------------------- /src/renderer/components/app/news/NewsAdvanced.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/news/NewsAdvanced.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/news/NewsAdvancedAnn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/news/NewsAdvancedAnn.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/news/NewsBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/news/NewsBar.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/news/NewsButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/news/NewsButtons.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/news/NewsButtonsAdvanced.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/news/NewsButtonsAdvanced.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/news/NewsCardANN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/news/NewsCardANN.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/news/NewsCardMAL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/news/NewsCardMAL.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/news/NewsFullscreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/news/NewsFullscreen.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/news/NewsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/news/NewsPage.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/news/NewsRefresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/news/NewsRefresh.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/news/NewsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/news/NewsTab.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/news/NewsTabANN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/news/NewsTabANN.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/search/FilterSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/search/FilterSelect.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/search/Search.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/search/SearchCategoryBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/search/SearchCategoryBar.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/search/SearchFilterCategoryBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/search/SearchFilterCategoryBar.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/search/SearchMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/search/SearchMain.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/search/SearchMediaCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/search/SearchMediaCard.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/search/SearchMediaCardCompact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/search/SearchMediaCardCompact.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/search/SearchTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/search/SearchTab.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/search/SearchTabLi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/search/SearchTabLi.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/search/SearchTabList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/search/SearchTabList.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/search/tables/SearchMediaTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/search/tables/SearchMediaTable.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/search/tables/SearchTanstackTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/search/tables/SearchTanstackTable.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/search/tables/SearchTitleTableBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/search/tables/SearchTitleTableBox.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/seasons/SeasonCategoryBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/seasons/SeasonCategoryBar.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/seasons/SeasonFilterCategoryBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/seasons/SeasonFilterCategoryBar.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/seasons/SeasonMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/seasons/SeasonMain.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/seasons/SeasonMediaCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/seasons/SeasonMediaCard.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/seasons/SeasonMediaCardCompact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/seasons/SeasonMediaCardCompact.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/seasons/SeasonMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/seasons/SeasonMenu.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/seasons/SeasonSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/seasons/SeasonSearch.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/seasons/SeasonSearchDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/seasons/SeasonSearchDialog.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/seasons/SeasonTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/seasons/SeasonTab.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/seasons/SeasonTabLi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/seasons/SeasonTabLi.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/seasons/SeasonTabList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/seasons/SeasonTabList.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/seasons/tables/SeasonMediaTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/seasons/tables/SeasonMediaTable.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/seasons/tables/SeasonTanstackTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/seasons/tables/SeasonTanstackTable.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/seasons/tables/SeasonTitleTableBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/seasons/tables/SeasonTitleTableBox.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/sidebar/FeatureButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/sidebar/FeatureButtonGroup.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/sidebar/FeatureButtonGroupNews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/sidebar/FeatureButtonGroupNews.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/sidebar/ListViewToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/sidebar/ListViewToggle.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/sidebar/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/sidebar/SideBar.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/sidebar/SortMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/sidebar/SortMenu.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/styled/StyledComponents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/styled/StyledComponents.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/test/MediaProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/test/MediaProgress.tsx -------------------------------------------------------------------------------- /src/renderer/components/app/test/MediaTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/app/test/MediaTable.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/AdvancedMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/AdvancedMain.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/AdvancedMainNOL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/AdvancedMainNOL.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/MediaAdvanced.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/MediaAdvanced.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/description/AdvancedDescription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/description/AdvancedDescription.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/notOnList/AddToList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/notOnList/AddToList.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/notOnList/EntryInputNotOnList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/notOnList/EntryInputNotOnList.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/onList/EntryInputOnList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/onList/EntryInputOnList.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/onList/JoyDatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/onList/JoyDatePicker.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/onList/MyDatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/onList/MyDatePicker.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/onList/MyDatePickerCompletedAt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/onList/MyDatePickerCompletedAt.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/onList/MyDatePickerStartedAt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/onList/MyDatePickerStartedAt.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/onList/NotesInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/onList/NotesInput.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/onList/PrivateCheckBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/onList/PrivateCheckBox.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/onList/PrivateCheckBoxAlt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/onList/PrivateCheckBoxAlt.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/onList/ProgressInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/onList/ProgressInput.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/onList/ProgressVolumesInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/onList/ProgressVolumesInput.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/onList/RepeatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/onList/RepeatInput.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/onList/ScoreInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/onList/ScoreInput.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/onList/StatusSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/onList/StatusSelect.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/entryInput/onList/UpdateButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/entryInput/onList/UpdateButton.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/extra/AdvancedExtra.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/extra/AdvancedExtra.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/extra/AdvancedExtraSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/extra/AdvancedExtraSelect.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/extra/AlternativeLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/extra/AlternativeLink.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/extra/DeleteButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/extra/DeleteButton.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/extra/InfoButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/extra/InfoButton.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/extra/ThemeSongButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/extra/ThemeSongButton.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/extra/TrailerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/extra/TrailerButton.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/image/AdvancedImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/image/AdvancedImage.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/information/AdvancedInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/information/AdvancedInformation.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/information/AdvancedInformationDefault.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/information/AdvancedInformationDefault.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/information/AdvancedInformationDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/information/AdvancedInformationDelete.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/information/AdvancedInformationThemes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/information/AdvancedInformationThemes.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/information/AdvancedInformationTitles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/information/AdvancedInformationTitles.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/information/AdvancedInformationTrailer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/information/AdvancedInformationTrailer.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/information/AdvancedMediaAverageScore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/information/AdvancedMediaAverageScore.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/information/AdvancedMediaGenres.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/information/AdvancedMediaGenres.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/information/AdvancedMediaSeason.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/information/AdvancedMediaSeason.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/information/AdvancedMediaStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/information/AdvancedMediaStatus.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/information/AdvancedMediaStudio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/information/AdvancedMediaStudio.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/information/AdvancedMediaSynonyms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/information/AdvancedMediaSynonyms.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/information/AdvancedMediaThemes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/information/AdvancedMediaThemes.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/information/AdvancedMediaType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/information/AdvancedMediaType.tsx -------------------------------------------------------------------------------- /src/renderer/components/mediaAdvanced/title/AdvancedTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/mediaAdvanced/title/AdvancedTitle.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/Settings.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/SettingsMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/SettingsMain.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/TestButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/TestButton.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/about/AboutSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/about/AboutSection.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/app/AdultLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/app/AdultLabel.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/app/DefaultStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/app/DefaultStatus.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/app/NextAiringEpisodeMainList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/app/NextAiringEpisodeMainList.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/app/SelectDefaultLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/app/SelectDefaultLink.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/app/SelectDefaultSeasonsSort.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/app/SelectDefaultSeasonsSort.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/app/SelectDefaultView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/app/SelectDefaultView.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/app/SelectSeasonChange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/app/SelectSeasonChange.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/etc/CardContentPaddingAdjusted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/etc/CardContentPaddingAdjusted.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/etc/CustomSettingsTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/etc/CustomSettingsTooltip.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/etc/SaveButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/etc/SaveButton.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/etc/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/etc/SubmitButton.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/lang/SelectLanguage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/lang/SelectLanguage.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/reset/ResetButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/reset/ResetButton.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/services/AccountSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/services/AccountSection.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/services/ResetLoginButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/services/ResetLoginButton.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/services/SelectList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/services/SelectList.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/services/SelectNews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/services/SelectNews.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/services/TokenButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/services/TokenButton.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/services/TokenInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/services/TokenInput.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/services/UsernameInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/services/UsernameInput.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/theme/SelectTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/theme/SelectTheme.tsx -------------------------------------------------------------------------------- /src/renderer/components/settings/theme/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/settings/theme/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/renderer/components/trailer/MyTrailer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/trailer/MyTrailer.tsx -------------------------------------------------------------------------------- /src/renderer/components/trailer/TrailerAvailablePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/trailer/TrailerAvailablePage.tsx -------------------------------------------------------------------------------- /src/renderer/components/trailer/TrailerNotAvailablePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/trailer/TrailerNotAvailablePage.tsx -------------------------------------------------------------------------------- /src/renderer/components/trailer/TrailerPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/components/trailer/TrailerPage.tsx -------------------------------------------------------------------------------- /src/renderer/context/AdultContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/AdultContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/CategoryContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/CategoryContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/CategoryCountContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/CategoryCountContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/CategoryLastContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/CategoryLastContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/DefaultViewContext.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/context/FilterContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/FilterContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/FilteredListContext.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/context/ListServiceTypeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/ListServiceTypeContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/MainContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/MainContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/MainListContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/MainListContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/MainViewContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/MainViewContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/NewsAdvContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/NewsAdvContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/NewsAnnContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/NewsAnnContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/NewsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/NewsContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/NewsInfoContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/NewsInfoContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/NewsServiceTypeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/NewsServiceTypeContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/SearchContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/SearchContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/SearchTermContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/SearchTermContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/SeasonInputContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/SeasonInputContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/SeasonsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/SeasonsContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/SidebarContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/SidebarContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/SortContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/SortContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/SortLastContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/SortLastContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/ThemeContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/TitleContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/TitleContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/advanced/AdvancedDefaultLinkContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/advanced/AdvancedDefaultLinkContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/advanced/AdvancedInputContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/advanced/AdvancedInputContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/advanced/AdvancedMediaContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/advanced/AdvancedMediaContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/advanced/AdvancedMoreInfoContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/advanced/AdvancedMoreInfoContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/advanced/AdvancedThemeSongContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/advanced/AdvancedThemeSongContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/menu/MenuDataContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/menu/MenuDataContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/menu/PosXContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/menu/PosXContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/menu/PosYContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/menu/PosYContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/menu/ShowMenuContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/menu/ShowMenuContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/services/AniListTokenContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/services/AniListTokenContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/services/AniListUsernameContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/context/services/AniListUsernameContext.tsx -------------------------------------------------------------------------------- /src/renderer/context/services/MyAnimeListContext.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/context/services/MyAnimeListTokenContext.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/extra/AniListAllTags.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/extra/AniListGenres.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/functions/AnimeThemeSongs.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/functions/CheckForListFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/CheckForListFlags.ts -------------------------------------------------------------------------------- /src/renderer/functions/LocationFunctions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/LocationFunctions.tsx -------------------------------------------------------------------------------- /src/renderer/functions/MainMediaListFunctions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/MainMediaListFunctions.tsx -------------------------------------------------------------------------------- /src/renderer/functions/NewsFunctions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/NewsFunctions.tsx -------------------------------------------------------------------------------- /src/renderer/functions/SearchFunctions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/SearchFunctions.tsx -------------------------------------------------------------------------------- /src/renderer/functions/SeasonsFunctions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/SeasonsFunctions.tsx -------------------------------------------------------------------------------- /src/renderer/functions/StatusFunction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/StatusFunction.tsx -------------------------------------------------------------------------------- /src/renderer/functions/TestSettingsFunction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/TestSettingsFunction.tsx -------------------------------------------------------------------------------- /src/renderer/functions/UserFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/UserFunctions.ts -------------------------------------------------------------------------------- /src/renderer/functions/api/mutations/addEntry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/api/mutations/addEntry.tsx -------------------------------------------------------------------------------- /src/renderer/functions/api/mutations/deleteEntry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/api/mutations/deleteEntry.tsx -------------------------------------------------------------------------------- /src/renderer/functions/api/mutations/updateEntry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/api/mutations/updateEntry.tsx -------------------------------------------------------------------------------- /src/renderer/functions/api/queries/themeSongQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/api/queries/themeSongQuery.ts -------------------------------------------------------------------------------- /src/renderer/functions/api/queue/QueueMutationsFunctions.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/functions/colors/colorFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/colors/colorFunctions.ts -------------------------------------------------------------------------------- /src/renderer/functions/data/generator/createMediaListEntryData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/data/generator/createMediaListEntryData.tsx -------------------------------------------------------------------------------- /src/renderer/functions/data/update/mainMediaList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/data/update/mainMediaList.tsx -------------------------------------------------------------------------------- /src/renderer/functions/data/update/searchList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/data/update/searchList.tsx -------------------------------------------------------------------------------- /src/renderer/functions/data/update/seasonsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/data/update/seasonsList.tsx -------------------------------------------------------------------------------- /src/renderer/functions/data/update/updateQueryClientLists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/data/update/updateQueryClientLists.tsx -------------------------------------------------------------------------------- /src/renderer/functions/data/validation/ValidationFunctions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/data/validation/ValidationFunctions.tsx -------------------------------------------------------------------------------- /src/renderer/functions/edit/adjustedLocationStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/edit/adjustedLocationStatus.tsx -------------------------------------------------------------------------------- /src/renderer/functions/edit/componentTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/edit/componentTypes.ts -------------------------------------------------------------------------------- /src/renderer/functions/edit/createMediaListEntry.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/functions/edit/findMedia.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/edit/findMedia.tsx -------------------------------------------------------------------------------- /src/renderer/functions/edit/formatInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/edit/formatInfo.ts -------------------------------------------------------------------------------- /src/renderer/functions/edit/getAdjustedSiteLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/edit/getAdjustedSiteLink.tsx -------------------------------------------------------------------------------- /src/renderer/functions/edit/getSortValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/edit/getSortValues.ts -------------------------------------------------------------------------------- /src/renderer/functions/edit/getTrailerPreviewLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/edit/getTrailerPreviewLink.ts -------------------------------------------------------------------------------- /src/renderer/functions/input/InputFunctions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/input/InputFunctions.tsx -------------------------------------------------------------------------------- /src/renderer/functions/input/LimitInputFunctions.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/functions/sort/sortFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/sort/sortFunctions.ts -------------------------------------------------------------------------------- /src/renderer/functions/sort/sortMainFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/sort/sortMainFunctions.ts -------------------------------------------------------------------------------- /src/renderer/functions/sort/sortSearchFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/sort/sortSearchFunctions.ts -------------------------------------------------------------------------------- /src/renderer/functions/sort/sortSeasonsFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/sort/sortSeasonsFunctions.ts -------------------------------------------------------------------------------- /src/renderer/functions/view/CountFunctions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/view/CountFunctions.tsx -------------------------------------------------------------------------------- /src/renderer/functions/view/DataTableFunctions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/view/DataTableFunctions.tsx -------------------------------------------------------------------------------- /src/renderer/functions/view/FilterFunctions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/view/FilterFunctions.tsx -------------------------------------------------------------------------------- /src/renderer/functions/view/InfoViewFunctions.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/functions/view/MainViewFunctions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/view/MainViewFunctions.tsx -------------------------------------------------------------------------------- /src/renderer/functions/view/SearchViewFunctions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/view/SearchViewFunctions.tsx -------------------------------------------------------------------------------- /src/renderer/functions/view/SeasonViewFunctions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/view/SeasonViewFunctions.tsx -------------------------------------------------------------------------------- /src/renderer/functions/view/TitlePreferenceFunctions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/functions/view/TitlePreferenceFunctions.tsx -------------------------------------------------------------------------------- /src/renderer/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/index.ejs -------------------------------------------------------------------------------- /src/renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/index.tsx -------------------------------------------------------------------------------- /src/renderer/preload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/preload.d.ts -------------------------------------------------------------------------------- /src/renderer/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/store.ts -------------------------------------------------------------------------------- /src/renderer/styles/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/styles/App.scss -------------------------------------------------------------------------------- /src/renderer/styles/MediaAdvanced.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/styles/MediaAdvanced.scss -------------------------------------------------------------------------------- /src/renderer/styles/NewsAdvanced.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/styles/NewsAdvanced.scss -------------------------------------------------------------------------------- /src/renderer/styles/Trailer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/styles/Trailer.scss -------------------------------------------------------------------------------- /src/renderer/styles/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/src/renderer/styles/tables.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReStartQ/anicour/HEAD/tsconfig.json --------------------------------------------------------------------------------