Incrmented from 1.1.10 to 1.1.11.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@7850 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher 2010-11-15 20:58:11 +00:00
parent dd87dcf2b0
commit 167e329328
7 changed files with 33 additions and 67 deletions

View File

@ -1,83 +1,47 @@
The FLTK Team is proud to announce the release of FLTK 1.1.10,
The FLTK Team is proud to announce the release of FLTK 1.1.11,
a cross-platform C++ GUI toolkit for UNIX(r)/Linux(r) (X11),
Microsoft(r) Windows(r), and MacOS(r) X. FLTK provides
Microsoft(r) Windows(r), and Apple(r) OS X(r). FLTK provides
modern GUI functionality without the bloat and supports 3D
graphics via OpenGL(r) and its built-in GLUT emulation.
FLTK 1.1.10 fixes some bugs and updates the bundled png image
library.
FLTK 1.1.11 fixes some bugs and one regression.
This is the final release of the FLTK 1.1.x development tree.
FLTK is provided under the GNU Library Public License with
exceptions that allow for static linking.
Changes since FLTK 1.1.9 include:
Changes since FLTK 1.1.10 include:
- Updated the bundled libpng to v1.2.35 (released 18 Feb. 2009)
- Added Fl_Scroll::bbox() documentation (STR #1893)
- Fixed static linking of image libraries (STR #1962)
- Fixed callback would not be called when shortcut was used with
radio and toggle buttons in default FL_RELEASE mode.
- Fixed a problem with TrackMouseEvent() (Windows only) that would
generate wrong FL_LEAVE events with subwindows. TrackMouseEvent
is now enabled by default (it was disabled for GNU compilers).
It can be disabled by defining NO_TRACK_MOUSE.
Improved test/subwindow.cxx (STR #2079)
- Fixed RGB colors for round box (STR #2097)
- Fixed documentation (added missing COMCTRL32.LIB dependency)
- Fl_Group::clip_children() is now public (STR #2017)
- Fixed first modifier key event (STR #1952)
- Fixed wrong default value of Fl_Spinner in Fluid (STR #1991)
- Fixed Fluid textcolor output (STR #1992)
- Added clarification to Fl_GL_Window mode function (STR #1945)
- Fl_Group and Fl_Scroll now resize themselves before
resizing their children (STR #2032)
- Fixed adding an idle handler during a draw() call (STR #1950)
- Improved stability of fl_read_image (STR #2021)
- Fixed menu position close to screen border (STR #2057)
- Documentation fixes (STR #2410)
- Fixed mouse wheel related crash in GLUT emulation (STR #2381)
- Fixed missing architecture flags in OS X build (STR #2303)
- Fixed menu and shortcut handling (STR #2243)
- Fixed multiple line output of fltk-config --libs (STR #2408)
----HTML----
<P>The FLTK Team is proud to announce the release of FLTK 1.1.10,
<P>The FLTK Team is proud to announce the release of FLTK 1.1.11,
a cross-platform C++ GUI toolkit for UNIX(r)/Linux(r) (X11),
Microsoft(r) Windows(r), and MacOS(r) X. FLTK provides
Microsoft(r) Windows(r), and Apple(r) OS X(r). FLTK provides
modern GUI functionality without the bloat and supports 3D
graphics via OpenGL(r) and its built-in GLUT emulation.</P>
<P>FLTK 1.1.10 fixes some bugs and updates the bundled png image
library.</P>
<P>FLTK 1.1.11 fixes some bugs and one regression.</P>
<P>This is the final release of the FLTK 1.1.x development tree.</P>
<P>FLTK is provided under the GNU Library Public License with
exceptions that allow for static linking.</P>
<P>Changes since FLTK 1.1.9 include:</P>
<P>Changes since FLTK 1.1.10 include:</P>
<UL>
<LI> Updated the bundled libpng to v1.2.35 (released 18 Feb. 2009)
<LI> Added Fl_Scroll::bbox() documentation (STR #1893)
<LI> Fixed static linking of image libraries (STR #1962)
<LI> Fixed callback would not be called when shortcut was used with
radio and toggle buttons in default FL_RELEASE mode.
<LI> Fixed a problem with TrackMouseEvent() (Windows only) that would
generate wrong FL_LEAVE events with subwindows. TrackMouseEvent
is now enabled by default (it was disabled for GNU compilers).
It can be disabled by defining NO_TRACK_MOUSE.
Improved test/subwindow.cxx (STR #2079)
<LI> Fixed RGB colors for round box (STR #2097)
<LI> Fixed documentation (added missing COMCTRL32.LIB dependency)
<LI> Fl_Group::clip_children() is now public (STR #2017)
<LI> Fixed first modifier key event (STR #1952)
<LI> Fixed wrong default value of Fl_Spinner in Fluid (STR #1991)
<LI> Fixed Fluid textcolor output (STR #1992)
<LI> Added clarification to Fl_GL_Window mode function (STR #1945)
<LI> Fl_Group and Fl_Scroll now resize themselves before
resizing their children (STR #2032)
<LI> Fixed adding an idle handler during a draw() call (STR #1950)
<LI> Improved stability of fl_read_image (STR #2021)
<LI> Fixed menu position close to screen border (STR #2057)
<LI> Documentation fixes (STR #2410)
<LI> Fixed mouse wheel related crash in GLUT emulation (STR #2381)
<LI> Fixed missing architecture flags in OS X build (STR #2303)
<LI> Fixed menu and shortcut handling (STR #2243)
<LI> Fixed multiple line output of fltk-config --libs (STR #2408)
</UL>

View File

@ -47,7 +47,7 @@
#define FL_MAJOR_VERSION 1
#define FL_MINOR_VERSION 1
#define FL_PATCH_VERSION 10
#define FL_PATCH_VERSION 11
#define FL_VERSION ((double)FL_MAJOR_VERSION + \
(double)FL_MINOR_VERSION * 0.01 + \
(double)FL_PATCH_VERSION * 0.0001)

2
README
View File

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

View File

@ -1,10 +1,10 @@
README.mac - 2007-02-06 - Building FLTK under MacOS X
README.mac - 2010-11-15 - Building FLTK under MacOS X
-----------------------------------------------------
CONTENTS
- Introduction
- How to Build Using GCC (MacOS X)
- How to Build Using GCC (OS X)
- Other stuff
@ -13,14 +13,16 @@ INTRODUCTION
FLTK 1.1.10 and above supports development
environments with Makefiles and gcc.
Starting witk 1.3, FLTK supports Xcode 3.1.
Starting witk 1.3, FLTK supports Xcode 3.0 and up.
HOW TO BUILD USING GCC (MacOS X)
HOW TO BUILD USING GCC (OS X)
Since the MacOS X command line build environment is based on
Since the OS X command line build environment is based on
BSD UNIX, the normal UNIX build procedure as described in
'README' applies.
'README' applies. This version of FLTK is limited to 32
bit builds. For 64 bit builds, please use FLTK 1.3.x or
higher.
OTHER STUFF

View File

@ -1,6 +1,6 @@
README.win32 - Building FLTK under Windows
------------------------------------------
Last Update: May 2009 for release 1.1.10
Last Update: Nov 2010 for release 1.1.11
INTRODUCTION

View File

@ -1,7 +1,7 @@
<HTML>
<HEAD>
<META NAME="robots" CONTENT="noindex">
<TITLE>FLTK 1.1.10 Programming Manual</TITLE>
<TITLE>FLTK 1.1.11 Programming Manual</TITLE>
</HEAD>
<BODY>
@ -10,7 +10,7 @@
<TD VALIGN="MIDDLE">
<IMG SRC="FL.gif" WIDTH="200" HEIGHT="100" ALIGN="ABSMIDDLE" ALT="FL"></TD>
<TD ALIGN="CENTER" VALIGN="MIDDLE">
<H1>FLTK 1.1.10 Programming Manual</H1>
<H1>FLTK 1.1.11 Programming Manual</H1>
<P>Revision 10 by Michael Sweet, Craig P. Earls,<br>Matthias Melcher, and Bill Spitzak<BR>
Copyright 1998-2009 by Bill Spitzak and others.</P>
</TD>

View File

@ -3,14 +3,14 @@
<META CONTENT="Written by Michael Sweet, Craig P. Earls, Matthias Melcher, and Bill Spitzak" NAME="Author">
<META CONTENT="Copyright 1998-2009 by Bill Spitzak and Others." NAME="Copyright">
<META CONTENT="Revision 10" NAME="DocNumber">
<TITLE>FLTK 1.1.10 Programming Manual</TITLE>
<TITLE>FLTK 1.1.11 Programming Manual</TITLE>
</HEAD>
<BODY>
<H1 ALIGN="RIGHT"><A NAME="preface">Preface</A></H1>
<P>This manual describes the Fast Light Tool Kit (&quot;FLTK&quot;)
version 1.1.10, a C++ Graphical User Interface
version 1.1.11, a C++ Graphical User Interface
(&quot;GUI&quot;) toolkit for UNIX, Microsoft Windows and MacOS. Each
of the chapters in this manual is designed as a tutorial for
using FLTK, while the appendices provide a convenient reference