Skip to content

Commit

Permalink
Bump version to 1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kuroneko committed Oct 14, 2020
1 parent ea6467d commit 5dc9f5c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED 14)
# on macos, target 10.11
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.11)

project(strange VERSION 1.6.2 LANGUAGES C CXX)
project(strange VERSION 1.6.3 LANGUAGES C CXX)

option(USE_CONAN "Use conan for dependencies" OFF)

Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Strange Adventures in Infinte Space (GPL) 1.6.2
# Strange Adventures in Infinte Space (GPL) 1.6.3

![Screenshot on Raspian (ARM Linux)](screenshot.png)

Expand All @@ -21,7 +21,12 @@ If you don't like SAIS GPL, it's possibly my fault and you should leave
Digital Eel alone - they have no real responsibility for any (new) problems it may have.

Likewise, there are no warranties, explicit or implied for this software
(per the License).
(per the License).

## New in 1.6.3

* Updated physfs to 3.0.2 - this should fix the "PhyFS failed to initialise: (null)" error
some users get.

## New in 1.6.2

Expand Down
6 changes: 5 additions & 1 deletion full/manual.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,15 @@ Official Website: http://www.digital-eel.com/sais/

Read mods.txt for information on modifications

Last Updated - August 2020.
Last Updated - October 2020.

------------------------------------
Changes In SAIS
------------------------------------
(New in 1.6.3)
- Updated physfs to 3.0.2 - this should fix the "PhyFS failed to
initialise: (null)" error some users get.

(New in 1.6.2)
- Fixed a bug preventing mixed case text input.

Expand Down
2 changes: 1 addition & 1 deletion src/iface_globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#define MAX(x,y) (((x) > (y)) ? (x) : (y))
#define ABS(x) (((x) > 0) ? (x) : (0-x))

#define SAIS_VERSION_NUMBER "v1.6.2"
#define SAIS_VERSION_NUMBER "v1.6.3"

typedef struct _t_gamesettings
{
Expand Down

0 comments on commit 5dc9f5c

Please sign in to comment.