├── .github └── workflows │ └── compile-and-publish.yml ├── .gitignore ├── EmpireEarthZoomChanger.pro ├── LICENSE ├── README.md ├── main.cpp ├── mainwindow.cpp └── mainwindow.h /.github/workflows/compile-and-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-frei/EmpireEarthZoomChanger/HEAD/.github/workflows/compile-and-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-frei/EmpireEarthZoomChanger/HEAD/.gitignore -------------------------------------------------------------------------------- /EmpireEarthZoomChanger.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-frei/EmpireEarthZoomChanger/HEAD/EmpireEarthZoomChanger.pro -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-frei/EmpireEarthZoomChanger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-frei/EmpireEarthZoomChanger/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-frei/EmpireEarthZoomChanger/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-frei/EmpireEarthZoomChanger/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-frei/EmpireEarthZoomChanger/HEAD/mainwindow.h --------------------------------------------------------------------------------