Skip to content

Commit

Permalink
spearmint: Change version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zturtleman committed Oct 10, 2018
1 parent 70561e3 commit b3a1c0a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ endif
export CROSS_COMPILING

ifndef VERSION
VERSION=1.0-devil
VERSION=1.0.0
endif

ifndef CLIENTBIN
Expand Down
6 changes: 4 additions & 2 deletions code/cgame/cg_public.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ Suite 120, Rockville, Maryland 20850 USA.

// major 0 means each minor is an API break.
// major > 0 means each major is an API break and each minor extends API.
#define CG_API_MAJOR_VERSION 0
#define CG_API_MINOR_VERSION 39
// ZTM: FIXME: There is no way for the VM to know what the engine support API is
// so there is no way to add more system calls.
#define CG_API_MAJOR_VERSION 1
#define CG_API_MINOR_VERSION 0


#define CMD_BACKUP 64
Expand Down
6 changes: 4 additions & 2 deletions code/game/g_public.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ Suite 120, Rockville, Maryland 20850 USA.

// major 0 means each minor is an API break.
// major > 0 means each major is an API break and each minor extends API.
#define GAME_API_MAJOR_VERSION 0
#define GAME_API_MINOR_VERSION 16
// ZTM: FIXME: There is no way for the VM to know what the engine support API is
// so there is no way to add more system calls.
#define GAME_API_MAJOR_VERSION 1
#define GAME_API_MINOR_VERSION 0


// entity->svFlags
Expand Down
2 changes: 1 addition & 1 deletion code/qcommon/qcommon.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Suite 120, Rockville, Maryland 20850 USA.

// Keep this in-sync with VERSION in Makefile.
#ifndef PRODUCT_VERSION
#define PRODUCT_VERSION "1.0-devil"
#define PRODUCT_VERSION "1.0.0"
#endif

#define Q3_VERSION PRODUCT_NAME " " PRODUCT_VERSION
Expand Down
2 changes: 1 addition & 1 deletion misc/nsis/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ifndef FSNAME
FSNAME=spearmint
endif
ifndef VERSION
VERSION=1.0-devil
VERSION=1.0.0
endif
ifndef RELEASE
RELEASE=0
Expand Down

0 comments on commit b3a1c0a

Please sign in to comment.