mirror of
https://github.com/fltk/fltk.git
synced 2026-05-24 00:06:20 +08:00
Bump version numbers for release 1.4.1
To do: update CHANGES.txt with real info.
This commit is contained in:
+11
@@ -1,3 +1,14 @@
|
||||
Changes in FLTK 1.4.1 Released: Dec xx 2024
|
||||
|
||||
FLTK 1.4.1 is a maintenance release with bug fixes and improvements.
|
||||
|
||||
Changes yet to be filled in:
|
||||
|
||||
WIP: the list of changes can be created by ...
|
||||
WIP: $ git shortlog release-1.4.0.. | sed -e's/ ([0-9]*):/:/' | sed -e's/^ /- /'
|
||||
WIP: then reformat the list and remove these instructions.
|
||||
|
||||
|
||||
Changes in FLTK 1.4.0 Released: Nov 17 2024
|
||||
|
||||
Bug Fixes:
|
||||
|
||||
+3
-3
@@ -36,7 +36,7 @@ cmake_minimum_required(VERSION 3.15.0 FATAL_ERROR)
|
||||
# define the FLTK project and version
|
||||
#######################################################################
|
||||
|
||||
project(FLTK VERSION 1.4.0)
|
||||
project(FLTK VERSION 1.4.1)
|
||||
|
||||
#######################################################################
|
||||
# include macro and function definitions for general usage
|
||||
@@ -105,8 +105,8 @@ unset(debug_build)
|
||||
|
||||
#######################################################################
|
||||
# Build a dummy ("empty") Cairo library for backwards compatibility.
|
||||
# This should be removed some time after 1.4.0 was released, maybe
|
||||
# in FLTK 1.4.1, 1.4.2, 1.5.0, or whatever the next minor release is.
|
||||
# This should be removed in the next minor release after 1.4.x, likely
|
||||
# in FLTK 1.5.0.
|
||||
#######################################################################
|
||||
|
||||
if(FLTK_HAVE_CAIRO)
|
||||
|
||||
+1
-1
@@ -63,7 +63,7 @@
|
||||
|
||||
FLTK remains binary compatible between patches.
|
||||
*/
|
||||
#define FL_PATCH_VERSION 0
|
||||
#define FL_PATCH_VERSION 1
|
||||
|
||||
/**
|
||||
The FLTK version number as a \em double.
|
||||
|
||||
+1
-1
@@ -98,7 +98,7 @@ const Fl_Grid_Align FL_GRID_BOTTOM_RIGHT = FL_GRID_BOTTOM | FL_GRID_RIGHT;
|
||||
Fl_Group::resizable() widget is ignored (if set). Calling init_sizes()
|
||||
is not necessary.
|
||||
|
||||
\note Fl_Grid is, as of FLTK 1.4.0, still in experimental state and
|
||||
\note Fl_Grid is, as of FLTK 1.4.1, still in experimental state and
|
||||
should be used with caution. The API can still be changed although it is
|
||||
assumed to be almost stable - as stable as possible for a first release.
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# README - Fast Light Tool Kit (FLTK) Version 1.4.0
|
||||
# README - Fast Light Tool Kit (FLTK) Version 1.4.1
|
||||
|
||||
## WHAT IS FLTK?
|
||||
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
README - Fast Light Tool Kit (FLTK) Version 1.4.0
|
||||
README - Fast Light Tool Kit (FLTK) Version 1.4.1
|
||||
-------------------------------------------------
|
||||
|
||||
WHAT IS FLTK?
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ AC_PREREQ([2.50])
|
||||
|
||||
|
||||
dnl Package name and version
|
||||
AC_INIT([fltk], [1.4.0], [https://github.com/fltk/fltk/issues], [fltk], [https://www.fltk.org/])
|
||||
AC_INIT([fltk], [1.4.1], [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}')
|
||||
|
||||
@@ -19,7 +19,7 @@ The FLTK version number is stored in a number of compile-time constants:
|
||||
|
||||
- FL_MAJOR_VERSION - The major release number, currently 1
|
||||
- FL_MINOR_VERSION - The minor release number, currently 4
|
||||
- FL_PATCH_VERSION - The patch release number, currently 0
|
||||
- FL_PATCH_VERSION - The patch release number, currently 1
|
||||
- FL_VERSION - \b [Deprecated] A combined floating-point version number for
|
||||
the major, minor, and patch release numbers, currently 1.0400
|
||||
- FL_API_VERSION - A combined integer version number for the major, minor,
|
||||
|
||||
@@ -60,7 +60,7 @@ Newer mice add even more buttons, called "side buttons":
|
||||
- a "back" button, typically used to "go back", e.g. in browsers
|
||||
- a "forward" button, typically used to "go forward", e.g. in browsers
|
||||
|
||||
FLTK handles up to five buttons since version 1.4.0 across all supported
|
||||
FLTK handles up to five buttons since version 1.3.10 across all supported
|
||||
platforms. Note that Windows doesn't support more than five buttons
|
||||
whereas other platforms may support more. FLTK ignores other buttons as
|
||||
long as they send "mouse button" events.
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
\image latex FL200.png "" width=5cm
|
||||
</CENTER></TD>
|
||||
<TD><CENTER>
|
||||
<B>FLTK 1.4.0 Programming Manual</B>
|
||||
<B>FLTK 1.4.1 Programming Manual</B>
|
||||
|
||||
By F. Costantini, M. Melcher,
|
||||
A. Schlosser, B. Spitzak and M. Sweet.
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
|
||||
\page preface Preface
|
||||
|
||||
This manual describes the Fast Light Tool Kit ("FLTK") version 1.4.0,
|
||||
This manual describes the Fast Light Tool Kit ("FLTK") version 1.4.1,
|
||||
a C++ Graphical User Interface ("GUI") toolkit for UNIX, Microsoft Windows,
|
||||
and Apple macOS.
|
||||
|
||||
Version 1.4.0 introduces support for a new windowing system under
|
||||
Version 1.4.0 introduced support for a new windowing system under
|
||||
Linux/Unix: Wayland. FLTK applications under Linux/Unix run unchanged
|
||||
as Wayland or X11 clients depending on availability at run-time.
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>org.fltk.fltk-options</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.4.0</string>
|
||||
<string>1.4.1</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
@@ -25,9 +25,9 @@
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>fltk-options.icns</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.4.0</string>
|
||||
<string>1.4.1</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>1.4.0, Copyright 2023-2024 by Bill Spitzak and others</string>
|
||||
<string>1.4.1, Copyright 2023-2024 by Bill Spitzak and others</string>
|
||||
<key>NSHighResolutionCapable</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
||||
+2
-1
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# RPM spec file for FLTK.
|
||||
#
|
||||
# Copyright 1998-2023 by Bill Spitzak and others.
|
||||
# Copyright 1998-2024 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
|
||||
@@ -83,6 +83,7 @@ rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%dir %{prefix}/bin
|
||||
%{prefix}/bin/fltk-config
|
||||
%{prefix}/bin/fltk-options
|
||||
%{prefix}/bin/fluid
|
||||
|
||||
%dir %{prefix}/include/FL
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
1.4.0
|
||||
1.4.1
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
\image latex fluid-128.png "" width=3cm
|
||||
</CENTER></TD>
|
||||
<TD><CENTER>
|
||||
<B>FLUID 1.4.0 User Manual</B>
|
||||
<B>FLUID 1.4.1 User Manual</B>
|
||||
|
||||
By F. Costantini, M. Melcher,
|
||||
A. Schlosser, B. Spitzak and M. Sweet.
|
||||
|
||||
+3
-3
@@ -9,7 +9,7 @@
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>org.fltk.fluid</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.4.0</string>
|
||||
<string>1.4.1</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
@@ -25,9 +25,9 @@
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>fluid.icns</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.4.0</string>
|
||||
<string>1.4.1</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>1.4.0, Copyright 1998-2024 by Bill Spitzak and others</string>
|
||||
<string>1.4.1, Copyright 1998-2024 by Bill Spitzak and others</string>
|
||||
<key>CFBundleDocumentTypes</key>
|
||||
<array>
|
||||
<dict>
|
||||
|
||||
Reference in New Issue
Block a user