Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bumped revision to 2.6.6 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1619c8199ba3e5e8a4a6fdbc6016a1f8 |
User & Date: | peter 2014-10-27 15:54:15.298 |
Context
2014-10-27
| ||
16:08 | Do not add unused packages cmdline and struct check-in: afb045bd85 user: peter tags: trunk | |
15:54 | Bumped revision to 2.6.6 check-in: 1619c8199b user: peter tags: trunk | |
15:40 | Store default prefs as comment in rc file check-in: 32d8697a40 user: peter tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 | 2014-08-12 Started to refactor dirdiff code. This prepares for making dirdiff revision aware. 2014-02-01 Added a font fallback in psballon. [0ff6d72ab9] | > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | 2014-10-27 Bumped revision to 2.6.6 2014-10-27 Store default prefs as comment in rc file 2014-08-12 Started to refactor dirdiff code. This prepares for making dirdiff revision aware. 2014-02-01 Added a font fallback in psballon. [0ff6d72ab9] |
︙ | ︙ |
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 = 266 # 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 eskil.vfs/tclkit.inf.
1 2 3 4 | CompanyName "Peter Spjuth" LegalCopyright "Copyright (c) 1998-2014 Peter Spjuth et al." FileDescription "File difference viewer" ProductName "Eskil" | | | | 1 2 3 4 5 6 | CompanyName "Peter Spjuth" LegalCopyright "Copyright (c) 1998-2014 Peter Spjuth et al." FileDescription "File difference viewer" ProductName "Eskil" ProductVersion "2.6.6" FileVersion "2.6.6" |
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.6 2014-10-27" set ::eskil(thisScript) [file join [pwd] [info script]] namespace import tcl::mathop::+ namespace import tcl::mathop::- namespace import tcl::mathop::* namespace import tcl::mathop::/ |
︙ | ︙ |