Bump version numbers to 1.3.6 (prepare release part 1)

This commit is contained in:
Albrecht Schlosser 2021-02-04 14:58:30 +01:00
parent 7ce6d2cf5d
commit 02e4b8f980
52 changed files with 977 additions and 921 deletions

View File

@ -4,14 +4,15 @@ The initial FLTK 1.3.0 is based on the final 1.1.10.
Doxygen based documentation, and several new widgets including
Fl_Native_File_Chooser, Fl_Table, and Fl_Tree.
FLTK 1.3.5 and previous versions contain many improvements and bug fixes.
FLTK 1.3.6 and previous versions contain many improvements and bug fixes.
Please see CHANGES for a list of changes in FLTK 1.3.0 to 1.3.5.
Please see CHANGES for a list of changes in FLTK 1.3.0 to 1.3.6.
Even though FLTK 1.3.5 does not fix all STRs, we decided to release
FLTK 1.3.5 as it contains many new features, bug fixes, and adaptations
Even though FLTK 1.3.6 does not fix all STRs, we decided to release
FLTK 1.3.6 as it contains many new features, bug fixes, and adaptations
to new compiler releases and OS versions (e.g. macOS 10.14 "Mojave"
and better configure support for some Linux platforms).
up to macOS 11 "Big Sur" and better configure support for some
Linux platforms).
Open bugs and feature requests can be viewed (offline) in KNOWN_BUGS.html
with your browser. Links in this file direct you to the current state
@ -22,9 +23,9 @@ FLTK 1.3.5 and previous versions contain many improvements and bug fixes.
bugs and/or feature requests in this list might have been fixed without
notice.
Bugs and feature requests for FLTK 1.4.x may also apply to FLTK 1.3.5.
Bugs and feature requests for FLTK 1.4.x may also apply to FLTK 1.3.6.
FLTK 1.3.5 is expected to be the last release in the 1.3.x series.
FLTK 1.3.6 is expected to be the last release in the 1.3.x series.
All bug reports for 1.3.x will be fixed in FLTK 1.4.x if possible.
@ -34,7 +35,7 @@ Note to Git users: This branch (branch-1.3) is end of life since the
release of FLTK 1.3.4. Only very serious bug fixes will be available
if FLTK 1.4.0 is not yet released or not (yet) stable enough.
This release (1.3.5) is a bug fix and maintenance release without new
This release (1.3.6) is a bug fix and maintenance release without new
FLTK features (except macOS Mojave support).
The current development branch is 'master' -- please checkout a new,

View File

@ -23,7 +23,7 @@
# The FLTK version
set(FLTK_VERSION_MAJOR "1")
set(FLTK_VERSION_MINOR "3")
set(FLTK_VERSION_PATCH "5")
set(FLTK_VERSION_PATCH "6")
set(FLTK_VERSION "${FLTK_VERSION_MAJOR}.${FLTK_VERSION_MINOR}")
set(FLTK_VERSION_FULL "${FLTK_VERSION}.${FLTK_VERSION_PATCH}")

View File

@ -1,4 +1,4 @@
CREDITS - Fast Light Tool Kit (FLTK) Version 1.3.5
CREDITS - Fast Light Tool Kit (FLTK) Version 1.3.6
--------------------------------------------------
This file lists the people responsible for the toolkit you are
@ -6,7 +6,7 @@ CREDITS - Fast Light Tool Kit (FLTK) Version 1.3.5
but we've forgotten you here, please use the report on the
following page, and we'll update this file accordingly:
http://www.fltk.org/str.php
https://www.fltk.org/str.php
CORE DEVELOPERS

View File

@ -1,19 +1,17 @@
//
// "$Id$"
//
// Enumerations for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2017 by Bill Spitzak and others.
// Copyright 1998-2021 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
// file is missing or damaged, see the license at:
//
// http://www.fltk.org/COPYING.php
// https://www.fltk.org/COPYING.php
//
// Please report all bugs and problems on the following page:
// Please see the following page on how to report bugs and issues:
//
// http://www.fltk.org/str.php
// https://www.fltk.org/bugs.php
//
/** \file
@ -75,7 +73,7 @@
FLTK remains binary compatible between patches.
*/
#define FL_PATCH_VERSION 5
#define FL_PATCH_VERSION 6
/**
The FLTK version number as a \em double.

View File

@ -23,7 +23,7 @@
// =======================================================================
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#ifndef Fl_File_Chooser_H
#define Fl_File_Chooser_H

View File

@ -23,7 +23,7 @@
// ========================================================================
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#ifndef Fl_Help_Dialog_H
#define Fl_Help_Dialog_H

2
README
View File

@ -1,4 +1,4 @@
README - Fast Light Tool Kit (FLTK) Version 1.3.5
README - Fast Light Tool Kit (FLTK) Version 1.3.6
-------------------------------------------------
WHAT IS FLTK?

View File

@ -1 +1 @@
1.3.5
1.3.6

View File

@ -1,3 +1,7 @@
# DO NOT DELETE
Fl_Cairo.o: ../config.h ../FL/Fl_Export.H
Fl_Cairo.o: ../config.h ../FL/Fl.H ../FL/Fl_Export.H ../FL/Fl_Cairo.H
Fl_Cairo.o: ../FL/fl_utf8.h ../FL/Fl_Export.H ../FL/fl_types.h
Fl_Cairo.o: ../FL/Enumerations.H ../FL/abi-version.h ../FL/x.H
Fl_Cairo.o: ../FL/Fl_Window.H ../FL/Fl_Group.H ../FL/Fl_Widget.H
Fl_Cairo.o: ../FL/Fl_Bitmap.H ../FL/Fl_Image.H ../FL/Fl_Window.H

View File

@ -1,21 +1,19 @@
dnl -*- sh -*-
dnl the "configure" script is made from this by running GNU "autoconf"
dnl
dnl "$Id$"
dnl
dnl Configuration script for the Fast Light Tool Kit (FLTK).
dnl
dnl Copyright 1998-2017 by Bill Spitzak and others.
dnl Copyright 1998-2021 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
dnl file is missing or damaged, see the license at:
dnl
dnl http://www.fltk.org/COPYING.php
dnl https://www.fltk.org/COPYING.php
dnl
dnl Please report all bugs and problems on the following page:
dnl Please see the following page on how to report bugs and issues:
dnl
dnl http://www.fltk.org/str.php
dnl https://www.fltk.org/bugs.php
dnl
dnl We need at least autoconf 2.50...
@ -53,7 +51,7 @@ esac
dnl FLTK library versions...
FL_MAJOR_VERSION=1
FL_MINOR_VERSION=3
FL_PATCH_VERSION=5
FL_PATCH_VERSION=6
FL_DSO_VERSION=${FL_MAJOR_VERSION}.${FL_MINOR_VERSION}
FL_ABI_VERSION=${FL_MAJOR_VERSION}.${FL_MINOR_VERSION}.0
FL_VERSION=${FL_MAJOR_VERSION}.${FL_MINOR_VERSION}.${FL_PATCH_VERSION}

View File

@ -20,11 +20,11 @@ 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 3
- FL_PATCH_VERSION - The patch release number, currently 5
- FL_PATCH_VERSION - The patch release number, currently 6
- FL_VERSION - \b [Deprecated] A combined floating-point version number for
the major, minor, and patch release numbers, currently 1.0305
the major, minor, and patch release numbers, currently 1.0306
- FL_API_VERSION - A combined integer version number for the major, minor,
and patch release numbers, currently 10305 (use this instead of
and patch release numbers, currently 10306 (use this instead of
FL_VERSION, if possible)
- FL_ABI_VERSION - A combined integer version number for the application
binary interface (ABI) major, minor, and patch release numbers,

View File

@ -8,12 +8,12 @@
\image latex FL200.png "" width=5cm
</CENTER></TD>
<TD><CENTER>
<B>FLTK 1.3.5 Programming Manual</B>
<B>FLTK 1.3.6 Programming Manual</B>
Revision 9 by F.&nbsp;Costantini, D.&nbsp;Gibson, M.&nbsp;Melcher,
A.&nbsp;Schlosser, B.&nbsp;Spitzak and M.&nbsp;Sweet.
Copyright 1998-2016 by Bill Spitzak and others.
Copyright 1998-2021 by Bill Spitzak and others.
</CENTER></TD>
</TR>
</TABLE>

View File

@ -21,8 +21,8 @@ Despite the name, this header file will define the appropriate interface
for your environment.
\note This header file name "x.H" is changed in FLTK 1.4.0 to the better
name "platform.H". FLTK 1.3.5 now has a compatibility header file
FL/platform.H that includes FL/x.H to help you move to FLTK 1.4.0.
name "platform.H". Since FLTK 1.3.5 there is a compatibility header
file FL/platform.H that includes FL/x.H to help you move to FLTK 1.4.0.
If your code is targeted at FLTK 1.3.5 or higher you can safely
change it to include FL/platform.H instead. FLTK 1.4.x will keep the
file "x.H" for a few releases for backwards compatibility.

View File

@ -3,7 +3,7 @@
\page preface Preface
This manual describes the Fast Light Tool Kit ("FLTK")
version 1.3.5, a C++ Graphical User Interface
version 1.3.6, a C++ Graphical User Interface
("GUI") toolkit for UNIX, Microsoft Windows and Apple OS X. Each
of the chapters in this manual is designed as a tutorial for
using FLTK, while the appendices provide a convenient reference
@ -75,7 +75,7 @@ was dropped after FLTK 1.0.10. FLTK uses the preprocessor definition
\section preface_copyrights Copyrights and Trademarks
FLTK is Copyright 1998-2016 by Bill Spitzak and others. Use and
FLTK is Copyright 1998-2021 by Bill Spitzak and others. Use and
distribution of FLTK is governed by the GNU Library General Public
License with 4 exceptions, located in \ref license.

View File

@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#include "about_panel.h"
void show_help(const char *name);

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
comment {//

View File

@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#ifndef about_panel_h
#define about_panel_h

View File

@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#include "alignment_panel.h"
#include <FL/Fl_Preferences.H>

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
comment {//

View File

@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#ifndef alignment_panel_h
#define alignment_panel_h

View File

@ -9,11 +9,11 @@
<key>CFBundleIdentifier</key>
<string>org.fltk.fluid</string>
<key>CFBundleVersion</key>
<string>1.3.5</string>
<string>1.3.6</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright 1998-2017 by Bill Spitzak and others</string>
<string>Copyright 1998-2021 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.3.5</string>
<string>1.3.6</string>
<key>CFBundleGetInfoString</key>
<string>1.3.5, Copyright 1998-2017 by Bill Spitzak and others</string>
<string>1.3.6, Copyright 1998-2021 by Bill Spitzak and others</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>

View File

@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#include "function_panel.h"
#include <FL/Fl_Pixmap.H>

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
comment {//

View File

@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#ifndef function_panel_h
#define function_panel_h

View File

@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#include "print_panel.h"
#include <stdio.h>

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
comment {//

View File

@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#ifndef print_panel_h
#define print_panel_h

View File

@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#include "template_panel.h"
#include <stdio.h>

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
comment {//

View File

@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#ifndef template_panel_h
#define template_panel_h

View File

@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#include "widget_panel.h"
extern void comment_cb(Fl_Text_Editor*, void*);

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
comment {//

View File

@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#ifndef widget_panel_h
#define widget_panel_h

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
Function {make_window()} {open

View File

@ -40,9 +40,9 @@
<key>CFBundleSignature</key>
<string>FLTK</string>
<key>CFBundleVersion</key>
<string>1.3.5</string>
<string>1.3.6</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright 1998-2017 by Bill Spitzak and others.</string>
<string>Copyright 1998-2021 by Bill Spitzak and others.</string>
<key>CFBundleGetInfoString</key>
<string>Part of the FLTK library. Please visit www.fltk.org.</string>
<key>NSHighResolutionCapable</key>

View File

@ -23,7 +23,7 @@
// =======================================================================
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#include "../FL/Fl_File_Chooser.H"
#include <FL/fl_draw.H>

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {../FL/Fl_File_Chooser.H}
code_name {.cxx}
comment {//

View File

@ -23,7 +23,7 @@
// ========================================================================
//
// generated by Fast Light User Interface Designer (fluid) version 1.0305
// generated by Fast Light User Interface Designer (fluid) version 1.0306
#include "../FL/Fl_Help_Dialog.H"
#include "flstring.h"

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {../FL/Fl_Help_Dialog.H}
code_name {.cxx}
comment {//

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
class CubeViewUI {open

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
Function {} {open

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
Function {} {open

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
Function {make_window()} {open

View File

@ -76,8 +76,15 @@ buttons.o: ../FL/Fl_Button.H ../FL/Fl_Repeat_Button.H ../FL/Fl.H
buttons.o: ../FL/Fl_Check_Button.H ../FL/Fl_Light_Button.H
buttons.o: ../FL/Fl_Light_Button.H ../FL/Fl_Round_Button.H ../FL/Fl_Tooltip.H
buttons.o: ../FL/Fl_Widget.H
cairo_test.o: ../config.h ../FL/fl_ask.H ../FL/Enumerations.H
cairo_test.o: ../FL/abi-version.h ../FL/Fl_Export.H ../FL/fl_types.h
cairo_test.o: ../config.h ../FL/Fl_Cairo_Window.H ../FL/Fl.H
cairo_test.o: ../FL/Fl_Export.H ../FL/fl_utf8.h ../FL/Fl_Export.H
cairo_test.o: ../FL/fl_types.h ../FL/Enumerations.H ../FL/abi-version.h
cairo_test.o: ../FL/Fl_Double_Window.H ../FL/Fl_Window.H ../FL/Fl_Group.H
cairo_test.o: ../FL/Fl_Widget.H ../FL/Fl_Bitmap.H ../FL/Fl_Image.H
cairo_test.o: ../FL/Fl_Box.H ../FL/x.H ../FL/fl_draw.H ../FL/Enumerations.H
cairo_test.o: ../FL/Fl_Window.H ../FL/Fl_Device.H ../FL/Fl_Plugin.H
cairo_test.o: ../FL/Fl_Preferences.H ../FL/Fl_Image.H ../FL/Fl_Bitmap.H
cairo_test.o: ../FL/Fl_Pixmap.H ../FL/Fl_RGB_Image.H ../FL/math.h
checkers.o: ../FL/Fl.H ../FL/Fl_Export.H ../FL/fl_utf8.h ../FL/Fl_Export.H
checkers.o: ../FL/fl_types.h ../FL/Enumerations.H ../FL/abi-version.h
checkers.o: ../FL/Fl_Double_Window.H ../FL/Fl_Window.H ../FL/Fl_Group.H

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
decl {\#include "mandelbrot.h"} {public local

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
decl {\#include <FL/Fl_Preferences.H>} {public local

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
Function {button_cb(Fl_Button *b, void *)} {

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
Function {} {open

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
Function {} {open

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
decl {\#include <stdio.h>} {public global

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0305
version 1.0306
header_name {.h}
code_name {.cxx}
Function {callback(Fl_Widget* o, void*)} {open private return_type void