Skip to content

Commit

Permalink
Fixed game and installer version, example and missing dll.
Browse files Browse the repository at this point in the history
Refs #554
  • Loading branch information
Yohann Ferreira committed Sep 9, 2019
1 parent c852c4f commit e206f0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions ValyriaTear.nsi
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
; Script originally generated by the HM NIS Edit Script Wizard.

; Define the DLL dir and the installer filename on the command line, e.g. like his:
; Usage: "C:\Program Files (x86)\NSIS\makensis.exe" /DDLL_DIR="C:\msys64\mingw64\bin" /DINSTALLER_FILENAME=valyriatear-master-5-mingw-w64-x86_64.exe ValyriaTear.nsi
; Usage: "C:\Program Files (x86)\NSIS\makensis.exe" /DDLL_DIR="C:\msys64\mingw64\bin" ValyriaTear.nsi

; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "Valyria Tear"
!define PRODUCT_VERSION "Episode I"
!define PRODUCT_VERSION "Episode I - v1.1.0-beta.1"
!define PRODUCT_PUBLISHER "Bertram"
!define PRODUCT_WEB_SITE "https://github.com/Bertram25/ValyriaTear/wiki"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\ValyriaTear.exe"
Expand Down Expand Up @@ -44,7 +44,7 @@
; MUI end ------

Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
OutFile ${INSTALLER_FILENAME}
OutFile ValyriaTear-Installer.exe
InstallDir "$PROGRAMFILES\ValyriaTear"
InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" ""
ShowInstDetails show
Expand Down Expand Up @@ -91,6 +91,7 @@ Section "MainSection" SEC01
File "${DLL_DIR}\SDL2_image.dll"
File "${DLL_DIR}\SDL2_ttf.dll"
File "${DLL_DIR}\zlib1.dll"
File "${DLL_DIR}\libzstd.dll"

CreateDirectory "$SMPROGRAMS\ValyriaTear"
CreateShortCut "$SMPROGRAMS\ValyriaTear\$0.lnk" "$INSTDIR\valyriatear.exe"
Expand Down
2 changes: 1 addition & 1 deletion src/modes/boot/boot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ BootMode::BootMode() :

// Note: Not translated on purpose.
_version_text.SetStyle(TextStyle("text18"));
std::string version_string = "Version 1.0.0 - Development version";
std::string version_string = "Version 1.1.0 - Beta 1";

// NOTE: Only leave the " - " part for releases.
version_string.append(" - ");
Expand Down

0 comments on commit e206f0f

Please sign in to comment.