Skip to content

Commit

Permalink
Release version 0.50.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ryfactor committed Oct 27, 2017
1 parent 9d786a8 commit 3f5ba83
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 2.8.12.2)

project(ivan CXX C)
set(PROJECT_VERSION 0.50.8)
set(PROJECT_VERSION 0.50.9)

set(CMAKE_CXX_FLAGS "-std=c++11 ${CMAKE_CXX_FLAGS}")
add_definitions(-DIVAN_VERSION="${PROJECT_VERSION}" -DUSE_SDL)
Expand Down
2 changes: 1 addition & 1 deletion FeLib/Source/hscore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include "femath.h"

/* Increment this if changes make highscores incompatible */
#define HIGH_SCORE_VERSION 128
#define HIGH_SCORE_VERSION 129

cfestring& highscore::GetEntry(int I) const { return Entry[I]; }
long highscore::GetScore(int I) const { return Score[I]; }
Expand Down
4 changes: 2 additions & 2 deletions Main/Source/game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@

#include "audio.h"

#define SAVE_FILE_VERSION 129 // Increment this if changes make savefiles incompatible
#define BONE_FILE_VERSION 115 // Increment this if changes make bonefiles incompatible
#define SAVE_FILE_VERSION 130 // Increment this if changes make savefiles incompatible
#define BONE_FILE_VERSION 116 // Increment this if changes make bonefiles incompatible

#define LOADED 0
#define NEW_GAME 1
Expand Down
13 changes: 7 additions & 6 deletions releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To do for each release

### Things to change around in the code:

- Update the IVAN version number in the root CMakeLists.txt from 0.50.8 to 0.50.9, depending on what the next version is
- Update the IVAN version number in the root CMakeLists.txt from 0.50.9 to 0.51, 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 @@ -18,9 +18,9 @@ To do for each release

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

**Folder: IvanWin0509**
**Folder: IvanWin051**

**Files = 11**
**Files = 12**

- AUTHORS
- COPYING
Expand All @@ -32,7 +32,8 @@ To do for each release
- README
- README.md
- SDL2.dll
- libpng3.dll
- libpng12.dll / libpng16.dll
- zlib1.dll

**Subfolder: Graphics**

Expand All @@ -57,7 +58,7 @@ To do for each release

**Subfolder: Music**

**Files = 10**
**Files = 11**

- Cathedral.mid
- defeat.mid
Expand Down Expand Up @@ -90,7 +91,7 @@ To do for each release

**Leave only dungeon data files in here**

### Then commit changes, with the release tag v0509
### Then commit changes, with the release tag v051
Tag can be appended to latest commit

### Push changes

0 comments on commit 3f5ba83

Please sign in to comment.