diff --git a/build.properties b/build.properties index 4a2430cab2..1e91ee748a 100644 --- a/build.properties +++ b/build.properties @@ -5,5 +5,5 @@ mod_name=Quark mc_version=1.19.2 mapping_channel=official mod_id=quark -build_number=405 +build_number=404 dir_output=../Build Output/Quark/ diff --git a/changelog.txt b/changelog.txt index 18d551c28e..0b3308f588 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,9 +1,9 @@ +- Added "Sponges Better", which by default quadruples the amount of water blocks a Sponge can suck up and increases the range to 10 blocks - Added an option to Game Nerfs disable TNT dupe machines (Noobulus) - Added an option to Game Nerfs to disable Sand dupe machines - Added config option for Ancient Tomes to skip sanity checks on advancements that should logically not have a tome - Added configs to disable rainbow rune crafting and rune mixing - Added recipes to merge multiple runes together into previously non-renewable colors -- Added Sponges Better, which by default quadruples the amount of water blocks a Sponge can suck up and increases the range to 10 blocks - Fixed Amethyst Note Blocks being too quiet - Fixed Biomes o'Plenty bushes breaking Hoe Harvsting - Fixed Crab lightning interaction cooldown being computed incorrectly diff --git a/push_tag.py b/push_tag.py index 7d25feb426..6675f612b3 100644 --- a/push_tag.py +++ b/push_tag.py @@ -17,7 +17,10 @@ def main(): changelog = '-m "Changelog:" ' with open('changelog.txt', 'r') as f: - changelog = changelog + re.sub(r'(- .+)\n?', '-m "\g<1>" ', f.read()) + content = f.read() + + content = content.replace('"', '\''); + changelog = changelog + re.sub(r'(- .+)\n?', '-m "\g<1>" ', content) os.system('git tag -a release-{}-{}-{} {}'.format(mc_version, version, build_number, changelog))