gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit a8d287644af5f00508ba8ec858b44b3151731872
parent fc2087729c1a5faa173c14db79fe488efe9fd87c
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu, 23 Sep 2021 18:32:53 +0200

fix missing second dot in version number in GUI

Diffstat:
Msource/jucePlugin/version.h | 2+-
Msource/jucePlugin/version.h.in | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/source/jucePlugin/version.h b/source/jucePlugin/version.h @@ -1,4 +1,4 @@ #pragma once -static constexpr const char* const g_pluginVersionString = "1.20"; +static constexpr const char* const g_pluginVersionString = "1.2.0"; static constexpr uint32_t g_pluginVersion = 120; diff --git a/source/jucePlugin/version.h.in b/source/jucePlugin/version.h.in @@ -1,4 +1,4 @@ #pragma once -static constexpr const char* const g_pluginVersionString = "@PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@@PROJECT_VERSION_PATCH@"; +static constexpr const char* const g_pluginVersionString = "@PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@.@PROJECT_VERSION_PATCH@"; static constexpr uint32_t g_pluginVersion = @PROJECT_VERSION_MAJOR@@PROJECT_VERSION_MINOR@@PROJECT_VERSION_PATCH@;