Skip to content

Commit

Permalink
IVAN version 0.59
Browse files Browse the repository at this point in the history
  • Loading branch information
ryfactor committed Dec 23, 2021
1 parent 73d04a8 commit e764773
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project(ivan CXX C)
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")

set(VERSION_MAJOR 0)
set(VERSION_MINOR 58)
set(VERSION_MINOR 59)
set(PROJECT_VERSION "${VERSION_MAJOR}.${VERSION_MINOR}")
#set(VERSION_PATCH 0)
#set(PROJECT_VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
Expand Down
4 changes: 2 additions & 2 deletions Main/Source/game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@

#include "dbgmsgproj.h"

#define SAVE_FILE_VERSION 135 // Increment this if changes make savefiles incompatible
#define BONE_FILE_VERSION 119 // Increment this if changes make bonefiles incompatible
#define SAVE_FILE_VERSION 136 // Increment this if changes make savefiles incompatible
#define BONE_FILE_VERSION 120 // Increment this if changes make bonefiles incompatible

#define LOADED 0
#define NEW_GAME 1
Expand Down
17 changes: 17 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,23 @@
Next version
------------

Version 0.59, released 23rd December 2021
-----------------------------------------

Changes:
* Crafting Skill
* Item light emitation based on volume
* Custom key bindings
* String question history
* Sumo house fix when player gets stuck
* Optional whizz-bang changing menu background
* Various bugs fixed
* New, unknown bugs
* Something about a new world map generator
* Built on Azure (lol in your face m$!!!1!)
* And much more. Visit the forum! https://attnam.com


Version 0.58, released 15th March 2020
--------------------------------------

Expand Down
8 changes: 4 additions & 4 deletions releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To do for each release
3) Update savefile version, bonefile version or highscore version, as appropriate
4) Update NEWS with release date
5) Commit the above changes
6) Create a tag in the format `v059` (use the same number as the new version number entered in `CMakeLists.txt`)
6) Create a tag in the format `v060` (use the same number as the new version number entered in `CMakeLists.txt`)
7) Push the above changes including tag to `master`

A zip file should appear later, on the release page. The binary is compiled with static linking, therefore, no dynamic link libraries are shipped.
Expand All @@ -19,7 +19,7 @@ Old instructions for posterity

### Things to change around in the code:

- Update the IVAN version number in the root CMakeLists.txt from 0.58 to 0.59, depending on what the next version is
- Update the IVAN version number in the root CMakeLists.txt from 0.59 to 0.60, depending on what the next version is
- Search for "increment" in the project files and increment the number associated with the bone files, savefiles and high score versions etc
- Update this file (releasing.md) to the _next_ release number with the instructions for the next release

Expand All @@ -32,7 +32,7 @@ Old instructions for posterity

### Include the following files in a zip folder for each release:

**Folder: IvanWin059**
**Folder: IvanWin060**

**Files = 12**

Expand Down Expand Up @@ -110,7 +110,7 @@ Old instructions for posterity

**Subfolder: Script\sound**

### Then commit changes, with the release tag v059
### Then commit changes, with the release tag v060
Tag can be appended to latest commit

### Push changes

0 comments on commit e764773

Please sign in to comment.