Merge pull request #3913 from Mloc/tg-changelogmerge

Fix changelog merging + fix AddToChangelog.exe
This commit is contained in:
Alex
2014-06-13 09:15:52 +01:00
4 changed files with 1834 additions and 1830 deletions
+4
View File
@@ -1,2 +1,6 @@
# dmm map merger hook
# needs additional setup, see tools/mapmerge/install.txt
*.dmm merge=merge-dmm
# force changelog merging to use union
html/changelog.html merge=union
Binary file not shown.
+1828 -1828
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -190,7 +190,7 @@ namespace AddToChangelog
string[] changelogFile = null;
changelogFile = editBox.Text.Split('\n');
changelogFile = Regex.Split(editBox.Text, "\r\n");
if (changelogFile != null)
{
@@ -218,7 +218,7 @@ namespace AddToChangelog
}
else
{
editBox.Text = String.Join("\n", changelogFile);
editBox.Text = String.Join("\r\n", changelogFile);
ScrollToMarker();
}