From dada31041e730f5942ae3a997e825b66ea7e5a6a Mon Sep 17 00:00:00 2001 From: Kevin Hendricks Date: Tue, 3 Sep 2024 10:14:42 -0400 Subject: [PATCH] updates for fast follow-on bug fix release --- CMakeLists.txt | 2 +- ChangeLog.txt | 7 +++++++ src/Resource_Files/plugin_launchers/python/wrapper.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c7a41211a8..31a3d87f67 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -53,7 +53,7 @@ set( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake_e set( SIGIL_MAJOR_VERSION 2 ) set( SIGIL_MINOR_VERSION 3 ) -set( SIGIL_REVISION_VERSION 0 ) +set( SIGIL_REVISION_VERSION 1 ) set( SIGIL_FULL_VERSION ${SIGIL_MAJOR_VERSION}.${SIGIL_MINOR_VERSION}.${SIGIL_REVISION_VERSION} ) if( UNIX AND NOT APPLE ) diff --git a/ChangeLog.txt b/ChangeLog.txt index a23f60763d..236498f169 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,10 @@ +Sigil-2.3.1 + Bug Fixes + - fix to prevent double epub load warnings + - fix to prevent load warnings without details from causing a crash + - fix to prevent rename templates from using characters forbidden in file names and paths + + Sigil-2.3.0 New Features - removed support for building Sigil with Qt5 as our code had become a rats nest of qt version ifdefs diff --git a/src/Resource_Files/plugin_launchers/python/wrapper.py b/src/Resource_Files/plugin_launchers/python/wrapper.py index b42cc7d64c..43c4bbae7c 100644 --- a/src/Resource_Files/plugin_launchers/python/wrapper.py +++ b/src/Resource_Files/plugin_launchers/python/wrapper.py @@ -35,7 +35,7 @@ import unicodedata -_launcher_version = 20240707 +_launcher_version = 20240803 _RS = chr(30) # record separator _US = chr(31) # unit separator