├── .editorconfig ├── .env.example ├── .erb ├── configs │ ├── .eslintrc │ ├── webpack.config.base.ts │ ├── webpack.config.eslint.ts │ ├── webpack.config.main.prod.ts │ ├── webpack.config.migrations.prod.ts │ ├── webpack.config.preload.dev.ts │ ├── webpack.config.renderer.dev.dll.ts │ ├── webpack.config.renderer.dev.ts │ ├── webpack.config.renderer.prod.ts │ └── webpack.paths.ts ├── mocks │ └── fileMock.js ├── scripts │ ├── .eslintrc │ ├── check-build-exists.ts │ ├── check-native-dep.js │ ├── check-node-env.js │ ├── check-port-in-use.js │ ├── clean.js │ ├── delete-source-maps.js │ ├── electron-rebuild.js │ ├── fix-esm.js │ ├── installer.nsh │ ├── link-modules.ts │ ├── load-macos-certs-ci.sh │ ├── notarize.js │ ├── start-main.js │ └── windows-sign.js └── tsconfig.json ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ ├── release.yml │ └── translation-progress.yml ├── .gitignore ├── .npmrc ├── .storybook ├── main.ts ├── manager.ts └── preview.tsx ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── README.md ├── assets ├── assets.d.ts ├── entitlements.mac.plist ├── file.icns ├── file.ico ├── gc-driver-install.exe ├── icon.icns ├── icon.ico ├── icon.png ├── icons │ ├── 128x128.png │ ├── 16x16.png │ ├── 24x24.png │ ├── 256x256.png │ ├── 32x32.png │ ├── 48x48.png │ ├── 512x512.png │ ├── 64x64.png │ └── 96x96.png ├── include │ └── file.png └── installerSidebar.bmp ├── babel.config.js ├── electron-builder.json ├── locales ├── es.po ├── ja.po └── messages.pot ├── package.json ├── release └── app │ ├── package-lock.json │ └── package.json ├── src ├── broadcast │ ├── api.ts │ ├── broadcast.worker.interface.ts │ ├── broadcast.worker.ts │ ├── broadcast_manager.ts │ ├── ipc.ts │ ├── setup.ts │ ├── spectate.worker.interface.ts │ ├── spectate.worker.ts │ ├── spectate_manager.ts │ └── types.ts ├── common │ ├── chunk.ts │ ├── constants.ts │ ├── delay.ts │ ├── exists.ts │ ├── partition.ts │ ├── preconditions.ts │ └── types.ts ├── console │ ├── api.ts │ ├── auto_switcher.ts │ ├── connection_scanner.ts │ ├── console_relay.ts │ ├── ipc.ts │ ├── mirror.worker.interface.ts │ ├── mirror.worker.ts │ ├── mirror_manager.ts │ ├── setup.ts │ └── types.ts ├── database │ ├── README.md │ ├── create_database.ts │ ├── migrate_to_latest.ts │ ├── migrations │ │ └── 20231030T2041_initial.ts │ ├── repositories │ │ ├── file_repository.ts │ │ ├── game_repository.ts │ │ └── player_repository.ts │ ├── schema.ts │ └── tests │ │ ├── database.spec.ts │ │ ├── mocks.ts │ │ └── test_db.ts ├── declarations.d.ts ├── dolphin │ ├── api.ts │ ├── config │ │ ├── config.ts │ │ ├── gecko_code.ts │ │ └── ini_file.ts │ ├── install │ │ ├── download.ts │ │ ├── extract_dmg.ts │ │ ├── fetch_latest_version.ts │ │ ├── ishiiruka_installation.ts │ │ ├── linux.ts │ │ ├── macos.ts │ │ ├── mainline_installation.ts │ │ └── windows.ts │ ├── instance.ts │ ├── ipc.ts │ ├── manager.ts │ ├── playkey.ts │ ├── setup.ts │ ├── types.ts │ └── util.ts ├── global.d.ts ├── main │ ├── api.ts │ ├── bootstrap.ts │ ├── fetch_cross_origin │ │ ├── bluesky.ts │ │ ├── github.ts │ │ └── medium.ts │ ├── flags │ │ ├── flag_builder.spec.ts │ │ ├── flag_builder.ts │ │ └── flags.ts │ ├── install_modules.ts │ ├── ipc.ts │ ├── main.ts │ ├── menu.ts │ ├── network_diagnostics.ts │ ├── news_feed.ts │ ├── preload.ts │ ├── setup.ts │ ├── util.ts │ └── verify_iso.ts ├── remote │ ├── api.ts │ ├── ipc.ts │ ├── setup.ts │ ├── spectate_remote_server.ts │ └── types.ts ├── renderer │ ├── app │ │ ├── app.tsx │ │ ├── create.messages.ts │ │ ├── create.tsx │ │ └── header │ │ │ ├── account_switcher │ │ │ ├── account_switcher.messages.ts │ │ │ ├── account_switcher.tsx │ │ │ └── add_account_dialog.tsx │ │ │ ├── activate_online_dialog.tsx │ │ │ ├── header.messages.ts │ │ │ ├── header.tsx │ │ │ ├── login_dialog.tsx │ │ │ ├── main_menu.tsx │ │ │ ├── name_change_dialog.tsx │ │ │ ├── play_button │ │ │ ├── play_button.messages.ts │ │ │ ├── play_button.stories.tsx │ │ │ ├── play_button.tsx │ │ │ └── play_icon.tsx │ │ │ ├── start_game_offline_dialog.tsx │ │ │ ├── user_info │ │ │ ├── user_info.stories.tsx │ │ │ └── user_info.tsx │ │ │ └── user_menu │ │ │ ├── user_menu.messages.ts │ │ │ ├── user_menu.tsx │ │ │ ├── user_menu_items.stories.tsx │ │ │ └── user_menu_items.tsx │ ├── components │ │ ├── activate_online_form │ │ │ ├── activate_online_form.messages.ts │ │ │ └── activate_online_form.tsx │ │ ├── ad_dialog.tsx │ │ ├── auth_guard.tsx │ │ ├── bouncing_slippi_logo │ │ │ ├── bouncing_slippi_logo.stories.tsx │ │ │ └── bouncing_slippi_logo.tsx │ │ ├── build_info │ │ │ ├── build_info.messages.ts │ │ │ └── build_info.tsx │ │ ├── confirmation_modal │ │ │ ├── confirmation_modal.messages.ts │ │ │ └── confirmation_modal.tsx │ │ ├── dev_guard.tsx │ │ ├── draggable_file.tsx │ │ ├── dual_pane.tsx │ │ ├── error_boundary.tsx │ │ ├── external_link.tsx │ │ ├── footer │ │ │ ├── footer.messages.ts │ │ │ ├── footer.stories.tsx │ │ │ └── footer.tsx │ │ ├── form │ │ │ ├── button.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── dropdown.tsx │ │ │ ├── index.ts │ │ │ └── toggle.tsx │ │ ├── icon_menu.tsx │ │ ├── info_block.tsx │ │ ├── labelled_text.tsx │ │ ├── loading_screen │ │ │ ├── loading_screen.messages.ts │ │ │ └── loading_screen.tsx │ │ ├── login_form │ │ │ ├── login_form.messages.ts │ │ │ └── login_form.tsx │ │ ├── login_notice │ │ │ ├── login_notice.messages.ts │ │ │ └── login_notice.tsx │ │ ├── markdown_content │ │ │ ├── code_block.tsx │ │ │ └── markdown_content.tsx │ │ ├── message.tsx │ │ ├── multi_path_input │ │ │ ├── multi_path_input.messages.ts │ │ │ └── multi_path_input.tsx │ │ ├── path_input │ │ │ ├── path_input.messages.ts │ │ │ └── path_input.tsx │ │ ├── persistent_notification │ │ │ ├── persistent_notification.messages.ts │ │ │ └── persistent_notification.tsx │ │ ├── toast_provider.tsx │ │ └── user_icon.tsx │ ├── index.ejs │ ├── index.tsx │ ├── initialize_app.messages.ts │ ├── initialize_app.ts │ ├── lib │ │ ├── console_connection.ts │ │ ├── display_picture.ts │ │ ├── dolphin │ │ │ ├── dolphin.messages.ts │ │ │ ├── handle_dolphin_exit_code.messages.ts │ │ │ ├── handle_dolphin_exit_code.ts │ │ │ ├── use_dolphin_actions.ts │ │ │ └── use_dolphin_store.ts │ │ ├── hooks │ │ │ ├── use_account.ts │ │ │ ├── use_advanced_user.ts │ │ │ ├── use_app_store.ts │ │ │ ├── use_app_update.ts │ │ │ ├── use_async.ts │ │ │ ├── use_broadcast.ts │ │ │ ├── use_broadcast_list.ts │ │ │ ├── use_console.ts │ │ │ ├── use_console_discovery.ts │ │ │ ├── use_file_drag.ts │ │ │ ├── use_iso_verification.ts │ │ │ ├── use_login_modal.ts │ │ │ ├── use_mousetrap.ts │ │ │ ├── use_page_request_listeners.ts │ │ │ ├── use_replay_browser_list.ts │ │ │ ├── use_replay_filter.ts │ │ │ ├── use_replays.ts │ │ │ ├── use_settings.ts │ │ │ ├── use_settings_modal.ts │ │ │ ├── use_shortcuts.ts │ │ │ ├── use_spectate_remote_server.ts │ │ │ └── use_toasts.ts │ │ ├── player_colors.ts │ │ ├── replay_file_sort.ts │ │ ├── time.ts │ │ ├── utils.ts │ │ └── validate │ │ │ ├── validate.messages.ts │ │ │ ├── validate.spec.ts │ │ │ └── validate.ts │ ├── listeners │ │ ├── install_app_listeners.ts │ │ ├── install_broadcast_listeners.ts │ │ ├── install_dolphin_listeners.ts │ │ ├── install_settings_change_listeners.ts │ │ └── listeners.messages.ts │ ├── pages │ │ ├── console_mirror │ │ │ ├── add_connection_dialog │ │ │ │ ├── add_connection_dialog.messages.ts │ │ │ │ ├── add_connection_dialog.tsx │ │ │ │ ├── add_connection_form.messages.ts │ │ │ │ └── add_connection_form.tsx │ │ │ ├── console_mirror.messages.ts │ │ │ ├── console_mirror.tsx │ │ │ ├── create.tsx │ │ │ ├── load.tsx │ │ │ ├── new_connection_list │ │ │ │ ├── new_connection_item.tsx │ │ │ │ ├── new_connection_list.messages.ts │ │ │ │ └── new_connection_list.tsx │ │ │ ├── obs_websocket_notice.tsx │ │ │ └── saved_connections_list │ │ │ │ ├── saved_connection_item.messages.ts │ │ │ │ ├── saved_connection_item.tsx │ │ │ │ ├── saved_connections_list.messages.ts │ │ │ │ └── saved_connections_list.tsx │ │ ├── home │ │ │ ├── home_page.tsx │ │ │ ├── news_feed │ │ │ │ ├── ad_banner.tsx │ │ │ │ ├── news_article │ │ │ │ │ ├── bluesky_post.tsx │ │ │ │ │ ├── github_post.tsx │ │ │ │ │ ├── medium_post.tsx │ │ │ │ │ ├── news_article.messages.ts │ │ │ │ │ ├── news_article.tsx │ │ │ │ │ └── stories │ │ │ │ │ │ ├── fakes.ts │ │ │ │ │ │ └── news_article.stories.tsx │ │ │ │ ├── news_feed.messages.ts │ │ │ │ └── news_feed.tsx │ │ │ └── sidebar │ │ │ │ ├── ranked_status.messages.ts │ │ │ │ ├── ranked_status.tsx │ │ │ │ ├── sidebar.tsx │ │ │ │ ├── slippi_store.tsx │ │ │ │ ├── tournament_links.messages.ts │ │ │ │ └── tournament_links.tsx │ │ ├── loading │ │ │ ├── loading_page.messages.ts │ │ │ └── loading_page.tsx │ │ ├── not_found │ │ │ ├── not_found_page.messages.ts │ │ │ └── not_found_page.tsx │ │ ├── quick_start │ │ │ ├── create.tsx │ │ │ ├── load.tsx │ │ │ ├── quick_start.messages.ts │ │ │ ├── quick_start.tsx │ │ │ ├── step_container.tsx │ │ │ ├── stepper_dots │ │ │ │ ├── stepper_dots.messages.ts │ │ │ │ └── stepper_dots.tsx │ │ │ ├── steps │ │ │ │ ├── accept_rules_step │ │ │ │ │ ├── accept_rules_step.messages.ts │ │ │ │ │ └── accept_rules_step.tsx │ │ │ │ ├── activate_online_step │ │ │ │ │ ├── activate_online_step.messages.ts │ │ │ │ │ └── activate_online_step.tsx │ │ │ │ ├── iso_selection_step │ │ │ │ │ ├── iso_selection_step.messages.ts │ │ │ │ │ └── iso_selection_step.tsx │ │ │ │ ├── login_step.tsx │ │ │ │ ├── setup_complete_step │ │ │ │ │ ├── setup_complete_step.messages.ts │ │ │ │ │ └── setup_complete_step.tsx │ │ │ │ └── verify_email_step │ │ │ │ │ ├── verify_email_step.messages.ts │ │ │ │ │ └── verify_email_step.tsx │ │ │ └── use_quick_start.ts │ │ ├── replays │ │ │ ├── create.tsx │ │ │ ├── load.tsx │ │ │ ├── replay_browser │ │ │ │ ├── file_list │ │ │ │ │ ├── file_list.messages.ts │ │ │ │ │ └── file_list.tsx │ │ │ │ ├── file_selection_toolbar │ │ │ │ │ ├── file_selection_toolbar.messages.ts │ │ │ │ │ └── file_selection_toolbar.tsx │ │ │ │ ├── filter_toolbar │ │ │ │ │ ├── filter_toolbar.messages.ts │ │ │ │ │ └── filter_toolbar.tsx │ │ │ │ ├── folder_tree_node.tsx │ │ │ │ ├── replay_browser.messages.ts │ │ │ │ ├── replay_browser.tsx │ │ │ │ └── replay_file │ │ │ │ │ ├── replay_file.container.tsx │ │ │ │ │ ├── replay_file.messages.ts │ │ │ │ │ ├── replay_file.tsx │ │ │ │ │ ├── stories │ │ │ │ │ ├── replay_file.stories.tsx │ │ │ │ │ └── stage.png │ │ │ │ │ └── team_elements │ │ │ │ │ ├── player_badge │ │ │ │ │ ├── player_badge.stories.tsx │ │ │ │ │ └── player_badge.tsx │ │ │ │ │ ├── team_elements.stories.tsx │ │ │ │ │ └── team_elements.tsx │ │ │ ├── replay_file_stats │ │ │ │ ├── game_profile.tsx │ │ │ │ ├── game_profile_header │ │ │ │ │ ├── game_profile_header.messages.ts │ │ │ │ │ └── game_profile_header.tsx │ │ │ │ ├── home_run_profile.tsx │ │ │ │ ├── kill_table.tsx │ │ │ │ ├── overall_table.tsx │ │ │ │ ├── player_info.tsx │ │ │ │ ├── punish_table.tsx │ │ │ │ ├── replay_file_stats.messages.ts │ │ │ │ ├── replay_file_stats.tsx │ │ │ │ ├── table_styles.tsx │ │ │ │ └── target_test_profile.tsx │ │ │ └── replays_page.tsx │ │ ├── settings │ │ │ ├── advanced_app_settings │ │ │ │ ├── advanced_app_settings.messages.ts │ │ │ │ └── advanced_app_settings.tsx │ │ │ ├── appearance_settings │ │ │ │ ├── appearance_settings.tsx │ │ │ │ └── language_selector │ │ │ │ │ ├── language_selector.messages.ts │ │ │ │ │ └── language_selector.tsx │ │ │ ├── chat_settings │ │ │ │ ├── chat_messages_footer.tsx │ │ │ │ ├── chat_messages_input.tsx │ │ │ │ ├── chat_settings.messages.ts │ │ │ │ ├── chat_settings.tsx │ │ │ │ ├── default_chat_messages.ts │ │ │ │ ├── dpad_direction.tsx │ │ │ │ └── use_chat_messages.ts │ │ │ ├── create.messages.ts │ │ │ ├── create.tsx │ │ │ ├── dolphin_settings │ │ │ │ ├── dolphin_settings.messages.ts │ │ │ │ ├── dolphin_settings.tsx │ │ │ │ ├── gecko_codes │ │ │ │ │ ├── add_codes │ │ │ │ │ │ ├── add_codes.container.tsx │ │ │ │ │ │ ├── add_codes.messages.ts │ │ │ │ │ │ ├── add_codes.stories.tsx │ │ │ │ │ │ └── add_codes.tsx │ │ │ │ │ ├── gecko_codes.messages.ts │ │ │ │ │ ├── gecko_codes.tsx │ │ │ │ │ ├── manage_codes │ │ │ │ │ │ ├── manage_codes.container.tsx │ │ │ │ │ │ ├── manage_codes.messages.ts │ │ │ │ │ │ ├── manage_codes.stories.tsx │ │ │ │ │ │ └── manage_codes.tsx │ │ │ │ │ └── tabbed_dialog.tsx │ │ │ │ ├── netplay_dolphin_settings.tsx │ │ │ │ └── playback_dolphin_settings.tsx │ │ │ ├── game_settings │ │ │ │ ├── game_music_toggle │ │ │ │ │ ├── game_music_toggle.messages.ts │ │ │ │ │ └── game_music_toggle.tsx │ │ │ │ ├── game_settings.messages.ts │ │ │ │ └── game_settings.tsx │ │ │ ├── help_page │ │ │ │ ├── help_page.messages.ts │ │ │ │ ├── help_page.tsx │ │ │ │ └── support_box │ │ │ │ │ ├── network_diagnostics_button │ │ │ │ │ ├── network_diagnostic_result │ │ │ │ │ │ ├── cgnat_command_section.tsx │ │ │ │ │ │ ├── nat_type_section.tsx │ │ │ │ │ │ ├── network_diagnostics_result.messages.ts │ │ │ │ │ │ └── network_diagnostics_result.tsx │ │ │ │ │ ├── network_diagnostics_button.messages.ts │ │ │ │ │ └── network_diagnostics_button.tsx │ │ │ │ │ ├── support_box.messages.ts │ │ │ │ │ └── support_box.tsx │ │ │ ├── load.tsx │ │ │ ├── replay_settings │ │ │ │ ├── replay_settings.messages.ts │ │ │ │ └── replay_settings.tsx │ │ │ ├── setting_item_section.tsx │ │ │ ├── settings_page.messages.ts │ │ │ ├── settings_page.tsx │ │ │ ├── spectate_settings │ │ │ │ ├── spectate_port_form │ │ │ │ │ ├── spectate_port_form.messages.ts │ │ │ │ │ └── spectate_port_form.tsx │ │ │ │ ├── spectate_settings.messages.ts │ │ │ │ └── spectate_settings.tsx │ │ │ └── types.ts │ │ └── spectate │ │ │ ├── create.tsx │ │ │ ├── footer │ │ │ ├── footer.messages.ts │ │ │ └── footer.tsx │ │ │ ├── load.tsx │ │ │ ├── share_gameplay_block │ │ │ ├── broadcast_panel.messages.ts │ │ │ ├── broadcast_panel.tsx │ │ │ ├── share_gameplay_block.messages.ts │ │ │ ├── share_gameplay_block.tsx │ │ │ ├── start_broadcast_dialog.messages.ts │ │ │ └── start_broadcast_dialog.tsx │ │ │ ├── spectate_item.tsx │ │ │ ├── spectate_page.messages.ts │ │ │ ├── spectate_page.tsx │ │ │ ├── spectate_remote_control_block │ │ │ ├── spectate_remote_control_block.container.tsx │ │ │ ├── spectate_remote_control_block.messages.ts │ │ │ ├── spectate_remote_control_block.tsx │ │ │ └── stories │ │ │ │ └── spectate_remote_control_block.stories.tsx │ │ │ └── spectator_id_block │ │ │ ├── spectator_id_block.messages.ts │ │ │ └── spectator_id_block.tsx │ ├── services │ │ ├── auth │ │ │ ├── auth.service.mock.ts │ │ │ ├── auth.service.ts │ │ │ ├── multi_account.service.ts │ │ │ └── types.ts │ │ ├── dolphin │ │ │ ├── dolphin.service.mock.ts │ │ │ └── dolphin.service.ts │ │ ├── i18n │ │ │ ├── i18n.service.ts │ │ │ ├── types.ts │ │ │ └── util.ts │ │ ├── index.tsx │ │ ├── install.ts │ │ ├── notification │ │ │ ├── notification.service.ts │ │ │ └── types.ts │ │ ├── replay │ │ │ ├── mocks.ts │ │ │ ├── replay.service.mock.ts │ │ │ └── replay.service.ts │ │ ├── slippi │ │ │ ├── graphql_endpoints.ts │ │ │ ├── mock_slippi_data_utils.ts │ │ │ ├── slippi.service.mock.ts │ │ │ ├── slippi.service.ts │ │ │ └── types.ts │ │ ├── types.ts │ │ └── utils.ts │ └── styles │ │ ├── _fonts.scss │ │ ├── _scrollbar.scss │ │ ├── colors.ts │ │ ├── emotion.d.ts │ │ ├── has_border.ts │ │ ├── images │ │ ├── ads │ │ │ ├── spif-shop-banner.png │ │ │ └── spif-slippi-shop-full-size.png │ │ ├── characters │ │ │ ├── 0 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ ├── 4 │ │ │ │ │ └── stock.png │ │ │ │ └── 5 │ │ │ │ │ └── stock.png │ │ │ ├── 1 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ └── 4 │ │ │ │ │ └── stock.png │ │ │ ├── 2 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ └── 3 │ │ │ │ │ └── stock.png │ │ │ ├── 3 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ └── 3 │ │ │ │ │ └── stock.png │ │ │ ├── 4 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ ├── 4 │ │ │ │ │ └── stock.png │ │ │ │ └── 5 │ │ │ │ │ └── stock.png │ │ │ ├── 5 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ └── 3 │ │ │ │ │ └── stock.png │ │ │ ├── 6 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ └── 4 │ │ │ │ │ └── stock.png │ │ │ ├── 7 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ └── 3 │ │ │ │ │ └── stock.png │ │ │ ├── 8 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ └── 4 │ │ │ │ │ └── stock.png │ │ │ ├── 9 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ └── 4 │ │ │ │ │ └── stock.png │ │ │ ├── 10 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ └── 3 │ │ │ │ │ └── stock.png │ │ │ ├── 11 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ └── 3 │ │ │ │ │ └── stock.png │ │ │ ├── 12 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ └── 4 │ │ │ │ │ └── stock.png │ │ │ ├── 13 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ └── 3 │ │ │ │ │ └── stock.png │ │ │ ├── 14 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ └── 3 │ │ │ │ │ └── stock.png │ │ │ ├── 15 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ └── 4 │ │ │ │ │ └── stock.png │ │ │ ├── 16 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ └── 4 │ │ │ │ │ └── stock.png │ │ │ ├── 17 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ ├── 4 │ │ │ │ │ └── stock.png │ │ │ │ └── 5 │ │ │ │ │ └── stock.png │ │ │ ├── 18 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ └── 4 │ │ │ │ │ └── stock.png │ │ │ ├── 19 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ └── 4 │ │ │ │ │ └── stock.png │ │ │ ├── 20 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ └── 3 │ │ │ │ │ └── stock.png │ │ │ ├── 21 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ └── 4 │ │ │ │ │ └── stock.png │ │ │ ├── 22 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ └── 4 │ │ │ │ │ └── stock.png │ │ │ ├── 23 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ └── 4 │ │ │ │ │ └── stock.png │ │ │ ├── 24 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ └── 3 │ │ │ │ │ └── stock.png │ │ │ ├── 25 │ │ │ │ ├── 0 │ │ │ │ │ └── stock.png │ │ │ │ ├── 1 │ │ │ │ │ └── stock.png │ │ │ │ ├── 2 │ │ │ │ │ └── stock.png │ │ │ │ ├── 3 │ │ │ │ │ └── stock.png │ │ │ │ └── 4 │ │ │ │ │ └── stock.png │ │ │ ├── 31 │ │ │ │ └── 0 │ │ │ │ │ └── stock.png │ │ │ └── 32 │ │ │ │ └── 0 │ │ │ │ └── stock.png │ │ ├── crown.png │ │ ├── discord.svg │ │ ├── dolphin.svg │ │ ├── dpad_dir.svg │ │ ├── ranked_day_active.svg │ │ ├── ranked_day_inactive.svg │ │ ├── shop-image.png │ │ ├── slippi_logo.svg │ │ ├── stages │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 22.png │ │ │ ├── 23.png │ │ │ ├── 24.png │ │ │ ├── 25.png │ │ │ ├── 27.png │ │ │ ├── 28.png │ │ │ ├── 29.png │ │ │ ├── 3.png │ │ │ ├── 30.png │ │ │ ├── 31.png │ │ │ ├── 32.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ ├── 84.png │ │ │ ├── 9.png │ │ │ └── targets.png │ │ ├── unknown.png │ │ └── wii_icon.svg │ │ ├── platform_title_bar_styles.ts │ │ ├── styles.scss │ │ ├── theme.ts │ │ ├── tokens.stylex.ts │ │ ├── with_font.ts │ │ └── with_slippi_background.ts ├── replays │ ├── api.ts │ ├── database_replay_provider │ │ ├── continuation.ts │ │ ├── database_replay_provider.ts │ │ ├── infer_start_time.ts │ │ ├── record_mapper.ts │ │ └── tests │ │ │ └── pagination.spec.ts │ ├── file_system_replay_provider │ │ ├── extract_player_names.ts │ │ ├── file_system_replay_provider.ts │ │ ├── load_file.ts │ │ ├── load_folder.ts │ │ ├── replays.worker.interface.ts │ │ └── replays.worker.ts │ ├── folder_tree_service.ts │ ├── ipc.ts │ ├── setup.ts │ └── types.ts ├── settings │ ├── api.ts │ ├── default_settings.ts │ ├── ipc.ts │ ├── settings_manager.ts │ ├── setup.ts │ └── types.ts └── utils │ ├── download.ts │ ├── file_exists.ts │ ├── ipc.ts │ ├── is_subdirectory.ts │ └── register_worker.ts ├── tsconfig.json └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.env.example -------------------------------------------------------------------------------- /.erb/configs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/configs/.eslintrc -------------------------------------------------------------------------------- /.erb/configs/webpack.config.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/configs/webpack.config.base.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.eslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/configs/webpack.config.eslint.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.main.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/configs/webpack.config.main.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.migrations.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/configs/webpack.config.migrations.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.preload.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/configs/webpack.config.preload.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.dll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/configs/webpack.config.renderer.dev.dll.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/configs/webpack.config.renderer.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/configs/webpack.config.renderer.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/configs/webpack.paths.ts -------------------------------------------------------------------------------- /.erb/mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | export default "test-file-stub"; 2 | -------------------------------------------------------------------------------- /.erb/scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/.eslintrc -------------------------------------------------------------------------------- /.erb/scripts/check-build-exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/check-build-exists.ts -------------------------------------------------------------------------------- /.erb/scripts/check-native-dep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/check-native-dep.js -------------------------------------------------------------------------------- /.erb/scripts/check-node-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/check-node-env.js -------------------------------------------------------------------------------- /.erb/scripts/check-port-in-use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/check-port-in-use.js -------------------------------------------------------------------------------- /.erb/scripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/clean.js -------------------------------------------------------------------------------- /.erb/scripts/delete-source-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/delete-source-maps.js -------------------------------------------------------------------------------- /.erb/scripts/electron-rebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/electron-rebuild.js -------------------------------------------------------------------------------- /.erb/scripts/fix-esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/fix-esm.js -------------------------------------------------------------------------------- /.erb/scripts/installer.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/installer.nsh -------------------------------------------------------------------------------- /.erb/scripts/link-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/link-modules.ts -------------------------------------------------------------------------------- /.erb/scripts/load-macos-certs-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/load-macos-certs-ci.sh -------------------------------------------------------------------------------- /.erb/scripts/notarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/notarize.js -------------------------------------------------------------------------------- /.erb/scripts/start-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/start-main.js -------------------------------------------------------------------------------- /.erb/scripts/windows-sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/scripts/windows-sign.js -------------------------------------------------------------------------------- /.erb/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.erb/tsconfig.json -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/translation-progress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.github/workflows/translation-progress.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | message="release: v%s" -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.storybook/manager.ts -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["dbaeumer.vscode-eslint"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/README.md -------------------------------------------------------------------------------- /assets/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/assets.d.ts -------------------------------------------------------------------------------- /assets/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/entitlements.mac.plist -------------------------------------------------------------------------------- /assets/file.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/file.icns -------------------------------------------------------------------------------- /assets/file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/file.ico -------------------------------------------------------------------------------- /assets/gc-driver-install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/gc-driver-install.exe -------------------------------------------------------------------------------- /assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/icon.icns -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/icons/128x128.png -------------------------------------------------------------------------------- /assets/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/icons/16x16.png -------------------------------------------------------------------------------- /assets/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/icons/24x24.png -------------------------------------------------------------------------------- /assets/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/icons/256x256.png -------------------------------------------------------------------------------- /assets/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/icons/32x32.png -------------------------------------------------------------------------------- /assets/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/icons/48x48.png -------------------------------------------------------------------------------- /assets/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/icons/512x512.png -------------------------------------------------------------------------------- /assets/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/icons/64x64.png -------------------------------------------------------------------------------- /assets/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/icons/96x96.png -------------------------------------------------------------------------------- /assets/include/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/include/file.png -------------------------------------------------------------------------------- /assets/installerSidebar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/assets/installerSidebar.bmp -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/babel.config.js -------------------------------------------------------------------------------- /electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/electron-builder.json -------------------------------------------------------------------------------- /locales/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/locales/es.po -------------------------------------------------------------------------------- /locales/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/locales/ja.po -------------------------------------------------------------------------------- /locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/locales/messages.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/package.json -------------------------------------------------------------------------------- /release/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/release/app/package-lock.json -------------------------------------------------------------------------------- /release/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/release/app/package.json -------------------------------------------------------------------------------- /src/broadcast/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/broadcast/api.ts -------------------------------------------------------------------------------- /src/broadcast/broadcast.worker.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/broadcast/broadcast.worker.interface.ts -------------------------------------------------------------------------------- /src/broadcast/broadcast.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/broadcast/broadcast.worker.ts -------------------------------------------------------------------------------- /src/broadcast/broadcast_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/broadcast/broadcast_manager.ts -------------------------------------------------------------------------------- /src/broadcast/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/broadcast/ipc.ts -------------------------------------------------------------------------------- /src/broadcast/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/broadcast/setup.ts -------------------------------------------------------------------------------- /src/broadcast/spectate.worker.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/broadcast/spectate.worker.interface.ts -------------------------------------------------------------------------------- /src/broadcast/spectate.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/broadcast/spectate.worker.ts -------------------------------------------------------------------------------- /src/broadcast/spectate_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/broadcast/spectate_manager.ts -------------------------------------------------------------------------------- /src/broadcast/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/broadcast/types.ts -------------------------------------------------------------------------------- /src/common/chunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/common/chunk.ts -------------------------------------------------------------------------------- /src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/common/constants.ts -------------------------------------------------------------------------------- /src/common/delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/common/delay.ts -------------------------------------------------------------------------------- /src/common/exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/common/exists.ts -------------------------------------------------------------------------------- /src/common/partition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/common/partition.ts -------------------------------------------------------------------------------- /src/common/preconditions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/common/preconditions.ts -------------------------------------------------------------------------------- /src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/common/types.ts -------------------------------------------------------------------------------- /src/console/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/console/api.ts -------------------------------------------------------------------------------- /src/console/auto_switcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/console/auto_switcher.ts -------------------------------------------------------------------------------- /src/console/connection_scanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/console/connection_scanner.ts -------------------------------------------------------------------------------- /src/console/console_relay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/console/console_relay.ts -------------------------------------------------------------------------------- /src/console/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/console/ipc.ts -------------------------------------------------------------------------------- /src/console/mirror.worker.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/console/mirror.worker.interface.ts -------------------------------------------------------------------------------- /src/console/mirror.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/console/mirror.worker.ts -------------------------------------------------------------------------------- /src/console/mirror_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/console/mirror_manager.ts -------------------------------------------------------------------------------- /src/console/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/console/setup.ts -------------------------------------------------------------------------------- /src/console/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/console/types.ts -------------------------------------------------------------------------------- /src/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/database/README.md -------------------------------------------------------------------------------- /src/database/create_database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/database/create_database.ts -------------------------------------------------------------------------------- /src/database/migrate_to_latest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/database/migrate_to_latest.ts -------------------------------------------------------------------------------- /src/database/migrations/20231030T2041_initial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/database/migrations/20231030T2041_initial.ts -------------------------------------------------------------------------------- /src/database/repositories/file_repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/database/repositories/file_repository.ts -------------------------------------------------------------------------------- /src/database/repositories/game_repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/database/repositories/game_repository.ts -------------------------------------------------------------------------------- /src/database/repositories/player_repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/database/repositories/player_repository.ts -------------------------------------------------------------------------------- /src/database/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/database/schema.ts -------------------------------------------------------------------------------- /src/database/tests/database.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/database/tests/database.spec.ts -------------------------------------------------------------------------------- /src/database/tests/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/database/tests/mocks.ts -------------------------------------------------------------------------------- /src/database/tests/test_db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/database/tests/test_db.ts -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/dolphin/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/api.ts -------------------------------------------------------------------------------- /src/dolphin/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/config/config.ts -------------------------------------------------------------------------------- /src/dolphin/config/gecko_code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/config/gecko_code.ts -------------------------------------------------------------------------------- /src/dolphin/config/ini_file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/config/ini_file.ts -------------------------------------------------------------------------------- /src/dolphin/install/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/install/download.ts -------------------------------------------------------------------------------- /src/dolphin/install/extract_dmg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/install/extract_dmg.ts -------------------------------------------------------------------------------- /src/dolphin/install/fetch_latest_version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/install/fetch_latest_version.ts -------------------------------------------------------------------------------- /src/dolphin/install/ishiiruka_installation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/install/ishiiruka_installation.ts -------------------------------------------------------------------------------- /src/dolphin/install/linux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/install/linux.ts -------------------------------------------------------------------------------- /src/dolphin/install/macos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/install/macos.ts -------------------------------------------------------------------------------- /src/dolphin/install/mainline_installation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/install/mainline_installation.ts -------------------------------------------------------------------------------- /src/dolphin/install/windows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/install/windows.ts -------------------------------------------------------------------------------- /src/dolphin/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/instance.ts -------------------------------------------------------------------------------- /src/dolphin/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/ipc.ts -------------------------------------------------------------------------------- /src/dolphin/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/manager.ts -------------------------------------------------------------------------------- /src/dolphin/playkey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/playkey.ts -------------------------------------------------------------------------------- /src/dolphin/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/setup.ts -------------------------------------------------------------------------------- /src/dolphin/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/types.ts -------------------------------------------------------------------------------- /src/dolphin/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/dolphin/util.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/main/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/api.ts -------------------------------------------------------------------------------- /src/main/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/bootstrap.ts -------------------------------------------------------------------------------- /src/main/fetch_cross_origin/bluesky.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/fetch_cross_origin/bluesky.ts -------------------------------------------------------------------------------- /src/main/fetch_cross_origin/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/fetch_cross_origin/github.ts -------------------------------------------------------------------------------- /src/main/fetch_cross_origin/medium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/fetch_cross_origin/medium.ts -------------------------------------------------------------------------------- /src/main/flags/flag_builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/flags/flag_builder.spec.ts -------------------------------------------------------------------------------- /src/main/flags/flag_builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/flags/flag_builder.ts -------------------------------------------------------------------------------- /src/main/flags/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/flags/flags.ts -------------------------------------------------------------------------------- /src/main/install_modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/install_modules.ts -------------------------------------------------------------------------------- /src/main/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/ipc.ts -------------------------------------------------------------------------------- /src/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/main.ts -------------------------------------------------------------------------------- /src/main/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/menu.ts -------------------------------------------------------------------------------- /src/main/network_diagnostics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/network_diagnostics.ts -------------------------------------------------------------------------------- /src/main/news_feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/news_feed.ts -------------------------------------------------------------------------------- /src/main/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/preload.ts -------------------------------------------------------------------------------- /src/main/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/setup.ts -------------------------------------------------------------------------------- /src/main/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/util.ts -------------------------------------------------------------------------------- /src/main/verify_iso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/main/verify_iso.ts -------------------------------------------------------------------------------- /src/remote/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/remote/api.ts -------------------------------------------------------------------------------- /src/remote/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/remote/ipc.ts -------------------------------------------------------------------------------- /src/remote/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/remote/setup.ts -------------------------------------------------------------------------------- /src/remote/spectate_remote_server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/remote/spectate_remote_server.ts -------------------------------------------------------------------------------- /src/remote/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/remote/types.ts -------------------------------------------------------------------------------- /src/renderer/app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/app.tsx -------------------------------------------------------------------------------- /src/renderer/app/create.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/create.messages.ts -------------------------------------------------------------------------------- /src/renderer/app/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/create.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/account_switcher/account_switcher.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/account_switcher/account_switcher.messages.ts -------------------------------------------------------------------------------- /src/renderer/app/header/account_switcher/account_switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/account_switcher/account_switcher.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/account_switcher/add_account_dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/account_switcher/add_account_dialog.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/activate_online_dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/activate_online_dialog.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/header.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/header.messages.ts -------------------------------------------------------------------------------- /src/renderer/app/header/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/header.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/login_dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/login_dialog.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/main_menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/main_menu.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/name_change_dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/name_change_dialog.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/play_button/play_button.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/play_button/play_button.messages.ts -------------------------------------------------------------------------------- /src/renderer/app/header/play_button/play_button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/play_button/play_button.stories.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/play_button/play_button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/play_button/play_button.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/play_button/play_icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/play_button/play_icon.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/start_game_offline_dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/start_game_offline_dialog.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/user_info/user_info.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/user_info/user_info.stories.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/user_info/user_info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/user_info/user_info.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/user_menu/user_menu.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/user_menu/user_menu.messages.ts -------------------------------------------------------------------------------- /src/renderer/app/header/user_menu/user_menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/user_menu/user_menu.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/user_menu/user_menu_items.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/user_menu/user_menu_items.stories.tsx -------------------------------------------------------------------------------- /src/renderer/app/header/user_menu/user_menu_items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/app/header/user_menu/user_menu_items.tsx -------------------------------------------------------------------------------- /src/renderer/components/activate_online_form/activate_online_form.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/activate_online_form/activate_online_form.messages.ts -------------------------------------------------------------------------------- /src/renderer/components/activate_online_form/activate_online_form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/activate_online_form/activate_online_form.tsx -------------------------------------------------------------------------------- /src/renderer/components/ad_dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/ad_dialog.tsx -------------------------------------------------------------------------------- /src/renderer/components/auth_guard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/auth_guard.tsx -------------------------------------------------------------------------------- /src/renderer/components/bouncing_slippi_logo/bouncing_slippi_logo.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/bouncing_slippi_logo/bouncing_slippi_logo.stories.tsx -------------------------------------------------------------------------------- /src/renderer/components/bouncing_slippi_logo/bouncing_slippi_logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/bouncing_slippi_logo/bouncing_slippi_logo.tsx -------------------------------------------------------------------------------- /src/renderer/components/build_info/build_info.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/build_info/build_info.messages.ts -------------------------------------------------------------------------------- /src/renderer/components/build_info/build_info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/build_info/build_info.tsx -------------------------------------------------------------------------------- /src/renderer/components/confirmation_modal/confirmation_modal.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/confirmation_modal/confirmation_modal.messages.ts -------------------------------------------------------------------------------- /src/renderer/components/confirmation_modal/confirmation_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/confirmation_modal/confirmation_modal.tsx -------------------------------------------------------------------------------- /src/renderer/components/dev_guard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/dev_guard.tsx -------------------------------------------------------------------------------- /src/renderer/components/draggable_file.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/draggable_file.tsx -------------------------------------------------------------------------------- /src/renderer/components/dual_pane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/dual_pane.tsx -------------------------------------------------------------------------------- /src/renderer/components/error_boundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/error_boundary.tsx -------------------------------------------------------------------------------- /src/renderer/components/external_link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/external_link.tsx -------------------------------------------------------------------------------- /src/renderer/components/footer/footer.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/footer/footer.messages.ts -------------------------------------------------------------------------------- /src/renderer/components/footer/footer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/footer/footer.stories.tsx -------------------------------------------------------------------------------- /src/renderer/components/footer/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/footer/footer.tsx -------------------------------------------------------------------------------- /src/renderer/components/form/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/form/button.tsx -------------------------------------------------------------------------------- /src/renderer/components/form/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/form/checkbox.tsx -------------------------------------------------------------------------------- /src/renderer/components/form/dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/form/dropdown.tsx -------------------------------------------------------------------------------- /src/renderer/components/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/form/index.ts -------------------------------------------------------------------------------- /src/renderer/components/form/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/form/toggle.tsx -------------------------------------------------------------------------------- /src/renderer/components/icon_menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/icon_menu.tsx -------------------------------------------------------------------------------- /src/renderer/components/info_block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/info_block.tsx -------------------------------------------------------------------------------- /src/renderer/components/labelled_text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/labelled_text.tsx -------------------------------------------------------------------------------- /src/renderer/components/loading_screen/loading_screen.messages.ts: -------------------------------------------------------------------------------- 1 | export const LoadingScreenMessages = { 2 | justASec: () => "Just a sec...", 3 | }; 4 | -------------------------------------------------------------------------------- /src/renderer/components/loading_screen/loading_screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/loading_screen/loading_screen.tsx -------------------------------------------------------------------------------- /src/renderer/components/login_form/login_form.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/login_form/login_form.messages.ts -------------------------------------------------------------------------------- /src/renderer/components/login_form/login_form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/login_form/login_form.tsx -------------------------------------------------------------------------------- /src/renderer/components/login_notice/login_notice.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/login_notice/login_notice.messages.ts -------------------------------------------------------------------------------- /src/renderer/components/login_notice/login_notice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/login_notice/login_notice.tsx -------------------------------------------------------------------------------- /src/renderer/components/markdown_content/code_block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/markdown_content/code_block.tsx -------------------------------------------------------------------------------- /src/renderer/components/markdown_content/markdown_content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/markdown_content/markdown_content.tsx -------------------------------------------------------------------------------- /src/renderer/components/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/message.tsx -------------------------------------------------------------------------------- /src/renderer/components/multi_path_input/multi_path_input.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/multi_path_input/multi_path_input.messages.ts -------------------------------------------------------------------------------- /src/renderer/components/multi_path_input/multi_path_input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/multi_path_input/multi_path_input.tsx -------------------------------------------------------------------------------- /src/renderer/components/path_input/path_input.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/path_input/path_input.messages.ts -------------------------------------------------------------------------------- /src/renderer/components/path_input/path_input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/path_input/path_input.tsx -------------------------------------------------------------------------------- /src/renderer/components/persistent_notification/persistent_notification.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/persistent_notification/persistent_notification.messages.ts -------------------------------------------------------------------------------- /src/renderer/components/persistent_notification/persistent_notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/persistent_notification/persistent_notification.tsx -------------------------------------------------------------------------------- /src/renderer/components/toast_provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/toast_provider.tsx -------------------------------------------------------------------------------- /src/renderer/components/user_icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/components/user_icon.tsx -------------------------------------------------------------------------------- /src/renderer/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/index.ejs -------------------------------------------------------------------------------- /src/renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/index.tsx -------------------------------------------------------------------------------- /src/renderer/initialize_app.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/initialize_app.messages.ts -------------------------------------------------------------------------------- /src/renderer/initialize_app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/initialize_app.ts -------------------------------------------------------------------------------- /src/renderer/lib/console_connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/console_connection.ts -------------------------------------------------------------------------------- /src/renderer/lib/display_picture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/display_picture.ts -------------------------------------------------------------------------------- /src/renderer/lib/dolphin/dolphin.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/dolphin/dolphin.messages.ts -------------------------------------------------------------------------------- /src/renderer/lib/dolphin/handle_dolphin_exit_code.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/dolphin/handle_dolphin_exit_code.messages.ts -------------------------------------------------------------------------------- /src/renderer/lib/dolphin/handle_dolphin_exit_code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/dolphin/handle_dolphin_exit_code.ts -------------------------------------------------------------------------------- /src/renderer/lib/dolphin/use_dolphin_actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/dolphin/use_dolphin_actions.ts -------------------------------------------------------------------------------- /src/renderer/lib/dolphin/use_dolphin_store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/dolphin/use_dolphin_store.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_account.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_advanced_user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_advanced_user.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_app_store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_app_store.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_app_update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_app_update.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_async.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_broadcast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_broadcast.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_broadcast_list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_broadcast_list.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_console.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_console_discovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_console_discovery.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_file_drag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_file_drag.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_iso_verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_iso_verification.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_login_modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_login_modal.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_mousetrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_mousetrap.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_page_request_listeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_page_request_listeners.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_replay_browser_list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_replay_browser_list.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_replay_filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_replay_filter.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_replays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_replays.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_settings.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_settings_modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_settings_modal.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_shortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_shortcuts.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_spectate_remote_server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_spectate_remote_server.ts -------------------------------------------------------------------------------- /src/renderer/lib/hooks/use_toasts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/hooks/use_toasts.ts -------------------------------------------------------------------------------- /src/renderer/lib/player_colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/player_colors.ts -------------------------------------------------------------------------------- /src/renderer/lib/replay_file_sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/replay_file_sort.ts -------------------------------------------------------------------------------- /src/renderer/lib/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/time.ts -------------------------------------------------------------------------------- /src/renderer/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/utils.ts -------------------------------------------------------------------------------- /src/renderer/lib/validate/validate.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/validate/validate.messages.ts -------------------------------------------------------------------------------- /src/renderer/lib/validate/validate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/validate/validate.spec.ts -------------------------------------------------------------------------------- /src/renderer/lib/validate/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/lib/validate/validate.ts -------------------------------------------------------------------------------- /src/renderer/listeners/install_app_listeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/listeners/install_app_listeners.ts -------------------------------------------------------------------------------- /src/renderer/listeners/install_broadcast_listeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/listeners/install_broadcast_listeners.ts -------------------------------------------------------------------------------- /src/renderer/listeners/install_dolphin_listeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/listeners/install_dolphin_listeners.ts -------------------------------------------------------------------------------- /src/renderer/listeners/install_settings_change_listeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/listeners/install_settings_change_listeners.ts -------------------------------------------------------------------------------- /src/renderer/listeners/listeners.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/listeners/listeners.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/add_connection_dialog/add_connection_dialog.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/add_connection_dialog/add_connection_dialog.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/add_connection_dialog/add_connection_dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/add_connection_dialog/add_connection_dialog.tsx -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/add_connection_dialog/add_connection_form.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/add_connection_dialog/add_connection_form.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/add_connection_dialog/add_connection_form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/add_connection_dialog/add_connection_form.tsx -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/console_mirror.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/console_mirror.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/console_mirror.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/console_mirror.tsx -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/create.tsx -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/load.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/load.tsx -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/new_connection_list/new_connection_item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/new_connection_list/new_connection_item.tsx -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/new_connection_list/new_connection_list.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/new_connection_list/new_connection_list.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/new_connection_list/new_connection_list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/new_connection_list/new_connection_list.tsx -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/obs_websocket_notice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/obs_websocket_notice.tsx -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/saved_connections_list/saved_connection_item.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/saved_connections_list/saved_connection_item.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/saved_connections_list/saved_connection_item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/saved_connections_list/saved_connection_item.tsx -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/saved_connections_list/saved_connections_list.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/saved_connections_list/saved_connections_list.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/console_mirror/saved_connections_list/saved_connections_list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/console_mirror/saved_connections_list/saved_connections_list.tsx -------------------------------------------------------------------------------- /src/renderer/pages/home/home_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/home_page.tsx -------------------------------------------------------------------------------- /src/renderer/pages/home/news_feed/ad_banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/news_feed/ad_banner.tsx -------------------------------------------------------------------------------- /src/renderer/pages/home/news_feed/news_article/bluesky_post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/news_feed/news_article/bluesky_post.tsx -------------------------------------------------------------------------------- /src/renderer/pages/home/news_feed/news_article/github_post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/news_feed/news_article/github_post.tsx -------------------------------------------------------------------------------- /src/renderer/pages/home/news_feed/news_article/medium_post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/news_feed/news_article/medium_post.tsx -------------------------------------------------------------------------------- /src/renderer/pages/home/news_feed/news_article/news_article.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/news_feed/news_article/news_article.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/home/news_feed/news_article/news_article.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/news_feed/news_article/news_article.tsx -------------------------------------------------------------------------------- /src/renderer/pages/home/news_feed/news_article/stories/fakes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/news_feed/news_article/stories/fakes.ts -------------------------------------------------------------------------------- /src/renderer/pages/home/news_feed/news_article/stories/news_article.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/news_feed/news_article/stories/news_article.stories.tsx -------------------------------------------------------------------------------- /src/renderer/pages/home/news_feed/news_feed.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/news_feed/news_feed.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/home/news_feed/news_feed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/news_feed/news_feed.tsx -------------------------------------------------------------------------------- /src/renderer/pages/home/sidebar/ranked_status.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/sidebar/ranked_status.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/home/sidebar/ranked_status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/sidebar/ranked_status.tsx -------------------------------------------------------------------------------- /src/renderer/pages/home/sidebar/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/sidebar/sidebar.tsx -------------------------------------------------------------------------------- /src/renderer/pages/home/sidebar/slippi_store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/sidebar/slippi_store.tsx -------------------------------------------------------------------------------- /src/renderer/pages/home/sidebar/tournament_links.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/sidebar/tournament_links.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/home/sidebar/tournament_links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/home/sidebar/tournament_links.tsx -------------------------------------------------------------------------------- /src/renderer/pages/loading/loading_page.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/loading/loading_page.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/loading/loading_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/loading/loading_page.tsx -------------------------------------------------------------------------------- /src/renderer/pages/not_found/not_found_page.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/not_found/not_found_page.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/not_found/not_found_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/not_found/not_found_page.tsx -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/create.tsx -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/load.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/load.tsx -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/quick_start.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/quick_start.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/quick_start.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/quick_start.tsx -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/step_container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/step_container.tsx -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/stepper_dots/stepper_dots.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/stepper_dots/stepper_dots.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/stepper_dots/stepper_dots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/stepper_dots/stepper_dots.tsx -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/steps/accept_rules_step/accept_rules_step.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/steps/accept_rules_step/accept_rules_step.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/steps/accept_rules_step/accept_rules_step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/steps/accept_rules_step/accept_rules_step.tsx -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/steps/activate_online_step/activate_online_step.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/steps/activate_online_step/activate_online_step.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/steps/activate_online_step/activate_online_step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/steps/activate_online_step/activate_online_step.tsx -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/steps/iso_selection_step/iso_selection_step.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/steps/iso_selection_step/iso_selection_step.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/steps/iso_selection_step/iso_selection_step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/steps/iso_selection_step/iso_selection_step.tsx -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/steps/login_step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/steps/login_step.tsx -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/steps/setup_complete_step/setup_complete_step.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/steps/setup_complete_step/setup_complete_step.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/steps/setup_complete_step/setup_complete_step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/steps/setup_complete_step/setup_complete_step.tsx -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/steps/verify_email_step/verify_email_step.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/steps/verify_email_step/verify_email_step.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/steps/verify_email_step/verify_email_step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/steps/verify_email_step/verify_email_step.tsx -------------------------------------------------------------------------------- /src/renderer/pages/quick_start/use_quick_start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/quick_start/use_quick_start.ts -------------------------------------------------------------------------------- /src/renderer/pages/replays/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/create.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/load.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/load.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/file_list/file_list.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/file_list/file_list.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/file_list/file_list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/file_list/file_list.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/file_selection_toolbar/file_selection_toolbar.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/file_selection_toolbar/file_selection_toolbar.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/file_selection_toolbar/file_selection_toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/file_selection_toolbar/file_selection_toolbar.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/filter_toolbar/filter_toolbar.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/filter_toolbar/filter_toolbar.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/filter_toolbar/filter_toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/filter_toolbar/filter_toolbar.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/folder_tree_node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/folder_tree_node.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/replay_browser.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/replay_browser.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/replay_browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/replay_browser.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/replay_file/replay_file.container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/replay_file/replay_file.container.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/replay_file/replay_file.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/replay_file/replay_file.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/replay_file/replay_file.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/replay_file/replay_file.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/replay_file/stories/replay_file.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/replay_file/stories/replay_file.stories.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/replay_file/stories/stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/replay_file/stories/stage.png -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/replay_file/team_elements/player_badge/player_badge.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/replay_file/team_elements/player_badge/player_badge.stories.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/replay_file/team_elements/player_badge/player_badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/replay_file/team_elements/player_badge/player_badge.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/replay_file/team_elements/team_elements.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/replay_file/team_elements/team_elements.stories.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_browser/replay_file/team_elements/team_elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_browser/replay_file/team_elements/team_elements.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_file_stats/game_profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_file_stats/game_profile.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_file_stats/game_profile_header/game_profile_header.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_file_stats/game_profile_header/game_profile_header.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_file_stats/game_profile_header/game_profile_header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_file_stats/game_profile_header/game_profile_header.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_file_stats/home_run_profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_file_stats/home_run_profile.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_file_stats/kill_table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_file_stats/kill_table.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_file_stats/overall_table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_file_stats/overall_table.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_file_stats/player_info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_file_stats/player_info.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_file_stats/punish_table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_file_stats/punish_table.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_file_stats/replay_file_stats.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_file_stats/replay_file_stats.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_file_stats/replay_file_stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_file_stats/replay_file_stats.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_file_stats/table_styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_file_stats/table_styles.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replay_file_stats/target_test_profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replay_file_stats/target_test_profile.tsx -------------------------------------------------------------------------------- /src/renderer/pages/replays/replays_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/replays/replays_page.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/advanced_app_settings/advanced_app_settings.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/advanced_app_settings/advanced_app_settings.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/advanced_app_settings/advanced_app_settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/advanced_app_settings/advanced_app_settings.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/appearance_settings/appearance_settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/appearance_settings/appearance_settings.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/appearance_settings/language_selector/language_selector.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/appearance_settings/language_selector/language_selector.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/appearance_settings/language_selector/language_selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/appearance_settings/language_selector/language_selector.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/chat_settings/chat_messages_footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/chat_settings/chat_messages_footer.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/chat_settings/chat_messages_input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/chat_settings/chat_messages_input.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/chat_settings/chat_settings.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/chat_settings/chat_settings.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/chat_settings/chat_settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/chat_settings/chat_settings.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/chat_settings/default_chat_messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/chat_settings/default_chat_messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/chat_settings/dpad_direction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/chat_settings/dpad_direction.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/chat_settings/use_chat_messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/chat_settings/use_chat_messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/create.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/create.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/create.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/dolphin_settings.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/dolphin_settings.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/dolphin_settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/dolphin_settings.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/gecko_codes/add_codes/add_codes.container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/gecko_codes/add_codes/add_codes.container.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/gecko_codes/add_codes/add_codes.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/gecko_codes/add_codes/add_codes.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/gecko_codes/add_codes/add_codes.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/gecko_codes/add_codes/add_codes.stories.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/gecko_codes/add_codes/add_codes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/gecko_codes/add_codes/add_codes.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/gecko_codes/gecko_codes.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/gecko_codes/gecko_codes.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/gecko_codes/gecko_codes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/gecko_codes/gecko_codes.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/gecko_codes/manage_codes/manage_codes.container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/gecko_codes/manage_codes/manage_codes.container.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/gecko_codes/manage_codes/manage_codes.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/gecko_codes/manage_codes/manage_codes.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/gecko_codes/manage_codes/manage_codes.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/gecko_codes/manage_codes/manage_codes.stories.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/gecko_codes/manage_codes/manage_codes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/gecko_codes/manage_codes/manage_codes.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/gecko_codes/tabbed_dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/gecko_codes/tabbed_dialog.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/netplay_dolphin_settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/netplay_dolphin_settings.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/dolphin_settings/playback_dolphin_settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/dolphin_settings/playback_dolphin_settings.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/game_settings/game_music_toggle/game_music_toggle.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/game_settings/game_music_toggle/game_music_toggle.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/game_settings/game_music_toggle/game_music_toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/game_settings/game_music_toggle/game_music_toggle.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/game_settings/game_settings.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/game_settings/game_settings.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/game_settings/game_settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/game_settings/game_settings.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/help_page/help_page.messages.ts: -------------------------------------------------------------------------------- 1 | export const HelpPageMessages = { 2 | faq: () => "FAQ", 3 | }; 4 | -------------------------------------------------------------------------------- /src/renderer/pages/settings/help_page/help_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/help_page/help_page.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/help_page/support_box/network_diagnostics_button/network_diagnostic_result/cgnat_command_section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/help_page/support_box/network_diagnostics_button/network_diagnostic_result/cgnat_command_section.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/help_page/support_box/network_diagnostics_button/network_diagnostic_result/nat_type_section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/help_page/support_box/network_diagnostics_button/network_diagnostic_result/nat_type_section.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/help_page/support_box/network_diagnostics_button/network_diagnostic_result/network_diagnostics_result.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/help_page/support_box/network_diagnostics_button/network_diagnostic_result/network_diagnostics_result.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/help_page/support_box/network_diagnostics_button/network_diagnostic_result/network_diagnostics_result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/help_page/support_box/network_diagnostics_button/network_diagnostic_result/network_diagnostics_result.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/help_page/support_box/network_diagnostics_button/network_diagnostics_button.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/help_page/support_box/network_diagnostics_button/network_diagnostics_button.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/help_page/support_box/network_diagnostics_button/network_diagnostics_button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/help_page/support_box/network_diagnostics_button/network_diagnostics_button.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/help_page/support_box/support_box.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/help_page/support_box/support_box.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/help_page/support_box/support_box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/help_page/support_box/support_box.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/load.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/load.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/replay_settings/replay_settings.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/replay_settings/replay_settings.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/replay_settings/replay_settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/replay_settings/replay_settings.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/setting_item_section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/setting_item_section.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/settings_page.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/settings_page.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/settings_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/settings_page.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/spectate_settings/spectate_port_form/spectate_port_form.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/spectate_settings/spectate_port_form/spectate_port_form.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/spectate_settings/spectate_port_form/spectate_port_form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/spectate_settings/spectate_port_form/spectate_port_form.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/spectate_settings/spectate_settings.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/spectate_settings/spectate_settings.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/settings/spectate_settings/spectate_settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/spectate_settings/spectate_settings.tsx -------------------------------------------------------------------------------- /src/renderer/pages/settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/settings/types.ts -------------------------------------------------------------------------------- /src/renderer/pages/spectate/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/create.tsx -------------------------------------------------------------------------------- /src/renderer/pages/spectate/footer/footer.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/footer/footer.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/spectate/footer/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/footer/footer.tsx -------------------------------------------------------------------------------- /src/renderer/pages/spectate/load.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/load.tsx -------------------------------------------------------------------------------- /src/renderer/pages/spectate/share_gameplay_block/broadcast_panel.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/share_gameplay_block/broadcast_panel.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/spectate/share_gameplay_block/broadcast_panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/share_gameplay_block/broadcast_panel.tsx -------------------------------------------------------------------------------- /src/renderer/pages/spectate/share_gameplay_block/share_gameplay_block.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/share_gameplay_block/share_gameplay_block.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/spectate/share_gameplay_block/share_gameplay_block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/share_gameplay_block/share_gameplay_block.tsx -------------------------------------------------------------------------------- /src/renderer/pages/spectate/share_gameplay_block/start_broadcast_dialog.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/share_gameplay_block/start_broadcast_dialog.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/spectate/share_gameplay_block/start_broadcast_dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/share_gameplay_block/start_broadcast_dialog.tsx -------------------------------------------------------------------------------- /src/renderer/pages/spectate/spectate_item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/spectate_item.tsx -------------------------------------------------------------------------------- /src/renderer/pages/spectate/spectate_page.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/spectate_page.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/spectate/spectate_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/spectate_page.tsx -------------------------------------------------------------------------------- /src/renderer/pages/spectate/spectate_remote_control_block/spectate_remote_control_block.container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/spectate_remote_control_block/spectate_remote_control_block.container.tsx -------------------------------------------------------------------------------- /src/renderer/pages/spectate/spectate_remote_control_block/spectate_remote_control_block.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/spectate_remote_control_block/spectate_remote_control_block.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/spectate/spectate_remote_control_block/spectate_remote_control_block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/spectate_remote_control_block/spectate_remote_control_block.tsx -------------------------------------------------------------------------------- /src/renderer/pages/spectate/spectate_remote_control_block/stories/spectate_remote_control_block.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/spectate_remote_control_block/stories/spectate_remote_control_block.stories.tsx -------------------------------------------------------------------------------- /src/renderer/pages/spectate/spectator_id_block/spectator_id_block.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/spectator_id_block/spectator_id_block.messages.ts -------------------------------------------------------------------------------- /src/renderer/pages/spectate/spectator_id_block/spectator_id_block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/pages/spectate/spectator_id_block/spectator_id_block.tsx -------------------------------------------------------------------------------- /src/renderer/services/auth/auth.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/auth/auth.service.mock.ts -------------------------------------------------------------------------------- /src/renderer/services/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/auth/auth.service.ts -------------------------------------------------------------------------------- /src/renderer/services/auth/multi_account.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/auth/multi_account.service.ts -------------------------------------------------------------------------------- /src/renderer/services/auth/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/auth/types.ts -------------------------------------------------------------------------------- /src/renderer/services/dolphin/dolphin.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/dolphin/dolphin.service.mock.ts -------------------------------------------------------------------------------- /src/renderer/services/dolphin/dolphin.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/dolphin/dolphin.service.ts -------------------------------------------------------------------------------- /src/renderer/services/i18n/i18n.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/i18n/i18n.service.ts -------------------------------------------------------------------------------- /src/renderer/services/i18n/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/i18n/types.ts -------------------------------------------------------------------------------- /src/renderer/services/i18n/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/i18n/util.ts -------------------------------------------------------------------------------- /src/renderer/services/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/index.tsx -------------------------------------------------------------------------------- /src/renderer/services/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/install.ts -------------------------------------------------------------------------------- /src/renderer/services/notification/notification.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/notification/notification.service.ts -------------------------------------------------------------------------------- /src/renderer/services/notification/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/notification/types.ts -------------------------------------------------------------------------------- /src/renderer/services/replay/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/replay/mocks.ts -------------------------------------------------------------------------------- /src/renderer/services/replay/replay.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/replay/replay.service.mock.ts -------------------------------------------------------------------------------- /src/renderer/services/replay/replay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/replay/replay.service.ts -------------------------------------------------------------------------------- /src/renderer/services/slippi/graphql_endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/slippi/graphql_endpoints.ts -------------------------------------------------------------------------------- /src/renderer/services/slippi/mock_slippi_data_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/slippi/mock_slippi_data_utils.ts -------------------------------------------------------------------------------- /src/renderer/services/slippi/slippi.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/slippi/slippi.service.mock.ts -------------------------------------------------------------------------------- /src/renderer/services/slippi/slippi.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/slippi/slippi.service.ts -------------------------------------------------------------------------------- /src/renderer/services/slippi/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/slippi/types.ts -------------------------------------------------------------------------------- /src/renderer/services/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/types.ts -------------------------------------------------------------------------------- /src/renderer/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/services/utils.ts -------------------------------------------------------------------------------- /src/renderer/styles/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/_fonts.scss -------------------------------------------------------------------------------- /src/renderer/styles/_scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/_scrollbar.scss -------------------------------------------------------------------------------- /src/renderer/styles/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/colors.ts -------------------------------------------------------------------------------- /src/renderer/styles/emotion.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/emotion.d.ts -------------------------------------------------------------------------------- /src/renderer/styles/has_border.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/has_border.ts -------------------------------------------------------------------------------- /src/renderer/styles/images/ads/spif-shop-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/ads/spif-shop-banner.png -------------------------------------------------------------------------------- /src/renderer/styles/images/ads/spif-slippi-shop-full-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/ads/spif-slippi-shop-full-size.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/0/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/0/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/0/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/0/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/0/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/0/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/0/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/0/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/0/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/0/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/0/5/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/0/5/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/1/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/1/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/1/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/1/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/1/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/1/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/1/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/1/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/1/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/1/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/10/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/10/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/10/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/10/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/10/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/10/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/10/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/10/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/11/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/11/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/11/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/11/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/11/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/11/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/11/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/11/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/12/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/12/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/12/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/12/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/12/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/12/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/12/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/12/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/12/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/12/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/13/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/13/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/13/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/13/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/13/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/13/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/13/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/13/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/14/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/14/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/14/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/14/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/14/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/14/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/14/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/14/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/15/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/15/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/15/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/15/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/15/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/15/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/15/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/15/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/15/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/15/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/16/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/16/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/16/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/16/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/16/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/16/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/16/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/16/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/16/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/16/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/17/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/17/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/17/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/17/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/17/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/17/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/17/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/17/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/17/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/17/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/17/5/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/17/5/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/18/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/18/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/18/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/18/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/18/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/18/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/18/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/18/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/18/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/18/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/19/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/19/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/19/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/19/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/19/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/19/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/19/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/19/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/19/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/19/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/2/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/2/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/2/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/2/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/2/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/2/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/2/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/2/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/20/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/20/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/20/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/20/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/20/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/20/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/20/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/20/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/21/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/21/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/21/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/21/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/21/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/21/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/21/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/21/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/21/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/21/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/22/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/22/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/22/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/22/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/22/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/22/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/22/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/22/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/22/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/22/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/23/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/23/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/23/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/23/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/23/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/23/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/23/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/23/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/23/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/23/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/24/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/24/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/24/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/24/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/24/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/24/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/24/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/24/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/25/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/25/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/25/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/25/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/25/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/25/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/25/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/25/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/25/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/25/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/3/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/3/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/3/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/3/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/3/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/3/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/3/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/3/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/31/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/31/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/32/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/32/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/4/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/4/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/4/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/4/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/4/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/4/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/4/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/4/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/4/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/4/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/4/5/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/4/5/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/5/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/5/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/5/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/5/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/5/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/5/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/5/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/5/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/6/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/6/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/6/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/6/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/6/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/6/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/6/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/6/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/6/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/6/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/7/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/7/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/7/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/7/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/7/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/7/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/7/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/7/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/8/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/8/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/8/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/8/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/8/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/8/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/8/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/8/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/8/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/8/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/9/0/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/9/0/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/9/1/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/9/1/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/9/2/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/9/2/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/9/3/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/9/3/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/characters/9/4/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/characters/9/4/stock.png -------------------------------------------------------------------------------- /src/renderer/styles/images/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/crown.png -------------------------------------------------------------------------------- /src/renderer/styles/images/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/discord.svg -------------------------------------------------------------------------------- /src/renderer/styles/images/dolphin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/dolphin.svg -------------------------------------------------------------------------------- /src/renderer/styles/images/dpad_dir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/dpad_dir.svg -------------------------------------------------------------------------------- /src/renderer/styles/images/ranked_day_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/ranked_day_active.svg -------------------------------------------------------------------------------- /src/renderer/styles/images/ranked_day_inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/ranked_day_inactive.svg -------------------------------------------------------------------------------- /src/renderer/styles/images/shop-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/shop-image.png -------------------------------------------------------------------------------- /src/renderer/styles/images/slippi_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/slippi_logo.svg -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/10.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/11.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/12.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/13.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/14.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/15.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/16.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/17.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/18.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/19.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/2.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/20.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/22.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/23.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/24.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/25.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/27.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/28.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/29.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/3.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/30.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/31.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/32.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/4.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/5.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/6.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/7.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/8.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/84.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/9.png -------------------------------------------------------------------------------- /src/renderer/styles/images/stages/targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/stages/targets.png -------------------------------------------------------------------------------- /src/renderer/styles/images/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/unknown.png -------------------------------------------------------------------------------- /src/renderer/styles/images/wii_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/images/wii_icon.svg -------------------------------------------------------------------------------- /src/renderer/styles/platform_title_bar_styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/platform_title_bar_styles.ts -------------------------------------------------------------------------------- /src/renderer/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/styles.scss -------------------------------------------------------------------------------- /src/renderer/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/theme.ts -------------------------------------------------------------------------------- /src/renderer/styles/tokens.stylex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/tokens.stylex.ts -------------------------------------------------------------------------------- /src/renderer/styles/with_font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/with_font.ts -------------------------------------------------------------------------------- /src/renderer/styles/with_slippi_background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/renderer/styles/with_slippi_background.ts -------------------------------------------------------------------------------- /src/replays/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/api.ts -------------------------------------------------------------------------------- /src/replays/database_replay_provider/continuation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/database_replay_provider/continuation.ts -------------------------------------------------------------------------------- /src/replays/database_replay_provider/database_replay_provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/database_replay_provider/database_replay_provider.ts -------------------------------------------------------------------------------- /src/replays/database_replay_provider/infer_start_time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/database_replay_provider/infer_start_time.ts -------------------------------------------------------------------------------- /src/replays/database_replay_provider/record_mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/database_replay_provider/record_mapper.ts -------------------------------------------------------------------------------- /src/replays/database_replay_provider/tests/pagination.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/database_replay_provider/tests/pagination.spec.ts -------------------------------------------------------------------------------- /src/replays/file_system_replay_provider/extract_player_names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/file_system_replay_provider/extract_player_names.ts -------------------------------------------------------------------------------- /src/replays/file_system_replay_provider/file_system_replay_provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/file_system_replay_provider/file_system_replay_provider.ts -------------------------------------------------------------------------------- /src/replays/file_system_replay_provider/load_file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/file_system_replay_provider/load_file.ts -------------------------------------------------------------------------------- /src/replays/file_system_replay_provider/load_folder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/file_system_replay_provider/load_folder.ts -------------------------------------------------------------------------------- /src/replays/file_system_replay_provider/replays.worker.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/file_system_replay_provider/replays.worker.interface.ts -------------------------------------------------------------------------------- /src/replays/file_system_replay_provider/replays.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/file_system_replay_provider/replays.worker.ts -------------------------------------------------------------------------------- /src/replays/folder_tree_service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/folder_tree_service.ts -------------------------------------------------------------------------------- /src/replays/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/ipc.ts -------------------------------------------------------------------------------- /src/replays/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/setup.ts -------------------------------------------------------------------------------- /src/replays/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/replays/types.ts -------------------------------------------------------------------------------- /src/settings/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/settings/api.ts -------------------------------------------------------------------------------- /src/settings/default_settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/settings/default_settings.ts -------------------------------------------------------------------------------- /src/settings/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/settings/ipc.ts -------------------------------------------------------------------------------- /src/settings/settings_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/settings/settings_manager.ts -------------------------------------------------------------------------------- /src/settings/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/settings/setup.ts -------------------------------------------------------------------------------- /src/settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/settings/types.ts -------------------------------------------------------------------------------- /src/utils/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/utils/download.ts -------------------------------------------------------------------------------- /src/utils/file_exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/utils/file_exists.ts -------------------------------------------------------------------------------- /src/utils/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/utils/ipc.ts -------------------------------------------------------------------------------- /src/utils/is_subdirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/utils/is_subdirectory.ts -------------------------------------------------------------------------------- /src/utils/register_worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/src/utils/register_worker.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-slippi/slippi-launcher/HEAD/vitest.config.ts --------------------------------------------------------------------------------