Skip to content

Commit

Permalink
v3.5.1 - Revision 6 (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
israpps authored Mar 13, 2024
1 parent 3d025c6 commit 2c712c4
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 13 deletions.
5 changes: 3 additions & 2 deletions HDL-Batch-installer-SRC/HDDManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,9 @@ void HDDManager::UpdateList(void)

void HDDManager::OnMKPartClick(wxCommandEvent& event)
{
mkpartdlg *MAN = new mkpartdlg(this);
bool should_update = false;
mkpartdlg *MAN = new mkpartdlg(this, &should_update);
MAN->ShowModal();
if (MAN->should_update) UpdateList();
delete MAN;
UpdateList();
}
Binary file not shown.
Binary file modified HDL-Batch-installer-SRC/_bin/playground/HDL-Batch-installer.exe
Binary file not shown.
7 changes: 7 additions & 0 deletions HDL-Batch-installer-SRC/_bin/playground/changes.log
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
13 March 2024
[v3.5.1 - Revision 6]

Change log:
-New: German Translation by GeAd23 (www.github.com/GeAd23)
-HDDManager: Avoid refreshing partition table if user did nothing inside the partition creation dialog

15 December 2023
[v3.5.1 - Revision 5]

Expand Down
4 changes: 3 additions & 1 deletion HDL-Batch-installer-SRC/mkpartdlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ BEGIN_EVENT_TABLE(mkpartdlg,wxDialog)
//*)
END_EVENT_TABLE()

mkpartdlg::mkpartdlg(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size)
mkpartdlg::mkpartdlg(wxWindow* parent, bool* _should_update ,wxWindowID id,const wxPoint& pos,const wxSize& size):
should_update(_should_update)
{
//(*Initialize(mkpartdlg)
wxBoxSizer* BoxSizer1;
Expand Down Expand Up @@ -98,6 +99,7 @@ void mkpartdlg::OnmkpartClick(wxCommandEvent& event)
if (ret == 0 ) wxMessageBox(_("Partition Creation was successfull"), wxMessageBoxCaptionStr, wxICON_INFORMATION);
else wxMessageBox(_("Partition Creation Failed!\nPlease check log to find more information..."), wxMessageBoxCaptionStr, wxICON_ERROR);
wxEndBusyCursor();
should_update = true;
}

void mkpartdlg::OnSlider1CmdScrollChanged(wxScrollEvent& event)
Expand Down
3 changes: 2 additions & 1 deletion HDL-Batch-installer-SRC/mkpartdlg.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class mkpartdlg: public wxDialog
{
public:

mkpartdlg(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
mkpartdlg(wxWindow* parent, bool* _should_update,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
virtual ~mkpartdlg();

//(*Declarations(mkpartdlg)
Expand All @@ -24,6 +24,7 @@ class mkpartdlg: public wxDialog
wxStaticText* MB;
wxTextCtrl* PARTName;
//*)
bool should_update=false;

protected:

Expand Down
18 changes: 9 additions & 9 deletions HDL-Batch-installer-SRC/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
namespace AutoVersion{

//Date Version Types
static const char DATE[] = "15";
static const char MONTH[] = "12";
static const char YEAR[] = "2023";
static const char UBUNTU_VERSION_STYLE[] = "23.12";
static const char DATE[] = "13";
static const char MONTH[] = "03";
static const char YEAR[] = "2024";
static const char UBUNTU_VERSION_STYLE[] = "24.03";

//Software Status
static const char STATUS[] = "Release Candidate";
Expand All @@ -17,13 +17,13 @@ namespace AutoVersion{
static const long MAJOR = 3;
static const long MINOR = 5;
static const long BUILD = 1;
static const long REVISION = 5;
static const long REVISION = 6;

//Miscellaneous Version Types
static const long BUILDS_COUNT = 0;
#define RC_FILEVERSION 3,5,1,5
#define RC_FILEVERSION_STRING "3, 5, 1, 5\0"
static const char FULLVERSION_STRING [] = "3.5.1.5";
static const long BUILDS_COUNT = 10;
#define RC_FILEVERSION 3,5,1,6
#define RC_FILEVERSION_STRING "3, 5, 1, 6\0"
static const char FULLVERSION_STRING [] = "3.5.1.6";

//These values are to keep track of your versioning state, don't modify them.
static const long BUILD_HISTORY = 99;
Expand Down
Binary file modified Release/HDL-Batch-installer.exe
Binary file not shown.
7 changes: 7 additions & 0 deletions Release/changes.log
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
13 March 2024
[v3.5.1 - Revision 6]

Change log:
-New: German Translation by GeAd23 (www.github.com/GeAd23)
-HDDManager: Avoid refreshing partition table if user did nothing inside the partition creation dialog

15 December 2023
[v3.5.1 - Revision 5]

Expand Down
Binary file modified Release32/HDL-Batch-installer.exe
Binary file not shown.

0 comments on commit 2c712c4

Please sign in to comment.