mirror of https://github.com/fltk/fltk
Changes for 1.0.6 release.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@752 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
be101a57e6
commit
4ccf6b4b37
10
CHANGES
10
CHANGES
|
@ -1,3 +1,13 @@
|
||||||
|
CHANGES SINCE FLTK 1.0.5
|
||||||
|
|
||||||
|
- Fl_win32.cxx defined WM_MOUSE_LEAVE instead of WM_MOUSELEAVE.
|
||||||
|
- Fl_get_key_win32.cxx needed to include <ctype.h>
|
||||||
|
- gl_draw_pixmap.cxx needed a pointer cast for ANSI C++.
|
||||||
|
- Fl_Repeat_Button didn't always delete its timeout.
|
||||||
|
- Now keep track of the current OpenGL context; this provides
|
||||||
|
significant performance improvements for OpenGL applications
|
||||||
|
with a single context.
|
||||||
|
|
||||||
CHANGES SINCE FLTK 1.0.4
|
CHANGES SINCE FLTK 1.0.4
|
||||||
|
|
||||||
- Fl_Roller didn't handle a width and height of 0.
|
- Fl_Roller didn't handle a width and height of 0.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
//
|
//
|
||||||
// "$Id: Enumerations.H,v 1.18.2.5 1999/09/15 17:05:32 mike Exp $"
|
// "$Id: Enumerations.H,v 1.18.2.6 1999/09/27 18:16:35 mike Exp $"
|
||||||
//
|
//
|
||||||
// Enumerations for the Fast Light Tool Kit (FLTK).
|
// Enumerations for the Fast Light Tool Kit (FLTK).
|
||||||
//
|
//
|
||||||
|
@ -56,7 +56,7 @@
|
||||||
|
|
||||||
#define FL_MAJOR_VERSION 1
|
#define FL_MAJOR_VERSION 1
|
||||||
#define FL_MINOR_VERSION 0
|
#define FL_MINOR_VERSION 0
|
||||||
#define FL_PATCH_VERSION 5
|
#define FL_PATCH_VERSION 6
|
||||||
#define FL_VERSION ((double)FL_MAJOR_VERSION + \
|
#define FL_VERSION ((double)FL_MAJOR_VERSION + \
|
||||||
(double)FL_MINOR_VERSION * 0.01)
|
(double)FL_MINOR_VERSION * 0.01)
|
||||||
|
|
||||||
|
@ -365,5 +365,5 @@ enum Fl_Damage {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Enumerations.H,v 1.18.2.5 1999/09/15 17:05:32 mike Exp $".
|
// End of "$Id: Enumerations.H,v 1.18.2.6 1999/09/27 18:16:35 mike Exp $".
|
||||||
//
|
//
|
||||||
|
|
2
README
2
README
|
@ -1,4 +1,4 @@
|
||||||
README - Fast Light Tool Kit (FLTK) Version 1.0.5
|
README - Fast Light Tool Kit (FLTK) Version 1.0.6
|
||||||
-------------------------------------------------
|
-------------------------------------------------
|
||||||
|
|
||||||
WHAT IS FLTK?
|
WHAT IS FLTK?
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# "$Id: fltk.list,v 1.1.2.2 1999/09/15 17:19:47 mike Exp $"
|
# "$Id: fltk.list,v 1.1.2.3 1999/09/27 18:16:36 mike Exp $"
|
||||||
#
|
#
|
||||||
# ESP Package Manager (EPM) distribution file.
|
# ESP Package Manager (EPM) distribution file.
|
||||||
#
|
#
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
%vendor GNU
|
%vendor GNU
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%readme packages/README.epm
|
%readme packages/README.epm
|
||||||
%version 1.0.5
|
%version 1.0.6
|
||||||
|
|
||||||
# GUIs
|
# GUIs
|
||||||
%system solaris
|
%system solaris
|
||||||
|
@ -386,5 +386,5 @@ f 0444 root sys /usr/doc/fltk/value_slider.gif documentation/value_slider.gif
|
||||||
f 0444 root sys /usr/doc/fltk/widgets.html documentation/widgets.html
|
f 0444 root sys /usr/doc/fltk/widgets.html documentation/widgets.html
|
||||||
|
|
||||||
#
|
#
|
||||||
# End of "$Id: fltk.list,v 1.1.2.2 1999/09/15 17:19:47 mike Exp $".
|
# End of "$Id: fltk.list,v 1.1.2.3 1999/09/27 18:16:36 mike Exp $".
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue