├── .gitignore ├── EasyProgramInstaller.pro ├── LICENSE ├── README.md ├── applist.json ├── control ├── epiicon.png ├── launcher ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── qtresource.qrc ├── save.png ├── snap1.jpg └── sync.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/.gitignore -------------------------------------------------------------------------------- /EasyProgramInstaller.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/EasyProgramInstaller.pro -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/README.md -------------------------------------------------------------------------------- /applist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/applist.json -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/control -------------------------------------------------------------------------------- /epiicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/epiicon.png -------------------------------------------------------------------------------- /launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/launcher -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /qtresource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/qtresource.qrc -------------------------------------------------------------------------------- /save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/save.png -------------------------------------------------------------------------------- /snap1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/snap1.jpg -------------------------------------------------------------------------------- /sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminfedar/easyprograminstaller/HEAD/sync.png --------------------------------------------------------------------------------