├── .editorconfig ├── .env.example ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── feat.yml │ └── suggestion.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.yaml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── README.zh-CN.md ├── components.json ├── dev-app-update.yml ├── electron-builder.yml ├── electron.vite.config.ts ├── env.d.ts ├── eslint.config.mjs ├── native ├── .gitignore ├── Cargo.toml ├── browser.js ├── build.rs ├── package.json ├── pnpm-lock.yaml ├── rustfmt.toml ├── src │ ├── foreground │ │ ├── foreground_hook.rs │ │ └── mod.rs │ ├── lib.rs │ ├── log │ │ └── mod.rs │ ├── monitor │ │ ├── etw_monitor │ │ │ ├── etw_trace.rs │ │ │ └── mod.rs │ │ ├── gm.rs │ │ ├── mod.rs │ │ └── wmi_monitor │ │ │ ├── mod.rs │ │ │ └── wmi_async.rs │ ├── napi_foreground.rs │ ├── napi_log.rs │ ├── napi_monitor.rs │ ├── napi_win32.rs │ ├── runtime.rs │ ├── tests │ │ ├── mod.rs │ │ ├── test_monitor.rs │ │ └── test_win32.rs │ ├── utils │ │ ├── mod.rs │ │ └── types.rs │ └── win32 │ │ ├── mod.rs │ │ ├── notification.rs │ │ ├── nt_path.rs │ │ ├── privilege.rs │ │ └── process.rs ├── test.ts ├── tsconfig.json └── wasi-worker-browser.mjs ├── package.json ├── patches └── pouchdb+9.0.0.patch ├── resources ├── icon.ico └── icon.png ├── src ├── main │ ├── core │ │ ├── database │ │ │ ├── BaseDBManager.ts │ │ │ ├── index.ts │ │ │ ├── layers │ │ │ │ ├── ConfigDBManager.ts │ │ │ │ ├── GameDBManager.ts │ │ │ │ └── PluginDBManager.ts │ │ │ └── types.ts │ │ ├── events │ │ │ ├── EventBus.ts │ │ │ ├── index.ts │ │ │ └── ipc.ts │ │ ├── ipc │ │ │ ├── IPCManager.ts │ │ │ ├── index.ts │ │ │ └── setup.ts │ │ └── native │ │ │ ├── index.ts │ │ │ └── setup.ts │ ├── features │ │ ├── account │ │ │ ├── index.ts │ │ │ ├── ipc.ts │ │ │ └── services │ │ │ │ ├── auth.ts │ │ │ │ └── index.ts │ │ ├── adder │ │ │ ├── index.ts │ │ │ ├── ipc.ts │ │ │ └── services │ │ │ │ ├── adder.ts │ │ │ │ ├── index.ts │ │ │ │ ├── scanner.ts │ │ │ │ └── updater.ts │ │ ├── database │ │ │ ├── index.ts │ │ │ ├── ipc.ts │ │ │ └── services │ │ │ │ ├── backup.ts │ │ │ │ ├── cloud.ts │ │ │ │ ├── index.ts │ │ │ │ ├── sync.ts │ │ │ │ └── utils.ts │ │ ├── game │ │ │ ├── index.ts │ │ │ ├── ipc.ts │ │ │ └── services │ │ │ │ ├── active.ts │ │ │ │ ├── index.ts │ │ │ │ ├── memory.ts │ │ │ │ ├── save.ts │ │ │ │ └── utils.ts │ │ ├── importer │ │ │ ├── index.ts │ │ │ ├── ipc.ts │ │ │ └── services │ │ │ │ ├── index.ts │ │ │ │ ├── steam │ │ │ │ ├── common.ts │ │ │ │ ├── index.ts │ │ │ │ ├── services.ts │ │ │ │ └── types.ts │ │ │ │ └── versionConverter │ │ │ │ ├── common.ts │ │ │ │ ├── index.ts │ │ │ │ └── services.ts │ │ ├── launcher │ │ │ ├── index.ts │ │ │ ├── ipc.ts │ │ │ └── services │ │ │ │ ├── index.ts │ │ │ │ ├── launcher.ts │ │ │ │ └── preset.ts │ │ ├── monitor │ │ │ ├── index.ts │ │ │ ├── ipc.ts │ │ │ └── services │ │ │ │ ├── index.ts │ │ │ │ ├── monitor.ts │ │ │ │ └── nativeMonitor.ts │ │ ├── scraper │ │ │ ├── index.ts │ │ │ ├── ipc.ts │ │ │ ├── providers │ │ │ │ ├── bangumi │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── dlsite │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── i18n.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── erogamescape │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── provider.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── fanza │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── provider.ts │ │ │ │ ├── getchu │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── provider.ts │ │ │ │ ├── google │ │ │ │ │ ├── index.ts │ │ │ │ │ └── provider.ts │ │ │ │ ├── igdb │ │ │ │ │ ├── auth.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── index.ts │ │ │ │ ├── steam │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── provider.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── steamgriddb │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── provider.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── vndb │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── parser.ts │ │ │ │ │ └── types.ts │ │ │ │ └── ymgal │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── provider.ts │ │ │ │ │ └── types.ts │ │ │ └── services │ │ │ │ ├── ScraperManager.ts │ │ │ │ ├── index.ts │ │ │ │ ├── setup.ts │ │ │ │ └── types.ts │ │ ├── system │ │ │ ├── index.ts │ │ │ ├── ipc.ts │ │ │ └── services │ │ │ │ ├── font.ts │ │ │ │ ├── i18n.ts │ │ │ │ ├── index.ts │ │ │ │ ├── path.ts │ │ │ │ ├── portable.ts │ │ │ │ ├── protocol.ts │ │ │ │ ├── proxy.ts │ │ │ │ ├── screenshot.ts │ │ │ │ ├── tray.ts │ │ │ │ └── utils.ts │ │ ├── theme │ │ │ ├── index.ts │ │ │ ├── ipc.ts │ │ │ └── services │ │ │ │ ├── index.ts │ │ │ │ ├── preset.ts │ │ │ │ └── theme.ts │ │ ├── transformer │ │ │ ├── index.ts │ │ │ ├── ipc.ts │ │ │ └── services │ │ │ │ ├── index.ts │ │ │ │ └── transformer.ts │ │ └── updater │ │ │ ├── index.ts │ │ │ ├── ipc.ts │ │ │ └── services │ │ │ ├── index.ts │ │ │ └── updater.ts │ ├── index.ts │ ├── locales │ │ ├── en │ │ │ ├── context-menu.json │ │ │ ├── scraper.json │ │ │ ├── system-notification.json │ │ │ └── tray.json │ │ ├── fr │ │ │ ├── scraper.json │ │ │ └── tray.json │ │ ├── it │ │ │ ├── scraper.json │ │ │ └── tray.json │ │ ├── ja │ │ │ ├── context-menu.json │ │ │ ├── scraper.json │ │ │ ├── system-notification.json │ │ │ └── tray.json │ │ ├── ko │ │ │ ├── scraper.json │ │ │ └── tray.json │ │ ├── ru │ │ │ ├── scraper.json │ │ │ └── tray.json │ │ ├── zh-CN │ │ │ ├── context-menu.json │ │ │ ├── scraper.json │ │ │ ├── system-notification.json │ │ │ └── tray.json │ │ └── zh-TW │ │ │ ├── context-menu.json │ │ │ ├── scraper.json │ │ │ ├── system-notification.json │ │ │ └── tray.json │ ├── plugins │ │ ├── api │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── index.ts │ │ ├── ipc.ts │ │ ├── loader │ │ │ └── PluginLoader.ts │ │ ├── manager │ │ │ └── PluginManager.ts │ │ ├── registry │ │ │ └── PluginRegistryManager.ts │ │ ├── services.ts │ │ └── utils │ │ │ └── PluginUtils.ts │ ├── posters │ │ ├── engine │ │ │ ├── canvas.ts │ │ │ ├── font.ts │ │ │ ├── image.ts │ │ │ └── text.ts │ │ ├── index.ts │ │ ├── ipc.ts │ │ ├── registry.ts │ │ ├── templates │ │ │ ├── index.ts │ │ │ └── scoreReport.ts │ │ └── utils │ │ │ └── score.ts │ └── utils │ │ ├── archiver.ts │ │ ├── common.ts │ │ ├── dialog.ts │ │ ├── gis.ts │ │ ├── image.ts │ │ ├── index.ts │ │ ├── powershell.ts │ │ ├── robot.ts │ │ └── scan.ts ├── preload │ ├── index.d.ts │ └── index.ts ├── renderer │ ├── assets │ │ ├── defaultBackground.png │ │ ├── electron.svg │ │ ├── fonts │ │ │ └── LXGWWenKaiMono-Medium.ttf │ │ └── wavy-lines.svg │ ├── index.html │ ├── locales │ │ ├── en │ │ │ ├── adder.json │ │ │ ├── config.json │ │ │ ├── game.json │ │ │ ├── importer.json │ │ │ ├── log.json │ │ │ ├── plugin.json │ │ │ ├── record.json │ │ │ ├── scanner.json │ │ │ ├── sidebar.json │ │ │ ├── transformer.json │ │ │ ├── updater.json │ │ │ └── utils.json │ │ ├── fr │ │ │ ├── adder.json │ │ │ ├── config.json │ │ │ ├── game.json │ │ │ ├── importer.json │ │ │ ├── plugin.json │ │ │ ├── record.json │ │ │ ├── scanner.json │ │ │ ├── sidebar.json │ │ │ ├── transformer.json │ │ │ ├── updater.json │ │ │ └── utils.json │ │ ├── it │ │ │ ├── adder.json │ │ │ ├── config.json │ │ │ ├── game.json │ │ │ ├── importer.json │ │ │ ├── plugin.json │ │ │ ├── record.json │ │ │ ├── scanner.json │ │ │ ├── sidebar.json │ │ │ ├── transformer.json │ │ │ ├── updater.json │ │ │ └── utils.json │ │ ├── ja │ │ │ ├── adder.json │ │ │ ├── config.json │ │ │ ├── game.json │ │ │ ├── importer.json │ │ │ ├── log.json │ │ │ ├── plugin.json │ │ │ ├── record.json │ │ │ ├── scanner.json │ │ │ ├── sidebar.json │ │ │ ├── transformer.json │ │ │ ├── updater.json │ │ │ └── utils.json │ │ ├── ko │ │ │ ├── adder.json │ │ │ ├── config.json │ │ │ ├── game.json │ │ │ ├── importer.json │ │ │ ├── plugin.json │ │ │ ├── record.json │ │ │ ├── scanner.json │ │ │ ├── sidebar.json │ │ │ ├── transformer.json │ │ │ ├── updater.json │ │ │ └── utils.json │ │ ├── ru │ │ │ ├── adder.json │ │ │ ├── config.json │ │ │ ├── game.json │ │ │ ├── importer.json │ │ │ ├── plugin.json │ │ │ ├── record.json │ │ │ ├── scanner.json │ │ │ ├── sidebar.json │ │ │ ├── transformer.json │ │ │ ├── updater.json │ │ │ └── utils.json │ │ ├── zh-CN │ │ │ ├── adder.json │ │ │ ├── config.json │ │ │ ├── game.json │ │ │ ├── importer.json │ │ │ ├── log.json │ │ │ ├── plugin.json │ │ │ ├── record.json │ │ │ ├── scanner.json │ │ │ ├── sidebar.json │ │ │ ├── transformer.json │ │ │ ├── updater.json │ │ │ └── utils.json │ │ └── zh-TW │ │ │ ├── adder.json │ │ │ ├── config.json │ │ │ ├── game.json │ │ │ ├── importer.json │ │ │ ├── log.json │ │ │ ├── plugin.json │ │ │ ├── record.json │ │ │ ├── scanner.json │ │ │ ├── sidebar.json │ │ │ ├── transformer.json │ │ │ ├── updater.json │ │ │ └── utils.json │ └── src │ │ ├── Setup.tsx │ │ ├── app │ │ ├── events │ │ │ ├── RendererEventBus.ts │ │ │ ├── index.ts │ │ │ └── setup.ts │ │ ├── ipc │ │ │ ├── IPCManager.ts │ │ │ └── index.ts │ │ └── router.tsx │ │ ├── components │ │ ├── Game │ │ │ ├── Config │ │ │ │ ├── CollectionMenu │ │ │ │ │ ├── index.ts │ │ │ │ │ └── main.tsx │ │ │ │ ├── ManageMenu │ │ │ │ │ ├── DeleteGameAlert.tsx │ │ │ │ │ ├── NameEditorDialog.tsx │ │ │ │ │ ├── PlayTimeEditorDialog.tsx │ │ │ │ │ ├── ScoreEditorDialog.tsx │ │ │ │ │ ├── TimerEditDialog.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── main.tsx │ │ │ │ ├── Properties │ │ │ │ │ ├── Launcher │ │ │ │ │ │ ├── FileLauncher.tsx │ │ │ │ │ │ ├── PresetSelecter.tsx │ │ │ │ │ │ ├── ScriptLauncher.tsx │ │ │ │ │ │ ├── SteamIdDialog.tsx │ │ │ │ │ │ ├── UrlLauncher.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── main.tsx │ │ │ │ │ ├── Media │ │ │ │ │ │ ├── CropDialog.tsx │ │ │ │ │ │ ├── ImageViewerDialog.tsx │ │ │ │ │ │ ├── SearchMediaDialog.tsx │ │ │ │ │ │ ├── UrlDialog.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── main.tsx │ │ │ │ │ ├── Path │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── main.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── main.tsx │ │ │ │ ├── index.ts │ │ │ │ └── main.tsx │ │ │ ├── FilterAdder.tsx │ │ │ ├── Header.tsx │ │ │ ├── HeaderCompact.tsx │ │ │ ├── Memory │ │ │ │ ├── MemoryCard.tsx │ │ │ │ ├── NoteDialog.tsx │ │ │ │ ├── index.ts │ │ │ │ └── main.tsx │ │ │ ├── Overview │ │ │ │ ├── Information │ │ │ │ │ ├── InformationCard.tsx │ │ │ │ │ ├── InformationDialog.tsx │ │ │ │ │ ├── SearchInformationDialog.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Record │ │ │ │ │ ├── RecordCard.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── main.tsx │ │ │ │ ├── RelatedSites │ │ │ │ │ ├── RelatedSitesCard.tsx │ │ │ │ │ ├── RelatedSitesDialog.tsx │ │ │ │ │ ├── SearchRelatedSitesDialog.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Tags │ │ │ │ │ ├── SearchTagsDialog.tsx │ │ │ │ │ ├── TagsCard.tsx │ │ │ │ │ ├── TagsDialog.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── description │ │ │ │ │ ├── DescriptionCard.tsx │ │ │ │ │ ├── DescriptionDialog.tsx │ │ │ │ │ ├── SearchDescriptionDialog.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── extraInformation │ │ │ │ │ ├── ExtraInformationCard.tsx │ │ │ │ │ ├── ExtraInformationDialog.tsx │ │ │ │ │ ├── SearchExtraInformationDialog.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.ts │ │ │ │ └── main.tsx │ │ │ ├── Record │ │ │ │ ├── ChartCard.tsx │ │ │ │ ├── RecordCard.tsx │ │ │ │ ├── TimerChart.tsx │ │ │ │ ├── index.ts │ │ │ │ └── main.tsx │ │ │ ├── Save │ │ │ │ ├── index.ts │ │ │ │ └── main.tsx │ │ │ ├── StartGame.tsx │ │ │ ├── StopGame.tsx │ │ │ ├── index.ts │ │ │ ├── main.tsx │ │ │ └── store.ts │ │ ├── GameBatchEditor │ │ │ ├── BatchGameNavCM │ │ │ │ ├── CollectionMenu.tsx │ │ │ │ ├── DeleteGameAlert.tsx │ │ │ │ ├── InformationDialog.tsx │ │ │ │ ├── index.ts │ │ │ │ └── main.tsx │ │ │ ├── FloatingButtons.tsx │ │ │ └── store.ts │ │ ├── GameSearch │ │ │ └── GameSearch.tsx │ │ ├── LibraryTitlebarContent.tsx │ │ ├── Librarybar │ │ │ ├── Filter │ │ │ │ ├── FilterCombobox.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── main.tsx │ │ │ │ └── store.ts │ │ │ ├── GameList │ │ │ │ ├── AllGame.tsx │ │ │ │ ├── Collection.tsx │ │ │ │ ├── FilterGame.tsx │ │ │ │ ├── Others.tsx │ │ │ │ ├── PlayStatusGames.tsx │ │ │ │ ├── RecentGames.tsx │ │ │ │ ├── Search.tsx │ │ │ │ ├── index.ts │ │ │ │ └── main.tsx │ │ │ ├── GameNav.tsx │ │ │ ├── PositionButton.tsx │ │ │ ├── SortMenu.tsx │ │ │ ├── index.ts │ │ │ ├── main.tsx │ │ │ └── store.ts │ │ ├── Showcase │ │ │ ├── AllGames.tsx │ │ │ ├── CollectionGames.tsx │ │ │ ├── CollectionPage.tsx │ │ │ ├── Collections.tsx │ │ │ ├── FilterSearchGames.tsx │ │ │ ├── RecentGames.tsx │ │ │ ├── ScrollToTopButton.tsx │ │ │ ├── index.ts │ │ │ ├── main.tsx │ │ │ └── posters │ │ │ │ ├── BigGamePoster.tsx │ │ │ │ ├── CollectionPoster.tsx │ │ │ │ ├── GamePoster.tsx │ │ │ │ └── PlayButton.tsx │ │ ├── Sidebar.tsx │ │ ├── ThemeProvider.tsx │ │ ├── Titlebar.tsx │ │ ├── animations │ │ │ ├── HoverCard.tsx │ │ │ └── types.ts │ │ ├── contextMenu │ │ │ ├── CollectionCM │ │ │ │ ├── index.ts │ │ │ │ └── main.tsx │ │ │ └── GameNavCM │ │ │ │ ├── CollectionMenu.tsx │ │ │ │ ├── ManageMenu.tsx │ │ │ │ ├── index.ts │ │ │ │ └── main.tsx │ │ ├── dialog │ │ │ └── AddCollectionDialog.tsx │ │ ├── form │ │ │ ├── ConfigItem.tsx │ │ │ ├── ConfigItemPure.tsx │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── useStateHook.ts │ │ ├── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── array-editor.tsx │ │ │ ├── array-input.tsx │ │ │ ├── array-textarea.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── chart.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── color-picker.tsx │ │ │ ├── command.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── cross-fade-image.tsx │ │ │ ├── date-input.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── drop-indicator.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── game-image.tsx │ │ │ ├── hotkey-setting.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── infinite-progress.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── link.tsx │ │ │ ├── markdown-renderer.tsx │ │ │ ├── nav.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── resizable.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator-dashed.tsx │ │ │ ├── separator.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toggle.tsx │ │ │ └── tooltip.tsx │ │ └── utils │ │ │ └── TargetBlankLink.tsx │ │ ├── env.d.ts │ │ ├── hooks │ │ ├── index.ts │ │ ├── useConfigLocalState.ts │ │ ├── useConfigState.ts │ │ ├── useGameCollectionState.ts │ │ ├── useGameLocalState.ts │ │ ├── useGameState.ts │ │ └── usePluginState.ts │ │ ├── layouts │ │ └── RootLayout.tsx │ │ ├── main.tsx │ │ ├── pages │ │ ├── Config │ │ │ ├── About.tsx │ │ │ ├── Advanced.tsx │ │ │ ├── Appearances │ │ │ │ ├── FontSettingsDialog.tsx │ │ │ │ └── main.tsx │ │ │ ├── CloudSync │ │ │ │ ├── Info.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── main.tsx │ │ │ │ └── store.ts │ │ │ ├── Database.tsx │ │ │ ├── General.tsx │ │ │ ├── Hotkeys.tsx │ │ │ ├── Metadata │ │ │ │ ├── index.tsx │ │ │ │ └── main.tsx │ │ │ ├── Network.tsx │ │ │ ├── Scraper.tsx │ │ │ ├── Theme │ │ │ │ ├── PresetSelecter.tsx │ │ │ │ ├── index.ts │ │ │ │ └── main.tsx │ │ │ ├── index.ts │ │ │ └── main.tsx │ │ ├── DragContainer.tsx │ │ ├── GameAdder │ │ │ ├── BackgroundList.tsx │ │ │ ├── GameList.tsx │ │ │ ├── Search.tsx │ │ │ ├── index.ts │ │ │ ├── main.tsx │ │ │ └── store.ts │ │ ├── GameBatchAdder │ │ │ ├── GameList.tsx │ │ │ ├── GameListItem.tsx │ │ │ ├── GameListTable.tsx │ │ │ ├── StatusBadge.tsx │ │ │ ├── hooks │ │ │ │ └── useGameAdder.ts │ │ │ ├── index.ts │ │ │ ├── main.tsx │ │ │ └── store.ts │ │ ├── GameMetadataUpdater │ │ │ ├── index.ts │ │ │ ├── main.tsx │ │ │ └── store.ts │ │ ├── GameScannerManager │ │ │ ├── EditScannerDialog.tsx │ │ │ ├── FailedFoldersDialog.tsx │ │ │ ├── GameScannerListItem.tsx │ │ │ ├── GlobalSettingsDialog.tsx │ │ │ ├── index.ts │ │ │ ├── main.tsx │ │ │ └── store.ts │ │ ├── Importer │ │ │ ├── SteamImporter │ │ │ │ ├── index.ts │ │ │ │ ├── main.tsx │ │ │ │ └── store.ts │ │ │ ├── index.ts │ │ │ └── main.tsx │ │ ├── Library │ │ │ ├── index.ts │ │ │ ├── main.tsx │ │ │ └── store.ts │ │ ├── Light.tsx │ │ ├── Log │ │ │ ├── index.ts │ │ │ ├── main.tsx │ │ │ └── store.ts │ │ ├── Plugin │ │ │ ├── PluginBrowse.tsx │ │ │ ├── PluginBrowseCard.tsx │ │ │ ├── PluginConfigDialog.tsx │ │ │ ├── PluginDetailDialog.tsx │ │ │ ├── PluginInstalled.tsx │ │ │ ├── PluginInstalledCard.tsx │ │ │ ├── index.ts │ │ │ ├── main.tsx │ │ │ └── store.ts │ │ ├── Record │ │ │ ├── Config │ │ │ │ ├── GeneratePosterForm.tsx │ │ │ │ └── MergeIntervalSliderPopover.tsx │ │ │ ├── GamePoster.tsx │ │ │ ├── GameRankingItem.tsx │ │ │ ├── GeneratePoster │ │ │ │ └── main.tsx │ │ │ ├── MonthlyReport.tsx │ │ │ ├── RecordOverview.tsx │ │ │ ├── ScoreReport.tsx │ │ │ ├── StatCard.tsx │ │ │ ├── WeeklyReport.tsx │ │ │ ├── YearlyReport.tsx │ │ │ ├── index.ts │ │ │ ├── main.tsx │ │ │ └── store.ts │ │ ├── TransformerManager │ │ │ ├── DeleteDialog.tsx │ │ │ ├── EditDialog.tsx │ │ │ ├── PresetSelector.tsx │ │ │ ├── RuleDialog.tsx │ │ │ ├── TransformerItem.tsx │ │ │ ├── index.ts │ │ │ ├── main.tsx │ │ │ ├── presets.ts │ │ │ └── types.ts │ │ ├── Updater │ │ │ ├── index.ts │ │ │ ├── main.tsx │ │ │ └── store.ts │ │ └── arts │ │ │ ├── Icon.tsx │ │ │ └── Logo.tsx │ │ ├── stores │ │ ├── config │ │ │ ├── index.ts │ │ │ ├── useConfigLocalStore.ts │ │ │ └── useConfigStore.ts │ │ ├── game │ │ │ ├── gameLocalStoreFactory.ts │ │ │ ├── gamePathStore.ts │ │ │ ├── gameRegistry.ts │ │ │ ├── gameStoreFactory.ts │ │ │ ├── gameUtils.ts │ │ │ ├── index.ts │ │ │ ├── recordUtils.ts │ │ │ └── useGameCollectionStore.ts │ │ ├── index.ts │ │ ├── plugin │ │ │ ├── index.ts │ │ │ └── usePluginStore.ts │ │ ├── sync.ts │ │ ├── useAttachmentStore.ts │ │ └── utils.ts │ │ ├── styles │ │ ├── base.css │ │ ├── globals.css │ │ └── zoom.css │ │ └── utils │ │ ├── className.ts │ │ ├── common.ts │ │ ├── dnd-utills.ts │ │ ├── formatter.ts │ │ ├── i18n.ts │ │ ├── index.ts │ │ ├── poster.ts │ │ └── setup.ts ├── types │ ├── event.ts │ ├── ipc.ts │ ├── models │ │ ├── config.ts │ │ ├── game.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── plugin │ │ ├── index.ts │ │ └── plugin.ts │ ├── poster │ │ ├── index.ts │ │ ├── poster.ts │ │ └── templates │ │ │ ├── index.ts │ │ │ ├── schema.ts │ │ │ └── scoreReport.ts │ ├── sync │ │ ├── common.ts │ │ ├── index.ts │ │ └── role.ts │ └── utils │ │ ├── common.ts │ │ ├── i18next.d.ts │ │ ├── importer.ts │ │ ├── index.ts │ │ └── scraper.ts └── utils │ ├── common.ts │ └── index.ts ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.web.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/.github/ISSUE_TEMPLATE/feat.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/.github/ISSUE_TEMPLATE/suggestion.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: true 2 | semi: false 3 | printWidth: 100 4 | trailingComma: none 5 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["dbaeumer.vscode-eslint"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/components.json -------------------------------------------------------------------------------- /dev-app-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/dev-app-update.yml -------------------------------------------------------------------------------- /electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/electron-builder.yml -------------------------------------------------------------------------------- /electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/electron.vite.config.ts -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/env.d.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /native/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/.gitignore -------------------------------------------------------------------------------- /native/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/Cargo.toml -------------------------------------------------------------------------------- /native/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/browser.js -------------------------------------------------------------------------------- /native/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/build.rs -------------------------------------------------------------------------------- /native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/package.json -------------------------------------------------------------------------------- /native/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/pnpm-lock.yaml -------------------------------------------------------------------------------- /native/rustfmt.toml: -------------------------------------------------------------------------------- 1 | tab_spaces = 2 2 | -------------------------------------------------------------------------------- /native/src/foreground/foreground_hook.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/foreground/foreground_hook.rs -------------------------------------------------------------------------------- /native/src/foreground/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/foreground/mod.rs -------------------------------------------------------------------------------- /native/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/lib.rs -------------------------------------------------------------------------------- /native/src/log/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/log/mod.rs -------------------------------------------------------------------------------- /native/src/monitor/etw_monitor/etw_trace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/monitor/etw_monitor/etw_trace.rs -------------------------------------------------------------------------------- /native/src/monitor/etw_monitor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/monitor/etw_monitor/mod.rs -------------------------------------------------------------------------------- /native/src/monitor/gm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/monitor/gm.rs -------------------------------------------------------------------------------- /native/src/monitor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/monitor/mod.rs -------------------------------------------------------------------------------- /native/src/monitor/wmi_monitor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/monitor/wmi_monitor/mod.rs -------------------------------------------------------------------------------- /native/src/monitor/wmi_monitor/wmi_async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/monitor/wmi_monitor/wmi_async.rs -------------------------------------------------------------------------------- /native/src/napi_foreground.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/napi_foreground.rs -------------------------------------------------------------------------------- /native/src/napi_log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/napi_log.rs -------------------------------------------------------------------------------- /native/src/napi_monitor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/napi_monitor.rs -------------------------------------------------------------------------------- /native/src/napi_win32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/napi_win32.rs -------------------------------------------------------------------------------- /native/src/runtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/runtime.rs -------------------------------------------------------------------------------- /native/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/tests/mod.rs -------------------------------------------------------------------------------- /native/src/tests/test_monitor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/tests/test_monitor.rs -------------------------------------------------------------------------------- /native/src/tests/test_win32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/tests/test_win32.rs -------------------------------------------------------------------------------- /native/src/utils/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod types; 2 | -------------------------------------------------------------------------------- /native/src/utils/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/utils/types.rs -------------------------------------------------------------------------------- /native/src/win32/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/win32/mod.rs -------------------------------------------------------------------------------- /native/src/win32/notification.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/win32/notification.rs -------------------------------------------------------------------------------- /native/src/win32/nt_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/win32/nt_path.rs -------------------------------------------------------------------------------- /native/src/win32/privilege.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/win32/privilege.rs -------------------------------------------------------------------------------- /native/src/win32/process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/src/win32/process.rs -------------------------------------------------------------------------------- /native/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/test.ts -------------------------------------------------------------------------------- /native/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/tsconfig.json -------------------------------------------------------------------------------- /native/wasi-worker-browser.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/native/wasi-worker-browser.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/package.json -------------------------------------------------------------------------------- /patches/pouchdb+9.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/patches/pouchdb+9.0.0.patch -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/resources/icon.png -------------------------------------------------------------------------------- /src/main/core/database/BaseDBManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/core/database/BaseDBManager.ts -------------------------------------------------------------------------------- /src/main/core/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/core/database/index.ts -------------------------------------------------------------------------------- /src/main/core/database/layers/ConfigDBManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/core/database/layers/ConfigDBManager.ts -------------------------------------------------------------------------------- /src/main/core/database/layers/GameDBManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/core/database/layers/GameDBManager.ts -------------------------------------------------------------------------------- /src/main/core/database/layers/PluginDBManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/core/database/layers/PluginDBManager.ts -------------------------------------------------------------------------------- /src/main/core/database/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/core/database/types.ts -------------------------------------------------------------------------------- /src/main/core/events/EventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/core/events/EventBus.ts -------------------------------------------------------------------------------- /src/main/core/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/core/events/index.ts -------------------------------------------------------------------------------- /src/main/core/events/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/core/events/ipc.ts -------------------------------------------------------------------------------- /src/main/core/ipc/IPCManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/core/ipc/IPCManager.ts -------------------------------------------------------------------------------- /src/main/core/ipc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/core/ipc/index.ts -------------------------------------------------------------------------------- /src/main/core/ipc/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/core/ipc/setup.ts -------------------------------------------------------------------------------- /src/main/core/native/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/core/native/index.ts -------------------------------------------------------------------------------- /src/main/core/native/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/core/native/setup.ts -------------------------------------------------------------------------------- /src/main/features/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/account/index.ts -------------------------------------------------------------------------------- /src/main/features/account/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/account/ipc.ts -------------------------------------------------------------------------------- /src/main/features/account/services/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/account/services/auth.ts -------------------------------------------------------------------------------- /src/main/features/account/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/account/services/index.ts -------------------------------------------------------------------------------- /src/main/features/adder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/adder/index.ts -------------------------------------------------------------------------------- /src/main/features/adder/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/adder/ipc.ts -------------------------------------------------------------------------------- /src/main/features/adder/services/adder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/adder/services/adder.ts -------------------------------------------------------------------------------- /src/main/features/adder/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/adder/services/index.ts -------------------------------------------------------------------------------- /src/main/features/adder/services/scanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/adder/services/scanner.ts -------------------------------------------------------------------------------- /src/main/features/adder/services/updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/adder/services/updater.ts -------------------------------------------------------------------------------- /src/main/features/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/database/index.ts -------------------------------------------------------------------------------- /src/main/features/database/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/database/ipc.ts -------------------------------------------------------------------------------- /src/main/features/database/services/backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/database/services/backup.ts -------------------------------------------------------------------------------- /src/main/features/database/services/cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/database/services/cloud.ts -------------------------------------------------------------------------------- /src/main/features/database/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/database/services/index.ts -------------------------------------------------------------------------------- /src/main/features/database/services/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/database/services/sync.ts -------------------------------------------------------------------------------- /src/main/features/database/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/database/services/utils.ts -------------------------------------------------------------------------------- /src/main/features/game/index.ts: -------------------------------------------------------------------------------- 1 | export * from './services' 2 | -------------------------------------------------------------------------------- /src/main/features/game/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/game/ipc.ts -------------------------------------------------------------------------------- /src/main/features/game/services/active.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/game/services/active.ts -------------------------------------------------------------------------------- /src/main/features/game/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/game/services/index.ts -------------------------------------------------------------------------------- /src/main/features/game/services/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/game/services/memory.ts -------------------------------------------------------------------------------- /src/main/features/game/services/save.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/game/services/save.ts -------------------------------------------------------------------------------- /src/main/features/game/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/game/services/utils.ts -------------------------------------------------------------------------------- /src/main/features/importer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/importer/index.ts -------------------------------------------------------------------------------- /src/main/features/importer/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/importer/ipc.ts -------------------------------------------------------------------------------- /src/main/features/importer/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/importer/services/index.ts -------------------------------------------------------------------------------- /src/main/features/importer/services/steam/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/importer/services/steam/common.ts -------------------------------------------------------------------------------- /src/main/features/importer/services/steam/index.ts: -------------------------------------------------------------------------------- 1 | export * from './services' 2 | -------------------------------------------------------------------------------- /src/main/features/importer/services/steam/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/importer/services/steam/services.ts -------------------------------------------------------------------------------- /src/main/features/importer/services/steam/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/importer/services/steam/types.ts -------------------------------------------------------------------------------- /src/main/features/importer/services/versionConverter/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/importer/services/versionConverter/common.ts -------------------------------------------------------------------------------- /src/main/features/importer/services/versionConverter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './services' 2 | -------------------------------------------------------------------------------- /src/main/features/importer/services/versionConverter/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/importer/services/versionConverter/services.ts -------------------------------------------------------------------------------- /src/main/features/launcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/launcher/index.ts -------------------------------------------------------------------------------- /src/main/features/launcher/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/launcher/ipc.ts -------------------------------------------------------------------------------- /src/main/features/launcher/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/launcher/services/index.ts -------------------------------------------------------------------------------- /src/main/features/launcher/services/launcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/launcher/services/launcher.ts -------------------------------------------------------------------------------- /src/main/features/launcher/services/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/launcher/services/preset.ts -------------------------------------------------------------------------------- /src/main/features/monitor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/monitor/index.ts -------------------------------------------------------------------------------- /src/main/features/monitor/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/monitor/ipc.ts -------------------------------------------------------------------------------- /src/main/features/monitor/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/monitor/services/index.ts -------------------------------------------------------------------------------- /src/main/features/monitor/services/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/monitor/services/monitor.ts -------------------------------------------------------------------------------- /src/main/features/monitor/services/nativeMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/monitor/services/nativeMonitor.ts -------------------------------------------------------------------------------- /src/main/features/scraper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/index.ts -------------------------------------------------------------------------------- /src/main/features/scraper/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/ipc.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/bangumi/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/bangumi/common.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/bangumi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/bangumi/index.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/bangumi/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/bangumi/types.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/dlsite/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/dlsite/common.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/dlsite/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/dlsite/i18n.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/dlsite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/dlsite/index.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/dlsite/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/dlsite/types.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/erogamescape/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/erogamescape/common.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/erogamescape/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/erogamescape/index.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/erogamescape/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/erogamescape/provider.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/erogamescape/types.ts: -------------------------------------------------------------------------------- 1 | export type UnArray = T extends (infer U)[] ? U : T 2 | -------------------------------------------------------------------------------- /src/main/features/scraper/providers/fanza/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/fanza/common.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/fanza/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/fanza/index.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/fanza/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/fanza/provider.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/getchu/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/getchu/common.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/getchu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/getchu/index.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/getchu/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/getchu/provider.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/google/index.ts: -------------------------------------------------------------------------------- 1 | export * from './provider' 2 | -------------------------------------------------------------------------------- /src/main/features/scraper/providers/google/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/google/provider.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/igdb/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/igdb/auth.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/igdb/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/igdb/common.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/igdb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/igdb/index.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/igdb/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/igdb/types.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/index.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/steam/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/steam/api.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/steam/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/steam/common.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/steam/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/steam/index.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/steam/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/steam/provider.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/steam/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/steam/types.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/steamgriddb/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/steamgriddb/api.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/steamgriddb/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/steamgriddb/common.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/steamgriddb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/steamgriddb/index.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/steamgriddb/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/steamgriddb/provider.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/steamgriddb/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/steamgriddb/types.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/vndb/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/vndb/api.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/vndb/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/vndb/common.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/vndb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/vndb/index.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/vndb/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/vndb/parser.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/vndb/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/vndb/types.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/ymgal/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/ymgal/api.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/ymgal/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/ymgal/common.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/ymgal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/ymgal/index.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/ymgal/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/ymgal/provider.ts -------------------------------------------------------------------------------- /src/main/features/scraper/providers/ymgal/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/providers/ymgal/types.ts -------------------------------------------------------------------------------- /src/main/features/scraper/services/ScraperManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/services/ScraperManager.ts -------------------------------------------------------------------------------- /src/main/features/scraper/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/services/index.ts -------------------------------------------------------------------------------- /src/main/features/scraper/services/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/services/setup.ts -------------------------------------------------------------------------------- /src/main/features/scraper/services/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/scraper/services/types.ts -------------------------------------------------------------------------------- /src/main/features/system/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/system/index.ts -------------------------------------------------------------------------------- /src/main/features/system/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/system/ipc.ts -------------------------------------------------------------------------------- /src/main/features/system/services/font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/system/services/font.ts -------------------------------------------------------------------------------- /src/main/features/system/services/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/system/services/i18n.ts -------------------------------------------------------------------------------- /src/main/features/system/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/system/services/index.ts -------------------------------------------------------------------------------- /src/main/features/system/services/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/system/services/path.ts -------------------------------------------------------------------------------- /src/main/features/system/services/portable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/system/services/portable.ts -------------------------------------------------------------------------------- /src/main/features/system/services/protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/system/services/protocol.ts -------------------------------------------------------------------------------- /src/main/features/system/services/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/system/services/proxy.ts -------------------------------------------------------------------------------- /src/main/features/system/services/screenshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/system/services/screenshot.ts -------------------------------------------------------------------------------- /src/main/features/system/services/tray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/system/services/tray.ts -------------------------------------------------------------------------------- /src/main/features/system/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/system/services/utils.ts -------------------------------------------------------------------------------- /src/main/features/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/theme/index.ts -------------------------------------------------------------------------------- /src/main/features/theme/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/theme/ipc.ts -------------------------------------------------------------------------------- /src/main/features/theme/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/theme/services/index.ts -------------------------------------------------------------------------------- /src/main/features/theme/services/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/theme/services/preset.ts -------------------------------------------------------------------------------- /src/main/features/theme/services/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/theme/services/theme.ts -------------------------------------------------------------------------------- /src/main/features/transformer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/transformer/index.ts -------------------------------------------------------------------------------- /src/main/features/transformer/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/transformer/ipc.ts -------------------------------------------------------------------------------- /src/main/features/transformer/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/transformer/services/index.ts -------------------------------------------------------------------------------- /src/main/features/transformer/services/transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/transformer/services/transformer.ts -------------------------------------------------------------------------------- /src/main/features/updater/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/updater/index.ts -------------------------------------------------------------------------------- /src/main/features/updater/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/updater/ipc.ts -------------------------------------------------------------------------------- /src/main/features/updater/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/updater/services/index.ts -------------------------------------------------------------------------------- /src/main/features/updater/services/updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/features/updater/services/updater.ts -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/main/locales/en/context-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/en/context-menu.json -------------------------------------------------------------------------------- /src/main/locales/en/scraper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/en/scraper.json -------------------------------------------------------------------------------- /src/main/locales/en/system-notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/en/system-notification.json -------------------------------------------------------------------------------- /src/main/locales/en/tray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/en/tray.json -------------------------------------------------------------------------------- /src/main/locales/fr/scraper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/fr/scraper.json -------------------------------------------------------------------------------- /src/main/locales/fr/tray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/fr/tray.json -------------------------------------------------------------------------------- /src/main/locales/it/scraper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/it/scraper.json -------------------------------------------------------------------------------- /src/main/locales/it/tray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/it/tray.json -------------------------------------------------------------------------------- /src/main/locales/ja/context-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/ja/context-menu.json -------------------------------------------------------------------------------- /src/main/locales/ja/scraper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/ja/scraper.json -------------------------------------------------------------------------------- /src/main/locales/ja/system-notification.json: -------------------------------------------------------------------------------- 1 | { 2 | "screenshotSaved": "スクリーンショット画像が保存されました" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/locales/ja/tray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/ja/tray.json -------------------------------------------------------------------------------- /src/main/locales/ko/scraper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/ko/scraper.json -------------------------------------------------------------------------------- /src/main/locales/ko/tray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/ko/tray.json -------------------------------------------------------------------------------- /src/main/locales/ru/scraper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/ru/scraper.json -------------------------------------------------------------------------------- /src/main/locales/ru/tray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/ru/tray.json -------------------------------------------------------------------------------- /src/main/locales/zh-CN/context-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/zh-CN/context-menu.json -------------------------------------------------------------------------------- /src/main/locales/zh-CN/scraper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/zh-CN/scraper.json -------------------------------------------------------------------------------- /src/main/locales/zh-CN/system-notification.json: -------------------------------------------------------------------------------- 1 | { 2 | "screenshotSaved": "截图已保存" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/locales/zh-CN/tray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/zh-CN/tray.json -------------------------------------------------------------------------------- /src/main/locales/zh-TW/context-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/zh-TW/context-menu.json -------------------------------------------------------------------------------- /src/main/locales/zh-TW/scraper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/zh-TW/scraper.json -------------------------------------------------------------------------------- /src/main/locales/zh-TW/system-notification.json: -------------------------------------------------------------------------------- 1 | { 2 | "screenshotSaved": "截圖已儲存" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/locales/zh-TW/tray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/locales/zh-TW/tray.json -------------------------------------------------------------------------------- /src/main/plugins/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/plugins/api/index.ts -------------------------------------------------------------------------------- /src/main/plugins/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/plugins/api/types.ts -------------------------------------------------------------------------------- /src/main/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/plugins/index.ts -------------------------------------------------------------------------------- /src/main/plugins/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/plugins/ipc.ts -------------------------------------------------------------------------------- /src/main/plugins/loader/PluginLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/plugins/loader/PluginLoader.ts -------------------------------------------------------------------------------- /src/main/plugins/manager/PluginManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/plugins/manager/PluginManager.ts -------------------------------------------------------------------------------- /src/main/plugins/registry/PluginRegistryManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/plugins/registry/PluginRegistryManager.ts -------------------------------------------------------------------------------- /src/main/plugins/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/plugins/services.ts -------------------------------------------------------------------------------- /src/main/plugins/utils/PluginUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/plugins/utils/PluginUtils.ts -------------------------------------------------------------------------------- /src/main/posters/engine/canvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/posters/engine/canvas.ts -------------------------------------------------------------------------------- /src/main/posters/engine/font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/posters/engine/font.ts -------------------------------------------------------------------------------- /src/main/posters/engine/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/posters/engine/image.ts -------------------------------------------------------------------------------- /src/main/posters/engine/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/posters/engine/text.ts -------------------------------------------------------------------------------- /src/main/posters/index.ts: -------------------------------------------------------------------------------- 1 | export { setupPosterIPC } from './ipc' 2 | -------------------------------------------------------------------------------- /src/main/posters/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/posters/ipc.ts -------------------------------------------------------------------------------- /src/main/posters/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/posters/registry.ts -------------------------------------------------------------------------------- /src/main/posters/templates/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/posters/templates/scoreReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/posters/templates/scoreReport.ts -------------------------------------------------------------------------------- /src/main/posters/utils/score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/posters/utils/score.ts -------------------------------------------------------------------------------- /src/main/utils/archiver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/utils/archiver.ts -------------------------------------------------------------------------------- /src/main/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/utils/common.ts -------------------------------------------------------------------------------- /src/main/utils/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/utils/dialog.ts -------------------------------------------------------------------------------- /src/main/utils/gis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/utils/gis.ts -------------------------------------------------------------------------------- /src/main/utils/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/utils/image.ts -------------------------------------------------------------------------------- /src/main/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/utils/index.ts -------------------------------------------------------------------------------- /src/main/utils/powershell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/utils/powershell.ts -------------------------------------------------------------------------------- /src/main/utils/robot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/utils/robot.ts -------------------------------------------------------------------------------- /src/main/utils/scan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/main/utils/scan.ts -------------------------------------------------------------------------------- /src/preload/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/preload/index.d.ts -------------------------------------------------------------------------------- /src/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/preload/index.ts -------------------------------------------------------------------------------- /src/renderer/assets/defaultBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/assets/defaultBackground.png -------------------------------------------------------------------------------- /src/renderer/assets/electron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/assets/electron.svg -------------------------------------------------------------------------------- /src/renderer/assets/fonts/LXGWWenKaiMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/assets/fonts/LXGWWenKaiMono-Medium.ttf -------------------------------------------------------------------------------- /src/renderer/assets/wavy-lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/assets/wavy-lines.svg -------------------------------------------------------------------------------- /src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/index.html -------------------------------------------------------------------------------- /src/renderer/locales/en/adder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/en/adder.json -------------------------------------------------------------------------------- /src/renderer/locales/en/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/en/config.json -------------------------------------------------------------------------------- /src/renderer/locales/en/game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/en/game.json -------------------------------------------------------------------------------- /src/renderer/locales/en/importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/en/importer.json -------------------------------------------------------------------------------- /src/renderer/locales/en/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/en/log.json -------------------------------------------------------------------------------- /src/renderer/locales/en/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/en/plugin.json -------------------------------------------------------------------------------- /src/renderer/locales/en/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/en/record.json -------------------------------------------------------------------------------- /src/renderer/locales/en/scanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/en/scanner.json -------------------------------------------------------------------------------- /src/renderer/locales/en/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/en/sidebar.json -------------------------------------------------------------------------------- /src/renderer/locales/en/transformer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/en/transformer.json -------------------------------------------------------------------------------- /src/renderer/locales/en/updater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/en/updater.json -------------------------------------------------------------------------------- /src/renderer/locales/en/utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/en/utils.json -------------------------------------------------------------------------------- /src/renderer/locales/fr/adder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/fr/adder.json -------------------------------------------------------------------------------- /src/renderer/locales/fr/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/fr/config.json -------------------------------------------------------------------------------- /src/renderer/locales/fr/game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/fr/game.json -------------------------------------------------------------------------------- /src/renderer/locales/fr/importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/fr/importer.json -------------------------------------------------------------------------------- /src/renderer/locales/fr/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/fr/plugin.json -------------------------------------------------------------------------------- /src/renderer/locales/fr/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/fr/record.json -------------------------------------------------------------------------------- /src/renderer/locales/fr/scanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/fr/scanner.json -------------------------------------------------------------------------------- /src/renderer/locales/fr/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/fr/sidebar.json -------------------------------------------------------------------------------- /src/renderer/locales/fr/transformer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/fr/transformer.json -------------------------------------------------------------------------------- /src/renderer/locales/fr/updater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/fr/updater.json -------------------------------------------------------------------------------- /src/renderer/locales/fr/utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/fr/utils.json -------------------------------------------------------------------------------- /src/renderer/locales/it/adder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/it/adder.json -------------------------------------------------------------------------------- /src/renderer/locales/it/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/it/config.json -------------------------------------------------------------------------------- /src/renderer/locales/it/game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/it/game.json -------------------------------------------------------------------------------- /src/renderer/locales/it/importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/it/importer.json -------------------------------------------------------------------------------- /src/renderer/locales/it/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/it/plugin.json -------------------------------------------------------------------------------- /src/renderer/locales/it/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/it/record.json -------------------------------------------------------------------------------- /src/renderer/locales/it/scanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/it/scanner.json -------------------------------------------------------------------------------- /src/renderer/locales/it/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/it/sidebar.json -------------------------------------------------------------------------------- /src/renderer/locales/it/transformer.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/renderer/locales/it/updater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/it/updater.json -------------------------------------------------------------------------------- /src/renderer/locales/it/utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/it/utils.json -------------------------------------------------------------------------------- /src/renderer/locales/ja/adder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ja/adder.json -------------------------------------------------------------------------------- /src/renderer/locales/ja/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ja/config.json -------------------------------------------------------------------------------- /src/renderer/locales/ja/game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ja/game.json -------------------------------------------------------------------------------- /src/renderer/locales/ja/importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ja/importer.json -------------------------------------------------------------------------------- /src/renderer/locales/ja/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ja/log.json -------------------------------------------------------------------------------- /src/renderer/locales/ja/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ja/plugin.json -------------------------------------------------------------------------------- /src/renderer/locales/ja/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ja/record.json -------------------------------------------------------------------------------- /src/renderer/locales/ja/scanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ja/scanner.json -------------------------------------------------------------------------------- /src/renderer/locales/ja/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ja/sidebar.json -------------------------------------------------------------------------------- /src/renderer/locales/ja/transformer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ja/transformer.json -------------------------------------------------------------------------------- /src/renderer/locales/ja/updater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ja/updater.json -------------------------------------------------------------------------------- /src/renderer/locales/ja/utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ja/utils.json -------------------------------------------------------------------------------- /src/renderer/locales/ko/adder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ko/adder.json -------------------------------------------------------------------------------- /src/renderer/locales/ko/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ko/config.json -------------------------------------------------------------------------------- /src/renderer/locales/ko/game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ko/game.json -------------------------------------------------------------------------------- /src/renderer/locales/ko/importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ko/importer.json -------------------------------------------------------------------------------- /src/renderer/locales/ko/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ko/plugin.json -------------------------------------------------------------------------------- /src/renderer/locales/ko/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ko/record.json -------------------------------------------------------------------------------- /src/renderer/locales/ko/scanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ko/scanner.json -------------------------------------------------------------------------------- /src/renderer/locales/ko/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ko/sidebar.json -------------------------------------------------------------------------------- /src/renderer/locales/ko/transformer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ko/transformer.json -------------------------------------------------------------------------------- /src/renderer/locales/ko/updater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ko/updater.json -------------------------------------------------------------------------------- /src/renderer/locales/ko/utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ko/utils.json -------------------------------------------------------------------------------- /src/renderer/locales/ru/adder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ru/adder.json -------------------------------------------------------------------------------- /src/renderer/locales/ru/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ru/config.json -------------------------------------------------------------------------------- /src/renderer/locales/ru/game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ru/game.json -------------------------------------------------------------------------------- /src/renderer/locales/ru/importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ru/importer.json -------------------------------------------------------------------------------- /src/renderer/locales/ru/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ru/plugin.json -------------------------------------------------------------------------------- /src/renderer/locales/ru/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ru/record.json -------------------------------------------------------------------------------- /src/renderer/locales/ru/scanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ru/scanner.json -------------------------------------------------------------------------------- /src/renderer/locales/ru/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ru/sidebar.json -------------------------------------------------------------------------------- /src/renderer/locales/ru/transformer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ru/transformer.json -------------------------------------------------------------------------------- /src/renderer/locales/ru/updater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ru/updater.json -------------------------------------------------------------------------------- /src/renderer/locales/ru/utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/ru/utils.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-CN/adder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-CN/adder.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-CN/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-CN/config.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-CN/game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-CN/game.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-CN/importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-CN/importer.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-CN/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-CN/log.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-CN/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-CN/plugin.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-CN/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-CN/record.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-CN/scanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-CN/scanner.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-CN/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-CN/sidebar.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-CN/transformer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-CN/transformer.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-CN/updater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-CN/updater.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-CN/utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-CN/utils.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-TW/adder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-TW/adder.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-TW/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-TW/config.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-TW/game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-TW/game.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-TW/importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-TW/importer.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-TW/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-TW/log.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-TW/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-TW/plugin.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-TW/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-TW/record.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-TW/scanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-TW/scanner.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-TW/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-TW/sidebar.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-TW/transformer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-TW/transformer.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-TW/updater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-TW/updater.json -------------------------------------------------------------------------------- /src/renderer/locales/zh-TW/utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/locales/zh-TW/utils.json -------------------------------------------------------------------------------- /src/renderer/src/Setup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/Setup.tsx -------------------------------------------------------------------------------- /src/renderer/src/app/events/RendererEventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/app/events/RendererEventBus.ts -------------------------------------------------------------------------------- /src/renderer/src/app/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/app/events/index.ts -------------------------------------------------------------------------------- /src/renderer/src/app/events/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/app/events/setup.ts -------------------------------------------------------------------------------- /src/renderer/src/app/ipc/IPCManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/app/ipc/IPCManager.ts -------------------------------------------------------------------------------- /src/renderer/src/app/ipc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/app/ipc/index.ts -------------------------------------------------------------------------------- /src/renderer/src/app/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/app/router.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/CollectionMenu/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/CollectionMenu/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/CollectionMenu/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/ManageMenu/DeleteGameAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/ManageMenu/DeleteGameAlert.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/ManageMenu/NameEditorDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/ManageMenu/NameEditorDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/ManageMenu/PlayTimeEditorDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/ManageMenu/PlayTimeEditorDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/ManageMenu/ScoreEditorDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/ManageMenu/ScoreEditorDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/ManageMenu/TimerEditDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/ManageMenu/TimerEditDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/ManageMenu/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/ManageMenu/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/ManageMenu/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Launcher/FileLauncher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/Properties/Launcher/FileLauncher.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Launcher/PresetSelecter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/Properties/Launcher/PresetSelecter.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Launcher/ScriptLauncher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/Properties/Launcher/ScriptLauncher.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Launcher/SteamIdDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/Properties/Launcher/SteamIdDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Launcher/UrlLauncher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/Properties/Launcher/UrlLauncher.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Launcher/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Launcher/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/Properties/Launcher/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Media/CropDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/Properties/Media/CropDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Media/ImageViewerDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/Properties/Media/ImageViewerDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Media/SearchMediaDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/Properties/Media/SearchMediaDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Media/UrlDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/Properties/Media/UrlDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Media/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Media/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/Properties/Media/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Path/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/Path/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/Properties/Path/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/Properties/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/Properties/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Config/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Config/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/FilterAdder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/FilterAdder.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Header.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/HeaderCompact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/HeaderCompact.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Memory/MemoryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Memory/MemoryCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Memory/NoteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Memory/NoteDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Memory/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Memory/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Memory/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/Information/InformationCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/Information/InformationCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/Information/InformationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/Information/InformationDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/Information/SearchInformationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/Information/SearchInformationDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/Information/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/Information/index.ts -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/Record/RecordCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/Record/RecordCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/Record/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/Record/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/Record/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/RelatedSites/RelatedSitesCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/RelatedSites/RelatedSitesCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/RelatedSites/RelatedSitesDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/RelatedSites/RelatedSitesDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/RelatedSites/SearchRelatedSitesDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/RelatedSites/SearchRelatedSitesDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/RelatedSites/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/RelatedSites/index.ts -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/Tags/SearchTagsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/Tags/SearchTagsDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/Tags/TagsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/Tags/TagsCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/Tags/TagsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/Tags/TagsDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/Tags/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/Tags/index.ts -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/description/DescriptionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/description/DescriptionCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/description/DescriptionDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/description/DescriptionDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/description/SearchDescriptionDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/description/SearchDescriptionDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/description/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/description/index.ts -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/extraInformation/ExtraInformationCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/extraInformation/ExtraInformationCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/extraInformation/ExtraInformationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/extraInformation/ExtraInformationDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/extraInformation/SearchExtraInformationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/extraInformation/SearchExtraInformationDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/extraInformation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/extraInformation/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Overview/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Overview/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Record/ChartCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Record/ChartCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Record/RecordCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Record/RecordCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Record/TimerChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Record/TimerChart.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Record/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Record/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Record/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Save/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Game/Save/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/Save/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/StartGame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/StartGame.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/StopGame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/StopGame.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Game/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Game/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Game/store.ts -------------------------------------------------------------------------------- /src/renderer/src/components/GameBatchEditor/BatchGameNavCM/CollectionMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/GameBatchEditor/BatchGameNavCM/CollectionMenu.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/GameBatchEditor/BatchGameNavCM/DeleteGameAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/GameBatchEditor/BatchGameNavCM/DeleteGameAlert.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/GameBatchEditor/BatchGameNavCM/InformationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/GameBatchEditor/BatchGameNavCM/InformationDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/GameBatchEditor/BatchGameNavCM/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/GameBatchEditor/BatchGameNavCM/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/GameBatchEditor/BatchGameNavCM/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/GameBatchEditor/FloatingButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/GameBatchEditor/FloatingButtons.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/GameBatchEditor/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/GameBatchEditor/store.ts -------------------------------------------------------------------------------- /src/renderer/src/components/GameSearch/GameSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/GameSearch/GameSearch.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/LibraryTitlebarContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/LibraryTitlebarContent.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/Filter/FilterCombobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/Filter/FilterCombobox.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/Filter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/Filter/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/Filter/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/Filter/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/Filter/store.ts -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/GameList/AllGame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/GameList/AllGame.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/GameList/Collection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/GameList/Collection.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/GameList/FilterGame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/GameList/FilterGame.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/GameList/Others.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/GameList/Others.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/GameList/PlayStatusGames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/GameList/PlayStatusGames.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/GameList/RecentGames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/GameList/RecentGames.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/GameList/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/GameList/Search.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/GameList/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/GameList/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/GameList/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/GameNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/GameNav.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/PositionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/PositionButton.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/SortMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/SortMenu.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Librarybar/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Librarybar/store.ts -------------------------------------------------------------------------------- /src/renderer/src/components/Showcase/AllGames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Showcase/AllGames.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Showcase/CollectionGames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Showcase/CollectionGames.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Showcase/CollectionPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Showcase/CollectionPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Showcase/Collections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Showcase/Collections.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Showcase/FilterSearchGames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Showcase/FilterSearchGames.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Showcase/RecentGames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Showcase/RecentGames.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Showcase/ScrollToTopButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Showcase/ScrollToTopButton.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Showcase/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/Showcase/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Showcase/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Showcase/posters/BigGamePoster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Showcase/posters/BigGamePoster.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Showcase/posters/CollectionPoster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Showcase/posters/CollectionPoster.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Showcase/posters/GamePoster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Showcase/posters/GamePoster.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Showcase/posters/PlayButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Showcase/posters/PlayButton.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Titlebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/Titlebar.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/animations/HoverCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/animations/HoverCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/animations/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/animations/types.ts -------------------------------------------------------------------------------- /src/renderer/src/components/contextMenu/CollectionCM/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/contextMenu/CollectionCM/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/contextMenu/CollectionCM/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/contextMenu/GameNavCM/CollectionMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/contextMenu/GameNavCM/CollectionMenu.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/contextMenu/GameNavCM/ManageMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/contextMenu/GameNavCM/ManageMenu.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/contextMenu/GameNavCM/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/components/contextMenu/GameNavCM/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/contextMenu/GameNavCM/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/dialog/AddCollectionDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/dialog/AddCollectionDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/form/ConfigItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/form/ConfigItem.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/form/ConfigItemPure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/form/ConfigItemPure.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/form/index.ts -------------------------------------------------------------------------------- /src/renderer/src/components/form/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/form/types.ts -------------------------------------------------------------------------------- /src/renderer/src/components/form/useStateHook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/form/useStateHook.ts -------------------------------------------------------------------------------- /src/renderer/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/array-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/array-editor.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/array-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/array-input.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/array-textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/array-textarea.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/color-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/color-picker.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/cross-fade-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/cross-fade-image.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/date-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/date-input.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/drop-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/drop-indicator.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/game-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/game-image.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/hotkey-setting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/hotkey-setting.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/infinite-progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/infinite-progress.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/link.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/markdown-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/markdown-renderer.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/nav.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/separator-dashed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/separator-dashed.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/utils/TargetBlankLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/components/utils/TargetBlankLink.tsx -------------------------------------------------------------------------------- /src/renderer/src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/renderer/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/hooks/index.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useConfigLocalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/hooks/useConfigLocalState.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useConfigState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/hooks/useConfigState.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useGameCollectionState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/hooks/useGameCollectionState.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useGameLocalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/hooks/useGameLocalState.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useGameState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/hooks/useGameState.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/usePluginState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/hooks/usePluginState.ts -------------------------------------------------------------------------------- /src/renderer/src/layouts/RootLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/layouts/RootLayout.tsx -------------------------------------------------------------------------------- /src/renderer/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/About.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/Advanced.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/Advanced.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/Appearances/FontSettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/Appearances/FontSettingsDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/Appearances/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/Appearances/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/CloudSync/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/CloudSync/Info.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/CloudSync/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/CloudSync/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/CloudSync/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/CloudSync/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/CloudSync/store.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/Database.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/Database.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/General.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/General.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/Hotkeys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/Hotkeys.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/Metadata/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/Metadata/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/Metadata/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/Network.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/Network.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/Scraper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/Scraper.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/Theme/PresetSelecter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/Theme/PresetSelecter.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/Theme/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/Theme/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/Theme/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/pages/Config/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Config/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/DragContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/DragContainer.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameAdder/BackgroundList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameAdder/BackgroundList.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameAdder/GameList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameAdder/GameList.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameAdder/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameAdder/Search.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameAdder/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/pages/GameAdder/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameAdder/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameAdder/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameAdder/store.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/GameBatchAdder/GameList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameBatchAdder/GameList.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameBatchAdder/GameListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameBatchAdder/GameListItem.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameBatchAdder/GameListTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameBatchAdder/GameListTable.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameBatchAdder/StatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameBatchAdder/StatusBadge.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameBatchAdder/hooks/useGameAdder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameBatchAdder/hooks/useGameAdder.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/GameBatchAdder/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/pages/GameBatchAdder/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameBatchAdder/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameBatchAdder/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameBatchAdder/store.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/GameMetadataUpdater/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameMetadataUpdater/index.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/GameMetadataUpdater/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameMetadataUpdater/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameMetadataUpdater/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameMetadataUpdater/store.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/GameScannerManager/EditScannerDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameScannerManager/EditScannerDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameScannerManager/FailedFoldersDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameScannerManager/FailedFoldersDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameScannerManager/GameScannerListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameScannerManager/GameScannerListItem.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameScannerManager/GlobalSettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameScannerManager/GlobalSettingsDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameScannerManager/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/pages/GameScannerManager/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameScannerManager/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/GameScannerManager/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/GameScannerManager/store.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/Importer/SteamImporter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/pages/Importer/SteamImporter/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Importer/SteamImporter/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Importer/SteamImporter/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Importer/SteamImporter/store.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/Importer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/pages/Importer/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Importer/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Library/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/pages/Library/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Library/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Library/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Library/store.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/Light.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Light.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Log/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Log/index.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/Log/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Log/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Log/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Log/store.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/Plugin/PluginBrowse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Plugin/PluginBrowse.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Plugin/PluginBrowseCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Plugin/PluginBrowseCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Plugin/PluginConfigDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Plugin/PluginConfigDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Plugin/PluginDetailDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Plugin/PluginDetailDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Plugin/PluginInstalled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Plugin/PluginInstalled.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Plugin/PluginInstalledCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Plugin/PluginInstalledCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Plugin/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/pages/Plugin/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Plugin/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Plugin/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Plugin/store.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/Record/Config/GeneratePosterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Record/Config/GeneratePosterForm.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Record/Config/MergeIntervalSliderPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Record/Config/MergeIntervalSliderPopover.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Record/GamePoster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Record/GamePoster.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Record/GameRankingItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Record/GameRankingItem.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Record/GeneratePoster/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Record/GeneratePoster/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Record/MonthlyReport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Record/MonthlyReport.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Record/RecordOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Record/RecordOverview.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Record/ScoreReport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Record/ScoreReport.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Record/StatCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Record/StatCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Record/WeeklyReport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Record/WeeklyReport.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Record/YearlyReport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Record/YearlyReport.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Record/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/pages/Record/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Record/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Record/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Record/store.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/TransformerManager/DeleteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/TransformerManager/DeleteDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/TransformerManager/EditDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/TransformerManager/EditDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/TransformerManager/PresetSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/TransformerManager/PresetSelector.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/TransformerManager/RuleDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/TransformerManager/RuleDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/TransformerManager/TransformerItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/TransformerManager/TransformerItem.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/TransformerManager/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/pages/TransformerManager/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/TransformerManager/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/TransformerManager/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/TransformerManager/presets.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/TransformerManager/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/TransformerManager/types.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/Updater/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main' 2 | -------------------------------------------------------------------------------- /src/renderer/src/pages/Updater/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Updater/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/Updater/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/Updater/store.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/arts/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/arts/Icon.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/arts/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/pages/arts/Logo.tsx -------------------------------------------------------------------------------- /src/renderer/src/stores/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/config/index.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/config/useConfigLocalStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/config/useConfigLocalStore.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/config/useConfigStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/config/useConfigStore.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/game/gameLocalStoreFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/game/gameLocalStoreFactory.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/game/gamePathStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/game/gamePathStore.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/game/gameRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/game/gameRegistry.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/game/gameStoreFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/game/gameStoreFactory.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/game/gameUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/game/gameUtils.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/game/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/game/index.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/game/recordUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/game/recordUtils.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/game/useGameCollectionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/game/useGameCollectionStore.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/index.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/plugin/index.ts: -------------------------------------------------------------------------------- 1 | export * from './usePluginStore' 2 | -------------------------------------------------------------------------------- /src/renderer/src/stores/plugin/usePluginStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/plugin/usePluginStore.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/sync.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/useAttachmentStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/useAttachmentStore.ts -------------------------------------------------------------------------------- /src/renderer/src/stores/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/stores/utils.ts -------------------------------------------------------------------------------- /src/renderer/src/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/styles/base.css -------------------------------------------------------------------------------- /src/renderer/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/styles/globals.css -------------------------------------------------------------------------------- /src/renderer/src/styles/zoom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/styles/zoom.css -------------------------------------------------------------------------------- /src/renderer/src/utils/className.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/utils/className.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/utils/common.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/dnd-utills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/utils/dnd-utills.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/utils/formatter.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/utils/i18n.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/utils/index.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/poster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/utils/poster.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/renderer/src/utils/setup.ts -------------------------------------------------------------------------------- /src/types/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/event.ts -------------------------------------------------------------------------------- /src/types/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/ipc.ts -------------------------------------------------------------------------------- /src/types/models/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/models/config.ts -------------------------------------------------------------------------------- /src/types/models/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/models/game.ts -------------------------------------------------------------------------------- /src/types/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/models/index.ts -------------------------------------------------------------------------------- /src/types/models/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/models/utils.ts -------------------------------------------------------------------------------- /src/types/plugin/index.ts: -------------------------------------------------------------------------------- 1 | export * from './plugin' 2 | -------------------------------------------------------------------------------- /src/types/plugin/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/plugin/plugin.ts -------------------------------------------------------------------------------- /src/types/poster/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/poster/index.ts -------------------------------------------------------------------------------- /src/types/poster/poster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/poster/poster.ts -------------------------------------------------------------------------------- /src/types/poster/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/poster/templates/index.ts -------------------------------------------------------------------------------- /src/types/poster/templates/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/poster/templates/schema.ts -------------------------------------------------------------------------------- /src/types/poster/templates/scoreReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/poster/templates/scoreReport.ts -------------------------------------------------------------------------------- /src/types/sync/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/sync/common.ts -------------------------------------------------------------------------------- /src/types/sync/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/sync/index.ts -------------------------------------------------------------------------------- /src/types/sync/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/sync/role.ts -------------------------------------------------------------------------------- /src/types/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/utils/common.ts -------------------------------------------------------------------------------- /src/types/utils/i18next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/utils/i18next.d.ts -------------------------------------------------------------------------------- /src/types/utils/importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/utils/importer.ts -------------------------------------------------------------------------------- /src/types/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/utils/index.ts -------------------------------------------------------------------------------- /src/types/utils/scraper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/types/utils/scraper.ts -------------------------------------------------------------------------------- /src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/src/utils/common.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './common' 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximu3/vnite/HEAD/tsconfig.web.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------