Bump to 1.1.5rc1...

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3100 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 2003-09-09 15:15:18 +00:00
parent 2b3094847f
commit 4e6a41e2cd
10 changed files with 22 additions and 18 deletions

View File

@ -1,3 +1,7 @@
CHANGES IN FLTK 1.1.5rc1
CHANGES IN FLTK 1.1.4 CHANGES IN FLTK 1.1.4
- The fl_read_image() function was not implemented on - The fl_read_image() function was not implemented on

View File

@ -1,4 +1,4 @@
CREDITS - Fast Light Tool Kit (FLTK) Version 1.1.4 CREDITS - Fast Light Tool Kit (FLTK) Version 1.1.5
-------------------------------------------------- --------------------------------------------------
This file lists the people responsible for the toolkit you This file lists the people responsible for the toolkit you

View File

@ -1,5 +1,5 @@
// //
// "$Id: Enumerations.H,v 1.18.2.14.2.35 2003/06/12 01:36:15 easysw Exp $" // "$Id: Enumerations.H,v 1.18.2.14.2.36 2003/09/09 15:15:17 easysw Exp $"
// //
// Enumerations for the Fast Light Tool Kit (FLTK). // Enumerations for the Fast Light Tool Kit (FLTK).
// //
@ -45,7 +45,7 @@
#define FL_MAJOR_VERSION 1 #define FL_MAJOR_VERSION 1
#define FL_MINOR_VERSION 1 #define FL_MINOR_VERSION 1
#define FL_PATCH_VERSION 4 #define FL_PATCH_VERSION 5
#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 + \
(double)FL_PATCH_VERSION * 0.0001) (double)FL_PATCH_VERSION * 0.0001)
@ -419,5 +419,5 @@ enum Fl_Damage {
#endif #endif
// //
// End of "$Id: Enumerations.H,v 1.18.2.14.2.35 2003/06/12 01:36:15 easysw Exp $". // End of "$Id: Enumerations.H,v 1.18.2.14.2.36 2003/09/09 15:15:17 easysw Exp $".
// //

2
README
View File

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

View File

@ -1,7 +1,7 @@
dnl -*- sh -*- dnl -*- sh -*-
dnl the "configure" script is made from this by running GNU "autoconf" dnl the "configure" script is made from this by running GNU "autoconf"
dnl dnl
dnl "$Id: configure.in,v 1.33.2.31.2.104 2003/08/05 22:40:45 easysw Exp $" dnl "$Id: configure.in,v 1.33.2.31.2.105 2003/09/09 15:15:16 easysw Exp $"
dnl dnl
dnl Configuration script for the Fast Light Tool Kit (FLTK). dnl Configuration script for the Fast Light Tool Kit (FLTK).
dnl dnl
@ -34,8 +34,8 @@ AC_INIT(src/Fl.cxx)
dnl FLTK library versions... dnl FLTK library versions...
FL_MAJOR_VERSION=1 FL_MAJOR_VERSION=1
FL_MINOR_VERSION=1 FL_MINOR_VERSION=1
FL_PATCH_VERSION=4 FL_PATCH_VERSION=5
FL_RELEASE_VERSION= FL_RELEASE_VERSION=rc1
FL_API_VERSION=${FL_MAJOR_VERSION}.${FL_MINOR_VERSION} FL_API_VERSION=${FL_MAJOR_VERSION}.${FL_MINOR_VERSION}
AC_SUBST(FL_MAJOR_VERSION) AC_SUBST(FL_MAJOR_VERSION)
@ -852,5 +852,5 @@ dnl Make sure the fltk-config script is executable...
chmod +x fltk-config chmod +x fltk-config
dnl dnl
dnl End of "$Id: configure.in,v 1.33.2.31.2.104 2003/08/05 22:40:45 easysw Exp $". dnl End of "$Id: configure.in,v 1.33.2.31.2.105 2003/09/09 15:15:16 easysw Exp $".
dnl dnl

View File

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

View File

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

View File

@ -1,5 +1,5 @@
# #
# "$Id: fltk.spec,v 1.1.2.9.2.26 2003/08/02 21:17:30 easysw Exp $" # "$Id: fltk.spec,v 1.1.2.9.2.27 2003/09/09 15:15:17 easysw Exp $"
# #
# RPM spec file for FLTK. # RPM spec file for FLTK.
# #
@ -23,7 +23,7 @@
# Please report all bugs and problems to "fltk-bugs@fltk.org". # Please report all bugs and problems to "fltk-bugs@fltk.org".
# #
%define version 1.1.4 %define version 1.1.5rc1
%define release 0 %define release 0
%define prefix /usr %define prefix /usr
@ -96,5 +96,5 @@ rm -rf $RPM_BUILD_ROOT
%{prefix}/share/doc/fltk/* %{prefix}/share/doc/fltk/*
# #
# End of "$Id: fltk.spec,v 1.1.2.9.2.26 2003/08/02 21:17:30 easysw Exp $". # End of "$Id: fltk.spec,v 1.1.2.9.2.27 2003/09/09 15:15:17 easysw Exp $".
# #

View File

@ -85,7 +85,7 @@ Fl_Window* make_about_panel() {
o->labelcolor(7); o->labelcolor(7);
o->align(FL_ALIGN_TOP|FL_ALIGN_INSIDE); o->align(FL_ALIGN_TOP|FL_ALIGN_INSIDE);
} }
{ Fl_Box* o = new Fl_Box(140, 27, 160, 123, "FLTK User\nInterface\nDesigner\nVersion 1.1.4"); { Fl_Box* o = new Fl_Box(140, 27, 160, 123, "FLTK User\nInterface\nDesigner\nVersion 1.1.5");
o->box(FL_OVAL_BOX); o->box(FL_OVAL_BOX);
o->color(12); o->color(12);
o->selection_color(47); o->selection_color(47);

View File

@ -49,7 +49,7 @@ Function {make_about_panel()} {open
label {FLTK User label {FLTK User
Interface Interface
Designer Designer
Version 1.1.4} Version 1.1.5}
xywh {140 27 160 123} box OVAL_BOX color 12 selection_color 47 labeltype SHADOW_LABEL labelfont 1 labelsize 18 labelcolor 7 xywh {140 27 160 123} box OVAL_BOX color 12 selection_color 47 labeltype SHADOW_LABEL labelfont 1 labelsize 18 labelcolor 7
} }
Fl_Button {} { Fl_Button {} {