Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bumped revision to 2.6.3 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e7c607b7a4cf560f331f87904de86dd1 |
User & Date: | peter 2012-08-21 21:23:42.154 |
Context
2012-08-30
| ||
20:42 | Corrected display of ancestor lines in three-way merge. check-in: e64e1eb72f user: peter tags: trunk | |
2012-08-21
| ||
21:23 | Bumped revision to 2.6.3 check-in: e7c607b7a4 user: peter tags: trunk | |
20:38 | Added Preferences menu for Pivot value. check-in: ab52c95546 user: peter tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 | 2012-08-21 Added Preferences menu for Pivot value. 2012-08-21 Added Revert button in Revision mode 2012-07-12 | > > > | 1 2 3 4 5 6 7 8 9 10 | 2012-08-21 Bumped revision to 2.6.3 2012-08-21 Added Preferences menu for Pivot value. 2012-08-21 Added Revert button in Revision mode 2012-07-12 |
︙ | ︙ |
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 = 263 # 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 |
︙ | ︙ |
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.3 2012-08-21" set ::eskil(thisScript) [file join [pwd] [info script]] namespace import tcl::mathop::+ namespace import tcl::mathop::- namespace import tcl::mathop::* namespace import tcl::mathop::/ |
︙ | ︙ |