mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 22:50:26 +01:00
Merge pull request #3913 from Mloc/tg-changelogmerge
Fix changelog merging + fix AddToChangelog.exe
This commit is contained in:
@@ -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
File diff suppressed because it is too large
Load Diff
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user