├── .flatpak └── com.steamgriddb.SGDBoop.yml ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── SGDB-SteamDownloader.vcxproj.user ├── SGDBoop-VS.filters ├── SGDBoop-VS.sln ├── SGDBoop-VS.vcxproj ├── SGDBoop.exe.manifest ├── SGDBoop.rc ├── com.steamgriddb.SGDBoop.appdata.xml ├── crc.c ├── crc.h ├── curl-helper.c ├── curl-helper.h ├── gui-helper-gtk.c ├── gui-helper-win.c ├── gui-helper.h ├── lib └── windows │ ├── freetype6.lib │ ├── ftgl.lib │ └── zlib1.lib ├── linux-release ├── com.steamgriddb.SGDBoop.desktop └── install.sh ├── res ├── com.steamgriddb.SGDBoop.svg ├── icon.ico └── screenshots │ ├── apply-with-boop.png │ ├── in-library.png │ └── nonsteam-selector.png ├── resource.h ├── sgdboop.c ├── string-helpers.c ├── string-helpers.h └── vcpkg.json /.flatpak/com.steamgriddb.SGDBoop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/.flatpak/com.steamgriddb.SGDBoop.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/README.md -------------------------------------------------------------------------------- /SGDB-SteamDownloader.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/SGDB-SteamDownloader.vcxproj.user -------------------------------------------------------------------------------- /SGDBoop-VS.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/SGDBoop-VS.filters -------------------------------------------------------------------------------- /SGDBoop-VS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/SGDBoop-VS.sln -------------------------------------------------------------------------------- /SGDBoop-VS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/SGDBoop-VS.vcxproj -------------------------------------------------------------------------------- /SGDBoop.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/SGDBoop.exe.manifest -------------------------------------------------------------------------------- /SGDBoop.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/SGDBoop.rc -------------------------------------------------------------------------------- /com.steamgriddb.SGDBoop.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/com.steamgriddb.SGDBoop.appdata.xml -------------------------------------------------------------------------------- /crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/crc.c -------------------------------------------------------------------------------- /crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/crc.h -------------------------------------------------------------------------------- /curl-helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/curl-helper.c -------------------------------------------------------------------------------- /curl-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/curl-helper.h -------------------------------------------------------------------------------- /gui-helper-gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/gui-helper-gtk.c -------------------------------------------------------------------------------- /gui-helper-win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/gui-helper-win.c -------------------------------------------------------------------------------- /gui-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/gui-helper.h -------------------------------------------------------------------------------- /lib/windows/freetype6.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/lib/windows/freetype6.lib -------------------------------------------------------------------------------- /lib/windows/ftgl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/lib/windows/ftgl.lib -------------------------------------------------------------------------------- /lib/windows/zlib1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/lib/windows/zlib1.lib -------------------------------------------------------------------------------- /linux-release/com.steamgriddb.SGDBoop.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/linux-release/com.steamgriddb.SGDBoop.desktop -------------------------------------------------------------------------------- /linux-release/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/linux-release/install.sh -------------------------------------------------------------------------------- /res/com.steamgriddb.SGDBoop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/res/com.steamgriddb.SGDBoop.svg -------------------------------------------------------------------------------- /res/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/res/icon.ico -------------------------------------------------------------------------------- /res/screenshots/apply-with-boop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/res/screenshots/apply-with-boop.png -------------------------------------------------------------------------------- /res/screenshots/in-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/res/screenshots/in-library.png -------------------------------------------------------------------------------- /res/screenshots/nonsteam-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/res/screenshots/nonsteam-selector.png -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/resource.h -------------------------------------------------------------------------------- /sgdboop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/sgdboop.c -------------------------------------------------------------------------------- /string-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/string-helpers.c -------------------------------------------------------------------------------- /string-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/string-helpers.h -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamGridDB/SGDBoop/HEAD/vcpkg.json --------------------------------------------------------------------------------