Skip to content

Commit

Permalink
Update mod version to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fholger committed Jan 19, 2025
1 parent b063834 commit 0b8856c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
3 changes: 2 additions & 1 deletion Code/Menus/FlashMenuObjectSingleplayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,8 @@ void CFlashMenuObject::UpdateSaveGames()
const char *tempModVersion = desc.metaData.xmlMetaDataNode->getAttr("ModVersion");
if(tempModName && tempModVersion )
{
if(strcmp(modName.c_str(),tempModName) || strcmp(modVersion.c_str(),tempModVersion))
// only verify current or old mod name; no version check as we don't want to invalidate old saves
if(strcmp(modName.c_str(),tempModName) && strcmp(tempModName, "VRMod"))
continue;
}

Expand Down
7 changes: 3 additions & 4 deletions Installer/crysis.nsi
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
!include "MUI2.nsh"
!define VERSION '0.5.0'
!define VERSION '1.0.0'

Name "Crysis VR Mod"
; should not need admin privileges as the install folder should be user writable, anyway
Expand All @@ -14,9 +14,8 @@ OutFile ".\crysis-vrmod-${VERSION}.exe"
!define MUI_WELCOMEFINISHPAGE_BITMAP ".\welcome.bmp"
!define MUI_WELCOMEPAGE_TITLE 'Crysis VR Mod v${VERSION}'
!define MUI_WELCOMEPAGE_TEXT 'This will install the Crysis VR Mod on your computer. \
Please be aware that this is an early development version, and bugs are to be expected. \
It is a seated-only experience for now with limited motion controller support. \
Also, it is Crysis - expect performance to not be great :)'
It will turn the game into a full 6DOF tracked VR experience with motion controls. \
But remember, it is Crysis - expect performance to not be great :)'

!define MUI_DIRECTORYPAGE_TEXT 'Please enter the location of your Crysis installation.'

Expand Down
2 changes: 1 addition & 1 deletion info.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<Mod Name="VRMod" Version="0.1" Screenshot="" Description="Play Crysis in VR" url="" />
<Mod Name="Crysis VR" Version="1.0" Screenshot="" Description="Play Crysis in VR with full 6DOF tracking and motion controls" url="https://crysis.vrmods.eu" />

0 comments on commit 0b8856c

Please sign in to comment.