From 7a38bde1db0789ddec71cff124021228077ffdc6 Mon Sep 17 00:00:00 2001 From: Nigel Date: Tue, 21 Nov 2023 21:11:08 +0000 Subject: [PATCH] Update version & changelog --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ Makefile | 2 +- src/guiguts.pl | 2 +- 3 files changed, 39 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a11e75d..03958e47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,42 @@ # Changelog + +## Version 1.6.1 + +- New 'Add Index Cross-references' feature links "See"/"Also see" references + to the relevant location in the index. References that cannot be linked + automatically are listed for manual linking +- Several tools added to support LaTeX/HTML/SVG workflow +- CP Character Substitutions now include `¬` -> `-` +- Bad words are loaded when good words file is loaded +- Bad words are marked in the Spell Query results, and the number of bad + words is reported +- Highlight Character/Regex now has a history pulldown +- Large good/bad words files are added to project dictionary much faster +- PPhtml reports unused/undefined classes more accurately +- Prev/Next Img buttons no longer pop the Page Marker Adjust dialog, and + respect the Auto Img setting +- 'Change All' has been removed from Spell Check due to undesirable + behavior +- Basic Fixup options are now persistent across different runs of Guiguts +- The Word Count and QuickSearch Count dialogs have clearer titles +- Included latest version of ebookmaker (0.12.36) +- Included latest version of Epubcheck (5.1.0) +- New TROUBLESHOOTING.md guide included with release + +### Bug Fixes + +- Coincident page markers (due to blank pages) were sometimes reversed + during file load/save or search/replace +- Fractions including commas (e.g. 1/10,000) did not convert correctly +- Some places where user could type a regex were not validated like the + Search/Replace dialog. The error message is also more useful +- Pphtml didn't always cope with @media correctly +- Non-existent directories used to give errors on Mac systems +- Some methods of inserting Unicode characters did not replace existing + selected text in the way other insertions do + + ## Version 1.6.0 - Removed `Convert Windows CP1252 Characters` menu option diff --git a/Makefile b/Makefile index 2efd2ed5..952ce11a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # DON'T FORGET to update the version number in guiguts.pl too -VERSION=1.6.0 +VERSION=1.6.1 # zip utility to use ZIP=zip -rv9 diff --git a/src/guiguts.pl b/src/guiguts.pl index c6ce4499..2d606554 100755 --- a/src/guiguts.pl +++ b/src/guiguts.pl @@ -20,7 +20,7 @@ #use criticism 'gentle'; # DON'T FORGET to update the version number in makefile too -our $VERSION = '1.6.0'; +our $VERSION = '1.6.1'; use FindBin; use lib $FindBin::Bin . "/lib";