From 191b33e0def5c7239c43c0be4dfc5d5d5e9be736 Mon Sep 17 00:00:00 2001
From: Albrecht Schlosser <albrechts.fltk@online.de>
Date: Thu, 6 Mar 2025 18:16:03 +0100
Subject: [PATCH] Update version numbers to 1.5.0

---
 ANNOUNCEMENT                      | 53 ++++---------------------------
 CHANGES.txt => CHANGES_1.4.txt    |  0
 CMakeLists.txt                    | 14 ++++----
 FL/Enumerations.H                 |  7 ++--
 FL/Fl_File_Chooser.H              |  2 +-
 FL/Fl_Help_Dialog.H               |  2 +-
 README.md                         |  2 +-
 README.txt                        |  2 +-
 documentation/src/index.dox       |  2 +-
 documentation/src/preface.dox     |  2 +-
 examples/fluid-callback.fl        |  2 +-
 fltk-options/fltk-options.plist   |  6 ++--
 fltk_version.dat                  |  2 +-
 fluid/about_panel.cxx             |  2 +-
 fluid/about_panel.fl              |  2 +-
 fluid/about_panel.h               |  2 +-
 fluid/codeview_panel.cxx          |  2 +-
 fluid/codeview_panel.fl           |  2 +-
 fluid/codeview_panel.h            |  2 +-
 fluid/documentation/src/index.dox |  2 +-
 fluid/fluid.plist                 |  6 ++--
 fluid/function_panel.cxx          |  2 +-
 fluid/function_panel.fl           |  2 +-
 fluid/function_panel.h            |  2 +-
 fluid/print_panel.cxx             |  2 +-
 fluid/print_panel.fl              |  2 +-
 fluid/print_panel.h               |  2 +-
 fluid/settings_panel.cxx          |  2 +-
 fluid/settings_panel.fl           |  2 +-
 fluid/settings_panel.h            |  2 +-
 fluid/template_panel.cxx          |  2 +-
 fluid/template_panel.fl           |  2 +-
 fluid/template_panel.h            |  2 +-
 fluid/widget_panel.cxx            |  2 +-
 fluid/widget_panel.fl             |  2 +-
 fluid/widget_panel.h              |  2 +-
 src/Fl_File_Chooser.cxx           |  2 +-
 src/Fl_File_Chooser.fl            |  2 +-
 src/Fl_Help_Dialog.cxx            |  2 +-
 src/Fl_Help_Dialog.fl             |  2 +-
 test/CubeViewUI.fl                |  2 +-
 test/checkers_pieces.fl           |  2 +-
 test/fast_slow.fl                 |  2 +-
 test/inactive.fl                  |  2 +-
 test/keyboard_ui.fl               |  2 +-
 test/mandelbrot_ui.fl             |  2 +-
 test/preferences.fl               |  2 +-
 test/radio.fl                     |  2 +-
 test/resize.fl                    |  2 +-
 test/tabs.fl                      |  2 +-
 test/terminal.fl                  |  2 +-
 test/tree.fl                      |  2 +-
 test/valuators.fl                 |  2 +-
 53 files changed, 69 insertions(+), 111 deletions(-)
 rename CHANGES.txt => CHANGES_1.4.txt (100%)

diff --git a/ANNOUNCEMENT b/ANNOUNCEMENT
index 807f63363..44a13d049 100644
--- a/ANNOUNCEMENT
+++ b/ANNOUNCEMENT
@@ -1,50 +1,9 @@
-FLTK 1.4 is based on the final release of FLTK 1.3.4. Later updates
-have been backported to 1.3.5 - 1.3.11 and branch-1.3 (Git).
+FLTK 1.5 is based on the release of FLTK 1.4.2. Later updates and
+bug fixes may be backported to 1.4.x (x > 2).
 
-FLTK 1.4 is intended to be mostly API compatible with FLTK 1.3.x so
-you don't need to change source code when you switch to FLTK 1.4.
-However, all programs must be recompiled with FLTK 1.4 because the
+FLTK 1.5 is intended to be mostly API compatible with FLTK 1.4.x so
+you don't need to change source code when you switch to FLTK 1.5.
+However, all programs must be recompiled with FLTK 1.5 because the
 ABI (Application Binary Interface) has changed.
 
-Potential source code conflicts are documented in chapter "Migrating
-Code from FLTK 1.3 to 1.4" of the user documentation [1].
-
-FLTK 1.4 adds some new widgets (e.g. Fl_Flex, Fl_Grid) for flexible GUI
-layout, Fl_Scheme_Choice for scheme selection by users, and more.
-Other widgets (Fl_Tabs, Fl_Tile, Fl_Spinner etc.) have been improved
-for better user experience.
-
-FLTK 1.4 supports HighDPI displays under Linux/Unix and Windows and
-improves HighDPI support on macOS. The initial screen scaling factor is
-read from the system and application windows can be zoomed (in/out/reset)
-by the user with ctrl/+/-/0 shortcuts, respectively.
-
-CMake support has been improved significantly and requires CMake 3.15 or
-higher, autotools/configure/make is still supported. The latter will be
-dropped in the next minor release (1.5.0).
-
-macOS is supported up to 15.3 "Sequoia".
-
-The platform dependent code in FLTK 1.4 was rewritten to enable easier
-porting to new platforms. Basically all platform dependent code has
-been isolated and implemented in virtual methods of "driver" classes.
-For details see 'src/drivers' and subdirectories.
-
-FLTK is now compatible with the Wayland platform on current Linux
-distributions and FreeBSD. The default build of the library on these
-platforms supports both X11 and Wayland in a "hybrid" library. Programs
-compiled and linked to this library start using Wayland if it is
-available at runtime and fall back to using X11 if not. Programs using
-X11 specific code that are not yet ported to Wayland can still be used
-on pure X11 systems or by disabling the Wayland support on startup so
-they fall back to using X11 only. This requires 'XWayland' support on
-Wayland enabled (Linux) systems.
-
-The current development branch on GitHub [2] is `master`. This will be
-changed to `branch-1.4` when development of FLTK 1.5.0 begins and 1.4
-will be switched to maintenance mode.
-
-
-[1] https://www.fltk.org/doc-1.4/ (HTML) and
-    https://www.fltk.org/doc-1.4/fltk.pdf (PDF)
-[2] https://github.com/fltk/fltk.git
+More info TBD.
diff --git a/CHANGES.txt b/CHANGES_1.4.txt
similarity index 100%
rename from CHANGES.txt
rename to CHANGES_1.4.txt
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c1c5888ee..c8f24dde8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,13 +19,10 @@
 # Set CMake minimum version first: must be set before `project()`
 #######################################################################
 
-# Minimum CMake version required by FLTK 1.4
+# Minimum CMake version required by FLTK 1.5
 
-# Note 1: Linking against OBJECT libraries (fluid, test) requires
-#         at least CMake 3.12.0
-# Note 2: Used in fluid since 05/2023,
-#         used for Windows (MSVC) shared lib builds much earlier
-# Note 3: More modern CMake features require 3.13...3.15 (Nov 2023)
+# Note 1: Currently the same as for FLTK 1.4.x but will likely be raised
+#         depending on new features introduced in FLTK 1.5.
 
 cmake_minimum_required(VERSION 3.15.0 FATAL_ERROR)
 
@@ -36,7 +33,7 @@ cmake_minimum_required(VERSION 3.15.0 FATAL_ERROR)
 # define the FLTK project and version
 #######################################################################
 
-project(FLTK VERSION 1.4.2)
+project(FLTK VERSION 1.5.0)
 
 #######################################################################
 # include macro and function definitions for general usage
@@ -60,7 +57,8 @@ endif()
 # Set FLTK_VERSION in the cache so user projects can access it,
 # for instance if FLTK is built as a subproject (FetchContent)
 
-set(FLTK_VERSION ${FLTK_VERSION} CACHE STRING "FLTK version" FORCE)
+set(FLTK_VERSION ${FLTK_VERSION} CACHE STRING
+    "FLTK version: generated, do not change" FORCE)
 
 #######################################################################
 # basic setup
diff --git a/FL/Enumerations.H b/FL/Enumerations.H
index 0fe8e03a7..1a8b219bd 100644
--- a/FL/Enumerations.H
+++ b/FL/Enumerations.H
@@ -36,7 +36,8 @@
 #  include "fl_types.h"
 #  include <FL/platform_types.h> // for FL_COMMAND and FL_CONTROL
 
-// Current FLTK version: 1.4.2
+// Keep the following comment in sync with the values below for searching
+// Current FLTK version: 1.5.0
 
 /** \name Version Numbers
 
@@ -58,14 +59,14 @@
 
    FLTK remains mostly source-code compatible between minor version changes.
  */
-#define FL_MINOR_VERSION        4
+#define FL_MINOR_VERSION        5
 
 /**
    The patch version for this library.
 
    FLTK remains binary compatible between patches.
  */
-#define FL_PATCH_VERSION        2
+#define FL_PATCH_VERSION        0
 
 /**
     The FLTK version number as a \em double.
diff --git a/FL/Fl_File_Chooser.H b/FL/Fl_File_Chooser.H
index 25114ff49..039832c2e 100644
--- a/FL/Fl_File_Chooser.H
+++ b/FL/Fl_File_Chooser.H
@@ -21,7 +21,7 @@
 // =======================================================================
 //
 
-// generated by Fast Light User Interface Designer (fluid) version 1.0402
+// generated by Fast Light User Interface Designer (fluid) version 1.0500
 
 #ifndef Fl_File_Chooser_H
 #define Fl_File_Chooser_H
diff --git a/FL/Fl_Help_Dialog.H b/FL/Fl_Help_Dialog.H
index 42dd11793..3d75ea9f7 100644
--- a/FL/Fl_Help_Dialog.H
+++ b/FL/Fl_Help_Dialog.H
@@ -21,7 +21,7 @@
 // ========================================================================
 //
 
-// generated by Fast Light User Interface Designer (fluid) version 1.0402
+// generated by Fast Light User Interface Designer (fluid) version 1.0500
 
 #ifndef Fl_Help_Dialog_H
 #define Fl_Help_Dialog_H
diff --git a/README.md b/README.md
index 80658367a..dda1de1cd 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# README - Fast Light Tool Kit (FLTK) Version 1.4.2
+# README - Fast Light Tool Kit (FLTK) Version 1.5.0
 
 ## WHAT IS FLTK?
 
diff --git a/README.txt b/README.txt
index 8f7bf846a..1e14c43e4 100644
--- a/README.txt
+++ b/README.txt
@@ -1,4 +1,4 @@
-README - Fast Light Tool Kit (FLTK) Version 1.4.2
+README - Fast Light Tool Kit (FLTK) Version 1.5.0
 -------------------------------------------------
 
 WHAT IS FLTK?
diff --git a/documentation/src/index.dox b/documentation/src/index.dox
index 5c208ffa8..6a51c1674 100644
--- a/documentation/src/index.dox
+++ b/documentation/src/index.dox
@@ -8,7 +8,7 @@
     \image latex FL200.png "" width=5cm
   </CENTER></TD>
   <TD><CENTER>
-    <B>FLTK 1.4.2 Programming Manual</B>
+    <B>FLTK 1.5.0 Programming Manual</B>
 
     By F.&nbsp;Costantini, M.&nbsp;Melcher,
     A.&nbsp;Schlosser, B.&nbsp;Spitzak and M.&nbsp;Sweet.
diff --git a/documentation/src/preface.dox b/documentation/src/preface.dox
index 1f773c5f5..aca7289fd 100644
--- a/documentation/src/preface.dox
+++ b/documentation/src/preface.dox
@@ -2,7 +2,7 @@
 
  \page preface Preface
 
-This manual describes the Fast Light Tool Kit ("FLTK") version 1.4.2,
+This manual describes the Fast Light Tool Kit ("FLTK") version 1.5.0,
 a C++ Graphical User Interface ("GUI") toolkit for UNIX, Microsoft Windows,
 and Apple macOS.
 
diff --git a/examples/fluid-callback.fl b/examples/fluid-callback.fl
index dd97575f6..6e4759104 100644
--- a/examples/fluid-callback.fl
+++ b/examples/fluid-callback.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 comment {README FIRST
diff --git a/fltk-options/fltk-options.plist b/fltk-options/fltk-options.plist
index b16fe0ba6..a84ac790a 100644
--- a/fltk-options/fltk-options.plist
+++ b/fltk-options/fltk-options.plist
@@ -9,7 +9,7 @@
 	<key>CFBundleIdentifier</key>
 	<string>org.fltk.fltk-options</string>
 	<key>CFBundleVersion</key>
-	<string>1.4.2</string>
+	<string>1.5.0</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.2</string>
+	<string>1.5.0</string>
 	<key>CFBundleGetInfoString</key>
-	<string>1.4.2, Copyright 2023-2025 by Bill Spitzak and others</string>
+	<string>1.5.0, Copyright 2023-2025 by Bill Spitzak and others</string>
 	<key>NSHighResolutionCapable</key>
 	<true/>
 </dict>
diff --git a/fltk_version.dat b/fltk_version.dat
index 9df886c42..bc80560fa 100644
--- a/fltk_version.dat
+++ b/fltk_version.dat
@@ -1 +1 @@
-1.4.2
+1.5.0
diff --git a/fluid/about_panel.cxx b/fluid/about_panel.cxx
index 18885eee8..b28347ae5 100644
--- a/fluid/about_panel.cxx
+++ b/fluid/about_panel.cxx
@@ -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.0500
 
 #include "about_panel.h"
 void show_help(const char *name);
diff --git a/fluid/about_panel.fl b/fluid/about_panel.fl
index 743aaa626..6ef5bdbd0 100644
--- a/fluid/about_panel.fl
+++ b/fluid/about_panel.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 comment {//
diff --git a/fluid/about_panel.h b/fluid/about_panel.h
index e06c34de9..0130a1e44 100644
--- a/fluid/about_panel.h
+++ b/fluid/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.0500
 
 #ifndef about_panel_h
 #define about_panel_h
diff --git a/fluid/codeview_panel.cxx b/fluid/codeview_panel.cxx
index 2f72738c8..0c46696e3 100644
--- a/fluid/codeview_panel.cxx
+++ b/fluid/codeview_panel.cxx
@@ -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.0500
 
 #include "codeview_panel.h"
 #include "fluid.h"
diff --git a/fluid/codeview_panel.fl b/fluid/codeview_panel.fl
index e0737c781..80f74f13f 100644
--- a/fluid/codeview_panel.fl
+++ b/fluid/codeview_panel.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 comment {//
diff --git a/fluid/codeview_panel.h b/fluid/codeview_panel.h
index f98660b8f..34efd22af 100644
--- a/fluid/codeview_panel.h
+++ b/fluid/codeview_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.0500
 
 #ifndef codeview_panel_h
 #define codeview_panel_h
diff --git a/fluid/documentation/src/index.dox b/fluid/documentation/src/index.dox
index 657e448e2..7a2808207 100644
--- a/fluid/documentation/src/index.dox
+++ b/fluid/documentation/src/index.dox
@@ -14,7 +14,7 @@
      \image latex fluid-128.png  "" width=3cm
    </CENTER></TD>
    <TD><CENTER>
-     <B>FLUID 1.4.2 User Manual</B>
+     <B>FLUID 1.5.0 User Manual</B>
 
      By F.&nbsp;Costantini, M.&nbsp;Melcher,
      A.&nbsp;Schlosser, B.&nbsp;Spitzak and M.&nbsp;Sweet.
diff --git a/fluid/fluid.plist b/fluid/fluid.plist
index 88711f118..cf1b391c8 100644
--- a/fluid/fluid.plist
+++ b/fluid/fluid.plist
@@ -9,7 +9,7 @@
 	<key>CFBundleIdentifier</key>
 	<string>org.fltk.fluid</string>
 	<key>CFBundleVersion</key>
-	<string>1.4.2</string>
+	<string>1.5.0</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.2</string>
+	<string>1.5.0</string>
 	<key>CFBundleGetInfoString</key>
-	<string>1.4.2, Copyright 1998-2025 by Bill Spitzak and others</string>
+	<string>1.5.0, Copyright 1998-2025 by Bill Spitzak and others</string>
 	<key>CFBundleDocumentTypes</key>
 	<array>
 		<dict>
diff --git a/fluid/function_panel.cxx b/fluid/function_panel.cxx
index 71a34b510..489341c5b 100644
--- a/fluid/function_panel.cxx
+++ b/fluid/function_panel.cxx
@@ -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.0500
 
 #include "function_panel.h"
 #include "fluid.h"
diff --git a/fluid/function_panel.fl b/fluid/function_panel.fl
index bd25f3821..7c77af009 100644
--- a/fluid/function_panel.fl
+++ b/fluid/function_panel.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 snap {
diff --git a/fluid/function_panel.h b/fluid/function_panel.h
index a45c197f0..d41a9d355 100644
--- a/fluid/function_panel.h
+++ b/fluid/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.0500
 
 #ifndef function_panel_h
 #define function_panel_h
diff --git a/fluid/print_panel.cxx b/fluid/print_panel.cxx
index a6077888c..bf1dca655 100644
--- a/fluid/print_panel.cxx
+++ b/fluid/print_panel.cxx
@@ -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.0500
 
 #include "print_panel.h"
 #include "fluid.h"
diff --git a/fluid/print_panel.fl b/fluid/print_panel.fl
index 94df4ce75..382eece2b 100644
--- a/fluid/print_panel.fl
+++ b/fluid/print_panel.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 comment {//
diff --git a/fluid/print_panel.h b/fluid/print_panel.h
index a8f5ccb9d..fed8fd3c0 100644
--- a/fluid/print_panel.h
+++ b/fluid/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.0500
 
 #ifndef print_panel_h
 #define print_panel_h
diff --git a/fluid/settings_panel.cxx b/fluid/settings_panel.cxx
index 351598359..bdaea50ca 100644
--- a/fluid/settings_panel.cxx
+++ b/fluid/settings_panel.cxx
@@ -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.0500
 
 #include "settings_panel.h"
 #include "undo.h"
diff --git a/fluid/settings_panel.fl b/fluid/settings_panel.fl
index b0ef7ebfa..912f9bf68 100644
--- a/fluid/settings_panel.fl
+++ b/fluid/settings_panel.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 snap {
diff --git a/fluid/settings_panel.h b/fluid/settings_panel.h
index edd152972..a582f69e6 100644
--- a/fluid/settings_panel.h
+++ b/fluid/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.0500
 
 #ifndef settings_panel_h
 #define settings_panel_h
diff --git a/fluid/template_panel.cxx b/fluid/template_panel.cxx
index 4b97ddc7e..7bc8943c0 100644
--- a/fluid/template_panel.cxx
+++ b/fluid/template_panel.cxx
@@ -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.0500
 
 #include "template_panel.h"
 #include "fluid.h"
diff --git a/fluid/template_panel.fl b/fluid/template_panel.fl
index a90e5f2a0..f4e4f8bb2 100644
--- a/fluid/template_panel.fl
+++ b/fluid/template_panel.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 comment {//
diff --git a/fluid/template_panel.h b/fluid/template_panel.h
index 548958e13..172e4c7de 100644
--- a/fluid/template_panel.h
+++ b/fluid/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.0500
 
 #ifndef template_panel_h
 #define template_panel_h
diff --git a/fluid/widget_panel.cxx b/fluid/widget_panel.cxx
index 58eaa8610..ec61c1083 100644
--- a/fluid/widget_panel.cxx
+++ b/fluid/widget_panel.cxx
@@ -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.0500
 
 #include "widget_panel.h"
 #include "undo.h"
diff --git a/fluid/widget_panel.fl b/fluid/widget_panel.fl
index 17470c0e9..470248e7d 100644
--- a/fluid/widget_panel.fl
+++ b/fluid/widget_panel.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 snap {
diff --git a/fluid/widget_panel.h b/fluid/widget_panel.h
index 357da03cd..38e70cc71 100644
--- a/fluid/widget_panel.h
+++ b/fluid/widget_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.0500
 
 #ifndef widget_panel_h
 #define widget_panel_h
diff --git a/src/Fl_File_Chooser.cxx b/src/Fl_File_Chooser.cxx
index 0647a58b3..ea116319d 100644
--- a/src/Fl_File_Chooser.cxx
+++ b/src/Fl_File_Chooser.cxx
@@ -21,7 +21,7 @@
 // =======================================================================
 //
 
-// generated by Fast Light User Interface Designer (fluid) version 1.0402
+// generated by Fast Light User Interface Designer (fluid) version 1.0500
 
 #include "../FL/Fl_File_Chooser.H"
 #include <FL/fl_draw.H>
diff --git a/src/Fl_File_Chooser.fl b/src/Fl_File_Chooser.fl
index 0c2a44830..1328733c9 100644
--- a/src/Fl_File_Chooser.fl
+++ b/src/Fl_File_Chooser.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {../FL/Fl_File_Chooser.H}
 code_name {.cxx}
 comment {//
diff --git a/src/Fl_Help_Dialog.cxx b/src/Fl_Help_Dialog.cxx
index 38e8946e3..c2e82afcd 100644
--- a/src/Fl_Help_Dialog.cxx
+++ b/src/Fl_Help_Dialog.cxx
@@ -21,7 +21,7 @@
 // ========================================================================
 //
 
-// generated by Fast Light User Interface Designer (fluid) version 1.0402
+// generated by Fast Light User Interface Designer (fluid) version 1.0500
 
 #include "../FL/Fl_Help_Dialog.H"
 #include <FL/Fl_Shared_Image.H>
diff --git a/src/Fl_Help_Dialog.fl b/src/Fl_Help_Dialog.fl
index 6dbdb9c82..e147f37f6 100644
--- a/src/Fl_Help_Dialog.fl
+++ b/src/Fl_Help_Dialog.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {../FL/Fl_Help_Dialog.H}
 code_name {.cxx}
 comment {//
diff --git a/test/CubeViewUI.fl b/test/CubeViewUI.fl
index 438597ead..8ddd915d5 100644
--- a/test/CubeViewUI.fl
+++ b/test/CubeViewUI.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 class CubeViewUI {open
diff --git a/test/checkers_pieces.fl b/test/checkers_pieces.fl
index 6658fb077..d4c51caaf 100644
--- a/test/checkers_pieces.fl
+++ b/test/checkers_pieces.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 comment {//
diff --git a/test/fast_slow.fl b/test/fast_slow.fl
index 97de78127..471965c40 100644
--- a/test/fast_slow.fl
+++ b/test/fast_slow.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 Function {} {open
diff --git a/test/inactive.fl b/test/inactive.fl
index 3c8179cb5..663deaeed 100644
--- a/test/inactive.fl
+++ b/test/inactive.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 Function {} {open
diff --git a/test/keyboard_ui.fl b/test/keyboard_ui.fl
index 4a1de435b..5def7a4c6 100644
--- a/test/keyboard_ui.fl
+++ b/test/keyboard_ui.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 Function {make_window()} {open
diff --git a/test/mandelbrot_ui.fl b/test/mandelbrot_ui.fl
index 396e0a3ca..924bf9acd 100644
--- a/test/mandelbrot_ui.fl
+++ b/test/mandelbrot_ui.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 decl {\#include "mandelbrot.h"} {public local
diff --git a/test/preferences.fl b/test/preferences.fl
index d1702345e..ea3633db1 100644
--- a/test/preferences.fl
+++ b/test/preferences.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 i18n_type 1
 i18n_include {<stdio.h>}
 i18n_conditional {}
diff --git a/test/radio.fl b/test/radio.fl
index c5dbc31c0..40497402c 100644
--- a/test/radio.fl
+++ b/test/radio.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 Function {button_cb(Fl_Button *b, void *)} {
diff --git a/test/resize.fl b/test/resize.fl
index 2043d4335..d3173e66e 100644
--- a/test/resize.fl
+++ b/test/resize.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 Function {} {open
diff --git a/test/tabs.fl b/test/tabs.fl
index 037c77461..fa3291745 100644
--- a/test/tabs.fl
+++ b/test/tabs.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 Function {} {open
diff --git a/test/terminal.fl b/test/terminal.fl
index 777f40314..b2c0d4d1f 100644
--- a/test/terminal.fl
+++ b/test/terminal.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 utf8_in_src
 header_name {.h}
 code_name {.cxx}
diff --git a/test/tree.fl b/test/tree.fl
index 2400c8579..e8ab00c5e 100644
--- a/test/tree.fl
+++ b/test/tree.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 decl {\#include <stdio.h>} {public global
diff --git a/test/valuators.fl b/test/valuators.fl
index 6fcb59105..8dca16ba3 100644
--- a/test/valuators.fl
+++ b/test/valuators.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0401
+version 1.0500
 header_name {.h}
 code_name {.cxx}
 Function {} {open
-- 
GitLab