Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Corrected URL |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8396022337791a60bb96370f884b2af6 |
User & Date: | peter 2012-07-11 20:07:21.043 |
Context
2012-08-13
| ||
22:18 | Get generic Snit definitions from built-in db in new Nagelfar. check-in: f4104e1b80 user: peter tags: trunk | |
2012-07-11
| ||
20:07 | Corrected URL check-in: 8396022337 user: peter tags: trunk | |
20:04 | Include DiffUtil debug info in About window. check-in: 5451fe2844 user: peter tags: trunk | |
Changes
Changes to src/help.tcl.
︙ | ︙ | |||
79 80 81 82 83 84 85 | -background $bg pack $w.t -side top -expand y -fill both $w.t insert end "A graphical frontend to diff\n\n" $w.t insert end "$::eskil(diffver)\n\n" $w.t insert end "Made by Peter Spjuth\n" $w.t insert end "E-Mail: peter.spjuth@gmail.com\n" | | > | 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | -background $bg pack $w.t -side top -expand y -fill both $w.t insert end "A graphical frontend to diff\n\n" $w.t insert end "$::eskil(diffver)\n\n" $w.t insert end "Made by Peter Spjuth\n" $w.t insert end "E-Mail: peter.spjuth@gmail.com\n" $w.t insert end "\nURL: http://eskil.tcl.tk\n" $w.t insert end "\nTcl version: [info patchlevel]\n" set du $::DiffUtil::version append du " ($::DiffUtil::implementation)" $w.t insert end "DiffUtil version: $du\n" # Provide debug info to help when DiffUtil does not load. if {[info exists ::DiffUtil::DebugLibFile]} { set lf $::DiffUtil::DebugLibFile set exist [file exists $lf] set lf [file join {*}[lrange [file split $lf] end-1 end]] if {$exist} { $w.t insert end " DiffUtil debug: Could not load\n" $w.t insert end " $lf\n" |
︙ | ︙ |