Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.3, 2.0, and 2.0.1

stable icons: build icons_rc.py which includes all files under /icons

Changeset cb9aa4e17b8f

Parent 517b499788cc

by Yuya Nishihara

Changes to 4 files · Browse files at cb9aa4e17b8f Showing diff from parent 517b499788cc Diff from another changeset...

Change 1 of 1 Show Entire File .hgignore Stacked
 
38
39
40
41
 
42
 
38
39
40
 
41
42
@@ -38,5 +38,5 @@
 *~  tortoisehg/util/__version__.py  *.wixobj -tortoisehg/hgqt/workbench_rc.py +tortoisehg/hgqt/*_rc.py  tortoisehg/hgqt/*_ui.py
Change 1 of 1 Show Entire File setup.py Stacked
 
193
194
195
 
 
 
196
197
198
 
193
194
195
196
197
198
199
200
201
@@ -193,6 +193,9 @@
  basepath = join(os.path.dirname(__file__), 'tortoisehg', 'hgqt')   self.build_rc(os.path.join(basepath, 'workbench_rc.py'),   os.path.join(basepath, 'icons'), '/icons') + self.build_rc(os.path.join(basepath, 'icons_rc.py'), + os.path.join(os.path.dirname(__file__), 'icons'), + '/icons')   for dirpath, _, filenames in os.walk(basepath):   for filename in filenames:   if filename.endswith('.ui'):
Change 1 of 1 Show Entire File thg Stacked
 
42
43
44
 
45
46
47
 
42
43
44
45
46
47
48
@@ -42,6 +42,7 @@
 from mercurial import demandimport  demandimport.ignore.append('win32com.shell')  demandimport.ignore.append('tortoisehg.util.config') +demandimport.ignore.append('icons_rc')  demandimport.ignore.append('workbench_rc')  demandimport.enable()  from mercurial import ui as uimod, util
 
1
 
2
 
 
1
2
3
4
@@ -1,2 +1,4 @@
 # load icon resources +import icons_rc  import workbench_rc +# TODO: remove workbench_rc after unifying icons directory