├── .clang-format ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── appcontroller.cpp ├── appcontroller.h ├── appsettings.cpp ├── appsettings.h ├── appwindow.cpp ├── appwindow.h ├── appwindow.ui ├── design ├── app-my-games.svg ├── home.svg ├── login.svg └── settings.svg ├── elements ├── gameframe.cpp ├── gameframe.h └── gameframe.ui ├── getDependencies.bat ├── images ├── gameFrame-downloadButton.png ├── gameFrameLogoLabel-placeholder.png ├── itchio-icon-100.png ├── itchio-icon-16.png ├── itchio-icon-200.png ├── itchio-icon-30.png ├── itchio-text-white-21.png ├── itchio-text-white-53.png └── login-bg.png ├── itchio.pri ├── itchio.pro ├── itchioapi.cpp ├── itchioapi.h ├── main.cpp ├── objects ├── downloadkey.cpp ├── downloadkey.h ├── game.cpp ├── game.h ├── upload.cpp ├── upload.h ├── user.cpp └── user.h ├── resources.qrc ├── secondarywindow.cpp ├── secondarywindow.h ├── secondarywindow.ui ├── stylesheet.qss ├── traynotifications.cpp ├── traynotifications.h ├── widgetButtons.qss ├── widgetButtonsActive.qss └── widgets ├── librarywidget.cpp ├── librarywidget.h ├── librarywidget.ui └── secondary ├── loginwidget.cpp ├── loginwidget.h ├── loginwidget.ui ├── settingswidget.cpp ├── settingswidget.h └── settingswidget.ui /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/README.md -------------------------------------------------------------------------------- /appcontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/appcontroller.cpp -------------------------------------------------------------------------------- /appcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/appcontroller.h -------------------------------------------------------------------------------- /appsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/appsettings.cpp -------------------------------------------------------------------------------- /appsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/appsettings.h -------------------------------------------------------------------------------- /appwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/appwindow.cpp -------------------------------------------------------------------------------- /appwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/appwindow.h -------------------------------------------------------------------------------- /appwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/appwindow.ui -------------------------------------------------------------------------------- /design/app-my-games.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/design/app-my-games.svg -------------------------------------------------------------------------------- /design/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/design/home.svg -------------------------------------------------------------------------------- /design/login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/design/login.svg -------------------------------------------------------------------------------- /design/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/design/settings.svg -------------------------------------------------------------------------------- /elements/gameframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/elements/gameframe.cpp -------------------------------------------------------------------------------- /elements/gameframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/elements/gameframe.h -------------------------------------------------------------------------------- /elements/gameframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/elements/gameframe.ui -------------------------------------------------------------------------------- /getDependencies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/getDependencies.bat -------------------------------------------------------------------------------- /images/gameFrame-downloadButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/images/gameFrame-downloadButton.png -------------------------------------------------------------------------------- /images/gameFrameLogoLabel-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/images/gameFrameLogoLabel-placeholder.png -------------------------------------------------------------------------------- /images/itchio-icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/images/itchio-icon-100.png -------------------------------------------------------------------------------- /images/itchio-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/images/itchio-icon-16.png -------------------------------------------------------------------------------- /images/itchio-icon-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/images/itchio-icon-200.png -------------------------------------------------------------------------------- /images/itchio-icon-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/images/itchio-icon-30.png -------------------------------------------------------------------------------- /images/itchio-text-white-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/images/itchio-text-white-21.png -------------------------------------------------------------------------------- /images/itchio-text-white-53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/images/itchio-text-white-53.png -------------------------------------------------------------------------------- /images/login-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/images/login-bg.png -------------------------------------------------------------------------------- /itchio.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/itchio.pri -------------------------------------------------------------------------------- /itchio.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/itchio.pro -------------------------------------------------------------------------------- /itchioapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/itchioapi.cpp -------------------------------------------------------------------------------- /itchioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/itchioapi.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/main.cpp -------------------------------------------------------------------------------- /objects/downloadkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/objects/downloadkey.cpp -------------------------------------------------------------------------------- /objects/downloadkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/objects/downloadkey.h -------------------------------------------------------------------------------- /objects/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/objects/game.cpp -------------------------------------------------------------------------------- /objects/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/objects/game.h -------------------------------------------------------------------------------- /objects/upload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/objects/upload.cpp -------------------------------------------------------------------------------- /objects/upload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/objects/upload.h -------------------------------------------------------------------------------- /objects/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/objects/user.cpp -------------------------------------------------------------------------------- /objects/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/objects/user.h -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/resources.qrc -------------------------------------------------------------------------------- /secondarywindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/secondarywindow.cpp -------------------------------------------------------------------------------- /secondarywindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/secondarywindow.h -------------------------------------------------------------------------------- /secondarywindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/secondarywindow.ui -------------------------------------------------------------------------------- /stylesheet.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/stylesheet.qss -------------------------------------------------------------------------------- /traynotifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/traynotifications.cpp -------------------------------------------------------------------------------- /traynotifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/traynotifications.h -------------------------------------------------------------------------------- /widgetButtons.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/widgetButtons.qss -------------------------------------------------------------------------------- /widgetButtonsActive.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/widgetButtonsActive.qss -------------------------------------------------------------------------------- /widgets/librarywidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/widgets/librarywidget.cpp -------------------------------------------------------------------------------- /widgets/librarywidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/widgets/librarywidget.h -------------------------------------------------------------------------------- /widgets/librarywidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/widgets/librarywidget.ui -------------------------------------------------------------------------------- /widgets/secondary/loginwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/widgets/secondary/loginwidget.cpp -------------------------------------------------------------------------------- /widgets/secondary/loginwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/widgets/secondary/loginwidget.h -------------------------------------------------------------------------------- /widgets/secondary/loginwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/widgets/secondary/loginwidget.ui -------------------------------------------------------------------------------- /widgets/secondary/settingswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/widgets/secondary/settingswidget.cpp -------------------------------------------------------------------------------- /widgets/secondary/settingswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/widgets/secondary/settingswidget.h -------------------------------------------------------------------------------- /widgets/secondary/settingswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafo/itchio-app-old/HEAD/widgets/secondary/settingswidget.ui --------------------------------------------------------------------------------