diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2004-11-29 15:01:43 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2004-11-29 15:01:43 +0000 |
| commit | a50a8b702aec0849d778f6e36e9b5f5703dff48c (patch) | |
| tree | 165d62e43d98e7df12c60131749eea938553585a | |
| parent | de226bac0ad20b51e3b05ec237e331fd3456db9b (diff) | |
Changelog.
Prep for 1.1.7.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3927 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | CHANGES | 10 | ||||
| -rw-r--r-- | FL/Enumerations.H | 6 | ||||
| -rw-r--r-- | configure.in | 8 | ||||
| -rw-r--r-- | fltk.spec | 6 |
4 files changed, 18 insertions, 12 deletions
@@ -1,7 +1,13 @@ +CHANGES IN FLTK 1.1.7 + + - Added missing Watcom makefile in the test directory + (STR #636) + - Fl_Text_Display::word_left would hang if the cursor + was at position 0 (STR #635) + + CHANGES IN FLTK 1.1.6 - - Fl_Text_Display::word_left would hang if cursor was - at pos 0 - Documentation updates (STR #552, STR #608) - Added the 2.0 Fl_Widget::copy_label() method to allow FLTK 1.x applications to have their label diff --git a/FL/Enumerations.H b/FL/Enumerations.H index ea9d58cb2..8e04ad255 100644 --- a/FL/Enumerations.H +++ b/FL/Enumerations.H @@ -1,5 +1,5 @@ // -// "$Id: Enumerations.H,v 1.18.2.14.2.38 2004/11/20 03:19:57 easysw Exp $" +// "$Id: Enumerations.H,v 1.18.2.14.2.39 2004/11/29 15:01:43 easysw Exp $" // // Enumerations for the Fast Light Tool Kit (FLTK). // @@ -45,7 +45,7 @@ #define FL_MAJOR_VERSION 1 #define FL_MINOR_VERSION 1 -#define FL_PATCH_VERSION 6 +#define FL_PATCH_VERSION 7 #define FL_VERSION ((double)FL_MAJOR_VERSION + \ (double)FL_MINOR_VERSION * 0.01 + \ (double)FL_PATCH_VERSION * 0.0001) @@ -419,5 +419,5 @@ enum Fl_Damage { #endif // -// End of "$Id: Enumerations.H,v 1.18.2.14.2.38 2004/11/20 03:19:57 easysw Exp $". +// End of "$Id: Enumerations.H,v 1.18.2.14.2.39 2004/11/29 15:01:43 easysw Exp $". // diff --git a/configure.in b/configure.in index 184baf18e..680f3b1fa 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl -*- sh -*- dnl the "configure" script is made from this by running GNU "autoconf" dnl -dnl "$Id: configure.in,v 1.33.2.31.2.122 2004/11/20 03:44:17 easysw Exp $" +dnl "$Id: configure.in,v 1.33.2.31.2.123 2004/11/29 15:01:42 easysw Exp $" dnl dnl Configuration script for the Fast Light Tool Kit (FLTK). dnl @@ -34,8 +34,8 @@ AC_INIT(src/Fl.cxx) dnl FLTK library versions... FL_MAJOR_VERSION=1 FL_MINOR_VERSION=1 -FL_PATCH_VERSION=6 -FL_RELEASE_VERSION= +FL_PATCH_VERSION=7 +FL_RELEASE_VERSION=cvs FL_API_VERSION=${FL_MAJOR_VERSION}.${FL_MINOR_VERSION} AC_SUBST(FL_MAJOR_VERSION) @@ -928,5 +928,5 @@ dnl Make sure the fltk-config script is executable... chmod +x fltk-config dnl -dnl End of "$Id: configure.in,v 1.33.2.31.2.122 2004/11/20 03:44:17 easysw Exp $". +dnl End of "$Id: configure.in,v 1.33.2.31.2.123 2004/11/29 15:01:42 easysw Exp $". dnl @@ -1,5 +1,5 @@ # -# "$Id: fltk.spec,v 1.1.2.9.2.32 2004/11/20 03:19:57 easysw Exp $" +# "$Id: fltk.spec,v 1.1.2.9.2.33 2004/11/29 15:01:42 easysw Exp $" # # RPM spec file for FLTK. # @@ -23,7 +23,7 @@ # Please report all bugs and problems to "fltk-bugs@fltk.org". # -%define version 1.1.6 +%define version 1.1.7 %define release 0 %define prefix /usr @@ -96,5 +96,5 @@ rm -rf $RPM_BUILD_ROOT %{prefix}/share/doc/fltk/* # -# End of "$Id: fltk.spec,v 1.1.2.9.2.32 2004/11/20 03:19:57 easysw Exp $". +# End of "$Id: fltk.spec,v 1.1.2.9.2.33 2004/11/29 15:01:42 easysw Exp $". # |
