summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-06-18 23:45:37 +0000
committerNorbert Preining <preining@logic.at>2008-06-18 23:45:37 +0000
commit1df51b7e7e4ab51cc9567313e580188d179b6e43 (patch)
tree8475b1ef8efd71ea433ba9e9f9ff2d62a7d5175e /Master
parent20bd8b81dd4db81dac1cc85188271c51ec4d8378 (diff)
add the tlmgr --version output to the tlmgrgui about window
git-svn-id: svn://tug.org/texlive/trunk@8858 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl
index 3373ab88c2d..1f24ecb8ad5 100755
--- a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl
+++ b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl
@@ -270,10 +270,13 @@ our $top = $mw->Frame;
our $quit = $top->Button(-text => ___"quit",
-command => sub { $mw->destroy; exit(0); });
+my $tlmgrrev = `tlmgr --version`;
+chomp($tlmgrrev);
our $about = $top->Button(-text => ___"about",
-command => sub {
$mw->Dialog(-title => ___"about",
-text => "TeX Live Manager GUI
+$tlmgrrev
Copyright 2008 Tomasz Luczak, Norbert Preining
License under the GNU General Public License version 2 or higher
In case of problems, please contact: texlive\@tug.org",