Sun, 08 Sep 2013 21:57:23 +0300
clear the rows of the version editor properly when clearing versions; don't save the config when closing the version editor since then changes will apply even if user presses cancel in the main config box
/* * ZanDemo: Zandronum demo launcher * Copyright (C) 2013 Santeri Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <QApplication> #include "config.h" #include "types.h" #include "demo.h" #include "prompts.h" // ============================================================================= // ----------------------------------------------------------------------------- int main (int argc, char* argv[]) { QApplication app (argc, argv); app.setApplicationName (UNIXNAME); app.setOrganizationName (UNIXNAME); app.setApplicationVersion (versionString()); cfg::load(); for (int i = 1; i < argc; ++i) { str arg = argv[i]; if (arg == "--config") { ConfigBox dlg; return dlg.exec(); } } if (argc != 2) { FindFilePrompt* dlg = new FindFilePrompt (null); if (!dlg->exec()) return 255; return launchDemo (dlg->path()); } return launchDemo (argv[1]); } // ============================================================================= // ----------------------------------------------------------------------------- str versionString() { str text = fmt ("v%1.%2", VERSION_MAJOR, VERSION_MINOR); #if VERSION_PATCH != 0 text += fmt (".%1", VERSION_PATCH); #endif #if BUILD_ID == BUILD_INTERNAL text += "-intern"; #elif BUILD_ID == BUILD_ALPHA text += "-alpha"; #elif BUILD_ID == BUILD_BETA text += "-beta"; #elif BUILD_ID == BUILD_RC text += fmt ("-rc%1", RC_ID); #elif BUILD_ID == BUILD_RELEASE text += "-rel"; #else # error Invalid build code! #endif // BUILD_ID return text; } QString versionSignature() { return QString (APPNAME) + " " + versionString(); }