├── .github ├── mirror.yml └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── .vscode └── launch.json ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── mbf-adb-killer ├── Cargo.toml └── src │ └── main.rs ├── mbf-agent-wrapper ├── README.md └── mbf-agent-wrapper.py ├── mbf-agent ├── .gitignore ├── .vscode │ └── settings.json ├── Cargo.toml ├── build.rs └── src │ ├── data_fix.rs │ ├── debug_cert.pem │ ├── downgrading.rs │ ├── downloads.rs │ ├── handlers │ ├── import.rs │ ├── mod.rs │ ├── mod_management.rs │ ├── mod_status.rs │ ├── patching.rs │ └── utility.rs │ ├── main.rs │ ├── manifest.rs │ ├── mod_man │ ├── loaded_mod.rs │ ├── manifest.rs │ ├── mod.rs │ ├── qmod_schema.json │ └── util.rs │ ├── models │ ├── mod.rs │ ├── request.rs │ └── response.rs │ ├── parameters.rs │ ├── patching.rs │ └── requests.rs ├── mbf-axml ├── Cargo.toml ├── LICENSE ├── README.md └── src │ ├── axml2xml.rs │ ├── lib.rs │ ├── reader.rs │ ├── res_ids.rs │ ├── resourceIds.bin │ └── writer.rs ├── mbf-res-man ├── .gitignore ├── Cargo.toml ├── README.md ├── apk_data │ └── README.md └── src │ ├── adb.rs │ ├── default_agent.rs │ ├── diff_builder.rs │ ├── external_res.rs │ ├── hash_cache.rs │ ├── lib.rs │ ├── main.rs │ ├── models.rs │ ├── oculus_db.rs │ ├── release_editor.rs │ ├── res_cache.rs │ └── version_grabber.rs ├── mbf-site ├── .gitignore ├── README.md ├── index.html ├── package.json ├── public │ ├── favicon.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── Agent.ts │ ├── AndroidManifest.ts │ ├── AnimatedBackground.tsx │ ├── App.tsx │ ├── DeviceModder.tsx │ ├── DeviceStore.ts │ ├── Logging.ts │ ├── Messages.ts │ ├── Models.tsx │ ├── ModsRepo.ts │ ├── SyncStore.ts │ ├── components │ │ ├── Collapsible.tsx │ │ ├── CornerMenu.tsx │ │ ├── CreditsModal.tsx │ │ ├── EditableList.tsx │ │ ├── IconButton.tsx │ │ ├── LabelledIconButton.tsx │ │ ├── LogWindow.tsx │ │ ├── ModCard.tsx │ │ ├── ModManager.tsx │ │ ├── ModRepoBrowser.tsx │ │ ├── ModRepoCard.tsx │ │ ├── Modal.tsx │ │ ├── OpenLogsButton.tsx │ │ ├── OperationModals.tsx │ │ ├── OptionsMenu.tsx │ │ ├── PermissionsMenu.tsx │ │ ├── SelectableList.tsx │ │ ├── SettingsModal.tsx │ │ ├── Slider.tsx │ │ └── SplashScreenSelector.tsx │ ├── css │ │ ├── AnimatedBackground.css │ │ ├── App.css │ │ ├── Collapsible.css │ │ ├── CornerMenu.css │ │ ├── DeviceModder.css │ │ ├── EditableList.css │ │ ├── IconButton.css │ │ ├── LabelledIconButton.css │ │ ├── LogWindow.css │ │ ├── ModCard.css │ │ ├── ModManager.css │ │ ├── ModRepoBrowser.css │ │ ├── ModRepoCard.css │ │ ├── Modal.css │ │ ├── OpenLogs.css │ │ ├── OptionsMenu.css │ │ ├── PermissionsMenu.css │ │ ├── SelectableList.css │ │ ├── Slider.css │ │ └── index.css │ ├── fonts │ │ └── Consolas.ttf │ ├── game_info.ts │ ├── hooks │ │ └── useFileDropper.tsx │ ├── icons │ │ ├── alert-circle.svg │ │ ├── alert-triangle.svg │ │ ├── checkbox-empty.svg │ │ ├── checkbox-filled.svg │ │ ├── code.svg │ │ ├── copy.svg │ │ ├── debug.svg │ │ ├── download-icon.svg │ │ ├── exit.svg │ │ ├── logs.svg │ │ ├── mod-icon.svg │ │ ├── preferences.svg │ │ ├── sparkles.svg │ │ ├── sync.svg │ │ ├── tools-icon.svg │ │ ├── trash.svg │ │ ├── update-icon.svg │ │ └── upload.svg │ ├── index.tsx │ ├── platformDetection.tsx │ └── reportWebVitals.ts ├── tsconfig.json ├── vite-env.d.ts ├── vite.config.ts └── yarn.lock ├── mbf-zip ├── Cargo.toml ├── README.md └── src │ ├── data.rs │ ├── lib.rs │ └── signing.rs ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── watch_agent.ps1 └── yarn.lock /.github/mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/.github/mirror.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/README.md -------------------------------------------------------------------------------- /mbf-adb-killer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-adb-killer/Cargo.toml -------------------------------------------------------------------------------- /mbf-adb-killer/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-adb-killer/src/main.rs -------------------------------------------------------------------------------- /mbf-agent-wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent-wrapper/README.md -------------------------------------------------------------------------------- /mbf-agent-wrapper/mbf-agent-wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent-wrapper/mbf-agent-wrapper.py -------------------------------------------------------------------------------- /mbf-agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/.gitignore -------------------------------------------------------------------------------- /mbf-agent/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/.vscode/settings.json -------------------------------------------------------------------------------- /mbf-agent/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/Cargo.toml -------------------------------------------------------------------------------- /mbf-agent/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/build.rs -------------------------------------------------------------------------------- /mbf-agent/src/data_fix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/data_fix.rs -------------------------------------------------------------------------------- /mbf-agent/src/debug_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/debug_cert.pem -------------------------------------------------------------------------------- /mbf-agent/src/downgrading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/downgrading.rs -------------------------------------------------------------------------------- /mbf-agent/src/downloads.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/downloads.rs -------------------------------------------------------------------------------- /mbf-agent/src/handlers/import.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/handlers/import.rs -------------------------------------------------------------------------------- /mbf-agent/src/handlers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/handlers/mod.rs -------------------------------------------------------------------------------- /mbf-agent/src/handlers/mod_management.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/handlers/mod_management.rs -------------------------------------------------------------------------------- /mbf-agent/src/handlers/mod_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/handlers/mod_status.rs -------------------------------------------------------------------------------- /mbf-agent/src/handlers/patching.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/handlers/patching.rs -------------------------------------------------------------------------------- /mbf-agent/src/handlers/utility.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/handlers/utility.rs -------------------------------------------------------------------------------- /mbf-agent/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/main.rs -------------------------------------------------------------------------------- /mbf-agent/src/manifest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/manifest.rs -------------------------------------------------------------------------------- /mbf-agent/src/mod_man/loaded_mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/mod_man/loaded_mod.rs -------------------------------------------------------------------------------- /mbf-agent/src/mod_man/manifest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/mod_man/manifest.rs -------------------------------------------------------------------------------- /mbf-agent/src/mod_man/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/mod_man/mod.rs -------------------------------------------------------------------------------- /mbf-agent/src/mod_man/qmod_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/mod_man/qmod_schema.json -------------------------------------------------------------------------------- /mbf-agent/src/mod_man/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/mod_man/util.rs -------------------------------------------------------------------------------- /mbf-agent/src/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/models/mod.rs -------------------------------------------------------------------------------- /mbf-agent/src/models/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/models/request.rs -------------------------------------------------------------------------------- /mbf-agent/src/models/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/models/response.rs -------------------------------------------------------------------------------- /mbf-agent/src/parameters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/parameters.rs -------------------------------------------------------------------------------- /mbf-agent/src/patching.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/patching.rs -------------------------------------------------------------------------------- /mbf-agent/src/requests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-agent/src/requests.rs -------------------------------------------------------------------------------- /mbf-axml/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-axml/Cargo.toml -------------------------------------------------------------------------------- /mbf-axml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-axml/LICENSE -------------------------------------------------------------------------------- /mbf-axml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-axml/README.md -------------------------------------------------------------------------------- /mbf-axml/src/axml2xml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-axml/src/axml2xml.rs -------------------------------------------------------------------------------- /mbf-axml/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-axml/src/lib.rs -------------------------------------------------------------------------------- /mbf-axml/src/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-axml/src/reader.rs -------------------------------------------------------------------------------- /mbf-axml/src/res_ids.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-axml/src/res_ids.rs -------------------------------------------------------------------------------- /mbf-axml/src/resourceIds.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-axml/src/resourceIds.bin -------------------------------------------------------------------------------- /mbf-axml/src/writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-axml/src/writer.rs -------------------------------------------------------------------------------- /mbf-res-man/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/.gitignore -------------------------------------------------------------------------------- /mbf-res-man/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/Cargo.toml -------------------------------------------------------------------------------- /mbf-res-man/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/README.md -------------------------------------------------------------------------------- /mbf-res-man/apk_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/apk_data/README.md -------------------------------------------------------------------------------- /mbf-res-man/src/adb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/src/adb.rs -------------------------------------------------------------------------------- /mbf-res-man/src/default_agent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/src/default_agent.rs -------------------------------------------------------------------------------- /mbf-res-man/src/diff_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/src/diff_builder.rs -------------------------------------------------------------------------------- /mbf-res-man/src/external_res.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/src/external_res.rs -------------------------------------------------------------------------------- /mbf-res-man/src/hash_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/src/hash_cache.rs -------------------------------------------------------------------------------- /mbf-res-man/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/src/lib.rs -------------------------------------------------------------------------------- /mbf-res-man/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/src/main.rs -------------------------------------------------------------------------------- /mbf-res-man/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/src/models.rs -------------------------------------------------------------------------------- /mbf-res-man/src/oculus_db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/src/oculus_db.rs -------------------------------------------------------------------------------- /mbf-res-man/src/release_editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/src/release_editor.rs -------------------------------------------------------------------------------- /mbf-res-man/src/res_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/src/res_cache.rs -------------------------------------------------------------------------------- /mbf-res-man/src/version_grabber.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-res-man/src/version_grabber.rs -------------------------------------------------------------------------------- /mbf-site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/.gitignore -------------------------------------------------------------------------------- /mbf-site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/README.md -------------------------------------------------------------------------------- /mbf-site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/index.html -------------------------------------------------------------------------------- /mbf-site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/package.json -------------------------------------------------------------------------------- /mbf-site/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/public/favicon.png -------------------------------------------------------------------------------- /mbf-site/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/public/manifest.json -------------------------------------------------------------------------------- /mbf-site/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/public/robots.txt -------------------------------------------------------------------------------- /mbf-site/src/Agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/Agent.ts -------------------------------------------------------------------------------- /mbf-site/src/AndroidManifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/AndroidManifest.ts -------------------------------------------------------------------------------- /mbf-site/src/AnimatedBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/AnimatedBackground.tsx -------------------------------------------------------------------------------- /mbf-site/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/App.tsx -------------------------------------------------------------------------------- /mbf-site/src/DeviceModder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/DeviceModder.tsx -------------------------------------------------------------------------------- /mbf-site/src/DeviceStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/DeviceStore.ts -------------------------------------------------------------------------------- /mbf-site/src/Logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/Logging.ts -------------------------------------------------------------------------------- /mbf-site/src/Messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/Messages.ts -------------------------------------------------------------------------------- /mbf-site/src/Models.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/Models.tsx -------------------------------------------------------------------------------- /mbf-site/src/ModsRepo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/ModsRepo.ts -------------------------------------------------------------------------------- /mbf-site/src/SyncStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/SyncStore.ts -------------------------------------------------------------------------------- /mbf-site/src/components/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/Collapsible.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/CornerMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/CornerMenu.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/CreditsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/CreditsModal.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/EditableList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/EditableList.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/IconButton.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/LabelledIconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/LabelledIconButton.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/LogWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/LogWindow.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/ModCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/ModCard.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/ModManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/ModManager.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/ModRepoBrowser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/ModRepoBrowser.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/ModRepoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/ModRepoCard.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/Modal.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/OpenLogsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/OpenLogsButton.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/OperationModals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/OperationModals.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/OptionsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/OptionsMenu.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/PermissionsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/PermissionsMenu.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/SelectableList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/SelectableList.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/SettingsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/SettingsModal.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/Slider.tsx -------------------------------------------------------------------------------- /mbf-site/src/components/SplashScreenSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/components/SplashScreenSelector.tsx -------------------------------------------------------------------------------- /mbf-site/src/css/AnimatedBackground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/AnimatedBackground.css -------------------------------------------------------------------------------- /mbf-site/src/css/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/App.css -------------------------------------------------------------------------------- /mbf-site/src/css/Collapsible.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/Collapsible.css -------------------------------------------------------------------------------- /mbf-site/src/css/CornerMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/CornerMenu.css -------------------------------------------------------------------------------- /mbf-site/src/css/DeviceModder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/DeviceModder.css -------------------------------------------------------------------------------- /mbf-site/src/css/EditableList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/EditableList.css -------------------------------------------------------------------------------- /mbf-site/src/css/IconButton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/IconButton.css -------------------------------------------------------------------------------- /mbf-site/src/css/LabelledIconButton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/LabelledIconButton.css -------------------------------------------------------------------------------- /mbf-site/src/css/LogWindow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/LogWindow.css -------------------------------------------------------------------------------- /mbf-site/src/css/ModCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/ModCard.css -------------------------------------------------------------------------------- /mbf-site/src/css/ModManager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/ModManager.css -------------------------------------------------------------------------------- /mbf-site/src/css/ModRepoBrowser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/ModRepoBrowser.css -------------------------------------------------------------------------------- /mbf-site/src/css/ModRepoCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/ModRepoCard.css -------------------------------------------------------------------------------- /mbf-site/src/css/Modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/Modal.css -------------------------------------------------------------------------------- /mbf-site/src/css/OpenLogs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/OpenLogs.css -------------------------------------------------------------------------------- /mbf-site/src/css/OptionsMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/OptionsMenu.css -------------------------------------------------------------------------------- /mbf-site/src/css/PermissionsMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/PermissionsMenu.css -------------------------------------------------------------------------------- /mbf-site/src/css/SelectableList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/SelectableList.css -------------------------------------------------------------------------------- /mbf-site/src/css/Slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/Slider.css -------------------------------------------------------------------------------- /mbf-site/src/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/css/index.css -------------------------------------------------------------------------------- /mbf-site/src/fonts/Consolas.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/fonts/Consolas.ttf -------------------------------------------------------------------------------- /mbf-site/src/game_info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/game_info.ts -------------------------------------------------------------------------------- /mbf-site/src/hooks/useFileDropper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/hooks/useFileDropper.tsx -------------------------------------------------------------------------------- /mbf-site/src/icons/alert-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/alert-circle.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/alert-triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/alert-triangle.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/checkbox-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/checkbox-empty.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/checkbox-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/checkbox-filled.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/code.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/copy.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/debug.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/download-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/download-icon.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/exit.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/logs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/logs.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/mod-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/mod-icon.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/preferences.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/preferences.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/sparkles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/sparkles.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/sync.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/tools-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/tools-icon.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/trash.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/update-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/update-icon.svg -------------------------------------------------------------------------------- /mbf-site/src/icons/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/icons/upload.svg -------------------------------------------------------------------------------- /mbf-site/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/index.tsx -------------------------------------------------------------------------------- /mbf-site/src/platformDetection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/platformDetection.tsx -------------------------------------------------------------------------------- /mbf-site/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/src/reportWebVitals.ts -------------------------------------------------------------------------------- /mbf-site/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/tsconfig.json -------------------------------------------------------------------------------- /mbf-site/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /mbf-site/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/vite.config.ts -------------------------------------------------------------------------------- /mbf-site/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-site/yarn.lock -------------------------------------------------------------------------------- /mbf-zip/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-zip/Cargo.toml -------------------------------------------------------------------------------- /mbf-zip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-zip/README.md -------------------------------------------------------------------------------- /mbf-zip/src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-zip/src/data.rs -------------------------------------------------------------------------------- /mbf-zip/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-zip/src/lib.rs -------------------------------------------------------------------------------- /mbf-zip/src/signing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/mbf-zip/src/signing.rs -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /watch_agent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/watch_agent.ps1 -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/ModsBeforeFriday/HEAD/yarn.lock --------------------------------------------------------------------------------