Skip to content

Commit

Permalink
Updated changelog and added option to have version tag (e.g. beta-1)
Browse files Browse the repository at this point in the history
  • Loading branch information
mauer committed Apr 14, 2024
1 parent 936c99e commit 9cb65fb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@
cmake_minimum_required(VERSION 3.16)

# Set project details
project(XMidiCtrl VERSION 1.13 DESCRIPTION "MIDI Controller Plugin for X-Plane 11/12")
project(XMidiCtrl VERSION 1.14 DESCRIPTION "MIDI Controller Plugin for X-Plane 11/12")
set(XMIDICTRL_BETA_LABEL .beta-1)
set(PROJECT_SIGNATURE mauer.xmidictrl)

message("-----------------------------------------------")
message("-- Configure ${PROJECT_NAME} ${PROJECT_VERSION}")
message("-- Configure ${PROJECT_NAME} ${PROJECT_VERSION}${XMIDICTRL_BETA_LABEL}")
message("-----------------------------------------------")

include(CTest)
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@

-----------------------------------------------------------------------------------------------------------------------

## VERSION 1.14
+ Fixed parameter default_encoder_mode, as there was a spelling mistake
+ Internal refactoring

-----------------------------------------------------------------------------------------------------------------------

## VERSION 1.13
+ Updated FontAwesome to latest version 6.4.2
+ Moved parameter sl_dataref from profile to device, to allow a sl_dataref for each device
Expand Down
4 changes: 2 additions & 2 deletions version.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

#define XMIDICTRL_VERSION_MAJOR @XMidiCtrl_VERSION_MAJOR@
#define XMIDICTRL_VERSION_MINOR @XMidiCtrl_VERSION_MINOR@
#define XMIDICTRL_VERSION_STR "@XMidiCtrl_VERSION_MAJOR@.@XMidiCtrl_VERSION_MINOR@"
#define XMIDICTRL_VERSION_STR "@XMidiCtrl_VERSION_MAJOR@.@XMidiCtrl_VERSION_MINOR@@XMIDICTRL_BETA_LABEL@"

#define XMIDICTRL_FULL_NAME "@PROJECT_NAME@ @XMidiCtrl_VERSION_MAJOR@.@XMidiCtrl_VERSION_MINOR@"
#define XMIDICTRL_FULL_NAME "@PROJECT_NAME@ @XMidiCtrl_VERSION_MAJOR@.@XMidiCtrl_VERSION_MINOR@@XMIDICTRL_BETA_LABEL@"

#define XMIDICTRL_SIGNATURE "@PROJECT_SIGNATURE@"

0 comments on commit 9cb65fb

Please sign in to comment.