Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bumped revision to 2.6.2 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ef00c207c1c757c16fe759798807946f |
User & Date: | peter 2012-06-18 19:14:56.578 |
Context
2012-06-18
| ||
19:24 | Quiet syntax warnings. check-in: 19ea4a578a user: peter tags: trunk | |
19:14 | Bumped revision to 2.6.2 check-in: ef00c207c1 user: peter tags: trunk | |
2012-06-11
| ||
23:40 | Upgraded TkDnd check-in: 769419582d user: peter tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 | 2012-06-12 Added -nocdiff command line flag for debug. 2012-02-28 Support negative revisions with Fossil. 2012-02-21 | > > | 1 2 3 4 5 6 7 8 9 | Release 2.6.2 2012-06-12 Added -nocdiff command line flag for debug. 2012-02-28 Support negative revisions with Fossil. 2012-02-21 |
︙ | ︙ |
Changes to Makefile.
1 2 3 4 | #---------------------------------------------------------------------- # Make file for Eskil #---------------------------------------------------------------------- | | | 1 2 3 4 5 6 7 8 9 10 11 12 | #---------------------------------------------------------------------- # Make file for Eskil #---------------------------------------------------------------------- VERSION = 262 # Path to the TclKits used for creating StarPacks. TCLKIT = /home/peter/tclkit/v85 TCLKIT_LINUX = $(TCLKIT)/tclkit-linux-x86 TCLKIT_SOLARIS = $(TCLKIT)/tclkit-solaris-sparc TCLKIT_WIN = $(TCLKIT)/tclkit-win32.upx.exe |
︙ | ︙ |
Added bumprev.txt.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | These files need to be changed when bumping revisions: src/eskil.tcl (eskil(diffver)) Makefile (VERSION) Also, mark it in: Changes File release affect these too: htdocs/changes.html htdocs/download.html |
Changes to src/eskil.tcl.
︙ | ︙ | |||
33 34 35 36 37 38 39 | # Stop Tk from meddling with the command line by copying it first. set ::eskil(argv) $::argv set ::eskil(argc) $::argc set ::argv {} set ::argc 0 set ::eskil(debug) 0 | | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | # Stop Tk from meddling with the command line by copying it first. set ::eskil(argv) $::argv set ::eskil(argc) $::argc set ::argv {} set ::argc 0 set ::eskil(debug) 0 set ::eskil(diffver) "Version 2.6.2 2012-06-18" set ::eskil(thisScript) [file join [pwd] [info script]] namespace import tcl::mathop::+ namespace import tcl::mathop::- namespace import tcl::mathop::* namespace import tcl::mathop::/ |
︙ | ︙ |