├── .editorconfig ├── .gitignore ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── BezierCurve.cs ├── CameraTransform.cs ├── CameraWriteSettings.cs ├── Controllers ├── CameraWrite │ ├── CameraController.cs │ ├── CameraModule.cs │ ├── CameraWriteController.cs │ ├── ControllableSideline.cs │ ├── DiscOrbit.cs │ └── SpaceMouseInput.cs ├── EchoGPController.cs ├── LocalDatabase.cs ├── LoggerEvents.cs ├── Medal.cs ├── Notifications.cs ├── OBS.cs ├── ReplayFilesManager.cs ├── SpectateMeController.cs ├── TTSController.cs ├── UploadController.cs └── WebSocketServerManager.cs ├── Data Containers ├── AccumulatedFrame.cs ├── BatchOutputFormat.cs ├── DataContainer.cs ├── EventContainer.cs ├── EventData.cs ├── GoalData.cs ├── MatchPlayer.cs ├── OverlayConfig.cs ├── TabletStats.cs ├── TeamData.cs ├── ThrowData.cs └── ZMQ Messages │ ├── MatchEventZMQMessage.cs │ └── ZMQMessage.cs ├── DiscordOAuth.cs ├── DiscordRichPresence.cs ├── EchoVRAPIPassthrough.cs ├── EchoVRDefaultSettings ├── gamesettings_config.json ├── loading_tips.json ├── matchsettings_config.json ├── mp_sound_settings.json ├── mp_spectator_cameras.json ├── mp_spectator_settings.json ├── netconfig_client.json ├── netconfig_server.json ├── randomnames_config.json └── settings_mp_v2.json ├── EchoVRSettingsManager.cs ├── FetchUtils.cs ├── GfeSDK.dll ├── GitHubJSON.cs ├── GlobalHotKey.cs ├── HIDDeviceInput.cs ├── Highlights.cs ├── HighlightsHelper.cs ├── HighlightsPlugin64.dll ├── IgniteBot.Installer ├── Assets │ ├── Background.bmp │ ├── Background.xcf │ ├── Banner.bmp │ └── Banner.xcf ├── Common.wxl ├── Components.wxs ├── Directories.wxs ├── Product.wxs └── Spark.Installer.wixproj ├── IgniteBotKey.pfx.bak ├── InstallEchoSpeakerSystem.bat ├── Keyboard.cs ├── Logger.cs ├── MILK.md ├── NativeMethods.cs ├── NetMQEvents.cs ├── Overlay ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── README.md ├── build_and_copy.ps1 ├── package-lock.json ├── package.json ├── src │ ├── app.d.ts │ ├── app.html │ ├── lib │ │ ├── components │ │ │ ├── CompactMainBanner.svelte │ │ │ ├── CompactMinimap.svelte │ │ │ ├── DiagonalDropdown.svelte │ │ │ ├── EventLog.svelte │ │ │ ├── Header.svelte │ │ │ ├── Minimap.svelte │ │ │ ├── PlayerListBlue.svelte │ │ │ ├── PlayerListOrange.svelte │ │ │ ├── PlayerLists.svelte │ │ │ ├── PositionableComponent.svelte │ │ │ ├── ShowSpeed.svelte │ │ │ ├── ThreeDee.svelte │ │ │ └── VisibilityConfigCheckbox.svelte │ │ ├── css │ │ │ ├── player_list.css │ │ │ └── prism.css │ │ ├── fonts │ │ │ ├── Inconsolata.ttf │ │ │ └── Inconsolata.woff2 │ │ ├── img │ │ │ ├── align-horizontal-center.png │ │ │ └── resize-bottom-right.png │ │ └── js │ │ │ ├── Frame.ts │ │ │ ├── SparkConfig.ts │ │ │ ├── empty_frame.ts │ │ │ ├── prism.js │ │ │ ├── spark_websocket.js │ │ │ ├── stores.ts │ │ │ └── util.js │ └── routes │ │ ├── (bulma) │ │ ├── +layout.svelte │ │ ├── +page.svelte │ │ ├── api │ │ │ └── +page.svelte │ │ ├── local_database │ │ │ └── +page.svelte │ │ ├── overlays │ │ │ ├── +page.svelte │ │ │ └── match_setup │ │ │ │ └── +page.svelte │ │ └── websockets │ │ │ └── +page.svelte │ │ ├── (overlays) │ │ ├── +layout.svelte │ │ ├── branding │ │ │ └── +page.svelte │ │ ├── components │ │ │ ├── compact_main_banner │ │ │ │ └── +page.svelte │ │ │ ├── compact_minimap │ │ │ │ └── +page.svelte │ │ │ ├── events │ │ │ │ └── +page.svelte │ │ │ ├── minimap │ │ │ │ └── +page.svelte │ │ │ ├── player_list_blue │ │ │ │ └── +page.svelte │ │ │ └── player_list_orange │ │ │ │ └── +page.svelte │ │ ├── configurable_overlay │ │ │ └── +page.svelte │ │ ├── configurable_overlay_movable │ │ │ └── +page.svelte │ │ ├── depth_events │ │ │ └── +page.svelte │ │ ├── midmatch_overlay │ │ │ └── +page.svelte │ │ ├── minimap │ │ │ └── +page.svelte │ │ ├── playspace │ │ │ └── +page.svelte │ │ └── speedometer │ │ │ ├── disc │ │ │ └── +page.svelte │ │ │ ├── lone_echo_1 │ │ │ └── +page.svelte │ │ │ ├── lone_echo_2 │ │ │ └── +page.svelte │ │ │ └── player │ │ │ └── +page.svelte │ │ └── +layout.ts ├── static │ ├── compact_main_banner.html │ ├── compact_minimap.html │ ├── configurable_overlay.html │ ├── css │ │ ├── autocomplete_styles.css │ │ ├── compact_main_banner.css │ │ ├── configurable_overlay.css │ │ ├── event_banners.css │ │ ├── lib │ │ │ └── bulma.min.css │ │ ├── main_banner.css │ │ ├── mathematical_time.css │ │ ├── minimap.css │ │ ├── minimap_canvas.css │ │ ├── minimap_minimal.css │ │ ├── player_lists.css │ │ ├── shared.css │ │ └── styles.css │ ├── default_minimap.html │ ├── disc_position_heatmap.html │ ├── docs.html │ ├── event_log.html │ ├── favicon.ico │ ├── fonts │ │ ├── Atmospheric.otf │ │ ├── Furore.otf │ │ ├── Inconsolata.ttf │ │ ├── Inconsolata.woff │ │ ├── Inconsolata.woff2 │ │ ├── Oxanium.ttf │ │ ├── Prototype.ttf │ │ ├── SF_Sports_Night_NS_Upright.ttf │ │ ├── big_noodle_titling.ttf │ │ ├── goodtimes.ttf │ │ ├── ubuntu-700.ttf │ │ ├── ubuntu-700.woff2 │ │ ├── ubuntu-regular.ttf │ │ └── ubuntu-regular.woff2 │ ├── full_overlay.html │ ├── img │ │ ├── combat_head_240px.png │ │ ├── database.png │ │ ├── default_minimap.png │ │ ├── empty_echo_background.png │ │ ├── ignite_logo.png │ │ ├── ignite_logo_128.png │ │ ├── ignite_logo_primary_256.png │ │ ├── ignite_logo_primary_white_256.png │ │ ├── json_cover.png │ │ ├── minimap.png │ │ ├── minimap_disc.png │ │ ├── minimap_raw.png │ │ ├── minimap_simple.png │ │ └── swap-horizontal-bold.png │ ├── js │ │ ├── autocomplete.js │ │ ├── fetch_utils.js │ │ ├── full_overlay.js │ │ ├── heatmap_min.js │ │ ├── lib │ │ │ ├── fitty.min.js │ │ │ ├── heatmap.min.js │ │ │ └── reconnecting-websocket.min.js │ │ ├── minimap.js │ │ ├── spark_websocket.js │ │ └── util.js │ ├── midmatch_overlay.html │ ├── minimap.html │ ├── openapi.yaml │ ├── player_lists.html │ ├── playspace.html │ ├── speedometer.html │ └── websockets │ │ ├── game_data.html │ │ └── websocket_example.html ├── svelte.config.js ├── tsconfig.json └── vite.config.ts ├── OverlayServer.cs ├── OverlaysCustom.cs ├── PC-PC_Spectate_Me.md ├── Program.cs ├── Properties ├── Icons.Designer.cs ├── Icons.resx ├── LoadingTips.Designer.cs ├── LoadingTips.es.resx ├── LoadingTips.ja.resx ├── LoadingTips.resx ├── Resources.Designer.cs ├── Resources.es.resx ├── Resources.ja.resx ├── Resources.resx └── launchSettings.json ├── QuestIPFetching.cs ├── README.md ├── ReplayClips.cs ├── ReplayFileReader.cs ├── SecretKeys.cs.bak ├── Settings.cs ├── Spark.csproj ├── Spark.csproj.DotSettings ├── Spark.sln ├── Spark.sln.DotSettings ├── SparkAPI.cs ├── SparkMSIX ├── Images │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── Package.appxmanifest └── SparkMSIX.wapproj ├── SparkSettings.cs ├── SpeechRecognition └── SpeechRecognition.cs ├── Spline.cs ├── Themes ├── ColourfulDarkTheme_Orange.xaml ├── ColourfulDarkTheme_Orange.xaml.cs ├── ColourfulDarkTheme_Red.xaml ├── ColourfulDarkTheme_Red.xaml.cs ├── ColourfulDarkTheme_Yellow.xaml ├── ColourfulDarkTheme_Yellow.xaml.cs ├── ColourfulDarkTheme_base.xaml ├── ColourfulDarkTheme_base.xaml.cs ├── ColourfulLightTheme.xaml ├── ColourfulLightTheme.xaml.cs ├── DarkTheme.xaml ├── DarkTheme.xaml.cs ├── LightTheme.xaml ├── LightTheme.xaml.cs └── ThemesController.cs ├── WebServer2.cs ├── Windows ├── AtlasWhitelistWindow.xaml ├── AtlasWhitelistWindow.xaml.cs ├── ChooseJoinTypeDialog.xaml ├── ChooseJoinTypeDialog.xaml.cs ├── ClosingDialog.xaml ├── ClosingDialog.xaml.cs ├── CreateServer.xaml ├── CreateServer.xaml.cs ├── FirstTimeSetupWindow.xaml ├── FirstTimeSetupWindow.xaml.cs ├── GameOverlay.xaml ├── GameOverlay.xaml.cs ├── LiveWindow │ ├── CameraWrite.xaml │ ├── CameraWrite.xaml.cs │ ├── CreateServerControls.xaml │ ├── CreateServerControls.xaml.cs │ ├── EchoGP.xaml │ ├── EchoGP.xaml.cs │ ├── LiveWindow.xaml │ ├── LiveWindow.xaml.cs │ ├── PrivateMatchRulesWindow.xaml │ ├── PrivateMatchRulesWindow.xaml.cs │ ├── ServerInfo.xaml │ └── ServerInfo.xaml.cs ├── LoginWindow.xaml ├── LoginWindow.xaml.cs ├── LoneEchoSubtitles.xaml ├── LoneEchoSubtitles.xaml.cs ├── MessageBox.xaml ├── MessageBox.xaml.cs ├── PingGraphWebView.xaml ├── PingGraphWebView.xaml.cs ├── Playspace.xaml ├── Playspace.xaml.cs ├── QProJoiner.xaml ├── QProJoiner.xaml.cs ├── QuestIPs.xaml ├── QuestIPs.xaml.cs ├── Settings │ ├── ClipsSettings.xaml │ ├── ClipsSettings.xaml.cs │ ├── OverlaysConfigWindow.xaml │ ├── OverlaysConfigWindow.xaml.cs │ ├── UnifiedSettingsWindow.xaml │ └── UnifiedSettingsWindow.xaml.cs ├── SliderWithLabel.xaml ├── SliderWithLabel.xaml.cs ├── Speedometer.xaml ├── Speedometer.xaml.cs ├── UpdateWindow.xaml ├── UpdateWindow.xaml.cs ├── UploadTabletStatsMenu.xaml ├── UploadTabletStatsMenu.xaml.cs ├── YouSureAboutClosing.xaml └── YouSureAboutClosing.xaml.cs ├── global.json ├── img ├── alternate_white.png ├── application-cog-outline.png ├── arrow-left-bold.png ├── arrow-right-bold.png ├── baseline_replay_white_24px.png ├── baseline_replay_white_27px.png ├── baseline_replay_white_48dp.png ├── baseline_replay_white_48px.png ├── camera-outline.png ├── card-search-outline.png ├── cards-outline.png ├── clipboard-outline.png ├── closed-caption-outline.png ├── cog.png ├── content-cut.png ├── delete.png ├── download.png ├── earth.png ├── flag-checkered.png ├── flamingo-white.png ├── ignite_logo.ico ├── ignite_logo.png ├── ignite_logo_128.png ├── ignite_logo_32.png ├── ignite_logo_64.png ├── link.png ├── open-in-new.png ├── orbit.png ├── primary-white.png ├── replay_viewer_logo.png ├── replay_viewer_logo_colored.png ├── script-text-outline.png ├── secondary_white.png ├── speaker.png ├── subtitles-outline.png ├── swap-horizontal-bold.png ├── tablet.png ├── text-box-outline.png ├── tray_icon.png ├── upload.png ├── view-dashboard.png ├── vts_icon.png ├── vts_secondary_white_xFZ_icon.ico └── web.png ├── resources ├── MicrosoftEdgeWebview2Setup.exe ├── asciiecho.exe ├── dbgcore.dll ├── obs_scene_collection.json └── reshade.zip └── wwwtemplates ├── .gitignore └── default_scoreboard.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/.gitignore -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/AssemblyInfo.cs -------------------------------------------------------------------------------- /BezierCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/BezierCurve.cs -------------------------------------------------------------------------------- /CameraTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/CameraTransform.cs -------------------------------------------------------------------------------- /CameraWriteSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/CameraWriteSettings.cs -------------------------------------------------------------------------------- /Controllers/CameraWrite/CameraController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/CameraWrite/CameraController.cs -------------------------------------------------------------------------------- /Controllers/CameraWrite/CameraModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/CameraWrite/CameraModule.cs -------------------------------------------------------------------------------- /Controllers/CameraWrite/CameraWriteController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/CameraWrite/CameraWriteController.cs -------------------------------------------------------------------------------- /Controllers/CameraWrite/ControllableSideline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/CameraWrite/ControllableSideline.cs -------------------------------------------------------------------------------- /Controllers/CameraWrite/DiscOrbit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/CameraWrite/DiscOrbit.cs -------------------------------------------------------------------------------- /Controllers/CameraWrite/SpaceMouseInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/CameraWrite/SpaceMouseInput.cs -------------------------------------------------------------------------------- /Controllers/EchoGPController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/EchoGPController.cs -------------------------------------------------------------------------------- /Controllers/LocalDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/LocalDatabase.cs -------------------------------------------------------------------------------- /Controllers/LoggerEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/LoggerEvents.cs -------------------------------------------------------------------------------- /Controllers/Medal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/Medal.cs -------------------------------------------------------------------------------- /Controllers/Notifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/Notifications.cs -------------------------------------------------------------------------------- /Controllers/OBS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/OBS.cs -------------------------------------------------------------------------------- /Controllers/ReplayFilesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/ReplayFilesManager.cs -------------------------------------------------------------------------------- /Controllers/SpectateMeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/SpectateMeController.cs -------------------------------------------------------------------------------- /Controllers/TTSController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/TTSController.cs -------------------------------------------------------------------------------- /Controllers/UploadController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/UploadController.cs -------------------------------------------------------------------------------- /Controllers/WebSocketServerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Controllers/WebSocketServerManager.cs -------------------------------------------------------------------------------- /Data Containers/AccumulatedFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Data Containers/AccumulatedFrame.cs -------------------------------------------------------------------------------- /Data Containers/BatchOutputFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Data Containers/BatchOutputFormat.cs -------------------------------------------------------------------------------- /Data Containers/DataContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Data Containers/DataContainer.cs -------------------------------------------------------------------------------- /Data Containers/EventContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Data Containers/EventContainer.cs -------------------------------------------------------------------------------- /Data Containers/EventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Data Containers/EventData.cs -------------------------------------------------------------------------------- /Data Containers/GoalData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Data Containers/GoalData.cs -------------------------------------------------------------------------------- /Data Containers/MatchPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Data Containers/MatchPlayer.cs -------------------------------------------------------------------------------- /Data Containers/OverlayConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Data Containers/OverlayConfig.cs -------------------------------------------------------------------------------- /Data Containers/TabletStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Data Containers/TabletStats.cs -------------------------------------------------------------------------------- /Data Containers/TeamData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Data Containers/TeamData.cs -------------------------------------------------------------------------------- /Data Containers/ThrowData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Data Containers/ThrowData.cs -------------------------------------------------------------------------------- /Data Containers/ZMQ Messages/MatchEventZMQMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Data Containers/ZMQ Messages/MatchEventZMQMessage.cs -------------------------------------------------------------------------------- /Data Containers/ZMQ Messages/ZMQMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Data Containers/ZMQ Messages/ZMQMessage.cs -------------------------------------------------------------------------------- /DiscordOAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/DiscordOAuth.cs -------------------------------------------------------------------------------- /DiscordRichPresence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/DiscordRichPresence.cs -------------------------------------------------------------------------------- /EchoVRAPIPassthrough.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/EchoVRAPIPassthrough.cs -------------------------------------------------------------------------------- /EchoVRDefaultSettings/gamesettings_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/EchoVRDefaultSettings/gamesettings_config.json -------------------------------------------------------------------------------- /EchoVRDefaultSettings/loading_tips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/EchoVRDefaultSettings/loading_tips.json -------------------------------------------------------------------------------- /EchoVRDefaultSettings/matchsettings_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/EchoVRDefaultSettings/matchsettings_config.json -------------------------------------------------------------------------------- /EchoVRDefaultSettings/mp_sound_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/EchoVRDefaultSettings/mp_sound_settings.json -------------------------------------------------------------------------------- /EchoVRDefaultSettings/mp_spectator_cameras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/EchoVRDefaultSettings/mp_spectator_cameras.json -------------------------------------------------------------------------------- /EchoVRDefaultSettings/mp_spectator_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/EchoVRDefaultSettings/mp_spectator_settings.json -------------------------------------------------------------------------------- /EchoVRDefaultSettings/netconfig_client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/EchoVRDefaultSettings/netconfig_client.json -------------------------------------------------------------------------------- /EchoVRDefaultSettings/netconfig_server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/EchoVRDefaultSettings/netconfig_server.json -------------------------------------------------------------------------------- /EchoVRDefaultSettings/randomnames_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/EchoVRDefaultSettings/randomnames_config.json -------------------------------------------------------------------------------- /EchoVRDefaultSettings/settings_mp_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/EchoVRDefaultSettings/settings_mp_v2.json -------------------------------------------------------------------------------- /EchoVRSettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/EchoVRSettingsManager.cs -------------------------------------------------------------------------------- /FetchUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/FetchUtils.cs -------------------------------------------------------------------------------- /GfeSDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/GfeSDK.dll -------------------------------------------------------------------------------- /GitHubJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/GitHubJSON.cs -------------------------------------------------------------------------------- /GlobalHotKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/GlobalHotKey.cs -------------------------------------------------------------------------------- /HIDDeviceInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/HIDDeviceInput.cs -------------------------------------------------------------------------------- /Highlights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Highlights.cs -------------------------------------------------------------------------------- /HighlightsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/HighlightsHelper.cs -------------------------------------------------------------------------------- /HighlightsPlugin64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/HighlightsPlugin64.dll -------------------------------------------------------------------------------- /IgniteBot.Installer/Assets/Background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/IgniteBot.Installer/Assets/Background.bmp -------------------------------------------------------------------------------- /IgniteBot.Installer/Assets/Background.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/IgniteBot.Installer/Assets/Background.xcf -------------------------------------------------------------------------------- /IgniteBot.Installer/Assets/Banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/IgniteBot.Installer/Assets/Banner.bmp -------------------------------------------------------------------------------- /IgniteBot.Installer/Assets/Banner.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/IgniteBot.Installer/Assets/Banner.xcf -------------------------------------------------------------------------------- /IgniteBot.Installer/Common.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/IgniteBot.Installer/Common.wxl -------------------------------------------------------------------------------- /IgniteBot.Installer/Components.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/IgniteBot.Installer/Components.wxs -------------------------------------------------------------------------------- /IgniteBot.Installer/Directories.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/IgniteBot.Installer/Directories.wxs -------------------------------------------------------------------------------- /IgniteBot.Installer/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/IgniteBot.Installer/Product.wxs -------------------------------------------------------------------------------- /IgniteBot.Installer/Spark.Installer.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/IgniteBot.Installer/Spark.Installer.wixproj -------------------------------------------------------------------------------- /IgniteBotKey.pfx.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/IgniteBotKey.pfx.bak -------------------------------------------------------------------------------- /InstallEchoSpeakerSystem.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/InstallEchoSpeakerSystem.bat -------------------------------------------------------------------------------- /Keyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Keyboard.cs -------------------------------------------------------------------------------- /Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Logger.cs -------------------------------------------------------------------------------- /MILK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/MILK.md -------------------------------------------------------------------------------- /NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/NativeMethods.cs -------------------------------------------------------------------------------- /NetMQEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/NetMQEvents.cs -------------------------------------------------------------------------------- /Overlay/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/.eslintignore -------------------------------------------------------------------------------- /Overlay/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/.eslintrc.cjs -------------------------------------------------------------------------------- /Overlay/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/.gitignore -------------------------------------------------------------------------------- /Overlay/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /Overlay/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/.prettierignore -------------------------------------------------------------------------------- /Overlay/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/.prettierrc -------------------------------------------------------------------------------- /Overlay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/README.md -------------------------------------------------------------------------------- /Overlay/build_and_copy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/build_and_copy.ps1 -------------------------------------------------------------------------------- /Overlay/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/package-lock.json -------------------------------------------------------------------------------- /Overlay/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/package.json -------------------------------------------------------------------------------- /Overlay/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/app.d.ts -------------------------------------------------------------------------------- /Overlay/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/app.html -------------------------------------------------------------------------------- /Overlay/src/lib/components/CompactMainBanner.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/components/CompactMainBanner.svelte -------------------------------------------------------------------------------- /Overlay/src/lib/components/CompactMinimap.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/components/CompactMinimap.svelte -------------------------------------------------------------------------------- /Overlay/src/lib/components/DiagonalDropdown.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/components/DiagonalDropdown.svelte -------------------------------------------------------------------------------- /Overlay/src/lib/components/EventLog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/components/EventLog.svelte -------------------------------------------------------------------------------- /Overlay/src/lib/components/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/components/Header.svelte -------------------------------------------------------------------------------- /Overlay/src/lib/components/Minimap.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/components/Minimap.svelte -------------------------------------------------------------------------------- /Overlay/src/lib/components/PlayerListBlue.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/components/PlayerListBlue.svelte -------------------------------------------------------------------------------- /Overlay/src/lib/components/PlayerListOrange.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/components/PlayerListOrange.svelte -------------------------------------------------------------------------------- /Overlay/src/lib/components/PlayerLists.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/components/PlayerLists.svelte -------------------------------------------------------------------------------- /Overlay/src/lib/components/PositionableComponent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/components/PositionableComponent.svelte -------------------------------------------------------------------------------- /Overlay/src/lib/components/ShowSpeed.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/components/ShowSpeed.svelte -------------------------------------------------------------------------------- /Overlay/src/lib/components/ThreeDee.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/components/ThreeDee.svelte -------------------------------------------------------------------------------- /Overlay/src/lib/components/VisibilityConfigCheckbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/components/VisibilityConfigCheckbox.svelte -------------------------------------------------------------------------------- /Overlay/src/lib/css/player_list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/css/player_list.css -------------------------------------------------------------------------------- /Overlay/src/lib/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/css/prism.css -------------------------------------------------------------------------------- /Overlay/src/lib/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /Overlay/src/lib/fonts/Inconsolata.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/fonts/Inconsolata.woff2 -------------------------------------------------------------------------------- /Overlay/src/lib/img/align-horizontal-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/img/align-horizontal-center.png -------------------------------------------------------------------------------- /Overlay/src/lib/img/resize-bottom-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/img/resize-bottom-right.png -------------------------------------------------------------------------------- /Overlay/src/lib/js/Frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/js/Frame.ts -------------------------------------------------------------------------------- /Overlay/src/lib/js/SparkConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/js/SparkConfig.ts -------------------------------------------------------------------------------- /Overlay/src/lib/js/empty_frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/js/empty_frame.ts -------------------------------------------------------------------------------- /Overlay/src/lib/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/js/prism.js -------------------------------------------------------------------------------- /Overlay/src/lib/js/spark_websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/js/spark_websocket.js -------------------------------------------------------------------------------- /Overlay/src/lib/js/stores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/js/stores.ts -------------------------------------------------------------------------------- /Overlay/src/lib/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/lib/js/util.js -------------------------------------------------------------------------------- /Overlay/src/routes/(bulma)/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(bulma)/+layout.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(bulma)/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(bulma)/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(bulma)/api/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(bulma)/api/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(bulma)/local_database/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(bulma)/local_database/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(bulma)/overlays/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(bulma)/overlays/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(bulma)/overlays/match_setup/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(bulma)/overlays/match_setup/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(bulma)/websockets/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(bulma)/websockets/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/+layout.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/branding/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/branding/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/components/compact_main_banner/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/components/compact_main_banner/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/components/compact_minimap/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/components/compact_minimap/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/components/events/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/components/events/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/components/minimap/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/components/minimap/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/components/player_list_blue/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/components/player_list_blue/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/components/player_list_orange/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/components/player_list_orange/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/configurable_overlay/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/configurable_overlay/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/configurable_overlay_movable/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/configurable_overlay_movable/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/depth_events/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/depth_events/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/midmatch_overlay/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/midmatch_overlay/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/minimap/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/minimap/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/playspace/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/playspace/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/speedometer/disc/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/speedometer/disc/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/speedometer/lone_echo_1/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/speedometer/lone_echo_1/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/speedometer/lone_echo_2/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/speedometer/lone_echo_2/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/(overlays)/speedometer/player/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/(overlays)/speedometer/player/+page.svelte -------------------------------------------------------------------------------- /Overlay/src/routes/+layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/src/routes/+layout.ts -------------------------------------------------------------------------------- /Overlay/static/compact_main_banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/compact_main_banner.html -------------------------------------------------------------------------------- /Overlay/static/compact_minimap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/compact_minimap.html -------------------------------------------------------------------------------- /Overlay/static/configurable_overlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/configurable_overlay.html -------------------------------------------------------------------------------- /Overlay/static/css/autocomplete_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/css/autocomplete_styles.css -------------------------------------------------------------------------------- /Overlay/static/css/compact_main_banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/css/compact_main_banner.css -------------------------------------------------------------------------------- /Overlay/static/css/configurable_overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/css/configurable_overlay.css -------------------------------------------------------------------------------- /Overlay/static/css/event_banners.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/css/event_banners.css -------------------------------------------------------------------------------- /Overlay/static/css/lib/bulma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/css/lib/bulma.min.css -------------------------------------------------------------------------------- /Overlay/static/css/main_banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/css/main_banner.css -------------------------------------------------------------------------------- /Overlay/static/css/mathematical_time.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/css/mathematical_time.css -------------------------------------------------------------------------------- /Overlay/static/css/minimap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/css/minimap.css -------------------------------------------------------------------------------- /Overlay/static/css/minimap_canvas.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Overlay/static/css/minimap_minimal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/css/minimap_minimal.css -------------------------------------------------------------------------------- /Overlay/static/css/player_lists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/css/player_lists.css -------------------------------------------------------------------------------- /Overlay/static/css/shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/css/shared.css -------------------------------------------------------------------------------- /Overlay/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/css/styles.css -------------------------------------------------------------------------------- /Overlay/static/default_minimap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/default_minimap.html -------------------------------------------------------------------------------- /Overlay/static/disc_position_heatmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/disc_position_heatmap.html -------------------------------------------------------------------------------- /Overlay/static/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/docs.html -------------------------------------------------------------------------------- /Overlay/static/event_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/event_log.html -------------------------------------------------------------------------------- /Overlay/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/favicon.ico -------------------------------------------------------------------------------- /Overlay/static/fonts/Atmospheric.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/fonts/Atmospheric.otf -------------------------------------------------------------------------------- /Overlay/static/fonts/Furore.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/fonts/Furore.otf -------------------------------------------------------------------------------- /Overlay/static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /Overlay/static/fonts/Inconsolata.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/fonts/Inconsolata.woff -------------------------------------------------------------------------------- /Overlay/static/fonts/Inconsolata.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/fonts/Inconsolata.woff2 -------------------------------------------------------------------------------- /Overlay/static/fonts/Oxanium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/fonts/Oxanium.ttf -------------------------------------------------------------------------------- /Overlay/static/fonts/Prototype.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/fonts/Prototype.ttf -------------------------------------------------------------------------------- /Overlay/static/fonts/SF_Sports_Night_NS_Upright.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/fonts/SF_Sports_Night_NS_Upright.ttf -------------------------------------------------------------------------------- /Overlay/static/fonts/big_noodle_titling.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/fonts/big_noodle_titling.ttf -------------------------------------------------------------------------------- /Overlay/static/fonts/goodtimes.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/fonts/goodtimes.ttf -------------------------------------------------------------------------------- /Overlay/static/fonts/ubuntu-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/fonts/ubuntu-700.ttf -------------------------------------------------------------------------------- /Overlay/static/fonts/ubuntu-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/fonts/ubuntu-700.woff2 -------------------------------------------------------------------------------- /Overlay/static/fonts/ubuntu-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/fonts/ubuntu-regular.ttf -------------------------------------------------------------------------------- /Overlay/static/fonts/ubuntu-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/fonts/ubuntu-regular.woff2 -------------------------------------------------------------------------------- /Overlay/static/full_overlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/full_overlay.html -------------------------------------------------------------------------------- /Overlay/static/img/combat_head_240px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/img/combat_head_240px.png -------------------------------------------------------------------------------- /Overlay/static/img/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/img/database.png -------------------------------------------------------------------------------- /Overlay/static/img/default_minimap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/img/default_minimap.png -------------------------------------------------------------------------------- /Overlay/static/img/empty_echo_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/img/empty_echo_background.png -------------------------------------------------------------------------------- /Overlay/static/img/ignite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/img/ignite_logo.png -------------------------------------------------------------------------------- /Overlay/static/img/ignite_logo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/img/ignite_logo_128.png -------------------------------------------------------------------------------- /Overlay/static/img/ignite_logo_primary_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/img/ignite_logo_primary_256.png -------------------------------------------------------------------------------- /Overlay/static/img/ignite_logo_primary_white_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/img/ignite_logo_primary_white_256.png -------------------------------------------------------------------------------- /Overlay/static/img/json_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/img/json_cover.png -------------------------------------------------------------------------------- /Overlay/static/img/minimap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/img/minimap.png -------------------------------------------------------------------------------- /Overlay/static/img/minimap_disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/img/minimap_disc.png -------------------------------------------------------------------------------- /Overlay/static/img/minimap_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/img/minimap_raw.png -------------------------------------------------------------------------------- /Overlay/static/img/minimap_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/img/minimap_simple.png -------------------------------------------------------------------------------- /Overlay/static/img/swap-horizontal-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/img/swap-horizontal-bold.png -------------------------------------------------------------------------------- /Overlay/static/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/js/autocomplete.js -------------------------------------------------------------------------------- /Overlay/static/js/fetch_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/js/fetch_utils.js -------------------------------------------------------------------------------- /Overlay/static/js/full_overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/js/full_overlay.js -------------------------------------------------------------------------------- /Overlay/static/js/heatmap_min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/js/heatmap_min.js -------------------------------------------------------------------------------- /Overlay/static/js/lib/fitty.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/js/lib/fitty.min.js -------------------------------------------------------------------------------- /Overlay/static/js/lib/heatmap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/js/lib/heatmap.min.js -------------------------------------------------------------------------------- /Overlay/static/js/lib/reconnecting-websocket.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/js/lib/reconnecting-websocket.min.js -------------------------------------------------------------------------------- /Overlay/static/js/minimap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/js/minimap.js -------------------------------------------------------------------------------- /Overlay/static/js/spark_websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/js/spark_websocket.js -------------------------------------------------------------------------------- /Overlay/static/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/js/util.js -------------------------------------------------------------------------------- /Overlay/static/midmatch_overlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/midmatch_overlay.html -------------------------------------------------------------------------------- /Overlay/static/minimap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/minimap.html -------------------------------------------------------------------------------- /Overlay/static/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/openapi.yaml -------------------------------------------------------------------------------- /Overlay/static/player_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/player_lists.html -------------------------------------------------------------------------------- /Overlay/static/playspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/playspace.html -------------------------------------------------------------------------------- /Overlay/static/speedometer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/speedometer.html -------------------------------------------------------------------------------- /Overlay/static/websockets/game_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/websockets/game_data.html -------------------------------------------------------------------------------- /Overlay/static/websockets/websocket_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/static/websockets/websocket_example.html -------------------------------------------------------------------------------- /Overlay/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/svelte.config.js -------------------------------------------------------------------------------- /Overlay/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/tsconfig.json -------------------------------------------------------------------------------- /Overlay/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Overlay/vite.config.ts -------------------------------------------------------------------------------- /OverlayServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/OverlayServer.cs -------------------------------------------------------------------------------- /OverlaysCustom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/OverlaysCustom.cs -------------------------------------------------------------------------------- /PC-PC_Spectate_Me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/PC-PC_Spectate_Me.md -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/Icons.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Properties/Icons.Designer.cs -------------------------------------------------------------------------------- /Properties/Icons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Properties/Icons.resx -------------------------------------------------------------------------------- /Properties/LoadingTips.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Properties/LoadingTips.Designer.cs -------------------------------------------------------------------------------- /Properties/LoadingTips.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Properties/LoadingTips.es.resx -------------------------------------------------------------------------------- /Properties/LoadingTips.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Properties/LoadingTips.ja.resx -------------------------------------------------------------------------------- /Properties/LoadingTips.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Properties/LoadingTips.resx -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Properties/Resources.es.resx -------------------------------------------------------------------------------- /Properties/Resources.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Properties/Resources.ja.resx -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /QuestIPFetching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/QuestIPFetching.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/README.md -------------------------------------------------------------------------------- /ReplayClips.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/ReplayClips.cs -------------------------------------------------------------------------------- /ReplayFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/ReplayFileReader.cs -------------------------------------------------------------------------------- /SecretKeys.cs.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SecretKeys.cs.bak -------------------------------------------------------------------------------- /Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Settings.cs -------------------------------------------------------------------------------- /Spark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Spark.csproj -------------------------------------------------------------------------------- /Spark.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Spark.csproj.DotSettings -------------------------------------------------------------------------------- /Spark.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Spark.sln -------------------------------------------------------------------------------- /Spark.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Spark.sln.DotSettings -------------------------------------------------------------------------------- /SparkAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkAPI.cs -------------------------------------------------------------------------------- /SparkMSIX/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /SparkMSIX/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /SparkMSIX/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /SparkMSIX/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /SparkMSIX/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /SparkMSIX/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /SparkMSIX/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /SparkMSIX/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /SparkMSIX/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /SparkMSIX/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /SparkMSIX/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /SparkMSIX/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /SparkMSIX/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /SparkMSIX/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /SparkMSIX/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /SparkMSIX/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /SparkMSIX/Images/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/StoreLogo.backup.png -------------------------------------------------------------------------------- /SparkMSIX/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /SparkMSIX/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /SparkMSIX/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /SparkMSIX/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /SparkMSIX/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /SparkMSIX/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /SparkMSIX/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/Package.appxmanifest -------------------------------------------------------------------------------- /SparkMSIX/SparkMSIX.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkMSIX/SparkMSIX.wapproj -------------------------------------------------------------------------------- /SparkSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SparkSettings.cs -------------------------------------------------------------------------------- /SpeechRecognition/SpeechRecognition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/SpeechRecognition/SpeechRecognition.cs -------------------------------------------------------------------------------- /Spline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Spline.cs -------------------------------------------------------------------------------- /Themes/ColourfulDarkTheme_Orange.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/ColourfulDarkTheme_Orange.xaml -------------------------------------------------------------------------------- /Themes/ColourfulDarkTheme_Orange.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/ColourfulDarkTheme_Orange.xaml.cs -------------------------------------------------------------------------------- /Themes/ColourfulDarkTheme_Red.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/ColourfulDarkTheme_Red.xaml -------------------------------------------------------------------------------- /Themes/ColourfulDarkTheme_Red.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/ColourfulDarkTheme_Red.xaml.cs -------------------------------------------------------------------------------- /Themes/ColourfulDarkTheme_Yellow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/ColourfulDarkTheme_Yellow.xaml -------------------------------------------------------------------------------- /Themes/ColourfulDarkTheme_Yellow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/ColourfulDarkTheme_Yellow.xaml.cs -------------------------------------------------------------------------------- /Themes/ColourfulDarkTheme_base.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/ColourfulDarkTheme_base.xaml -------------------------------------------------------------------------------- /Themes/ColourfulDarkTheme_base.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/ColourfulDarkTheme_base.xaml.cs -------------------------------------------------------------------------------- /Themes/ColourfulLightTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/ColourfulLightTheme.xaml -------------------------------------------------------------------------------- /Themes/ColourfulLightTheme.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/ColourfulLightTheme.xaml.cs -------------------------------------------------------------------------------- /Themes/DarkTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/DarkTheme.xaml -------------------------------------------------------------------------------- /Themes/DarkTheme.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/DarkTheme.xaml.cs -------------------------------------------------------------------------------- /Themes/LightTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/LightTheme.xaml -------------------------------------------------------------------------------- /Themes/LightTheme.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/LightTheme.xaml.cs -------------------------------------------------------------------------------- /Themes/ThemesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Themes/ThemesController.cs -------------------------------------------------------------------------------- /WebServer2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/WebServer2.cs -------------------------------------------------------------------------------- /Windows/AtlasWhitelistWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/AtlasWhitelistWindow.xaml -------------------------------------------------------------------------------- /Windows/AtlasWhitelistWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/AtlasWhitelistWindow.xaml.cs -------------------------------------------------------------------------------- /Windows/ChooseJoinTypeDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/ChooseJoinTypeDialog.xaml -------------------------------------------------------------------------------- /Windows/ChooseJoinTypeDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/ChooseJoinTypeDialog.xaml.cs -------------------------------------------------------------------------------- /Windows/ClosingDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/ClosingDialog.xaml -------------------------------------------------------------------------------- /Windows/ClosingDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/ClosingDialog.xaml.cs -------------------------------------------------------------------------------- /Windows/CreateServer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/CreateServer.xaml -------------------------------------------------------------------------------- /Windows/CreateServer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/CreateServer.xaml.cs -------------------------------------------------------------------------------- /Windows/FirstTimeSetupWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/FirstTimeSetupWindow.xaml -------------------------------------------------------------------------------- /Windows/FirstTimeSetupWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/FirstTimeSetupWindow.xaml.cs -------------------------------------------------------------------------------- /Windows/GameOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/GameOverlay.xaml -------------------------------------------------------------------------------- /Windows/GameOverlay.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/GameOverlay.xaml.cs -------------------------------------------------------------------------------- /Windows/LiveWindow/CameraWrite.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LiveWindow/CameraWrite.xaml -------------------------------------------------------------------------------- /Windows/LiveWindow/CameraWrite.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LiveWindow/CameraWrite.xaml.cs -------------------------------------------------------------------------------- /Windows/LiveWindow/CreateServerControls.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LiveWindow/CreateServerControls.xaml -------------------------------------------------------------------------------- /Windows/LiveWindow/CreateServerControls.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LiveWindow/CreateServerControls.xaml.cs -------------------------------------------------------------------------------- /Windows/LiveWindow/EchoGP.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LiveWindow/EchoGP.xaml -------------------------------------------------------------------------------- /Windows/LiveWindow/EchoGP.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LiveWindow/EchoGP.xaml.cs -------------------------------------------------------------------------------- /Windows/LiveWindow/LiveWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LiveWindow/LiveWindow.xaml -------------------------------------------------------------------------------- /Windows/LiveWindow/LiveWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LiveWindow/LiveWindow.xaml.cs -------------------------------------------------------------------------------- /Windows/LiveWindow/PrivateMatchRulesWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LiveWindow/PrivateMatchRulesWindow.xaml -------------------------------------------------------------------------------- /Windows/LiveWindow/PrivateMatchRulesWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LiveWindow/PrivateMatchRulesWindow.xaml.cs -------------------------------------------------------------------------------- /Windows/LiveWindow/ServerInfo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LiveWindow/ServerInfo.xaml -------------------------------------------------------------------------------- /Windows/LiveWindow/ServerInfo.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LiveWindow/ServerInfo.xaml.cs -------------------------------------------------------------------------------- /Windows/LoginWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LoginWindow.xaml -------------------------------------------------------------------------------- /Windows/LoginWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LoginWindow.xaml.cs -------------------------------------------------------------------------------- /Windows/LoneEchoSubtitles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LoneEchoSubtitles.xaml -------------------------------------------------------------------------------- /Windows/LoneEchoSubtitles.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/LoneEchoSubtitles.xaml.cs -------------------------------------------------------------------------------- /Windows/MessageBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/MessageBox.xaml -------------------------------------------------------------------------------- /Windows/MessageBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/MessageBox.xaml.cs -------------------------------------------------------------------------------- /Windows/PingGraphWebView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/PingGraphWebView.xaml -------------------------------------------------------------------------------- /Windows/PingGraphWebView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/PingGraphWebView.xaml.cs -------------------------------------------------------------------------------- /Windows/Playspace.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/Playspace.xaml -------------------------------------------------------------------------------- /Windows/Playspace.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/Playspace.xaml.cs -------------------------------------------------------------------------------- /Windows/QProJoiner.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/QProJoiner.xaml -------------------------------------------------------------------------------- /Windows/QProJoiner.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/QProJoiner.xaml.cs -------------------------------------------------------------------------------- /Windows/QuestIPs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/QuestIPs.xaml -------------------------------------------------------------------------------- /Windows/QuestIPs.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/QuestIPs.xaml.cs -------------------------------------------------------------------------------- /Windows/Settings/ClipsSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/Settings/ClipsSettings.xaml -------------------------------------------------------------------------------- /Windows/Settings/ClipsSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/Settings/ClipsSettings.xaml.cs -------------------------------------------------------------------------------- /Windows/Settings/OverlaysConfigWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/Settings/OverlaysConfigWindow.xaml -------------------------------------------------------------------------------- /Windows/Settings/OverlaysConfigWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/Settings/OverlaysConfigWindow.xaml.cs -------------------------------------------------------------------------------- /Windows/Settings/UnifiedSettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/Settings/UnifiedSettingsWindow.xaml -------------------------------------------------------------------------------- /Windows/Settings/UnifiedSettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/Settings/UnifiedSettingsWindow.xaml.cs -------------------------------------------------------------------------------- /Windows/SliderWithLabel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/SliderWithLabel.xaml -------------------------------------------------------------------------------- /Windows/SliderWithLabel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/SliderWithLabel.xaml.cs -------------------------------------------------------------------------------- /Windows/Speedometer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/Speedometer.xaml -------------------------------------------------------------------------------- /Windows/Speedometer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/Speedometer.xaml.cs -------------------------------------------------------------------------------- /Windows/UpdateWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/UpdateWindow.xaml -------------------------------------------------------------------------------- /Windows/UpdateWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/UpdateWindow.xaml.cs -------------------------------------------------------------------------------- /Windows/UploadTabletStatsMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/UploadTabletStatsMenu.xaml -------------------------------------------------------------------------------- /Windows/UploadTabletStatsMenu.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/UploadTabletStatsMenu.xaml.cs -------------------------------------------------------------------------------- /Windows/YouSureAboutClosing.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/YouSureAboutClosing.xaml -------------------------------------------------------------------------------- /Windows/YouSureAboutClosing.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/Windows/YouSureAboutClosing.xaml.cs -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/global.json -------------------------------------------------------------------------------- /img/alternate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/alternate_white.png -------------------------------------------------------------------------------- /img/application-cog-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/application-cog-outline.png -------------------------------------------------------------------------------- /img/arrow-left-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/arrow-left-bold.png -------------------------------------------------------------------------------- /img/arrow-right-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/arrow-right-bold.png -------------------------------------------------------------------------------- /img/baseline_replay_white_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/baseline_replay_white_24px.png -------------------------------------------------------------------------------- /img/baseline_replay_white_27px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/baseline_replay_white_27px.png -------------------------------------------------------------------------------- /img/baseline_replay_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/baseline_replay_white_48dp.png -------------------------------------------------------------------------------- /img/baseline_replay_white_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/baseline_replay_white_48px.png -------------------------------------------------------------------------------- /img/camera-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/camera-outline.png -------------------------------------------------------------------------------- /img/card-search-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/card-search-outline.png -------------------------------------------------------------------------------- /img/cards-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/cards-outline.png -------------------------------------------------------------------------------- /img/clipboard-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/clipboard-outline.png -------------------------------------------------------------------------------- /img/closed-caption-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/closed-caption-outline.png -------------------------------------------------------------------------------- /img/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/cog.png -------------------------------------------------------------------------------- /img/content-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/content-cut.png -------------------------------------------------------------------------------- /img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/delete.png -------------------------------------------------------------------------------- /img/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/download.png -------------------------------------------------------------------------------- /img/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/earth.png -------------------------------------------------------------------------------- /img/flag-checkered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/flag-checkered.png -------------------------------------------------------------------------------- /img/flamingo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/flamingo-white.png -------------------------------------------------------------------------------- /img/ignite_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/ignite_logo.ico -------------------------------------------------------------------------------- /img/ignite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/ignite_logo.png -------------------------------------------------------------------------------- /img/ignite_logo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/ignite_logo_128.png -------------------------------------------------------------------------------- /img/ignite_logo_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/ignite_logo_32.png -------------------------------------------------------------------------------- /img/ignite_logo_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/ignite_logo_64.png -------------------------------------------------------------------------------- /img/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/link.png -------------------------------------------------------------------------------- /img/open-in-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/open-in-new.png -------------------------------------------------------------------------------- /img/orbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/orbit.png -------------------------------------------------------------------------------- /img/primary-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/primary-white.png -------------------------------------------------------------------------------- /img/replay_viewer_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/replay_viewer_logo.png -------------------------------------------------------------------------------- /img/replay_viewer_logo_colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/replay_viewer_logo_colored.png -------------------------------------------------------------------------------- /img/script-text-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/script-text-outline.png -------------------------------------------------------------------------------- /img/secondary_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/secondary_white.png -------------------------------------------------------------------------------- /img/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/speaker.png -------------------------------------------------------------------------------- /img/subtitles-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/subtitles-outline.png -------------------------------------------------------------------------------- /img/swap-horizontal-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/swap-horizontal-bold.png -------------------------------------------------------------------------------- /img/tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/tablet.png -------------------------------------------------------------------------------- /img/text-box-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/text-box-outline.png -------------------------------------------------------------------------------- /img/tray_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/tray_icon.png -------------------------------------------------------------------------------- /img/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/upload.png -------------------------------------------------------------------------------- /img/view-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/view-dashboard.png -------------------------------------------------------------------------------- /img/vts_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/vts_icon.png -------------------------------------------------------------------------------- /img/vts_secondary_white_xFZ_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/vts_secondary_white_xFZ_icon.ico -------------------------------------------------------------------------------- /img/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/img/web.png -------------------------------------------------------------------------------- /resources/MicrosoftEdgeWebview2Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/resources/MicrosoftEdgeWebview2Setup.exe -------------------------------------------------------------------------------- /resources/asciiecho.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/resources/asciiecho.exe -------------------------------------------------------------------------------- /resources/dbgcore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/resources/dbgcore.dll -------------------------------------------------------------------------------- /resources/obs_scene_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/resources/obs_scene_collection.json -------------------------------------------------------------------------------- /resources/reshade.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/resources/reshade.zip -------------------------------------------------------------------------------- /wwwtemplates/.gitignore: -------------------------------------------------------------------------------- 1 | vrml/ 2 | -------------------------------------------------------------------------------- /wwwtemplates/default_scoreboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtsFranz/Spark/HEAD/wwwtemplates/default_scoreboard.html --------------------------------------------------------------------------------