Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph

Merge with stable

Changeset 310a75dc9c7d

Parents 1bdcbb219a63

Parents 9f52addd5854

by Steve Borho

Changes to 2 files · Browse files at 310a75dc9c7d Showing diff from parent 1bdcbb219a63 9f52addd5854 Diff from another changeset...

 
685
686
687
688
689
 
 
690
691
692
693
694
695
696
 
697
698
699
 
743
744
745
746
 
747
748
749
 
786
787
788
 
789
790
791
 
685
686
687
 
 
688
689
690
691
692
693
694
695
 
696
697
698
699
 
743
744
745
 
746
747
748
749
 
786
787
788
789
790
791
792
@@ -685,15 +685,15 @@
  self.repo)   if commandlines is None:   return - files = self.stwidget.getChecked('MAR?!S') - if not (files or brcmd or newbranch): + self.files = self.stwidget.getChecked('MAR?!S') + if not (self.files or brcmd or newbranch):   qtlib.WarningMsgBox(_('No files checked'),   _('No modified files checkmarked for commit'),   parent=self)   self.stwidget.tv.setFocus()   return   if len(repo.parents()) > 1: - files = [] + self.files = []     user = qtlib.getCurrentUsername(self, self.repo, self.opts)   if not user: @@ -743,7 +743,7 @@
  dcmd = []   cmdline = ['commit', '--repository', repo.root, '--verbose',   '--user', user, '--message='+msg] - cmdline += dcmd + brcmd + [repo.wjoin(f) for f in files] + cmdline += dcmd + brcmd + [repo.wjoin(f) for f in self.files]   if len(repo.parents()) == 1:   for fname in self.opts.get('autoinc', '').split(','):   fname = fname.strip() @@ -786,6 +786,7 @@
  self.addMessageToHistory(umsg)   self.setMessage('')   if self.currentAction == 'commit': + shlib.shell_notify(self.files)   self.commitComplete.emit()    class DetailsDialog(QDialog):
 
57
58
59
 
 
 
60
61
62
 
57
58
59
60
61
62
63
64
65
@@ -57,6 +57,9 @@
  shell.SHChangeNotify(shellcon.SHCNE_UPDATEITEM,   shellcon.SHCNF_IDLIST | shellcon.SHCNF_FLUSH,   pidl, None) + shell.SHChangeNotify(shellcon.SHCNE_ASSOCCHANGED, + shellcon.SHCNF_FLUSH, + None, None)     def update_thgstatus(ui, root, wait=False):   '''Rewrite the file .hg/thgstatus