mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-05 17:46:30 +02:00
Versioning configuration file
This commit is contained in:
parent
aadfef20c8
commit
d0e8abf2c5
2 changed files with 14 additions and 1 deletions
|
@ -5,8 +5,21 @@
|
|||
bool MyApp::OnInit() {
|
||||
wxImage::AddHandler(new wxPNGHandler);
|
||||
|
||||
// Check config version
|
||||
CONFIG_OPEN(conf);
|
||||
wxString version=conf->Read("version",CONFIG_VERSION);
|
||||
conf->Write("version",version); // Setup config file version
|
||||
wxLogDebug("Starting ochess with configuration file version %s",version);
|
||||
CONFIG_CLOSE(conf);
|
||||
|
||||
// Advertise for configuration file version
|
||||
if(version != CONFIG_VERSION)
|
||||
SHOW_DIALOG_INFO("Configuration files version missmatch. Expected "+std::string(CONFIG_VERSION)+" but got "+version+".\nPlease remove the current configuration file as it may crash the application.");
|
||||
|
||||
// Main frame
|
||||
MainWindow *frame = new MainWindow();
|
||||
frame->Show(true);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
|
||||
#define CONFIG_OPEN(name) wxConfig *name = new wxConfig("ochess")
|
||||
#define CONFIG_CLOSE(name) delete name
|
||||
|
||||
#define CONFIG_VERSION "1.0"
|
||||
|
||||
class Game;
|
||||
class GameBase;
|
||||
|
|
Loading…
Add table
Reference in a new issue