Skip to content

Commit

Permalink
bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-rgb committed Sep 23, 2017
1 parent 34e5309 commit 2351fe5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Milton.iss
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

[Setup]
AppName=Milton
AppVersion=1.4.4
AppVersion=1.5.0
DefaultDirName={pf}\Milton
DefaultGroupName=Milton
;UninstallDisplayIcon={app}\Milton.exe
Compression=lzma2
SolidCompression=yes
OutputBaseFilename=MiltonSetup_1.4.4_x64
OutputBaseFilename=MiltonSetup_1.5.0_x64
;ArchitecturesAllowed=x64
;ArchitecturesInstallIn64BitMode=x64
ChangesAssociations=yes
Expand Down
1 change: 0 additions & 1 deletion src/milton.cc
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,6 @@ milton_init(MiltonState* milton_state, i32 width, i32 height, f32 ui_scale, PATH
}
milton_set_pen_alpha(milton_state, 1.0f);

milton_state->mlt_binary_version = 2;
milton_state->last_save_time = {};
// Note: This will fill out uninitialized data like default layers.
milton_load(milton_state);
Expand Down
2 changes: 1 addition & 1 deletion src/milton_configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

#define MILTON_MULTITHREADED 1

#define MILTON_ENABLE_PROFILING 1
#define MILTON_ENABLE_PROFILING 0

#define REDRAW_EVERY_FRAME 0

Expand Down
2 changes: 1 addition & 1 deletion src/persist.cc
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ milton_load(MiltonState* milton_state)
if ( milton_binary_version < 4 ) {
if ( platform_dialog_yesno ("This file will be updated to the new version of Milton. Older versions won't be able to open it. Is this OK?", "File format change") ) {
milton_state->mlt_binary_version = MILTON_MINOR_VERSION;
milton_log("Updating this file to mlt version 4.\n");
milton_log("Updating this file to latest mlt version.\n");
} else {
ok = false;
handled = true;
Expand Down

0 comments on commit 2351fe5

Please sign in to comment.