Bump version to v0.4
This commit is contained in:
10
CHANGELOG
10
CHANGELOG
@@ -1,10 +0,0 @@
|
|||||||
v0.1: First Release
|
|
||||||
- Basic simulation.
|
|
||||||
- Information printing.
|
|
||||||
|
|
||||||
v0.2: Menu Bar
|
|
||||||
- Added a menu bar.
|
|
||||||
- Can reset the simulation.
|
|
||||||
|
|
||||||
v0.3: Port to C
|
|
||||||
- Codebase ported to C for better performance.
|
|
||||||
21
CHANGELOG.md
Normal file
21
CHANGELOG.md
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
# Change Log
|
||||||
|
|
||||||
|
## v0.4: More functionality
|
||||||
|
|
||||||
|
- Fix acceleration.
|
||||||
|
- Add fullscreen support.
|
||||||
|
- Pause functionality.
|
||||||
|
|
||||||
|
## v0.3: Port to C
|
||||||
|
|
||||||
|
- Codebase ported to C for better performance.
|
||||||
|
|
||||||
|
## v0.2: Menu Bar
|
||||||
|
|
||||||
|
- Added a menu bar.
|
||||||
|
- Can reset the simulation.
|
||||||
|
|
||||||
|
## v1.0: First Release
|
||||||
|
|
||||||
|
- Basic simulation.
|
||||||
|
- Information printing.
|
||||||
@@ -18,7 +18,7 @@ cmake_minimum_required(VERSION 3.10)
|
|||||||
project(SpaceShipSim C)
|
project(SpaceShipSim C)
|
||||||
|
|
||||||
set(TARGET_NAME "spaceshipsim")
|
set(TARGET_NAME "spaceshipsim")
|
||||||
set(TARGET_VERSION "0.3")
|
set(TARGET_VERSION "0.4")
|
||||||
|
|
||||||
if(NOT CMAKE_BUILD_TYPE)
|
if(NOT CMAKE_BUILD_TYPE)
|
||||||
set(CMAKE_BUILD_TYPE "release")
|
set(CMAKE_BUILD_TYPE "release")
|
||||||
@@ -48,8 +48,7 @@ set(SRCS
|
|||||||
|
|
||||||
add_definitions(-DVERSION="${TARGET_VERSION}")
|
add_definitions(-DVERSION="${TARGET_VERSION}")
|
||||||
|
|
||||||
if(${CMAKE_BUILD_TYPE} STREQUAL "debug" OR
|
if(${CMAKE_BUILD_TYPE} STREQUAL "debug" OR ${CMAKE_BUILD_TYPE} STREQUAL "relwithdebinfo")
|
||||||
${CMAKE_BUILD_TYPE} STREQUAL "relwithdebinfo")
|
|
||||||
add_definitions(-DDEBUG)
|
add_definitions(-DDEBUG)
|
||||||
else()
|
else()
|
||||||
add_definitions(-DNDEBUG)
|
add_definitions(-DNDEBUG)
|
||||||
|
|||||||
Reference in New Issue
Block a user