bump version to 1.1.1

Drop the -pre suffix and finalize the version. Also corrects
APP_VERSION_HEX, which had drifted out of sync with APP_VERSION since the
1.1.0 bump (stayed at 0x010001 instead of following the major/minor/patch
per-byte encoding established at 1.0.0/0x010000 and 1.0.1/0x010001); now
0x010101 to match 1.1.1. Updates JuceLibraryCode/AppConfig.h's fallback
JucePlugin_Version*/VersionString defines to match (normally overridden by
the Makefile's -D flags, but were stale at 0.5.8).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_011dhtwRLARk4eiPngcQykLJ
This commit is contained in:
2026-07-27 22:21:28 +02:00
co-authored by Claude Sonnet 5
parent 374fc151f0
commit c4f48f6e6d
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -236,13 +236,13 @@
#define JucePlugin_EditorRequiresKeyboardFocus 0
#endif
#ifndef JucePlugin_Version
#define JucePlugin_Version 0.5.8
#define JucePlugin_Version 1.1.1
#endif
#ifndef JucePlugin_VersionCode
#define JucePlugin_VersionCode 0x00050008
#define JucePlugin_VersionCode 0x010101
#endif
#ifndef JucePlugin_VersionString
#define JucePlugin_VersionString "0.5.8"
#define JucePlugin_VersionString "1.1.1"
#endif
#ifndef JucePlugin_VSTUniqueID
#define JucePlugin_VSTUniqueID JucePlugin_PluginCode
+2 -2
View File
@@ -3,8 +3,8 @@ include make/defaults.mk
CONFIG ?= release
TARGET ?= JaySynth.so
APP_VERSION := 1.1.0-pre
APP_VERSION_HEX := 0x010001
APP_VERSION := 1.1.1
APP_VERSION_HEX := 0x010101
LIBSRC_PATH ?= $(realpath ./submodule)
JUCE_PATH := $(realpath ./sdk/juce/JUCE-3.1.1)
VST2_SDK_PATH ?= $(realpath ./sdk/vst/vstsdk2.4)