Bump version number from 1.4.4 to 1.4.5
Preparing to release 1.4.5, but there are still some issues to fix and release files (CHANGES.txt, announcements, etc.) still need to be updated.
This commit is contained in:
parent
341090fe4a
commit
b75cec6448
28
CHANGES.txt
28
CHANGES.txt
@ -1,3 +1,31 @@
|
||||
Changes in FLTK 1.4.5 Released: xxx xx 2026
|
||||
|
||||
This is a maintenance release with improvements and fixes
|
||||
backported from the current development branch 1.5 (master).
|
||||
|
||||
|| Note: Details TBD, use `git shortlog` to find related commits, e.g.
|
||||
|| $ git shortlog release-1.4.4.. | sed -e's/^ / - /'
|
||||
|| then sort/edit/move to sections below as appropriate...
|
||||
|
||||
|
||||
Bug Fixes
|
||||
|
||||
|
||||
Documentation Fixes and Improvements
|
||||
|
||||
|
||||
Other Improvements
|
||||
|
||||
|
||||
CMake And Other Build Procedure Improvements
|
||||
|
||||
|
||||
ABI changes (FL_ABI_VERSION >= 10405)
|
||||
|
||||
- Make Fl_Table::get_selection() 'const' (#1305)
|
||||
|
||||
|
||||
|
||||
Changes in FLTK 1.4.4 Released: Jul 20 2025
|
||||
|
||||
This is a maintenance release with improvements and fixes
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
# Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org)
|
||||
# Originally written by Michael Surette
|
||||
#
|
||||
# Copyright 1998-2025 by Bill Spitzak and others.
|
||||
# Copyright 1998-2026 by Bill Spitzak and others.
|
||||
#
|
||||
# This library is free software. Distribution and use rights are outlined in
|
||||
# the file "COPYING" which should have been included with this file. If this
|
||||
@ -36,7 +36,7 @@ cmake_minimum_required(VERSION 3.15.0 FATAL_ERROR)
|
||||
# define the FLTK project and version
|
||||
#######################################################################
|
||||
|
||||
project(FLTK VERSION 1.4.4)
|
||||
project(FLTK VERSION 1.4.5)
|
||||
|
||||
#######################################################################
|
||||
# include macro and function definitions for general usage
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
//
|
||||
// Enumerations for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2025 by Bill Spitzak and others.
|
||||
// Copyright 1998-2026 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software. Distribution and use rights are outlined in
|
||||
// the file "COPYING" which should have been included with this file. If this
|
||||
@ -37,7 +37,7 @@
|
||||
# include <FL/platform_types.h> // for FL_COMMAND and FL_CONTROL
|
||||
|
||||
// Keep the following comment in sync with the values below for searching
|
||||
// Current FLTK version: 1.4.4
|
||||
// Current FLTK version: 1.4.5
|
||||
|
||||
/** \name Version Numbers
|
||||
|
||||
@ -66,9 +66,9 @@
|
||||
|
||||
FLTK remains binary compatible between patches.
|
||||
|
||||
Version: 1.4.4
|
||||
Version: 1.4.5 (see FL_PATCH_VERSION below!)
|
||||
*/
|
||||
#define FL_PATCH_VERSION 4
|
||||
#define FL_PATCH_VERSION 5
|
||||
|
||||
/**
|
||||
The FLTK version number as a \em double.
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
// =======================================================================
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0404
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#ifndef Fl_File_Chooser_H
|
||||
#define Fl_File_Chooser_H
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
// ========================================================================
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0404
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#ifndef Fl_Help_Dialog_H
|
||||
#define Fl_Help_Dialog_H
|
||||
|
||||
@ -3,7 +3,7 @@ dnl the "configure" script is made from this by running GNU "autoconf"
|
||||
dnl
|
||||
dnl Configuration script for the Fast Light Tool Kit (FLTK).
|
||||
dnl
|
||||
dnl Copyright 1998-2025 by Bill Spitzak and others.
|
||||
dnl Copyright 1998-2026 by Bill Spitzak and others.
|
||||
dnl
|
||||
dnl This library is free software. Distribution and use rights are outlined in
|
||||
dnl the file "COPYING" which should have been included with this file. If this
|
||||
@ -21,7 +21,7 @@ AC_PREREQ([2.50])
|
||||
|
||||
|
||||
dnl Package name and version
|
||||
AC_INIT([fltk], [1.4.4], [https://github.com/fltk/fltk/issues], [fltk], [https://www.fltk.org/])
|
||||
AC_INIT([fltk], [1.4.5], [https://github.com/fltk/fltk/issues], [fltk], [https://www.fltk.org/])
|
||||
|
||||
FLTK_VERSION="AC_PACKAGE_VERSION"
|
||||
FLTK_VERSION_MAJOR=$(echo AC_PACKAGE_VERSION | awk -F. '{print $1}')
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
\image latex FL200.png "" width=5cm
|
||||
</CENTER></TD>
|
||||
<TD><CENTER>
|
||||
<B>FLTK 1.4.4 Programming Manual</B>
|
||||
<B>FLTK 1.4.5 Programming Manual</B>
|
||||
|
||||
By F. Costantini, M. Melcher,
|
||||
A. Schlosser, B. Spitzak and M. Sweet.
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
\page preface Preface
|
||||
|
||||
This manual describes the Fast Light Tool Kit ("FLTK") version 1.4.4,
|
||||
This manual describes the Fast Light Tool Kit ("FLTK") version 1.4.5,
|
||||
a C++ Graphical User Interface ("GUI") toolkit for UNIX, Microsoft Windows,
|
||||
and Apple macOS.
|
||||
|
||||
|
||||
@ -9,11 +9,11 @@
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>org.fltk.fltk-options</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.5.0</string>
|
||||
<string>1.4.5</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright 2023-2025 by Bill Spitzak and others</string>
|
||||
<string>Copyright 2023-2026 by Bill Spitzak and others</string>
|
||||
<key>CFAppleHelpAnchor</key>
|
||||
<string>help</string>
|
||||
<key>CFBundleName</key>
|
||||
@ -25,9 +25,9 @@
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>fltk-options.icns</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.5.0</string>
|
||||
<string>1.4.5</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>1.5.0, Copyright 2023-2025 by Bill Spitzak and others</string>
|
||||
<string>1.4.5, Copyright 2023-2026 by Bill Spitzak and others</string>
|
||||
<key>NSHighResolutionCapable</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
||||
@ -9,11 +9,11 @@
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>org.fltk.fltk-options</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.4.4</string>
|
||||
<string>1.4.5</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright 2023-2025 by Bill Spitzak and others</string>
|
||||
<string>Copyright 2023-2026 by Bill Spitzak and others</string>
|
||||
<key>CFAppleHelpAnchor</key>
|
||||
<string>help</string>
|
||||
<key>CFBundleName</key>
|
||||
@ -25,9 +25,9 @@
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>fltk-options.icns</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.4.4</string>
|
||||
<string>1.4.5</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>1.4.4, Copyright 2023-2025 by Bill Spitzak and others</string>
|
||||
<string>1.4.5, Copyright 2023-2026 by Bill Spitzak and others</string>
|
||||
<key>NSHighResolutionCapable</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
||||
@ -1 +1 @@
|
||||
1.4.4
|
||||
1.4.5
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0402
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#include "about_panel.h"
|
||||
void show_help(const char *name);
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0402
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#ifndef about_panel_h
|
||||
#define about_panel_h
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0402
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#include "codeview_panel.h"
|
||||
#include "fluid.h"
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0402
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#ifndef codeview_panel_h
|
||||
#define codeview_panel_h
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
\image latex fluid-128.png "" width=3cm
|
||||
</CENTER></TD>
|
||||
<TD><CENTER>
|
||||
<B>FLUID 1.4.4 User Manual</B>
|
||||
<B>FLUID 1.4.5 User Manual</B>
|
||||
|
||||
By F. Costantini, M. Melcher,
|
||||
A. Schlosser, B. Spitzak and M. Sweet.
|
||||
|
||||
@ -9,11 +9,11 @@
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>org.fltk.fluid</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.5.0</string>
|
||||
<string>1.4.5</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright 1998-2025 by Bill Spitzak and others</string>
|
||||
<string>Copyright 1998-2026 by Bill Spitzak and others</string>
|
||||
<key>CFAppleHelpAnchor</key>
|
||||
<string>help</string>
|
||||
<key>CFBundleName</key>
|
||||
@ -25,9 +25,9 @@
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>fluid.icns</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.5.0</string>
|
||||
<string>1.4.5</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>1.5.0, Copyright 1998-2025 by Bill Spitzak and others</string>
|
||||
<string>1.4.5, Copyright 1998-2026 by Bill Spitzak and others</string>
|
||||
<key>CFBundleDocumentTypes</key>
|
||||
<array>
|
||||
<dict>
|
||||
|
||||
@ -9,11 +9,11 @@
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>org.fltk.fluid</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.4.4</string>
|
||||
<string>1.4.5</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright 1998-2025 by Bill Spitzak and others</string>
|
||||
<string>Copyright 1998-2026 by Bill Spitzak and others</string>
|
||||
<key>CFAppleHelpAnchor</key>
|
||||
<string>help</string>
|
||||
<key>CFBundleName</key>
|
||||
@ -25,9 +25,9 @@
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>fluid.icns</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.4.4</string>
|
||||
<string>1.4.5</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>1.4.4, Copyright 1998-2025 by Bill Spitzak and others</string>
|
||||
<string>1.4.5, Copyright 1998-2026 by Bill Spitzak and others</string>
|
||||
<key>CFBundleDocumentTypes</key>
|
||||
<array>
|
||||
<dict>
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0402
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#include "function_panel.h"
|
||||
#include "fluid.h"
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0402
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#ifndef function_panel_h
|
||||
#define function_panel_h
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0402
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#include "print_panel.h"
|
||||
#include "fluid.h"
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0402
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#ifndef print_panel_h
|
||||
#define print_panel_h
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0402
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#include "settings_panel.h"
|
||||
#include "undo.h"
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0402
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#ifndef settings_panel_h
|
||||
#define settings_panel_h
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0402
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#include "template_panel.h"
|
||||
#include "fluid.h"
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0402
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#ifndef template_panel_h
|
||||
#define template_panel_h
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0402
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#include "widget_panel.h"
|
||||
#include "undo.h"
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0402
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#ifndef widget_panel_h
|
||||
#define widget_panel_h
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
// =======================================================================
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0404
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#include "../FL/Fl_File_Chooser.H"
|
||||
#include <FL/fl_draw.H>
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
# data file for the Fltk User Interface Designer (fluid)
|
||||
version 1.0404
|
||||
version 1.0405
|
||||
header_name {../FL/Fl_File_Chooser.H}
|
||||
code_name {.cxx}
|
||||
comment {//
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
// ========================================================================
|
||||
//
|
||||
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0404
|
||||
// generated by Fast Light User Interface Designer (fluid) version 1.0405
|
||||
|
||||
#include "../FL/Fl_Help_Dialog.H"
|
||||
#include <FL/Fl_Shared_Image.H>
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
# data file for the Fltk User Interface Designer (fluid)
|
||||
version 1.0404
|
||||
version 1.0405
|
||||
header_name {../FL/Fl_Help_Dialog.H}
|
||||
code_name {.cxx}
|
||||
comment {//
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
<string>English</string>
|
||||
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright 2006-2021 by Michael Sweet</string>
|
||||
<string>Copyright 2006-2026 by Michael Sweet</string>
|
||||
|
||||
<key>CFAppleHelpAnchor</key>
|
||||
<string>help</string>
|
||||
@ -38,7 +38,7 @@
|
||||
<string>1.0</string>
|
||||
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>1.0, Copyright 2006-2021 by Michael Sweet</string>
|
||||
<string>1.0, Copyright 2006-2026 by Michael Sweet</string>
|
||||
|
||||
<key>NSHighResolutionCapable</key>
|
||||
<true/>
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
<string>English</string>
|
||||
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright 1997-2021 by Bill Spitzak and others</string>
|
||||
<string>Copyright 1997-2026 by Bill Spitzak and others</string>
|
||||
|
||||
<key>CFAppleHelpAnchor</key>
|
||||
<string>help</string>
|
||||
@ -38,7 +38,7 @@
|
||||
<string>1.0</string>
|
||||
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>1.0, Copyright 1997-2021 by Bill Spitzak and others</string>
|
||||
<string>1.0, Copyright 1997-2026 by Bill Spitzak and others</string>
|
||||
|
||||
<key>NSHighResolutionCapable</key>
|
||||
<true/>
|
||||
|
||||
@ -36,7 +36,7 @@
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright 1998-2024 by Bill Spitzak and others.</string>
|
||||
<string>Copyright 1998-2026 by Bill Spitzak and others.</string>
|
||||
<key>NSHighResolutionCapable</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
<string>English</string>
|
||||
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright 2005-2021 by Michael Sweet</string>
|
||||
<string>Copyright 2005-2026 by Michael Sweet</string>
|
||||
|
||||
<key>CFAppleHelpAnchor</key>
|
||||
<string>help</string>
|
||||
@ -38,7 +38,7 @@
|
||||
<string>1.0</string>
|
||||
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>1.0, Copyright 2005-2021 by Michael Sweet</string>
|
||||
<string>1.0, Copyright 2005-2026 by Michael Sweet</string>
|
||||
|
||||
<key>NSHighResolutionCapable</key>
|
||||
<true/>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user