Skip to content

Commit

Permalink
Let's try this again
Browse files Browse the repository at this point in the history
  • Loading branch information
Vazkii committed Jun 13, 2023
1 parent 89694d8 commit b5d7f93
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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/
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 4 additions & 1 deletion push_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down

0 comments on commit b5d7f93

Please sign in to comment.