Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Release 2.0.6. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
91c574906ee78138567c05a08fcbc462 |
User & Date: | peter 2004-10-19 18:45:47.000 |
Context
2004-10-21
| ||
21:37 | Made merge window variables separate per toplevel. Allow cursor keys to be used in merge text widget. Esc releases focus. Polished Merge Window. Removed Diff Options field since it was not used anymore. Clean Clip Diff data from CR since they disturbed diff. Added default x-padding of 5 to buttons. check-in: 06902f405e user: peter tags: trunk | |
2004-10-19
| ||
18:45 | Release 2.0.6. check-in: 91c574906e user: peter tags: trunk | |
18:37 | Added wcb package. check-in: 2140d0ec1a user: peter tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 | Release 2.0.5 2004-08-20 Fixed a bug in ClearCase -r parsing. Adjusted rev entries. 2004-08-18 | > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | Release 2.0.6 2004-10-19 Added Ignore Digit option. Bug fix in ClearCase -r parsing. 2004-09-06 Protect Edit mode a bit from bad users. Release 2.0.5 2004-08-20 Fixed a bug in ClearCase -r parsing. Adjusted rev entries. 2004-08-18 |
︙ | ︙ |
Changes to Eskil.html.
︙ | ︙ | |||
41 42 43 44 45 46 47 | <li>"Clip diff"</li> <li>Alignment and block diff functions for tricky diffs.</li> <li>Edit and Save file from diff window.</li> </ul> <a name="EskilDownload"></a><h3>Download</h3> | | > > > > > > | 41 42 43 44 45 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 | <li>"Clip diff"</li> <li>Alignment and block diff functions for tricky diffs.</li> <li>Edit and Save file from diff window.</li> </ul> <a name="EskilDownload"></a><h3>Download</h3> Version 2.0.6:<br> As a <a href="eskil/eskil.kit">Starkit</a> <p> <a href="eskil/eskil.linux">Executable Starpack for Linux (x86)</a><br> <a href="eskil/eskil.solaris">Executable Starpack for Solaris (sparc)</a><br> <a href="eskil/eskil.exe">Executable Starpack for Windows</a><br> <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.0.6 (2004-10-19):<br> <ul> <li> Fixed bug in -r for ClearCase.</li> <li> Edit Mode made more robust.</li> </ul> <br> Changes in v2.0.5 (2004-08-20):<br> <ul> <li> Option -r can now be used with ClearCase diff.</li> <li> Edit Mode allows simple editing in the diff display and saving.</li> </ul> <br> Changes in v2.0.4 (2004-06-17):<br> |
︙ | ︙ |
Changes to src/eskil.tcl.
︙ | ︙ | |||
48 49 50 51 52 53 54 | # Add a dummy if it does not exist. proc addBalloon {args} {} } else { namespace import -force psballoon::addBalloon } set debug 0 | | | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | # Add a dummy if it does not exist. proc addBalloon {args} {} } else { namespace import -force psballoon::addBalloon } set debug 0 set diffver "Version 2.0.6 2004-10-19" set thisScript [file join [pwd] [info script]] set thisDir [file dirname $thisScript] # Follow any link set tmplink $thisScript while {[file type $tmplink] eq "link"} { set tmplink [file readlink $tmplink] |
︙ | ︙ |