Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Release 2.4 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9d2ca9030d1a85387149a1ad8b8678b5 |
User & Date: | peter 2009-01-07 23:16:06.000 |
Context
2009-01-08
| ||
00:13 | Added backslash plugin and started on plugin doc check-in: 3ad2080098 user: peter tags: trunk | |
2009-01-07
| ||
23:16 | Release 2.4 check-in: 9d2ca9030d user: peter tags: trunk | |
23:10 | Test subversion revision parsing check-in: c99cfccaba user: peter tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 | 2008-05-23 Started on plugins. 2008-04-09 Added color option for unchanged text. 2008-03-07 | > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | Release 2.4 2008-11-19 Bug fix in Clip Diff Capture 2008-11-10 Improved patch parsing. Includ Twapi in windows executable 2008-11-06 Added Capture in Clip Diff on Windows. Handle Rev and Plugin at the same time. 2008-09-23 Added log button for version control. Added commit for Subversion. Added log view for CVS and Subversion. Do not parse GIT revisions. 2008-05-23 Started on plugins. 2008-04-09 Added color option for unchanged text. 2008-03-07 |
︙ | ︙ |
Changes to Eskil.html.
︙ | ︙ | |||
46 47 48 49 50 51 52 | <li>Alignment and block diff functions for tricky diffs.</li> <li>Edit and Save file from diff window.</li> <li><a href="http://wiki.tcl.tk/starkit">Starkit</a> browsing.</li> </ul> <a name="EskilDownload"></a><h3>Download</h3> | | | > > > > | | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | <li>Alignment and block diff functions for tricky diffs.</li> <li>Edit and Save file from diff window.</li> <li><a href="http://wiki.tcl.tk/starkit">Starkit</a> browsing.</li> </ul> <a name="EskilDownload"></a><h3>Download</h3> Version 2.4:<br> Is available from the <a href="https://developer.berlios.de/projects/eskil/">Project page</a> both as a Starkit and as Starpacks for Windows, Linux and Solaris. <p> The license for the application source is GPL but the bundled packages are under the same license as Tcl. <p>More information about <a href="http://wiki.tcl.tk/starkit">Starkits</a> and <a href="http://wiki.tcl.tk/starpack">Starpacks</a>. <a name="EskilScreenshots"></a><h3>Screenshots</h3> <img src="eskil/eskil1.png"> <p> A "zoom" feature for long lines.<p> <img src="eskil/eskil2.png"><br> <a name="EskilChanges"></a><h3>Changes</h3> Changes in v2.4 (2009-01-08):<br> <ul> <li> Completely redesigned directory diff.</li> <li> Added a log viewer in revision mode.</li> <li> Added color option for unchanged text.</li> <li> Plugins support.</li> <li> Support for Subversion, Mercurial and Bazaar.</li> <li> Support commit in Subversion.</li> <li> Added -review for displaying all changes in a tree.</li> <li> Support command line "-" to read a patch from std input.</li> </ul> Changes in v2.3 (2007-12-05):<br> <ul> <li> Added -printpdf command line option.</li> <li> Fixed line numbering in PDF with big line numbers.</li> |
︙ | ︙ |
Changes to Makefile.
1 2 3 4 5 6 | #---------------------------------------------------------------------- # Make file for Eskil #---------------------------------------------------------------------- # $Revision$ #---------------------------------------------------------------------- | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #---------------------------------------------------------------------- # Make file for Eskil #---------------------------------------------------------------------- # $Revision$ #---------------------------------------------------------------------- VERSION = 24 # 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.
︙ | ︙ | |||
35 36 37 38 39 40 41 | # 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 debug 0 | | | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | # 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 debug 0 set diffver "Version 2.4 2009-01-08" set ::thisScript [file join [pwd] [info script]] # Do initalisations for needed packages and globals. # This is not run until needed to speed up command line error reporting. proc Init {} { package require Tk 8.4 catch {package require textSearch} |
︙ | ︙ |