Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bumped revision to 2.7 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c5289c72dfdee87620bde4573856c3dc |
User & Date: | peter 2015-02-24 00:05:04.387 |
Context
2015-02-25
| ||
02:27 | Cannot use fossil ls to get historical info. Instead parse the fileage web page. check-in: cfc89c24fc user: peter tags: trunk | |
2015-02-24
| ||
00:05 | Bumped revision to 2.7 check-in: c5289c72df user: peter tags: trunk | |
00:00 | Added doc for revision control check-in: 66d536992b user: peter tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 | 2015-02-23 Version support in directory diff, for Fossil, GIT and Subversion. 2014-12-17 Changed the included print font to a true type font. Allow -printFont to be "Courier" for fallback to PDF builtin. | > > > | 1 2 3 4 5 6 7 8 9 10 | 2015-02-24 Bumped revision to 2.7 2015-02-23 Version support in directory diff, for Fossil, GIT and Subversion. 2014-12-17 Changed the included print font to a true type font. Allow -printFont to be "Courier" for fallback to PDF builtin. |
︙ | ︙ |
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 = 27 # 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 |
︙ | ︙ |
Changes to bumprev.txt.
1 2 3 4 5 6 7 8 9 10 | These files need to be changed when bumping revisions: src/eskil.tcl (eskil(diffver)) Makefile (VERSION) eskil.vfs/tclkit.inf (fileversion/productversion) Also, mark it in: Changes File release affect these too: | | | 1 2 3 4 5 6 7 8 9 10 11 12 | These files need to be changed when bumping revisions: src/eskil.tcl (eskil(diffver)) Makefile (VERSION) eskil.vfs/tclkit.inf (fileversion/productversion) Also, mark it in: Changes File release affect these too: htdocs/changes.wiki htdocs/download.html |
Changes to eskil.vfs/tclkit.inf.
1 | CompanyName "Peter Spjuth" | | | | | 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" FileVersion "2.7" |
Changes to src/eskil.tcl.
1 2 3 4 5 | #!/bin/sh #---------------------------------------------------------- -*- tcl -*- # # Eskil, a Graphical frontend to diff # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/sh #---------------------------------------------------------- -*- tcl -*- # # Eskil, a Graphical frontend to diff # # Copyright (c) 1998-2015, Peter Spjuth (peter.spjuth@gmail.com) # # Usage # Do 'eskil' for interactive mode # Do 'eskil --help' for command line usage # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by |
︙ | ︙ | |||
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 2015-02-24" set ::eskil(thisScript) [file join [pwd] [info script]] namespace import tcl::mathop::+ namespace import tcl::mathop::- namespace import tcl::mathop::* namespace import tcl::mathop::/ |
︙ | ︙ |