├── .gitignore ├── LICENSE ├── README.md ├── package.json └── src ├── private ├── favorites │ └── .gitkeep ├── fonts │ └── Satoshi_Complete │ │ ├── Fonts │ │ ├── OTF │ │ │ ├── Satoshi-Black.otf │ │ │ ├── Satoshi-BlackItalic.otf │ │ │ ├── Satoshi-Bold.otf │ │ │ ├── Satoshi-BoldItalic.otf │ │ │ ├── Satoshi-Italic.otf │ │ │ ├── Satoshi-Light.otf │ │ │ ├── Satoshi-LightItalic.otf │ │ │ ├── Satoshi-Medium.otf │ │ │ ├── Satoshi-MediumItalic.otf │ │ │ └── Satoshi-Regular.otf │ │ ├── Variable │ │ │ ├── Satoshi-Variable.ttf │ │ │ └── Satoshi-VariableItalic.ttf │ │ └── WEB │ │ │ ├── README.md │ │ │ ├── css │ │ │ └── satoshi.css │ │ │ └── fonts │ │ │ ├── Satoshi-Black.eot │ │ │ ├── Satoshi-Black.ttf │ │ │ ├── Satoshi-Black.woff │ │ │ ├── Satoshi-Black.woff2 │ │ │ ├── Satoshi-BlackItalic.eot │ │ │ ├── Satoshi-BlackItalic.ttf │ │ │ ├── Satoshi-BlackItalic.woff │ │ │ ├── Satoshi-BlackItalic.woff2 │ │ │ ├── Satoshi-Bold.eot │ │ │ ├── Satoshi-Bold.ttf │ │ │ ├── Satoshi-Bold.woff │ │ │ ├── Satoshi-Bold.woff2 │ │ │ ├── Satoshi-BoldItalic.eot │ │ │ ├── Satoshi-BoldItalic.ttf │ │ │ ├── Satoshi-BoldItalic.woff │ │ │ ├── Satoshi-BoldItalic.woff2 │ │ │ ├── Satoshi-Italic.eot │ │ │ ├── Satoshi-Italic.ttf │ │ │ ├── Satoshi-Italic.woff │ │ │ ├── Satoshi-Italic.woff2 │ │ │ ├── Satoshi-Light.eot │ │ │ ├── Satoshi-Light.ttf │ │ │ ├── Satoshi-Light.woff │ │ │ ├── Satoshi-Light.woff2 │ │ │ ├── Satoshi-LightItalic.eot │ │ │ ├── Satoshi-LightItalic.ttf │ │ │ ├── Satoshi-LightItalic.woff │ │ │ ├── Satoshi-LightItalic.woff2 │ │ │ ├── Satoshi-Medium.eot │ │ │ ├── Satoshi-Medium.ttf │ │ │ ├── Satoshi-Medium.woff │ │ │ ├── Satoshi-Medium.woff2 │ │ │ ├── Satoshi-MediumItalic.eot │ │ │ ├── Satoshi-MediumItalic.ttf │ │ │ ├── Satoshi-MediumItalic.woff │ │ │ ├── Satoshi-MediumItalic.woff2 │ │ │ ├── Satoshi-Regular.eot │ │ │ ├── Satoshi-Regular.ttf │ │ │ ├── Satoshi-Regular.woff │ │ │ ├── Satoshi-Regular.woff2 │ │ │ ├── Satoshi-Variable.eot │ │ │ ├── Satoshi-Variable.ttf │ │ │ ├── Satoshi-Variable.woff │ │ │ ├── Satoshi-Variable.woff2 │ │ │ ├── Satoshi-VariableItalic.eot │ │ │ ├── Satoshi-VariableItalic.ttf │ │ │ ├── Satoshi-VariableItalic.woff │ │ │ └── Satoshi-VariableItalic.woff2 │ │ └── License │ │ └── FFL.txt ├── icons │ ├── fitgirl-1-2556418794.png │ ├── fitgirl_icon(256)Template.png │ ├── fitgirl_icon.png │ ├── fitgirl_icon_16.png │ └── fitgirlrepack.ico ├── images │ ├── Screenshot1.png │ ├── Screenshot2.png │ ├── Screenshot3.png │ ├── Screenshot4.png │ ├── Screenshot5.png │ ├── Screenshot6.png │ └── Screenshot7.png ├── library │ ├── .gitkeep │ ├── downloaded_games.json │ ├── favorites_games.json │ ├── info_downloaded_games.json │ └── locally_installed_games.json ├── svgs │ └── error-filled-svgrepo-com.svg └── temp │ └── .gitkeep └── public ├── apps ├── bin │ ├── installer.exe │ └── installer.exe.manifest └── src │ ├── agreements.cpp │ ├── agreements.h │ ├── enum_setup-game.cpp │ ├── find_window.cpp │ ├── find_window.h │ ├── main.cpp │ ├── setupfind.cpp │ └── setupfind.h ├── components ├── Home.svg ├── Library.svg ├── searchpink.png ├── searchwhite.png └── searchwhite.svg ├── fonts ├── Satoshi-Medium.otf └── Satoshi-Variable.ttf ├── html ├── additionnals │ ├── contextmenu_image.css │ └── contextmenu_image.html ├── index.html ├── parts │ ├── favorites │ │ ├── favorites.css │ │ └── favorites.html │ ├── js │ │ ├── favorites.js │ │ └── settings.js │ ├── library │ │ ├── library.css │ │ └── library.html │ ├── loading │ │ ├── loading.css │ │ └── loading.html │ ├── menu │ │ └── menu-hightlight.js │ └── settings │ │ ├── settings.css │ │ └── settings.html ├── scripts │ ├── libraryprocess.js │ ├── processingdata.js │ └── renderer.js └── style.css ├── main.js ├── preload.js └── scripts ├── obselete ├── display_image.exe ├── ftg.bmp └── picapp.cpp ├── package-lock.json ├── package.json ├── scraper.js └── singlescrap.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/package.json -------------------------------------------------------------------------------- /src/private/favorites/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-Black.otf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-BlackItalic.otf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-Bold.otf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-BoldItalic.otf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-Italic.otf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-Light.otf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-LightItalic.otf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-Medium.otf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-MediumItalic.otf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/OTF/Satoshi-Regular.otf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/Variable/Satoshi-Variable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/Variable/Satoshi-Variable.ttf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/Variable/Satoshi-VariableItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/Variable/Satoshi-VariableItalic.ttf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/README.md -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/css/satoshi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/css/satoshi.css -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Black.eot -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Black.ttf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Black.woff -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Black.woff2 -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BlackItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BlackItalic.eot -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BlackItalic.ttf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BlackItalic.woff -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BlackItalic.woff2 -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.eot -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.ttf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.woff -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.woff2 -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BoldItalic.eot -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BoldItalic.ttf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BoldItalic.woff -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Italic.eot -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Italic.ttf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Italic.woff -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Italic.woff2 -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.eot -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.ttf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.woff -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.woff2 -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-LightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-LightItalic.eot -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-LightItalic.ttf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-LightItalic.woff -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-LightItalic.woff2 -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.eot -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.ttf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.woff -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.woff2 -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-MediumItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-MediumItalic.eot -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-MediumItalic.ttf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-MediumItalic.woff -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-MediumItalic.woff2 -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.eot -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.ttf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff2 -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Variable.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Variable.eot -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Variable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Variable.ttf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Variable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Variable.woff -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Variable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Variable.woff2 -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-VariableItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-VariableItalic.eot -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-VariableItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-VariableItalic.ttf -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-VariableItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-VariableItalic.woff -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-VariableItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-VariableItalic.woff2 -------------------------------------------------------------------------------- /src/private/fonts/Satoshi_Complete/License/FFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/fonts/Satoshi_Complete/License/FFL.txt -------------------------------------------------------------------------------- /src/private/icons/fitgirl-1-2556418794.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/icons/fitgirl-1-2556418794.png -------------------------------------------------------------------------------- /src/private/icons/fitgirl_icon(256)Template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/icons/fitgirl_icon(256)Template.png -------------------------------------------------------------------------------- /src/private/icons/fitgirl_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/icons/fitgirl_icon.png -------------------------------------------------------------------------------- /src/private/icons/fitgirl_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/icons/fitgirl_icon_16.png -------------------------------------------------------------------------------- /src/private/icons/fitgirlrepack.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/icons/fitgirlrepack.ico -------------------------------------------------------------------------------- /src/private/images/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/images/Screenshot1.png -------------------------------------------------------------------------------- /src/private/images/Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/images/Screenshot2.png -------------------------------------------------------------------------------- /src/private/images/Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/images/Screenshot3.png -------------------------------------------------------------------------------- /src/private/images/Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/images/Screenshot4.png -------------------------------------------------------------------------------- /src/private/images/Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/images/Screenshot5.png -------------------------------------------------------------------------------- /src/private/images/Screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/images/Screenshot6.png -------------------------------------------------------------------------------- /src/private/images/Screenshot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/images/Screenshot7.png -------------------------------------------------------------------------------- /src/private/library/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/private/library/downloaded_games.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/private/library/favorites_games.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/private/library/info_downloaded_games.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/private/library/locally_installed_games.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /src/private/svgs/error-filled-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/private/svgs/error-filled-svgrepo-com.svg -------------------------------------------------------------------------------- /src/private/temp/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/public/apps/bin/installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/apps/bin/installer.exe -------------------------------------------------------------------------------- /src/public/apps/bin/installer.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/apps/bin/installer.exe.manifest -------------------------------------------------------------------------------- /src/public/apps/src/agreements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/apps/src/agreements.cpp -------------------------------------------------------------------------------- /src/public/apps/src/agreements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/apps/src/agreements.h -------------------------------------------------------------------------------- /src/public/apps/src/enum_setup-game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/apps/src/enum_setup-game.cpp -------------------------------------------------------------------------------- /src/public/apps/src/find_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/apps/src/find_window.cpp -------------------------------------------------------------------------------- /src/public/apps/src/find_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/apps/src/find_window.h -------------------------------------------------------------------------------- /src/public/apps/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/apps/src/main.cpp -------------------------------------------------------------------------------- /src/public/apps/src/setupfind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/apps/src/setupfind.cpp -------------------------------------------------------------------------------- /src/public/apps/src/setupfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/apps/src/setupfind.h -------------------------------------------------------------------------------- /src/public/components/Home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/components/Home.svg -------------------------------------------------------------------------------- /src/public/components/Library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/components/Library.svg -------------------------------------------------------------------------------- /src/public/components/searchpink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/components/searchpink.png -------------------------------------------------------------------------------- /src/public/components/searchwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/components/searchwhite.png -------------------------------------------------------------------------------- /src/public/components/searchwhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/components/searchwhite.svg -------------------------------------------------------------------------------- /src/public/fonts/Satoshi-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/fonts/Satoshi-Medium.otf -------------------------------------------------------------------------------- /src/public/fonts/Satoshi-Variable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/fonts/Satoshi-Variable.ttf -------------------------------------------------------------------------------- /src/public/html/additionnals/contextmenu_image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/additionnals/contextmenu_image.css -------------------------------------------------------------------------------- /src/public/html/additionnals/contextmenu_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/additionnals/contextmenu_image.html -------------------------------------------------------------------------------- /src/public/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/index.html -------------------------------------------------------------------------------- /src/public/html/parts/favorites/favorites.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/parts/favorites/favorites.css -------------------------------------------------------------------------------- /src/public/html/parts/favorites/favorites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/parts/favorites/favorites.html -------------------------------------------------------------------------------- /src/public/html/parts/js/favorites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/parts/js/favorites.js -------------------------------------------------------------------------------- /src/public/html/parts/js/settings.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/public/html/parts/library/library.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/parts/library/library.css -------------------------------------------------------------------------------- /src/public/html/parts/library/library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/parts/library/library.html -------------------------------------------------------------------------------- /src/public/html/parts/loading/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/parts/loading/loading.css -------------------------------------------------------------------------------- /src/public/html/parts/loading/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/parts/loading/loading.html -------------------------------------------------------------------------------- /src/public/html/parts/menu/menu-hightlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/parts/menu/menu-hightlight.js -------------------------------------------------------------------------------- /src/public/html/parts/settings/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/parts/settings/settings.css -------------------------------------------------------------------------------- /src/public/html/parts/settings/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/parts/settings/settings.html -------------------------------------------------------------------------------- /src/public/html/scripts/libraryprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/scripts/libraryprocess.js -------------------------------------------------------------------------------- /src/public/html/scripts/processingdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/scripts/processingdata.js -------------------------------------------------------------------------------- /src/public/html/scripts/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/scripts/renderer.js -------------------------------------------------------------------------------- /src/public/html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/html/style.css -------------------------------------------------------------------------------- /src/public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/main.js -------------------------------------------------------------------------------- /src/public/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/preload.js -------------------------------------------------------------------------------- /src/public/scripts/obselete/display_image.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/scripts/obselete/display_image.exe -------------------------------------------------------------------------------- /src/public/scripts/obselete/ftg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/scripts/obselete/ftg.bmp -------------------------------------------------------------------------------- /src/public/scripts/obselete/picapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/scripts/obselete/picapp.cpp -------------------------------------------------------------------------------- /src/public/scripts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/scripts/package-lock.json -------------------------------------------------------------------------------- /src/public/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/scripts/package.json -------------------------------------------------------------------------------- /src/public/scripts/scraper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/scripts/scraper.js -------------------------------------------------------------------------------- /src/public/scripts/singlescrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarrotRub/Fitgirl-Repack-Launcher/HEAD/src/public/scripts/singlescrap.js --------------------------------------------------------------------------------