├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── workflows │ ├── codeql.yml │ ├── main.yml │ └── testBuild.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── assets ├── Wordmark.svg ├── adblocker.js ├── css │ ├── discord.css │ ├── screenshare.css │ ├── settings.css │ └── titlebar.css ├── fonts │ └── InterVariable.woff2 ├── gf_icon.ico ├── gf_icon.png ├── gf_logo.svg ├── gf_symbolic_black.png ├── gf_symbolic_white.png ├── html │ ├── multiselect-dropdown.js │ ├── picker.html │ ├── settings.html │ └── settings.js └── lang │ ├── ca.json │ ├── cs.json │ ├── de.json │ ├── en-US.json │ ├── es.json │ ├── fil.json │ ├── fr.json │ ├── it.json │ ├── nb_NO.json │ ├── nds.json │ ├── nl.json │ ├── pl.json │ ├── pt.json │ ├── sl.json │ ├── ta.json │ ├── tr.json │ ├── uk.json │ └── zh_Hant.json ├── assetsDev ├── genTestLanguage.js ├── gf_install_animation.gif ├── gf_logo_full.png ├── gf_logo_orig.png ├── gf_symbolic.svg ├── io.github.milkshiift.GoofCord.metainfo.xml ├── languageCodes.json ├── screenshot1.png ├── screenshot1_rounded.png ├── wikiEncryption1.png ├── wikiEncryption2.png ├── wikiEncryption3.png └── wikiSceenShare.png ├── biome.json ├── bun.lock ├── electron-builder.ts ├── flake.lock ├── flake.nix ├── package.json ├── src ├── config.ts ├── configTypes.d.ts ├── ipcGen.ts ├── loader.ts ├── main.ts ├── menu.ts ├── modules │ ├── arrpc.ts │ ├── arrpcWorker.ts │ ├── assetLoader.ts │ ├── cacheManager.ts │ ├── chromeSpoofer.ts │ ├── dynamicIcon.ts │ ├── firewall.ts │ ├── localization.ts │ ├── logger.ts │ ├── messageEncryption.ts │ ├── mods.ts │ ├── updateCheck.ts │ ├── venbind.ts │ ├── venmic.ts │ └── windowStateManager.ts ├── settingsSchema.ts ├── tray.ts ├── utils.ts └── windows │ ├── main │ ├── bridge.ts │ ├── defaultScripts.ts │ ├── fixDevtools.ts │ ├── keybinds.ts │ ├── main.ts │ ├── preload.mts │ ├── screenshare.ts │ ├── scripts │ │ ├── domOptimizer.js │ │ ├── notificationFix.js │ │ ├── screensharePatch.js │ │ └── shelterPluginInit.js │ └── titlebar.ts │ ├── preloadUtils.ts │ ├── screenshare │ ├── main.ts │ └── preload.mts │ └── settings │ ├── cloud │ ├── cloud.ts │ ├── encryption.ts │ └── token.ts │ ├── main.ts │ ├── preload.mts │ └── settingsRenderer.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/testBuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/.github/workflows/testBuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/.npmrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/README.md -------------------------------------------------------------------------------- /assets/Wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/Wordmark.svg -------------------------------------------------------------------------------- /assets/adblocker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/adblocker.js -------------------------------------------------------------------------------- /assets/css/discord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/css/discord.css -------------------------------------------------------------------------------- /assets/css/screenshare.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/css/screenshare.css -------------------------------------------------------------------------------- /assets/css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/css/settings.css -------------------------------------------------------------------------------- /assets/css/titlebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/css/titlebar.css -------------------------------------------------------------------------------- /assets/fonts/InterVariable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/fonts/InterVariable.woff2 -------------------------------------------------------------------------------- /assets/gf_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/gf_icon.ico -------------------------------------------------------------------------------- /assets/gf_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/gf_icon.png -------------------------------------------------------------------------------- /assets/gf_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/gf_logo.svg -------------------------------------------------------------------------------- /assets/gf_symbolic_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/gf_symbolic_black.png -------------------------------------------------------------------------------- /assets/gf_symbolic_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/gf_symbolic_white.png -------------------------------------------------------------------------------- /assets/html/multiselect-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/html/multiselect-dropdown.js -------------------------------------------------------------------------------- /assets/html/picker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/html/picker.html -------------------------------------------------------------------------------- /assets/html/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/html/settings.html -------------------------------------------------------------------------------- /assets/html/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/html/settings.js -------------------------------------------------------------------------------- /assets/lang/ca.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /assets/lang/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/cs.json -------------------------------------------------------------------------------- /assets/lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/de.json -------------------------------------------------------------------------------- /assets/lang/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/en-US.json -------------------------------------------------------------------------------- /assets/lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/es.json -------------------------------------------------------------------------------- /assets/lang/fil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/fil.json -------------------------------------------------------------------------------- /assets/lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/fr.json -------------------------------------------------------------------------------- /assets/lang/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/it.json -------------------------------------------------------------------------------- /assets/lang/nb_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/nb_NO.json -------------------------------------------------------------------------------- /assets/lang/nds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/nds.json -------------------------------------------------------------------------------- /assets/lang/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/nl.json -------------------------------------------------------------------------------- /assets/lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/pl.json -------------------------------------------------------------------------------- /assets/lang/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/pt.json -------------------------------------------------------------------------------- /assets/lang/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/sl.json -------------------------------------------------------------------------------- /assets/lang/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/ta.json -------------------------------------------------------------------------------- /assets/lang/tr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /assets/lang/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/uk.json -------------------------------------------------------------------------------- /assets/lang/zh_Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assets/lang/zh_Hant.json -------------------------------------------------------------------------------- /assetsDev/genTestLanguage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assetsDev/genTestLanguage.js -------------------------------------------------------------------------------- /assetsDev/gf_install_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assetsDev/gf_install_animation.gif -------------------------------------------------------------------------------- /assetsDev/gf_logo_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assetsDev/gf_logo_full.png -------------------------------------------------------------------------------- /assetsDev/gf_logo_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assetsDev/gf_logo_orig.png -------------------------------------------------------------------------------- /assetsDev/gf_symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assetsDev/gf_symbolic.svg -------------------------------------------------------------------------------- /assetsDev/io.github.milkshiift.GoofCord.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assetsDev/io.github.milkshiift.GoofCord.metainfo.xml -------------------------------------------------------------------------------- /assetsDev/languageCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assetsDev/languageCodes.json -------------------------------------------------------------------------------- /assetsDev/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assetsDev/screenshot1.png -------------------------------------------------------------------------------- /assetsDev/screenshot1_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assetsDev/screenshot1_rounded.png -------------------------------------------------------------------------------- /assetsDev/wikiEncryption1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assetsDev/wikiEncryption1.png -------------------------------------------------------------------------------- /assetsDev/wikiEncryption2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assetsDev/wikiEncryption2.png -------------------------------------------------------------------------------- /assetsDev/wikiEncryption3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assetsDev/wikiEncryption3.png -------------------------------------------------------------------------------- /assetsDev/wikiSceenShare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/assetsDev/wikiSceenShare.png -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/biome.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/bun.lock -------------------------------------------------------------------------------- /electron-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/electron-builder.ts -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/flake.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/package.json -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/configTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/configTypes.d.ts -------------------------------------------------------------------------------- /src/ipcGen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/ipcGen.ts -------------------------------------------------------------------------------- /src/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/loader.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/menu.ts -------------------------------------------------------------------------------- /src/modules/arrpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/arrpc.ts -------------------------------------------------------------------------------- /src/modules/arrpcWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/arrpcWorker.ts -------------------------------------------------------------------------------- /src/modules/assetLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/assetLoader.ts -------------------------------------------------------------------------------- /src/modules/cacheManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/cacheManager.ts -------------------------------------------------------------------------------- /src/modules/chromeSpoofer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/chromeSpoofer.ts -------------------------------------------------------------------------------- /src/modules/dynamicIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/dynamicIcon.ts -------------------------------------------------------------------------------- /src/modules/firewall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/firewall.ts -------------------------------------------------------------------------------- /src/modules/localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/localization.ts -------------------------------------------------------------------------------- /src/modules/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/logger.ts -------------------------------------------------------------------------------- /src/modules/messageEncryption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/messageEncryption.ts -------------------------------------------------------------------------------- /src/modules/mods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/mods.ts -------------------------------------------------------------------------------- /src/modules/updateCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/updateCheck.ts -------------------------------------------------------------------------------- /src/modules/venbind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/venbind.ts -------------------------------------------------------------------------------- /src/modules/venmic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/venmic.ts -------------------------------------------------------------------------------- /src/modules/windowStateManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/modules/windowStateManager.ts -------------------------------------------------------------------------------- /src/settingsSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/settingsSchema.ts -------------------------------------------------------------------------------- /src/tray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/tray.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/windows/main/bridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/main/bridge.ts -------------------------------------------------------------------------------- /src/windows/main/defaultScripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/main/defaultScripts.ts -------------------------------------------------------------------------------- /src/windows/main/fixDevtools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/main/fixDevtools.ts -------------------------------------------------------------------------------- /src/windows/main/keybinds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/main/keybinds.ts -------------------------------------------------------------------------------- /src/windows/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/main/main.ts -------------------------------------------------------------------------------- /src/windows/main/preload.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/main/preload.mts -------------------------------------------------------------------------------- /src/windows/main/screenshare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/main/screenshare.ts -------------------------------------------------------------------------------- /src/windows/main/scripts/domOptimizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/main/scripts/domOptimizer.js -------------------------------------------------------------------------------- /src/windows/main/scripts/notificationFix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/main/scripts/notificationFix.js -------------------------------------------------------------------------------- /src/windows/main/scripts/screensharePatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/main/scripts/screensharePatch.js -------------------------------------------------------------------------------- /src/windows/main/scripts/shelterPluginInit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/main/scripts/shelterPluginInit.js -------------------------------------------------------------------------------- /src/windows/main/titlebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/main/titlebar.ts -------------------------------------------------------------------------------- /src/windows/preloadUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/preloadUtils.ts -------------------------------------------------------------------------------- /src/windows/screenshare/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/screenshare/main.ts -------------------------------------------------------------------------------- /src/windows/screenshare/preload.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/screenshare/preload.mts -------------------------------------------------------------------------------- /src/windows/settings/cloud/cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/settings/cloud/cloud.ts -------------------------------------------------------------------------------- /src/windows/settings/cloud/encryption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/settings/cloud/encryption.ts -------------------------------------------------------------------------------- /src/windows/settings/cloud/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/settings/cloud/token.ts -------------------------------------------------------------------------------- /src/windows/settings/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/settings/main.ts -------------------------------------------------------------------------------- /src/windows/settings/preload.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/settings/preload.mts -------------------------------------------------------------------------------- /src/windows/settings/settingsRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/src/windows/settings/settingsRenderer.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkshiift/GoofCord/HEAD/tsconfig.json --------------------------------------------------------------------------------