├── .github └── workflows │ └── release.yaml ├── .gitignore ├── .tauri-updater.json ├── .vscode └── extensions.json ├── CLAUDE.md ├── LICENSE ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── public ├── icon.png ├── svelte.svg ├── tauri.svg └── vite.svg ├── script ├── all_games.json ├── package-lock.json ├── package.json └── scrape_sql.cjs ├── src-tauri ├── .gitignore ├── .vscode │ └── settings.json ├── Cargo.lock ├── Cargo.toml ├── bin │ └── extract-icon-x86_64-pc-windows-msvc.exe ├── build.rs ├── capabilities │ └── migrated.json ├── gen │ └── schemas │ │ ├── acl-manifests.json │ │ ├── capabilities.json │ │ ├── desktop-schema.json │ │ └── windows-schema.json ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ └── notfound.png ├── src │ ├── domain │ │ ├── all_game_cache.rs │ │ ├── collection.rs │ │ ├── distance.rs │ │ ├── explored_cache.rs │ │ ├── explorer │ │ │ ├── file.rs │ │ │ └── mod.rs │ │ ├── file.rs │ │ ├── mod.rs │ │ ├── network.rs │ │ ├── process.rs │ │ ├── pubsub │ │ │ └── mod.rs │ │ ├── repository │ │ │ ├── all_game_cache.rs │ │ │ ├── collection.rs │ │ │ ├── explored_cache.rs │ │ │ └── mod.rs │ │ └── windows │ │ │ ├── mod.rs │ │ │ ├── process.rs │ │ │ └── proctail.rs │ ├── infrastructure │ │ ├── explorerimpl │ │ │ ├── explorer.rs │ │ │ ├── file.rs │ │ │ └── mod.rs │ │ ├── explorermock │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── pubsubimpl │ │ │ ├── mod.rs │ │ │ └── pubsub.rs │ │ ├── repositoryimpl │ │ │ ├── all_game_cahe.rs │ │ │ ├── collection.rs │ │ │ ├── driver.rs │ │ │ ├── explored_cache.rs │ │ │ ├── mod.rs │ │ │ ├── models │ │ │ │ ├── all_game_cache.rs │ │ │ │ ├── collection.rs │ │ │ │ └── mod.rs │ │ │ ├── repository.rs │ │ │ └── tests │ │ │ │ ├── all_game_cache_test.rs │ │ │ │ ├── collection_test.rs │ │ │ │ ├── explored_cache_test.rs │ │ │ │ └── mod.rs │ │ ├── repositorymock │ │ │ └── mod.rs │ │ ├── util.rs │ │ ├── windowsimpl │ │ │ ├── mod.rs │ │ │ ├── process.rs │ │ │ ├── proctail.rs │ │ │ ├── proctail_manager.rs │ │ │ ├── proctail_manager_test.rs │ │ │ ├── proctail_test.rs │ │ │ ├── screenshot │ │ │ │ ├── README.md │ │ │ │ ├── capture.rs │ │ │ │ ├── d3d.rs │ │ │ │ ├── mod.rs │ │ │ │ └── take.rs │ │ │ └── windows.rs │ │ └── windowsmock │ │ │ └── mod.rs │ ├── interface │ │ ├── command.rs │ │ ├── error.rs │ │ ├── mod.rs │ │ ├── models │ │ │ ├── all_game_cache.rs │ │ │ ├── collection.rs │ │ │ └── mod.rs │ │ └── module.rs │ ├── main.rs │ ├── migrations │ │ ├── V1__init.sql │ │ ├── V2__thumbnail_size.sql │ │ ├── V3__refactor_collection_elements.sql │ │ ├── V4__migrate_collection_elements_data.sql │ │ └── V5__cleanup_collection_elements.sql │ └── usecase │ │ ├── all_game_cache.rs │ │ ├── all_game_cache_test.rs │ │ ├── collection.rs │ │ ├── collection_test.rs │ │ ├── error.rs │ │ ├── explored_cache.rs │ │ ├── explored_cache_test.rs │ │ ├── file.rs │ │ ├── file_test.rs │ │ ├── mod.rs │ │ ├── models │ │ ├── collection.rs │ │ └── mod.rs │ │ └── process.rs └── tauri.conf.json ├── src ├── App.svelte ├── components │ ├── Home │ │ ├── ImportDropFiles.svelte │ │ ├── ZappingGameItem.svelte │ │ └── fileDrop.svelte.ts │ ├── Sidebar │ │ ├── CollectionElement.svelte │ │ ├── CollectionElements.svelte │ │ ├── Header.svelte │ │ ├── ImportAutomatically.svelte │ │ ├── ImportManually.svelte │ │ ├── ImportPopover.svelte │ │ ├── MinimalSidebar.svelte │ │ ├── Search.svelte │ │ ├── SearchAttribute.svelte │ │ ├── SearchAttrributeControl.svelte │ │ ├── SearchInput.svelte │ │ ├── Sidebar.svelte │ │ ├── SortPopover.svelte │ │ ├── SubHeader.svelte │ │ ├── search.ts │ │ ├── searchAttributes.ts │ │ ├── sort.ts │ │ ├── useAutoImport.svelte.ts │ │ ├── useImportPaths.svelte.ts │ │ └── useImportProgress.svelte.ts │ ├── Tab │ │ ├── ATab.svelte │ │ └── ATabList.svelte │ ├── UI │ │ ├── ADisclosure.svelte │ │ ├── APopover.svelte │ │ ├── Button.svelte │ │ ├── ButtonBase.svelte │ │ ├── ButtonCancel.svelte │ │ ├── ButtonIcon.svelte │ │ ├── Checkbox.svelte │ │ ├── Input.svelte │ │ ├── InputPath.svelte │ │ ├── LinkButton.svelte │ │ ├── LinkText.svelte │ │ ├── Modal.svelte │ │ ├── ModalBase.svelte │ │ ├── OptionButton.svelte │ │ ├── QRCodeCanvas.svelte │ │ ├── ScrollableHorizontal.svelte │ │ ├── Table.svelte │ │ ├── Titlebar │ │ │ ├── ControlButton.svelte │ │ │ ├── Icons │ │ │ │ ├── Close.svelte │ │ │ │ ├── Maximize.svelte │ │ │ │ ├── MaximizeRestore.svelte │ │ │ │ └── Minimize.svelte │ │ │ ├── Titlebar.svelte │ │ │ └── window.svelte.ts │ │ ├── VirtualScroller.svelte │ │ ├── VirtualScrollerMasonry.svelte │ │ ├── button.ts │ │ ├── portal.ts │ │ ├── virtualScroller.ts │ │ └── virtualScrollerMasonry.ts │ └── Work │ │ ├── Actions.svelte │ │ ├── DeleteElement.svelte │ │ ├── Detail.svelte │ │ ├── DetailRow.svelte │ │ ├── LinkToSidebar.svelte │ │ ├── OtherInfomationSection.svelte │ │ ├── OtherInformation.svelte │ │ ├── PlayButton.svelte │ │ ├── PlayPopover.svelte │ │ ├── QRCode.svelte │ │ ├── SettingPopover.svelte │ │ ├── Work.svelte │ │ ├── WorkImage.svelte │ │ ├── WorkLayout.svelte │ │ └── WorkMain.svelte ├── index.scss ├── layouts │ └── Layout.svelte ├── lib │ ├── chunk.ts │ ├── command.ts │ ├── event │ │ ├── README.md │ │ ├── index.ts │ │ ├── types.ts │ │ └── useEvent.svelte.ts │ ├── filter.ts │ ├── importManually.ts │ ├── registerCollectionElementDetails.ts │ ├── scrape │ │ ├── scrapeAllGame.ts │ │ ├── scrapeSeiya.ts │ │ ├── scrapeSql.ts │ │ └── scrapeWork.ts │ ├── toast.ts │ ├── trieFilter.ts │ ├── types.ts │ ├── types │ │ └── proctail.ts │ └── utils.ts ├── main.ts ├── router │ └── route.ts ├── store │ ├── memo.ts │ ├── query.ts │ ├── seiya.ts │ ├── showSidebar.ts │ ├── sidebarCollectionElements.ts │ ├── skyway.ts │ ├── startProcessMap.ts │ ├── tabs.ts │ └── works.ts ├── toast.scss ├── views │ ├── Debug │ │ └── ProcTail.svelte │ ├── Home.svelte │ ├── Memo.svelte │ ├── Settings.svelte │ └── Work.svelte └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── unocss.config.ts ├── update.ps1 └── vite.config.ts /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/.gitignore -------------------------------------------------------------------------------- /.tauri-updater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/.tauri-updater.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/package.json -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/public/svelte.svg -------------------------------------------------------------------------------- /public/tauri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/public/tauri.svg -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/public/vite.svg -------------------------------------------------------------------------------- /script/all_games.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/script/all_games.json -------------------------------------------------------------------------------- /script/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/script/package-lock.json -------------------------------------------------------------------------------- /script/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/script/package.json -------------------------------------------------------------------------------- /script/scrape_sql.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/script/scrape_sql.cjs -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/.vscode/settings.json -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/bin/extract-icon-x86_64-pc-windows-msvc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/bin/extract-icon-x86_64-pc-windows-msvc.exe -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/capabilities/migrated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/capabilities/migrated.json -------------------------------------------------------------------------------- /src-tauri/gen/schemas/acl-manifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/gen/schemas/acl-manifests.json -------------------------------------------------------------------------------- /src-tauri/gen/schemas/capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/gen/schemas/capabilities.json -------------------------------------------------------------------------------- /src-tauri/gen/schemas/desktop-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/gen/schemas/desktop-schema.json -------------------------------------------------------------------------------- /src-tauri/gen/schemas/windows-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/gen/schemas/windows-schema.json -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/icons/notfound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/icons/notfound.png -------------------------------------------------------------------------------- /src-tauri/src/domain/all_game_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/all_game_cache.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/collection.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/distance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/distance.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/explored_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/explored_cache.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/explorer/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/explorer/file.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/explorer/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod file; 2 | -------------------------------------------------------------------------------- /src-tauri/src/domain/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/file.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/network.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/network.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/process.rs: -------------------------------------------------------------------------------- 1 | pub struct Process {} 2 | -------------------------------------------------------------------------------- /src-tauri/src/domain/pubsub/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/pubsub/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/repository/all_game_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/repository/all_game_cache.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/repository/collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/repository/collection.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/repository/explored_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/repository/explored_cache.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/repository/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/repository/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/windows/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/windows/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/windows/process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/windows/process.rs -------------------------------------------------------------------------------- /src-tauri/src/domain/windows/proctail.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/domain/windows/proctail.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/explorerimpl/explorer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/explorerimpl/explorer.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/explorerimpl/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/explorerimpl/file.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/explorerimpl/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/explorerimpl/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/explorermock/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/explorermock/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/pubsubimpl/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod pubsub; 2 | -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/pubsubimpl/pubsub.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/pubsubimpl/pubsub.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/repositoryimpl/all_game_cahe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/repositoryimpl/all_game_cahe.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/repositoryimpl/collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/repositoryimpl/collection.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/repositoryimpl/driver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/repositoryimpl/driver.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/repositoryimpl/explored_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/repositoryimpl/explored_cache.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/repositoryimpl/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/repositoryimpl/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/repositoryimpl/models/all_game_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/repositoryimpl/models/all_game_cache.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/repositoryimpl/models/collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/repositoryimpl/models/collection.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/repositoryimpl/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/repositoryimpl/models/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/repositoryimpl/repository.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/repositoryimpl/repository.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/repositoryimpl/tests/all_game_cache_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/repositoryimpl/tests/all_game_cache_test.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/repositoryimpl/tests/collection_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/repositoryimpl/tests/collection_test.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/repositoryimpl/tests/explored_cache_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/repositoryimpl/tests/explored_cache_test.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/repositoryimpl/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/repositoryimpl/tests/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/repositorymock/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/repositorymock/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/util.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/windowsimpl/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/windowsimpl/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/windowsimpl/process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/windowsimpl/process.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/windowsimpl/proctail.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/windowsimpl/proctail.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/windowsimpl/proctail_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/windowsimpl/proctail_manager.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/windowsimpl/proctail_manager_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/windowsimpl/proctail_manager_test.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/windowsimpl/proctail_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/windowsimpl/proctail_test.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/windowsimpl/screenshot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/windowsimpl/screenshot/README.md -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/windowsimpl/screenshot/capture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/windowsimpl/screenshot/capture.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/windowsimpl/screenshot/d3d.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/windowsimpl/screenshot/d3d.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/windowsimpl/screenshot/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/windowsimpl/screenshot/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/windowsimpl/screenshot/take.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/windowsimpl/screenshot/take.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/windowsimpl/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/windowsimpl/windows.rs -------------------------------------------------------------------------------- /src-tauri/src/infrastructure/windowsmock/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/infrastructure/windowsmock/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/interface/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/interface/command.rs -------------------------------------------------------------------------------- /src-tauri/src/interface/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/interface/error.rs -------------------------------------------------------------------------------- /src-tauri/src/interface/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/interface/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/interface/models/all_game_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/interface/models/all_game_cache.rs -------------------------------------------------------------------------------- /src-tauri/src/interface/models/collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/interface/models/collection.rs -------------------------------------------------------------------------------- /src-tauri/src/interface/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/interface/models/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/interface/module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/interface/module.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/src/migrations/V1__init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/migrations/V1__init.sql -------------------------------------------------------------------------------- /src-tauri/src/migrations/V2__thumbnail_size.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/migrations/V2__thumbnail_size.sql -------------------------------------------------------------------------------- /src-tauri/src/migrations/V3__refactor_collection_elements.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/migrations/V3__refactor_collection_elements.sql -------------------------------------------------------------------------------- /src-tauri/src/migrations/V4__migrate_collection_elements_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/migrations/V4__migrate_collection_elements_data.sql -------------------------------------------------------------------------------- /src-tauri/src/migrations/V5__cleanup_collection_elements.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/migrations/V5__cleanup_collection_elements.sql -------------------------------------------------------------------------------- /src-tauri/src/usecase/all_game_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/usecase/all_game_cache.rs -------------------------------------------------------------------------------- /src-tauri/src/usecase/all_game_cache_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/usecase/all_game_cache_test.rs -------------------------------------------------------------------------------- /src-tauri/src/usecase/collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/usecase/collection.rs -------------------------------------------------------------------------------- /src-tauri/src/usecase/collection_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/usecase/collection_test.rs -------------------------------------------------------------------------------- /src-tauri/src/usecase/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/usecase/error.rs -------------------------------------------------------------------------------- /src-tauri/src/usecase/explored_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/usecase/explored_cache.rs -------------------------------------------------------------------------------- /src-tauri/src/usecase/explored_cache_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/usecase/explored_cache_test.rs -------------------------------------------------------------------------------- /src-tauri/src/usecase/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/usecase/file.rs -------------------------------------------------------------------------------- /src-tauri/src/usecase/file_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/usecase/file_test.rs -------------------------------------------------------------------------------- /src-tauri/src/usecase/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/usecase/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/usecase/models/collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/usecase/models/collection.rs -------------------------------------------------------------------------------- /src-tauri/src/usecase/models/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod collection; 2 | -------------------------------------------------------------------------------- /src-tauri/src/usecase/process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/src/usecase/process.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/components/Home/ImportDropFiles.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Home/ImportDropFiles.svelte -------------------------------------------------------------------------------- /src/components/Home/ZappingGameItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Home/ZappingGameItem.svelte -------------------------------------------------------------------------------- /src/components/Home/fileDrop.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Home/fileDrop.svelte.ts -------------------------------------------------------------------------------- /src/components/Sidebar/CollectionElement.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/CollectionElement.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/CollectionElements.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/CollectionElements.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/Header.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/ImportAutomatically.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/ImportAutomatically.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/ImportManually.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/ImportManually.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/ImportPopover.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/ImportPopover.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/MinimalSidebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/MinimalSidebar.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/Search.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/Search.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/SearchAttribute.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/SearchAttribute.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/SearchAttrributeControl.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/SearchAttrributeControl.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/SearchInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/SearchInput.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/Sidebar.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/SortPopover.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/SortPopover.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/SubHeader.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/SubHeader.svelte -------------------------------------------------------------------------------- /src/components/Sidebar/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/search.ts -------------------------------------------------------------------------------- /src/components/Sidebar/searchAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/searchAttributes.ts -------------------------------------------------------------------------------- /src/components/Sidebar/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/sort.ts -------------------------------------------------------------------------------- /src/components/Sidebar/useAutoImport.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/useAutoImport.svelte.ts -------------------------------------------------------------------------------- /src/components/Sidebar/useImportPaths.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/useImportPaths.svelte.ts -------------------------------------------------------------------------------- /src/components/Sidebar/useImportProgress.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Sidebar/useImportProgress.svelte.ts -------------------------------------------------------------------------------- /src/components/Tab/ATab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Tab/ATab.svelte -------------------------------------------------------------------------------- /src/components/Tab/ATabList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Tab/ATabList.svelte -------------------------------------------------------------------------------- /src/components/UI/ADisclosure.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/ADisclosure.svelte -------------------------------------------------------------------------------- /src/components/UI/APopover.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/APopover.svelte -------------------------------------------------------------------------------- /src/components/UI/Button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/Button.svelte -------------------------------------------------------------------------------- /src/components/UI/ButtonBase.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/ButtonBase.svelte -------------------------------------------------------------------------------- /src/components/UI/ButtonCancel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/ButtonCancel.svelte -------------------------------------------------------------------------------- /src/components/UI/ButtonIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/ButtonIcon.svelte -------------------------------------------------------------------------------- /src/components/UI/Checkbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/Checkbox.svelte -------------------------------------------------------------------------------- /src/components/UI/Input.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/Input.svelte -------------------------------------------------------------------------------- /src/components/UI/InputPath.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/InputPath.svelte -------------------------------------------------------------------------------- /src/components/UI/LinkButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/LinkButton.svelte -------------------------------------------------------------------------------- /src/components/UI/LinkText.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/LinkText.svelte -------------------------------------------------------------------------------- /src/components/UI/Modal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/Modal.svelte -------------------------------------------------------------------------------- /src/components/UI/ModalBase.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/ModalBase.svelte -------------------------------------------------------------------------------- /src/components/UI/OptionButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/OptionButton.svelte -------------------------------------------------------------------------------- /src/components/UI/QRCodeCanvas.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/QRCodeCanvas.svelte -------------------------------------------------------------------------------- /src/components/UI/ScrollableHorizontal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/ScrollableHorizontal.svelte -------------------------------------------------------------------------------- /src/components/UI/Table.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/Table.svelte -------------------------------------------------------------------------------- /src/components/UI/Titlebar/ControlButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/Titlebar/ControlButton.svelte -------------------------------------------------------------------------------- /src/components/UI/Titlebar/Icons/Close.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/Titlebar/Icons/Close.svelte -------------------------------------------------------------------------------- /src/components/UI/Titlebar/Icons/Maximize.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/Titlebar/Icons/Maximize.svelte -------------------------------------------------------------------------------- /src/components/UI/Titlebar/Icons/MaximizeRestore.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/Titlebar/Icons/MaximizeRestore.svelte -------------------------------------------------------------------------------- /src/components/UI/Titlebar/Icons/Minimize.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/Titlebar/Icons/Minimize.svelte -------------------------------------------------------------------------------- /src/components/UI/Titlebar/Titlebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/Titlebar/Titlebar.svelte -------------------------------------------------------------------------------- /src/components/UI/Titlebar/window.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/Titlebar/window.svelte.ts -------------------------------------------------------------------------------- /src/components/UI/VirtualScroller.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/VirtualScroller.svelte -------------------------------------------------------------------------------- /src/components/UI/VirtualScrollerMasonry.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/VirtualScrollerMasonry.svelte -------------------------------------------------------------------------------- /src/components/UI/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/button.ts -------------------------------------------------------------------------------- /src/components/UI/portal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/portal.ts -------------------------------------------------------------------------------- /src/components/UI/virtualScroller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/virtualScroller.ts -------------------------------------------------------------------------------- /src/components/UI/virtualScrollerMasonry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/UI/virtualScrollerMasonry.ts -------------------------------------------------------------------------------- /src/components/Work/Actions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/Actions.svelte -------------------------------------------------------------------------------- /src/components/Work/DeleteElement.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/DeleteElement.svelte -------------------------------------------------------------------------------- /src/components/Work/Detail.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/Detail.svelte -------------------------------------------------------------------------------- /src/components/Work/DetailRow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/DetailRow.svelte -------------------------------------------------------------------------------- /src/components/Work/LinkToSidebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/LinkToSidebar.svelte -------------------------------------------------------------------------------- /src/components/Work/OtherInfomationSection.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/OtherInfomationSection.svelte -------------------------------------------------------------------------------- /src/components/Work/OtherInformation.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/OtherInformation.svelte -------------------------------------------------------------------------------- /src/components/Work/PlayButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/PlayButton.svelte -------------------------------------------------------------------------------- /src/components/Work/PlayPopover.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/PlayPopover.svelte -------------------------------------------------------------------------------- /src/components/Work/QRCode.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/QRCode.svelte -------------------------------------------------------------------------------- /src/components/Work/SettingPopover.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/SettingPopover.svelte -------------------------------------------------------------------------------- /src/components/Work/Work.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/Work.svelte -------------------------------------------------------------------------------- /src/components/Work/WorkImage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/WorkImage.svelte -------------------------------------------------------------------------------- /src/components/Work/WorkLayout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/WorkLayout.svelte -------------------------------------------------------------------------------- /src/components/Work/WorkMain.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/components/Work/WorkMain.svelte -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/layouts/Layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/layouts/Layout.svelte -------------------------------------------------------------------------------- /src/lib/chunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/chunk.ts -------------------------------------------------------------------------------- /src/lib/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/command.ts -------------------------------------------------------------------------------- /src/lib/event/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/event/README.md -------------------------------------------------------------------------------- /src/lib/event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/event/index.ts -------------------------------------------------------------------------------- /src/lib/event/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/event/types.ts -------------------------------------------------------------------------------- /src/lib/event/useEvent.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/event/useEvent.svelte.ts -------------------------------------------------------------------------------- /src/lib/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/filter.ts -------------------------------------------------------------------------------- /src/lib/importManually.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/importManually.ts -------------------------------------------------------------------------------- /src/lib/registerCollectionElementDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/registerCollectionElementDetails.ts -------------------------------------------------------------------------------- /src/lib/scrape/scrapeAllGame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/scrape/scrapeAllGame.ts -------------------------------------------------------------------------------- /src/lib/scrape/scrapeSeiya.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/scrape/scrapeSeiya.ts -------------------------------------------------------------------------------- /src/lib/scrape/scrapeSql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/scrape/scrapeSql.ts -------------------------------------------------------------------------------- /src/lib/scrape/scrapeWork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/scrape/scrapeWork.ts -------------------------------------------------------------------------------- /src/lib/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/toast.ts -------------------------------------------------------------------------------- /src/lib/trieFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/trieFilter.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/lib/types/proctail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/types/proctail.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/router/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/router/route.ts -------------------------------------------------------------------------------- /src/store/memo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/store/memo.ts -------------------------------------------------------------------------------- /src/store/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/store/query.ts -------------------------------------------------------------------------------- /src/store/seiya.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/store/seiya.ts -------------------------------------------------------------------------------- /src/store/showSidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/store/showSidebar.ts -------------------------------------------------------------------------------- /src/store/sidebarCollectionElements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/store/sidebarCollectionElements.ts -------------------------------------------------------------------------------- /src/store/skyway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/store/skyway.ts -------------------------------------------------------------------------------- /src/store/startProcessMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/store/startProcessMap.ts -------------------------------------------------------------------------------- /src/store/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/store/tabs.ts -------------------------------------------------------------------------------- /src/store/works.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/store/works.ts -------------------------------------------------------------------------------- /src/toast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/toast.scss -------------------------------------------------------------------------------- /src/views/Debug/ProcTail.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/views/Debug/ProcTail.svelte -------------------------------------------------------------------------------- /src/views/Home.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/views/Home.svelte -------------------------------------------------------------------------------- /src/views/Memo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/views/Memo.svelte -------------------------------------------------------------------------------- /src/views/Settings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/views/Settings.svelte -------------------------------------------------------------------------------- /src/views/Work.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/views/Work.svelte -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /unocss.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/unocss.config.ts -------------------------------------------------------------------------------- /update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/update.ps1 -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryoha000/launcherg/HEAD/vite.config.ts --------------------------------------------------------------------------------