Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9.1, 0.9.1.1, and 0.9.2

stable history: change window title to 'Repository Explorer'

Uses the exact same string as menuthg.py, so no new translations are required.
To be consistent, 'hgtk explorer' now launches the changelog tool as well.

Closes #715

Changeset 3b544da2b7a9

Parent 07587b97f481

by Steve Borho

Changes to 2 files · Browse files at 3b544da2b7a9 Showing diff from parent 07587b97f481 Diff from another changeset...

 
652
653
654
655
 
656
657
658
 
652
653
654
 
655
656
657
658
@@ -652,7 +652,7 @@
  "^datamine|annotate|blame|grep": (datamine, [], _('hgtk datamine')),   "^hgignore|ignore|filter": (hgignore, [], _('hgtk hgignore [FILE]')),   "^init": (hginit, [], _('hgtk init [DEST]')), - "^log|history": (log, + "^log|history|explorer": (log,   [('l', 'limit', '', _('limit number of changes displayed'))],   _('hgtk log [OPTIONS] [FILE]')),   "^merge": (merge,
 
88
89
90
91
 
92
93
94
 
88
89
90
 
91
92
93
94
@@ -88,7 +88,7 @@
  return live     def get_title(self): - str = _('%s - changelog') % self.get_reponame() + str = self.get_reponame() + ' - ' + _('Repository Explorer')   if self.bfile:   str += _(' (Bundle Preview)')   return str