Skip to content

Commit

Permalink
Bump version for 0.67 release
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCycoONE committed Aug 6, 2023
1 parent 16476af commit fc38c4f
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CorsixTH/Lua/app.lua
Expand Up @@ -29,7 +29,7 @@ local runDebugger = corsixth.require("run_debugger")
-- and add compatibility code in afterLoad functions
-- Recommended: Also replace/Update the summary comment
local SAVEGAME_VERSION = 179 -- Palette bug redux
local SAVEGAME_VERSION = 180 -- CorsixTH 0.67 release
class "App"
Expand Down Expand Up @@ -1599,10 +1599,10 @@ end
-- a specific savegame version is from.
function App:getVersion(version)
local ver = version or self.savegame_version
if ver > 178 then
if ver > 180 then
return "Trunk"
elseif ver > 170 then
return "v0.67-rc1"
return "v0.67"
elseif ver > 156 then
return "v0.66"
elseif ver > 138 then
Expand Down
64 changes: 64 additions & 0 deletions CorsixTH/com.corsixth.corsixth.metainfo.xml
Expand Up @@ -20,6 +20,70 @@
</provides>
<launchable type="desktop-id">com.corsixth.corsixth.desktop</launchable>
<releases>
<release version="0.67" date="2023-08-12" type="stable">
<description>
<p>New Features:</p>
<ul>
<li>The original demo gameplay video now plays when the CorsixTH main
menu is idle (this can be disabled in the configuration file)</li>
<li>File browser menus now have an OK button</li>
<li>Selecting an existing file in the Save Game/Map browsers will now
update the text input box to that file name</li>
</ul>
<p>Changes:</p>
<ul>
<li>Handymen now always stay in their assigned plots, except when
going to rest</li>
<li>Staff members now have a maximum salary, which can be configured
in custom levels</li>
<li>The game will now always use the GP&apos;s choice of next
diagnosis room for the patient, if available.</li>
<li>Queueing patients are now shown when hovering a door</li>
<li>Epidemics can no longer fail because an infected patient left
before the epidemic was revealed</li>
<li>Balance changes to drug improvement research</li>
<li>Check for updates can now be disabled in Settings</li>
<li>Check for updates timeout duration significantly shortened</li>
<li>&quot;Pause&quot; now shows up when the &quot;Build while
paused&quot; setting is on and the game is paused</li>
<li>The gamelog now includes a timestamp</li>
<li>Theme Hospital installs in the default location for the EA Store
are now automatically detected, like GOG and Origin.</li>
</ul>
<p>Translations:</p>
<ul>
<li>Chinese Traditional and Simplified translations have been
updated</li>
<li>Russian has been updated</li>
</ul>
<p>Bug Fixes:</p>
<ul>
<li>Fixed an instance where objects could disappear from the map</li>
<li>Fixed a bug where the empty action queue message was prevented
from happening</li>
<li>Fixed a bug where dying patients became undead and would have a
habit of ruining everything</li>
<li>Fixed broken dynamic info during epidemics</li>
<li>Handymen will no longer try to repair machinery while a patient
is using it</li>
<li>Psychiatrist couch has less chance of causing blocked paths</li>
<li>Roujin&apos;s challenge is now properly applied (read:
harder)</li>
<li>Serious Radiation is no longer contagious</li>
<li>Room blueprints can no longer go beyond external walls</li>
<li>Fixed incorrect button sounds in the Staff Management Window</li>
<li>Fixed back button behaviour in Font Picker</li>
<li>Fixed a bug where word-wrapping text on dialogs could crash the
game</li>
<li>Fixed a rare case where the next VIP date may be scheduled in the
past</li>
<li>Fixed a rare case where awarded research points could be
negative</li>
<li>Fixed a rare case of the balance sheet being victim of a green
highlighter</li>
</ul>
</description>
</release>
<release version="0.67~rc1" date="2023-07-29" type="development">
<description>
<p>Changes:</p>
Expand Down
2 changes: 1 addition & 1 deletion CorsixTH/corsix-th.6
Expand Up @@ -95,4 +95,4 @@ Copyright CorsixTH contributors.
CorsixTH is available under the MIT license.
.Pp
For the full license text see:
.Lk https://raw.githubusercontent.com/CorsixTH/CorsixTH/v0.66/LICENSE.txt
.Lk https://raw.githubusercontent.com/CorsixTH/CorsixTH/v0.67/LICENSE.txt
2 changes: 1 addition & 1 deletion WindowsInstaller/Win32Script.nsi
Expand Up @@ -24,7 +24,7 @@
;---------------------------------- Definitions for the game -----------------------------------

!define PRODUCT_NAME "CorsixTH"
!define PRODUCT_VERSION "0.67-rc1"
!define PRODUCT_VERSION "0.67"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
!define PRODUCT_STARTMENU_REGVAL "NSIS:StartMenuDir"
Expand Down

0 comments on commit fc38c4f

Please sign in to comment.