1
0
mirror of https://github.com/git/git.git synced 2024-10-01 02:32:27 +02:00

git-gui: Display the git-gui version in the Help->About dialog.

Now that we know what version git-gui is, the about dialog should
display it to the end-user.  This way users can find out what version
they have before they report a problem or request a feature.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
Shawn O. Pearce 2007-01-20 20:04:02 -05:00
parent 41bdcda373
commit 2f4479fb17

@ -2505,7 +2505,7 @@ proc do_commit {} {
}
proc do_about {} {
global appname copyright
global appname appvers copyright
global tcl_patchLevel tk_patchLevel
set w .about_dialog
@ -2534,8 +2534,9 @@ $copyright" \
-font font_ui
pack $w.desc -side top -fill x -padx 5 -pady 5
set v [exec git --version]
append v "\n\n"
set v {}
append v "$appname version $appvers\n\n"
append v "[exec git --version]\n\n"
if {$tcl_patchLevel eq $tk_patchLevel} {
append v "Tcl/Tk version $tcl_patchLevel"
} else {