From 360dfe5f3dbc7cce16f285fdb0289d5a685d0490 Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Mon, 15 Sep 2025 09:30:11 +0100 Subject: [PATCH] Bump version number to 8.0.10 --- CHANGE_LIST.md | 9 +++++++++ CMakeLists.txt | 2 +- examples/DemoRunner/DemoRunner.jucer | 2 +- extras/Build/juce_build_tools/juce_build_tools.h | 2 +- extras/Projucer/Projucer.jucer | 2 +- modules/juce_analytics/juce_analytics.h | 2 +- modules/juce_animation/juce_animation.h | 2 +- modules/juce_audio_basics/juce_audio_basics.h | 2 +- modules/juce_audio_devices/juce_audio_devices.h | 2 +- modules/juce_audio_formats/juce_audio_formats.h | 2 +- .../juce_audio_plugin_client/juce_audio_plugin_client.h | 2 +- modules/juce_audio_processors/juce_audio_processors.h | 2 +- modules/juce_audio_utils/juce_audio_utils.h | 2 +- modules/juce_box2d/juce_box2d.h | 2 +- modules/juce_core/juce_core.h | 2 +- modules/juce_core/system/juce_StandardHeader.h | 2 +- modules/juce_cryptography/juce_cryptography.h | 2 +- modules/juce_data_structures/juce_data_structures.h | 2 +- modules/juce_dsp/juce_dsp.h | 2 +- modules/juce_events/juce_events.h | 2 +- modules/juce_graphics/juce_graphics.h | 2 +- modules/juce_gui_basics/juce_gui_basics.h | 2 +- modules/juce_gui_extra/juce_gui_extra.h | 2 +- modules/juce_javascript/juce_javascript.h | 2 +- modules/juce_midi_ci/juce_midi_ci.h | 2 +- modules/juce_opengl/juce_opengl.h | 2 +- modules/juce_osc/juce_osc.h | 2 +- modules/juce_product_unlocking/juce_product_unlocking.h | 2 +- modules/juce_video/juce_video.h | 2 +- 29 files changed, 37 insertions(+), 28 deletions(-) diff --git a/CHANGE_LIST.md b/CHANGE_LIST.md index de230de05b..e17ce011eb 100644 --- a/CHANGE_LIST.md +++ b/CHANGE_LIST.md @@ -3,6 +3,15 @@ This file lists the more notable headline features. For more detailed info about changes and bugfixes please see the git log and BREAKING_CHANGES.md. +## Version 8.0.10 + + - Avoided restarting Android Activities on system theme change + - Fixed an issue with PopupMenu item visibility + - Fixed iOS screen size detection in plug-ins + - Fixed some LLVM 21 compiler warnings + - Fixed some Direct2D drawning issues + - Fixed an XEmbedComponent issue + ## Version 8.0.9 - Added support for configurable font features (ligatures, kerning, ...) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3326078283..feeb476ab8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,7 +32,7 @@ cmake_minimum_required(VERSION 3.22) -project(JUCE VERSION 8.0.9 LANGUAGES C CXX) +project(JUCE VERSION 8.0.10 LANGUAGES C CXX) include(CMakeDependentOption) diff --git a/examples/DemoRunner/DemoRunner.jucer b/examples/DemoRunner/DemoRunner.jucer index 45bf586da0..44be4aa70f 100644 --- a/examples/DemoRunner/DemoRunner.jucer +++ b/examples/DemoRunner/DemoRunner.jucer @@ -1,7 +1,7 @@ diff --git a/modules/juce_analytics/juce_analytics.h b/modules/juce_analytics/juce_analytics.h index dceef09536..95eb996475 100644 --- a/modules/juce_analytics/juce_analytics.h +++ b/modules/juce_analytics/juce_analytics.h @@ -44,7 +44,7 @@ ID: juce_analytics vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE analytics classes description: Classes to collect analytics and send to destinations website: http://www.juce.com/juce diff --git a/modules/juce_animation/juce_animation.h b/modules/juce_animation/juce_animation.h index ffc27c7438..0101e345f4 100644 --- a/modules/juce_animation/juce_animation.h +++ b/modules/juce_animation/juce_animation.h @@ -44,7 +44,7 @@ ID: juce_animation vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE Animation classes description: Classes for defining and handling animations. website: http://www.juce.com/juce diff --git a/modules/juce_audio_basics/juce_audio_basics.h b/modules/juce_audio_basics/juce_audio_basics.h index 42722a1bb3..de9fd28aef 100644 --- a/modules/juce_audio_basics/juce_audio_basics.h +++ b/modules/juce_audio_basics/juce_audio_basics.h @@ -44,7 +44,7 @@ ID: juce_audio_basics vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE audio and MIDI data classes description: Classes for audio buffer manipulation, midi message handling, synthesis, etc. website: http://www.juce.com/juce diff --git a/modules/juce_audio_devices/juce_audio_devices.h b/modules/juce_audio_devices/juce_audio_devices.h index f47bc79c07..0335da8dee 100644 --- a/modules/juce_audio_devices/juce_audio_devices.h +++ b/modules/juce_audio_devices/juce_audio_devices.h @@ -44,7 +44,7 @@ ID: juce_audio_devices vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE audio and MIDI I/O device classes description: Classes to play and record from audio and MIDI I/O devices website: http://www.juce.com/juce diff --git a/modules/juce_audio_formats/juce_audio_formats.h b/modules/juce_audio_formats/juce_audio_formats.h index 2768ed2a37..cbdbf2a60a 100644 --- a/modules/juce_audio_formats/juce_audio_formats.h +++ b/modules/juce_audio_formats/juce_audio_formats.h @@ -44,7 +44,7 @@ ID: juce_audio_formats vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE audio file format codecs description: Classes for reading and writing various audio file formats. website: http://www.juce.com/juce diff --git a/modules/juce_audio_plugin_client/juce_audio_plugin_client.h b/modules/juce_audio_plugin_client/juce_audio_plugin_client.h index 7bf3aa45f5..957e3102e1 100644 --- a/modules/juce_audio_plugin_client/juce_audio_plugin_client.h +++ b/modules/juce_audio_plugin_client/juce_audio_plugin_client.h @@ -44,7 +44,7 @@ ID: juce_audio_plugin_client vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE audio plugin wrapper classes description: Classes for building VST, VST3, AU, AUv3, LV2 and AAX plugins. website: http://www.juce.com/juce diff --git a/modules/juce_audio_processors/juce_audio_processors.h b/modules/juce_audio_processors/juce_audio_processors.h index 9021ef41ee..9e0923ff3b 100644 --- a/modules/juce_audio_processors/juce_audio_processors.h +++ b/modules/juce_audio_processors/juce_audio_processors.h @@ -44,7 +44,7 @@ ID: juce_audio_processors vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE audio processor classes description: Classes for loading and playing VST, AU, LADSPA, or internally-generated audio processors. website: http://www.juce.com/juce diff --git a/modules/juce_audio_utils/juce_audio_utils.h b/modules/juce_audio_utils/juce_audio_utils.h index ff4af7ef1d..413ad166e3 100644 --- a/modules/juce_audio_utils/juce_audio_utils.h +++ b/modules/juce_audio_utils/juce_audio_utils.h @@ -44,7 +44,7 @@ ID: juce_audio_utils vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE extra audio utility classes description: Classes for audio-related GUI and miscellaneous tasks. website: http://www.juce.com/juce diff --git a/modules/juce_box2d/juce_box2d.h b/modules/juce_box2d/juce_box2d.h index b9dadd255a..248a01685c 100644 --- a/modules/juce_box2d/juce_box2d.h +++ b/modules/juce_box2d/juce_box2d.h @@ -44,7 +44,7 @@ ID: juce_box2d vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE wrapper for the Box2D physics engine description: The Box2D physics engine and some utility classes. website: http://www.juce.com/juce diff --git a/modules/juce_core/juce_core.h b/modules/juce_core/juce_core.h index 66af3d286c..5618a14fa8 100644 --- a/modules/juce_core/juce_core.h +++ b/modules/juce_core/juce_core.h @@ -44,7 +44,7 @@ ID: juce_core vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE core classes description: The essential set of basic JUCE classes, as required by all the other JUCE modules. Includes text, container, memory, threading and i/o functionality. website: http://www.juce.com/juce diff --git a/modules/juce_core/system/juce_StandardHeader.h b/modules/juce_core/system/juce_StandardHeader.h index a0a6305f44..adae6fba2a 100644 --- a/modules/juce_core/system/juce_StandardHeader.h +++ b/modules/juce_core/system/juce_StandardHeader.h @@ -41,7 +41,7 @@ */ #define JUCE_MAJOR_VERSION 8 #define JUCE_MINOR_VERSION 0 -#define JUCE_BUILDNUMBER 9 +#define JUCE_BUILDNUMBER 10 /** Current JUCE version number. diff --git a/modules/juce_cryptography/juce_cryptography.h b/modules/juce_cryptography/juce_cryptography.h index 9c10eddaa4..0d13dee217 100644 --- a/modules/juce_cryptography/juce_cryptography.h +++ b/modules/juce_cryptography/juce_cryptography.h @@ -44,7 +44,7 @@ ID: juce_cryptography vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE cryptography classes description: Classes for various basic cryptography functions, including RSA, Blowfish, MD5, SHA, etc. website: http://www.juce.com/juce diff --git a/modules/juce_data_structures/juce_data_structures.h b/modules/juce_data_structures/juce_data_structures.h index 267829eea5..e66b9feee0 100644 --- a/modules/juce_data_structures/juce_data_structures.h +++ b/modules/juce_data_structures/juce_data_structures.h @@ -44,7 +44,7 @@ ID: juce_data_structures vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE data model helper classes description: Classes for undo/redo management, and smart data structures. website: http://www.juce.com/juce diff --git a/modules/juce_dsp/juce_dsp.h b/modules/juce_dsp/juce_dsp.h index 01f8e3daf2..03abdb17f7 100644 --- a/modules/juce_dsp/juce_dsp.h +++ b/modules/juce_dsp/juce_dsp.h @@ -44,7 +44,7 @@ ID: juce_dsp vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE DSP classes description: Classes for audio buffer manipulation, digital audio processing, filtering, oversampling, fast math functions etc. website: http://www.juce.com/juce diff --git a/modules/juce_events/juce_events.h b/modules/juce_events/juce_events.h index 7e7d963fe0..c4ad9a53cf 100644 --- a/modules/juce_events/juce_events.h +++ b/modules/juce_events/juce_events.h @@ -44,7 +44,7 @@ ID: juce_events vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE message and event handling classes description: Classes for running an application's main event loop and sending/receiving messages, timers, etc. website: http://www.juce.com/juce diff --git a/modules/juce_graphics/juce_graphics.h b/modules/juce_graphics/juce_graphics.h index a0701d0822..033a2893ba 100644 --- a/modules/juce_graphics/juce_graphics.h +++ b/modules/juce_graphics/juce_graphics.h @@ -44,7 +44,7 @@ ID: juce_graphics vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE graphics classes description: Classes for 2D vector graphics, image loading/saving, font handling, etc. website: http://www.juce.com/juce diff --git a/modules/juce_gui_basics/juce_gui_basics.h b/modules/juce_gui_basics/juce_gui_basics.h index 76b6aaf25d..e2e828e61a 100644 --- a/modules/juce_gui_basics/juce_gui_basics.h +++ b/modules/juce_gui_basics/juce_gui_basics.h @@ -44,7 +44,7 @@ ID: juce_gui_basics vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE GUI core classes description: Basic user-interface components and related classes. website: http://www.juce.com/juce diff --git a/modules/juce_gui_extra/juce_gui_extra.h b/modules/juce_gui_extra/juce_gui_extra.h index 08302605af..fbdfbf6c5b 100644 --- a/modules/juce_gui_extra/juce_gui_extra.h +++ b/modules/juce_gui_extra/juce_gui_extra.h @@ -44,7 +44,7 @@ ID: juce_gui_extra vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE extended GUI classes description: Miscellaneous GUI classes for specialised tasks. website: http://www.juce.com/juce diff --git a/modules/juce_javascript/juce_javascript.h b/modules/juce_javascript/juce_javascript.h index 50fc437a3b..3ca3791f3d 100644 --- a/modules/juce_javascript/juce_javascript.h +++ b/modules/juce_javascript/juce_javascript.h @@ -44,7 +44,7 @@ ID: juce_javascript vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE Javascript interpreter description: Javascript interpreter. website: http://www.juce.com/juce diff --git a/modules/juce_midi_ci/juce_midi_ci.h b/modules/juce_midi_ci/juce_midi_ci.h index 36325c2013..98a9048517 100644 --- a/modules/juce_midi_ci/juce_midi_ci.h +++ b/modules/juce_midi_ci/juce_midi_ci.h @@ -44,7 +44,7 @@ ID: juce_midi_ci vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE MIDI CI Classes description: Classes facilitating communication via MIDI Capability Inquiry website: http://www.juce.com/juce diff --git a/modules/juce_opengl/juce_opengl.h b/modules/juce_opengl/juce_opengl.h index 6113ee22d8..0872a28b06 100644 --- a/modules/juce_opengl/juce_opengl.h +++ b/modules/juce_opengl/juce_opengl.h @@ -44,7 +44,7 @@ ID: juce_opengl vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE OpenGL classes description: Classes for rendering OpenGL in a JUCE window. website: http://www.juce.com/juce diff --git a/modules/juce_osc/juce_osc.h b/modules/juce_osc/juce_osc.h index e965561697..d19aeea21e 100644 --- a/modules/juce_osc/juce_osc.h +++ b/modules/juce_osc/juce_osc.h @@ -44,7 +44,7 @@ ID: juce_osc vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE OSC classes description: Open Sound Control implementation. website: http://www.juce.com/juce diff --git a/modules/juce_product_unlocking/juce_product_unlocking.h b/modules/juce_product_unlocking/juce_product_unlocking.h index 5332e7e694..307d725861 100644 --- a/modules/juce_product_unlocking/juce_product_unlocking.h +++ b/modules/juce_product_unlocking/juce_product_unlocking.h @@ -44,7 +44,7 @@ ID: juce_product_unlocking vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE Online marketplace support description: Classes for online product authentication website: http://www.juce.com/juce diff --git a/modules/juce_video/juce_video.h b/modules/juce_video/juce_video.h index d1a7a4eed8..94f5b343db 100644 --- a/modules/juce_video/juce_video.h +++ b/modules/juce_video/juce_video.h @@ -44,7 +44,7 @@ ID: juce_video vendor: juce - version: 8.0.9 + version: 8.0.10 name: JUCE video playback and capture classes description: Classes for playing video and capturing camera input. website: http://www.juce.com/juce