You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Convert changelog entries from markdown link format to simplified "* description (username)" format
31
-
sed -i -re 's/^- (.*) \[.*\) \(\[(.*)\]\(.*/* \1 (\2)/' changelog_temp.txt
47
+
# First remove all PR links
48
+
sed -i -re 's/( \()?\[\\#[0-9]+\]\([^)]*\),? ?\)?//g' changelog_temp.txt
49
+
# Remove markdown link formatting from usernames in parentheses
50
+
sed -i -re 's/\[([^]]*)\]\(https:\/\/github\.com\/[^)]*\)/\1/g' changelog_temp.txt
32
51
# Create new changelog format: add version header, remove lines 2-3, format section headers, remove ## headers with following line, prepend to existing changelog
- Fix Channel Time on Incinerate [\#1397](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1397) ([LocalIdentity](https://github.com/LocalIdentity))
11
+
- Fix Turtle Charm Max Block override not working [\#1393](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1393) ([LocalIdentity](https://github.com/LocalIdentity))
12
+
- Fix +1 Corrupted gems not importing with the correct level [\#1398](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1398) ([LocalIdentity](https://github.com/LocalIdentity))
0 commit comments