mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-18 07:30:18 +01:00
Preparing for release 2.1.0
Added CMake policy version.
This commit is contained in:
parent
350651dae6
commit
6a30ccbef1
4 changed files with 17 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
cmake_minimum_required(VERSION 3.0)
|
||||
cmake_minimum_required(VERSION 3.0...3.5)
|
||||
project(SpaceCadetPinball)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
|
|
|
@ -28,6 +28,20 @@
|
|||
</screenshot>
|
||||
</screenshots>
|
||||
<releases>
|
||||
<release version="2.1.0" date="2023-10-16">
|
||||
<description>
|
||||
<p>Feature release focusing on FT compatibility.</p>
|
||||
<p>Main highlights:</p>
|
||||
<ul>
|
||||
<li>FT: collision system changes, table control changes, multiball, three MIDI tracks.</li>
|
||||
<li>Work in progress: localization support. Depends on external font selection for most languages.</li>
|
||||
<li>HW accelerated ImGui renderer.</li>
|
||||
<li>Experimental stereo sound support.</li>
|
||||
<li>UX improvements.</li>
|
||||
<li>Bug fixes.</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
<release version="2.0.1" date="2021-12-29">
|
||||
<description>
|
||||
<p>First bug fix release of cross-platform port.</p>
|
||||
|
|
|
@ -66,7 +66,7 @@ class winmain
|
|||
using TimePoint = std::chrono::time_point<Clock>;
|
||||
|
||||
public:
|
||||
static constexpr const char* Version = "2.1.0 DEV";
|
||||
static constexpr const char* Version = "2.1.0";
|
||||
static bool single_step;
|
||||
static SDL_Window* MainWindow;
|
||||
static SDL_Renderer* Renderer;
|
||||
|
|
|
@ -39,7 +39,7 @@ cd ..
|
|||
cmake .
|
||||
cmake --build .
|
||||
|
||||
sw_version='2.0.1'
|
||||
sw_version='2.1.0'
|
||||
|
||||
mkdir -p SpaceCadetPinball.app/Contents/MacOS
|
||||
mkdir -p SpaceCadetPinball.app/Contents/Resources
|
||||
|
|
Loading…
Reference in a new issue