Unnamed Fossil Project

Check-in [84756c8176]
Login

Check-in [84756c8176]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Bumped version number to 0.7.7
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | master | trunk
Files: files | file ages | folders
SHA3-256: 84756c81760734e53f047c2ec1818b99c5f848b6ce594f92ec22abf522b5183b
User & Date: jenglish 2006-06-03 15:49:13.000
Context
2006-06-03
15:51
Regenerated configure scripts check-in: 5ca754c74e user: jenglish tags: master, trunk
15:49
Bumped version number to 0.7.7 check-in: 84756c8176 user: jenglish tags: master, trunk
2006-05-27
16:38
Fix documentation error ([$pb stop] doesn't take an argument [#1494162] check-in: 6b14d32248 user: jenglish tags: master, trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to ChangeLog.

1





2
3
4
5
6
7
8

	=== TILE 0.7.6 GOES HERE -- FREEZE NOW ===






2006-05-06  Joe English  <jenglish@users.sourceforge.net>
	* generic/notebook.c(SelectTab): Check TabState(nb,index) instead
	of tab->state to determine if tab is disabled -- tabs can also
	be disabled by setting notebook state disabled [fixes #1476923]

2006-04-22  Joe English  <jenglish@users.sourceforge.net>
>
|
>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
2006-05-30  Joe English  <jenglish@users.sourceforge.net>

	* configure.in, generic/configure.in, generic/Makefile.in,
	generic/tkTheme.h, win/makefile.vc:
	Bumped version number to 0.7.7.

	=== TILE 0.7.6 TAGGED FOR RELEASE   2006-05-06 ===

2006-05-06  Joe English  <jenglish@users.sourceforge.net>
	* generic/notebook.c(SelectTab): Check TabState(nb,index) instead
	of tab->state to determine if tab is disabled -- tabs can also
	be disabled by setting notebook state disabled [fixes #1476923]

2006-04-22  Joe English  <jenglish@users.sourceforge.net>
Changes to configure.in.
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# $Id: configure.in,v 1.33 2006/01/26 01:20:24 hobbs Exp $
#

AC_REVISION($Revision: 1.33 $)
AC_INIT([tile],[0.7.6])
AC_CONFIG_AUX_DIR(tclconfig)

# Usual Tcl stuff:
#
TEA_INIT([3.5])
TEA_PATH_TCLCONFIG
TEA_LOAD_TCLCONFIG

|


|
|







1
2
3
4
5
6
7
8
9
10
11
12
13
#
# $Id: configure.in,v 1.34 2006/04/20 22:07:29 jenglish Exp $
#

AC_REVISION($Revision: 1.34 $)
AC_INIT([tile],[0.7.7])
AC_CONFIG_AUX_DIR(tclconfig)

# Usual Tcl stuff:
#
TEA_INIT([3.5])
TEA_PATH_TCLCONFIG
TEA_LOAD_TCLCONFIG
Changes to generic/Makefile.in.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# @configure_input@
#

### Identification division.
#

PACKAGE_NAME 	= tile
PACKAGE_VERSION	= 0.7.6

### Environment division.
#
srcdir		= @srcdir@
prefix		= @prefix@
exec_prefix	= @exec_prefix@
libdir		= @libdir@








|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# @configure_input@
#

### Identification division.
#

PACKAGE_NAME 	= tile
PACKAGE_VERSION	= 0.7.7

### Environment division.
#
srcdir		= @srcdir@
prefix		= @prefix@
exec_prefix	= @exec_prefix@
libdir		= @libdir@
Changes to generic/configure.in.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 
# $Id: configure.in,v 1.43 2006/04/22 19:38:27 jenglish Exp $
#
builtin(include, ../tclconfig/tcl.m4)
builtin(include, ../tclconfig/teax.m4)

AC_INIT([tile],[0.7.6])
AC_CONFIG_AUX_DIR(../tclconfig)
AC_REVISION($Revision: 1.43 $)

# Usual Tcl stuff:
#
TEA_INIT([3.5])
TEA_PATH_TCLCONFIG
TEA_LOAD_TCLCONFIG
TEA_PATH_TKCONFIG

|




|

|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 
# $Id: configure.in,v 1.44 2006/04/22 19:51:51 jenglish Exp $
#
builtin(include, ../tclconfig/tcl.m4)
builtin(include, ../tclconfig/teax.m4)

AC_INIT([tile],[0.7.7])
AC_CONFIG_AUX_DIR(../tclconfig)
AC_REVISION($Revision: 1.44 $)

# Usual Tcl stuff:
#
TEA_INIT([3.5])
TEA_PATH_TCLCONFIG
TEA_LOAD_TCLCONFIG
TEA_PATH_TKCONFIG
Changes to generic/tkTheme.h.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * tkTheme.h --
 *      Declarations for Tk style engine.
 *
 * Copyright (c) 2003 Joe English.  Freely redistributable.
 *
 * $Id: tkTheme.h,v 1.116 2006/04/16 19:28:55 jenglish Exp $
 */

#ifndef TKTHEME_H
#define TKTHEME_H 1

#ifdef __cplusplus
extern "C" {
#endif

#if defined(BUILD_tile)
#	define TTKAPI DLLEXPORT
#	undef USE_TTK_STUBS
#else
#	define TTKAPI DLLIMPORT
#endif

#define TILE_VERSION	"0.7.6"
#define TILE_PATCHLEVEL	TILE_VERSION

/*------------------------------------------------------------------------
 * +++ Defaults for element option specifications.
 */
#define DEFAULT_FONT 		"TkDefaultFont"
#define DEFAULT_BACKGROUND	"#d9d9d9"






|
















|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * tkTheme.h --
 *      Declarations for Tk style engine.
 *
 * Copyright (c) 2003 Joe English.  Freely redistributable.
 *
 * $Id: tkTheme.h,v 1.117 2006/04/20 22:07:30 jenglish Exp $
 */

#ifndef TKTHEME_H
#define TKTHEME_H 1

#ifdef __cplusplus
extern "C" {
#endif

#if defined(BUILD_tile)
#	define TTKAPI DLLEXPORT
#	undef USE_TTK_STUBS
#else
#	define TTKAPI DLLIMPORT
#endif

#define TILE_VERSION	"0.7.7"
#define TILE_PATCHLEVEL	TILE_VERSION

/*------------------------------------------------------------------------
 * +++ Defaults for element option specifications.
 */
#define DEFAULT_FONT 		"TkDefaultFont"
#define DEFAULT_BACKGROUND	"#d9d9d9"
Changes to win/makefile.vc.
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright (c) 1995-1996 Sun Microsystems, Inc.
# Copyright (c) 1998-2000 Ajuba Solutions.
# Copyright (c) 2001 ActiveState Corporation.
# Copyright (c) 2001-2002 David Gravereaux.
# Copyright (c) 2003 Pat Thoyts
#
#-------------------------------------------------------------------------
# RCS: @(#)$Id: makefile.vc,v 1.49 2005/12/20 12:58:30 patthoyts Exp $
#-------------------------------------------------------------------------

!if !defined(MSDEVDIR) && !defined(MSVCDIR) && !defined(VCToolkitInstallDir)
MSG = ^
You will need to run vcvars32.bat from Developer Studio, first, to setup^
the environment.  Jump to this line to read the new instructions.
!error $(MSG)







|







14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright (c) 1995-1996 Sun Microsystems, Inc.
# Copyright (c) 1998-2000 Ajuba Solutions.
# Copyright (c) 2001 ActiveState Corporation.
# Copyright (c) 2001-2002 David Gravereaux.
# Copyright (c) 2003 Pat Thoyts
#
#-------------------------------------------------------------------------
# RCS: @(#)$Id: makefile.vc,v 1.50 2006/04/20 22:07:30 jenglish Exp $
#-------------------------------------------------------------------------

!if !defined(MSDEVDIR) && !defined(MSVCDIR) && !defined(VCToolkitInstallDir)
MSG = ^
You will need to run vcvars32.bat from Developer Studio, first, to setup^
the environment.  Jump to this line to read the new instructions.
!error $(MSG)
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# binary here.
#
#-------------------------------------------------------------------------

PROJECT = tile
!include "rules.vc"

DOTVERSION      = 0.7.6
VERSION         = $(DOTVERSION:.=)
STUBPREFIX      = $(PROJECT)stub

DLLOBJS = \
	$(TMP_DIR)\tile.obj \
	$(TMP_DIR)\ttkStubInit.obj \
	$(TMP_DIR)\tkElements.obj \







|







160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# binary here.
#
#-------------------------------------------------------------------------

PROJECT = tile
!include "rules.vc"

DOTVERSION      = 0.7.7
VERSION         = $(DOTVERSION:.=)
STUBPREFIX      = $(PROJECT)stub

DLLOBJS = \
	$(TMP_DIR)\tile.obj \
	$(TMP_DIR)\ttkStubInit.obj \
	$(TMP_DIR)\tkElements.obj \