├── .clang-format ├── .editorconfig ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── data ├── applications │ └── twitch-downloader-gui.desktop └── icons │ ├── 128x128 │ └── twitch-downloader-gui.png │ ├── 16x16 │ └── twitch-downloader-gui.png │ ├── 22x22 │ └── twitch-downloader-gui.png │ ├── 24x24 │ └── twitch-downloader-gui.png │ ├── 256x256 │ └── twitch-downloader-gui.png │ ├── 32x32 │ └── twitch-downloader-gui.png │ ├── 48x48 │ └── twitch-downloader-gui.png │ ├── 512x512 │ └── twitch-downloader-gui.png │ ├── 64x64 │ └── twitch-downloader-gui.png │ └── 96x96 │ └── twitch-downloader-gui.png ├── debian.Dockerfile ├── fedora.Dockerfile ├── libs ├── base64.c ├── base64.h ├── cJSON.c ├── cJSON.h ├── cJSON_Utils.c ├── cJSON_Utils.h ├── libui.a ├── libuiDebug.a ├── stb_image.h └── ui.h ├── packaging ├── aur │ └── PKGBUILD ├── debian │ ├── README.Debian │ ├── changelog │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ └── watch └── rpm │ └── SPECS │ └── twitch-downloader-gui.spec └── src ├── ChatDownloader.c ├── ChatDownloader.h ├── ChatRender.c ├── ChatRender.h ├── ClipDownloader.c ├── ClipDownloader.h ├── Preferences.c ├── Preferences.h ├── VodDownloader.c ├── VodDownloader.h ├── app.c ├── app.h ├── utils.c └── utils.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/README.md -------------------------------------------------------------------------------- /data/applications/twitch-downloader-gui.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/data/applications/twitch-downloader-gui.desktop -------------------------------------------------------------------------------- /data/icons/128x128/twitch-downloader-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/data/icons/128x128/twitch-downloader-gui.png -------------------------------------------------------------------------------- /data/icons/16x16/twitch-downloader-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/data/icons/16x16/twitch-downloader-gui.png -------------------------------------------------------------------------------- /data/icons/22x22/twitch-downloader-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/data/icons/22x22/twitch-downloader-gui.png -------------------------------------------------------------------------------- /data/icons/24x24/twitch-downloader-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/data/icons/24x24/twitch-downloader-gui.png -------------------------------------------------------------------------------- /data/icons/256x256/twitch-downloader-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/data/icons/256x256/twitch-downloader-gui.png -------------------------------------------------------------------------------- /data/icons/32x32/twitch-downloader-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/data/icons/32x32/twitch-downloader-gui.png -------------------------------------------------------------------------------- /data/icons/48x48/twitch-downloader-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/data/icons/48x48/twitch-downloader-gui.png -------------------------------------------------------------------------------- /data/icons/512x512/twitch-downloader-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/data/icons/512x512/twitch-downloader-gui.png -------------------------------------------------------------------------------- /data/icons/64x64/twitch-downloader-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/data/icons/64x64/twitch-downloader-gui.png -------------------------------------------------------------------------------- /data/icons/96x96/twitch-downloader-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/data/icons/96x96/twitch-downloader-gui.png -------------------------------------------------------------------------------- /debian.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/debian.Dockerfile -------------------------------------------------------------------------------- /fedora.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/fedora.Dockerfile -------------------------------------------------------------------------------- /libs/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/libs/base64.c -------------------------------------------------------------------------------- /libs/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/libs/base64.h -------------------------------------------------------------------------------- /libs/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/libs/cJSON.c -------------------------------------------------------------------------------- /libs/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/libs/cJSON.h -------------------------------------------------------------------------------- /libs/cJSON_Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/libs/cJSON_Utils.c -------------------------------------------------------------------------------- /libs/cJSON_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/libs/cJSON_Utils.h -------------------------------------------------------------------------------- /libs/libui.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/libs/libui.a -------------------------------------------------------------------------------- /libs/libuiDebug.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/libs/libuiDebug.a -------------------------------------------------------------------------------- /libs/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/libs/stb_image.h -------------------------------------------------------------------------------- /libs/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/libs/ui.h -------------------------------------------------------------------------------- /packaging/aur/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/packaging/aur/PKGBUILD -------------------------------------------------------------------------------- /packaging/debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/packaging/debian/README.Debian -------------------------------------------------------------------------------- /packaging/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/packaging/debian/changelog -------------------------------------------------------------------------------- /packaging/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/packaging/debian/control -------------------------------------------------------------------------------- /packaging/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/packaging/debian/copyright -------------------------------------------------------------------------------- /packaging/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/packaging/debian/rules -------------------------------------------------------------------------------- /packaging/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /packaging/debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | -------------------------------------------------------------------------------- /packaging/rpm/SPECS/twitch-downloader-gui.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/packaging/rpm/SPECS/twitch-downloader-gui.spec -------------------------------------------------------------------------------- /src/ChatDownloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/src/ChatDownloader.c -------------------------------------------------------------------------------- /src/ChatDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/src/ChatDownloader.h -------------------------------------------------------------------------------- /src/ChatRender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/src/ChatRender.c -------------------------------------------------------------------------------- /src/ChatRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/src/ChatRender.h -------------------------------------------------------------------------------- /src/ClipDownloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/src/ClipDownloader.c -------------------------------------------------------------------------------- /src/ClipDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/src/ClipDownloader.h -------------------------------------------------------------------------------- /src/Preferences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/src/Preferences.c -------------------------------------------------------------------------------- /src/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/src/Preferences.h -------------------------------------------------------------------------------- /src/VodDownloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/src/VodDownloader.c -------------------------------------------------------------------------------- /src/VodDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/src/VodDownloader.h -------------------------------------------------------------------------------- /src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/src/app.c -------------------------------------------------------------------------------- /src/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/src/app.h -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohad12211/twitch-downloader-gui/HEAD/src/utils.h --------------------------------------------------------------------------------