Skip to content

Commit

Permalink
v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Grix committed Oct 6, 2015
1 parent c09014d commit 6877a6f
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Configs/Default/windows/RunnerInstaller.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
!endif

!ifndef COPYRIGHT_TXT
!define COPYRIGHT_TXT "(c)Copyright 2013"
!define COPYRIGHT_TXT "(c)Copyright 2015"
!endif

!ifndef FILE_DESC
!define FILE_DESC "Created with GameMaker:Studio"
!define FILE_DESC "Virtual Reality Laser Show Simulator"
!endif

!ifndef LICENSE_NAME
Expand Down Expand Up @@ -75,7 +75,7 @@ BrandingText "${APP_NAME}"
OutFile "${INSTALLER_FILENAME}"

; The default installation directory
InstallDir "$PROFILE\${APP_NAME}"
InstallDir "$PROGRAMFILES\${APP_NAME}"

; Registry key to check for directory (so if you install again, it will
; overwrite the old one automatically)
Expand Down
Binary file removed VRLSS-0.5.0-Installer-Legacy.exe
Binary file not shown.
Binary file removed VRLSS-0.5.0-Installer.exe
Binary file not shown.
Binary file modified VRLSS-0.6.0-Installer-Legacy.exe
Binary file not shown.
Binary file modified VRLSS-0.6.0-Installer.exe
Binary file not shown.
37 changes: 37 additions & 0 deletions objects/controller.object.gmx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ refresh_setup_surf = 1;

alarm[1]=2;

update_verbose = 0;
dialog_open = 0;
tooltip = "";
frame = 0;
Expand All @@ -98,6 +99,30 @@ zpnrad = 0;
skybox = 1;

update_check();
</string>
</argument>
</arguments>
</action>
</event>
<event eventtype="2" enumb="4">
<action>
<libid>1</libid>
<id>603</id>
<kind>7</kind>
<userelative>0</userelative>
<isquestion>0</isquestion>
<useapplyto>-1</useapplyto>
<exetype>2</exetype>
<functionname></functionname>
<codestring></codestring>
<whoName>self</whoName>
<relative>0</relative>
<isnot>0</isnot>
<arguments>
<argument>
<kind>1</kind>
<string>///game end
game_end();
</string>
</argument>
</arguments>
Expand Down Expand Up @@ -356,6 +381,18 @@ if (new_id == getint)
updateget = http_get("https://raw.githubusercontent.com/Grix/vrlss/master/version.txt");
}
}
if ds_map_find_value(async_load, "status")
{
switch (dialog)
{
case "updatefound":
{
file = http_get_file("https://github.com/Grix/vrlss/raw/master/VRLSS-"+versionnew+"-Installer.exe","temp/update.exe");
show_message_async("Download started, installation will start shortly..");

This comment has been minimized.

Copy link
@RobQuistNL

RobQuistNL Oct 7, 2015

Neato 👍

This comment has been minimized.

Copy link
@RobQuistNL

RobQuistNL Oct 7, 2015

But shouldn't you also execute it? ;p

This comment has been minimized.

Copy link
@Grix

Grix Oct 7, 2015

Author Owner

It is executed. :) The rest of the code is in the previous commit.

break;
}
}
}
}
</string>
</argument>
Expand Down

0 comments on commit 6877a6f

Please sign in to comment.