From 036475e4c65176a60b0d72e3253330459ea53dba Mon Sep 17 00:00:00 2001 From: William JCM Date: Fri, 5 Mar 2021 15:03:01 +0100 Subject: [PATCH] Update version information. --- GUI/MainFrame.cpp | 2 +- GUI/MainFrame.fbp | 4 ++-- GUI/MainFrame.h | 2 +- main.cpp | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/GUI/MainFrame.cpp b/GUI/MainFrame.cpp index 9f50990..b0c0145 100644 --- a/GUI/MainFrame.cpp +++ b/GUI/MainFrame.cpp @@ -279,7 +279,7 @@ MainFrame::MainFrame( wxWindow* parent, wxWindowID id, const wxString& title, co bSizerMainPanel->Add( bSizerGameStatus, 0, wxALIGN_CENTER_HORIZONTAL, 5 ); - _aboutText = new wxStaticText( _mainPanel, wxID_ANY, wxT("This version of the application was partially tested on M.A.S.S. Builder early access version 0.5.4.\nIt may or may not work with other versions of the game.\nMade for the M.A.S.S. Builder community by Guillaume Jacquemin."), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER_HORIZONTAL ); + _aboutText = new wxStaticText( _mainPanel, wxID_ANY, wxT("This version of the application was partially tested on M.A.S.S. Builder early access version 0.5.7.\nIt may or may not work with other versions of the game.\nMade for the M.A.S.S. Builder community by Guillaume Jacquemin."), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER_HORIZONTAL ); _aboutText->Wrap( -1 ); bSizerMainPanel->Add( _aboutText, 0, wxEXPAND|wxRIGHT|wxLEFT|wxALIGN_CENTER_HORIZONTAL, 5 ); diff --git a/GUI/MainFrame.fbp b/GUI/MainFrame.fbp index 15debf8..93db0bb 100644 --- a/GUI/MainFrame.fbp +++ b/GUI/MainFrame.fbp @@ -48,7 +48,7 @@ -1,-1 wxCAPTION|wxCLOSE_BOX|wxMINIMIZE_BOX|wxSYSTEM_MENU ; ; forward_declare - M.A.S.S. Builder Save Tool 2.0.0-pre1 + M.A.S.S. Builder Save Tool 2.0.0 @@ -2765,7 +2765,7 @@ 0 0 wxID_ANY - This version of the application was partially tested on M.A.S.S. Builder early access version 0.5.4. It may or may not work with other versions of the game. Made for the M.A.S.S. Builder community by Guillaume Jacquemin. + This version of the application was partially tested on M.A.S.S. Builder early access version 0.5.7. It may or may not work with other versions of the game. Made for the M.A.S.S. Builder community by Guillaume Jacquemin. 0 0 diff --git a/GUI/MainFrame.h b/GUI/MainFrame.h index b4b9277..50d5357 100644 --- a/GUI/MainFrame.h +++ b/GUI/MainFrame.h @@ -114,7 +114,7 @@ class MainFrame : public wxFrame public: - MainFrame( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("M.A.S.S. Builder Save Tool 2.0.0-pre1"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( -1,-1 ), long style = wxCAPTION|wxCLOSE_BOX|wxMINIMIZE_BOX|wxSYSTEM_MENU|wxCLIP_CHILDREN|wxTAB_TRAVERSAL ); + MainFrame( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("M.A.S.S. Builder Save Tool 2.0.0"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( -1,-1 ), long style = wxCAPTION|wxCLOSE_BOX|wxMINIMIZE_BOX|wxSYSTEM_MENU|wxCLIP_CHILDREN|wxTAB_TRAVERSAL ); ~MainFrame(); diff --git a/main.cpp b/main.cpp index 219a01b..49473a0 100644 --- a/main.cpp +++ b/main.cpp @@ -28,7 +28,7 @@ class MyApp: public wxApp { public: bool OnInit() { SetAppName("wxMASSManager"); - SetAppDisplayName("wxMASSManager"); + SetAppDisplayName("M.A.S.S. Builder Save Tool"); wxImage::AddHandler(new wxPNGHandler);