Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bumped revision to 2.7.1 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6dde93ec1895c25ae9342b7b9c85e641 |
User & Date: | peter 2015-11-22 22:06:08.354 |
Context
2015-12-10
| ||
14:48 | Better log of versions check-in: 82700551cc user: peter tags: trunk | |
2015-11-22
| ||
22:06 | Bumped revision to 2.7.1 check-in: 6dde93ec18 user: peter tags: trunk | |
21:49 | More info in About win check-in: c5f31c6de2 user: peter tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 8 | 2015-11-22 Allow plugins to define command line options. 2015-11-20 Rebuilt command line option handling. 2015-11-19 Added binary plugin. | > | 1 2 3 4 5 6 7 8 9 | 2015-11-22 Bumped revision to 2.7.1 Allow plugins to define command line options. 2015-11-20 Rebuilt command line option handling. 2015-11-19 Added binary plugin. |
︙ | ︙ |
Changes to Makefile.
1 2 3 4 | #---------------------------------------------------------------------- # Make file for Eskil #---------------------------------------------------------------------- | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #---------------------------------------------------------------------- # Make file for Eskil #---------------------------------------------------------------------- VERSION = 271 # Path to the TclKits used for creating StarPacks. TCLKIT = /home/peter/tclkit/v85 TCLKIT_LINUX = $(TCLKIT)/tclkit-linux TCLKIT_SOLARIS = $(TCLKIT)/tclkit-solaris-sparc TCLKIT_WIN = $(TCLKIT)/tclkit-win32.upx.exe TCLKIT_MAC = $(TCLKIT)/tclkit-mac-864 # Paths to the libraries used. # If you do not have access to all these, you can get them from an Eskil kit # as explained below. TEXTSEARCH = /home/peter/src/textsearch DIFFUTIL = /home/peter/src/DiffUtilTcl/lib.vfs/DiffUtil WCB = /home/peter/src/packages/wcb3.4 |
︙ | ︙ |
Changes to eskil.vfs/tclkit.inf.
1 2 3 4 | CompanyName "Peter Spjuth" LegalCopyright "Copyright (c) 1998-2015 Peter Spjuth et al." FileDescription "File difference viewer" ProductName "Eskil" | | | | 1 2 3 4 5 6 | CompanyName "Peter Spjuth" LegalCopyright "Copyright (c) 1998-2015 Peter Spjuth et al." FileDescription "File difference viewer" ProductName "Eskil" ProductVersion "2.7.1" FileVersion "2.7.1" |
Changes to htdocs/changes.wiki.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <title>Changes</title> Upcoming changes (not yet released): * New [./table.wiki | table] view, activated by -table, when comparing tables. * Mercurial support for Directory Diff, Commit, Revert and Log. * Plugins can define command line options they accept. * Plugins can read ::argv to know the given command line. * New plugin for binary files * New plugin for CSV files * Added option -sep, to set a separator that makes input be interpreted in a table like manner. * New plugin for PDF files | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <title>Changes</title> Upcoming changes (not yet released): * New [./table.wiki | table] view, activated by -table, when comparing tables. * Mercurial support for Directory Diff, Commit, Revert and Log. * Printed PDF is now compressed. * Printed PDF from patch view adds page break between files. * Plugins can define command line options they accept. * Plugins can read ::argv to know the given command line. * New plugin for binary files * New plugin for CSV files * Added option -sep, to set a separator that makes input be interpreted in a table like manner. * New plugin for PDF files |
︙ | ︙ |
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.7.1 2015-11-22" set ::eskil(thisScript) [file join [pwd] [info script]] namespace import tcl::mathop::+ namespace import tcl::mathop::- namespace import tcl::mathop::* namespace import tcl::mathop::/ |
︙ | ︙ |