Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

cmenu: add visual diff options

Changeset 4c640a732f38

Parent 650f8493bd53

by Steve Borho

Changes to one file · Browse files at 4c640a732f38 Showing diff from parent 650f8493bd53 Diff from another changeset...

 
70
71
72
 
 
 
73
74
75
 
81
82
83
84
 
85
86
87
88
89
90
 
91
92
93
 
96
97
98
99
 
100
101
102
 
70
71
72
73
74
75
76
77
78
 
84
85
86
 
87
88
89
90
91
92
 
93
94
95
96
 
99
100
101
 
102
103
104
105
@@ -70,6 +70,9 @@
  {"datamine", "Annotate Files",   "Show changeset information per file line",   "menublame.ico", 0}, + {"vdiff", "Visual Diff", + "View changes using GUI diff tool", + "TortoiseMerge.ico", 0},     /* Add new items here */   @@ -81,13 +84,13 @@
 enum menuDescListEntries {   Commit, Init, Clone, Status, Shelve, Add, Revert, Remove, Rename,   Log, Synch, Serve, Update, Recover, Thgstatus, Userconf, Repoconf, - About, Datamine, + About, Datamine, VDiff,   /* Add new items here */   Separator, EndOfList  };    menuDescListEntries RepoNoFilesMenu[] = { - Commit, Status, Shelve, Separator, + Commit, Status, Shelve, VDiff, Separator,   Log, Separator,   Update, Separator,   Synch, Clone, Recover, Serve, Thgstatus, Separator, @@ -96,7 +99,7 @@
 };    menuDescListEntries RepoFilesMenu[] = { - Commit, Status, Add, Revert, Rename, Remove, Separator, + Commit, Status, VDiff, Add, Revert, Rename, Remove, Separator,   Log, Datamine, Separator,   About, EndOfList  };