Improves Fixup, Expand, Detail and Ignore Tags.
Adds Priority Tag.
A lot of git stuff below.
[FIXUP]
[[fixes]]
sha = "2cfdcb10e2b2746ce7dc27b7864bd40c3005a638"
newBody = '''
[EXPAND]
[[messages]]
messageBody = """
[IGNORE]
checks = { compareBefore = "1.7-alpha-2" } # Only apply this if the commit being compared against is 1.7-alpha-2 or newer
[IGNORE]
[BREAKING]
[DETAILS]
details = [
\"Lots of QoL, Balance Changes and Bug Fixes from both GT 2.8 Update and Nomi Labs... Check your Recipes!\",
\"**Please DO NOT revert any saves that have been loaded in this release to 1.7-alpha-2a or prior!**\",
]
[DETAILS]
[PRIORITY]
priority = 20
[PRIORITY]
"""
[[messages]]
messageBody = """
[COMBINE]
commit = \"bd58b9072f45d647734ae66168cbd27bf9b2f220\"
[COMBINE]
[NO CATEGORY]
"""
[[messages]]
messageBody = """
[FEATURE]
[QOL]
[DETAILS]
details = [
\"Removes Anvil XP Scaling\",
\"Custom Items, Blocks, and Multiblocks Improvements\",
\"EIO Capacitor and Custom Capacitor Improvements\",
\"Draconic Energy Core Improvements\",
\"New ArchitectureCraft GUI for Sawbench & New Slopes (Comes from [GTNH's Fork](https://github.com/GTNewHorizons/ArchitectureCraft))\",
\"Removes Bogo Feature in Bogo Sort\",
\"Red Coal NBT Removal\",
[\"Automatically Removed for all Red Coals Items, in AE2 Patterns and Elsewhere!\"],
]
[DETAILS]
"""
[[messages]]
messageBody = """
[QB]
[DETAILS]
detail = \"Genesis is Now Slowly Revealed\"
[DETAILS]
"""
[[messages]]
messageBody = """
[BUG]
[DETAILS]
details = [
\"Fixes NBT Recipe Problems\",
\"Fixes Recycling Recipes\",
\"Fixes HM Assembly Line Duplicate Recipe for UV Field Generator (#517)\",
\"Fixes Some HM Assembly Line Recipes not having Research\",
\"Fixes IV Quad/Nonuple Hatches & Buses being Uncraftable (#550)\",
\"Fixes Missing ABS Recipes\",
\"Fixes Language Override for Rhodium-Lumium Palladium\",
\"Fixes Oxygen, Hydrogen and Nitrogen showing up as a Null Texture in JEI/HEI\",
\"Fixes Multiblock Searching in JEI (#519)\",
\"Removes Vanilla Ores from JEI\",
\"Fixes Buckets showing up in JEI\",
]
[DETAILS]
[IGNORE]
checks = { compareBefore = "1.7-alpha-2" } # Only apply this if the commit being compared against is 1.7-alpha-2 or newer
[IGNORE]
"""
[[messages]]
messageBody = """
[BUG]
[DETAILS]
details = [
\"Fixes NBT Recipe Problems\",
\"Fixes Recycling Recipes\",
\"Fixes Oxygen, Hydrogen and Nitrogen showing up as a Null Texture in JEI/HEI\",
\"Fixes Multiblock Searching in JEI (#519)\",
\"Removes Vanilla Ores from JEI\",
\"Addresses Buckets showing up in JEI\",
]
[DETAILS]
[IGNORE]
checks = { compareAfter = "1.7-alpha-2" } # Only apply this if the commit being compared against is 1.7-alpha-2 or older
[IGNORE]
"""
[[messages]]
messageBody = """
[BALANCING]
[DETAILS]
details = [
\"Added Cobaltite to the T3 Micro Miner\",
\"Adds Recipe for Dragon Breath with High-Octane Gasoline (#629)\",
\"Rebalance Processing Array Recipe (#501)\",
\"Reduces Cost of Thermal Fluxbore (#392)\",
[
\"Drill Head is now Cheaper, only requiring 5x Nomiquarters (25) instead of 5x Nomidollars (100) (Normal Mode)\",
\"Fluxbore Head is now Cheaper, being Vanadium Steel Drill Head instead of Stainless Steel (Hard Mode)\",
],
]
[DETAILS]
"""
[[messages]]
messageBody = "[INTERNAL]"
[EXPAND]
'''
[[fixes]]
sha = "bd58b9072f45d647734ae66168cbd27bf9b2f220"
newTitle = "Update GT and Related Mods for 1.7"
newBody = '''
[EXPAND]
[[messages]]
messageTitle = "Update GT to 2.8+, add Nomi Labs"
messageBody = """
[BREAKING]
[DETAILS]
details = [
\"**Please DO NOT revert any saves that have been loaded in this release to 1.6.1a or prior!**\",
\"**Lots of Recipes have been moved to the Assembly Line, and now require Assembly Line Research.**\",
\"Adds Assembly Line Research\",
\"Adds ME Hatches and Buses, for combining Multiblocks with AE Networks\",
\"Adds Filtered Output Hatches\",
\"Adds EU Multiblock Power Storage\",
\"Adds Multiblock Transformer and Laser Power Transfer\",
\"Adds Long Distance Pipes\",
\"Creating Waypoints in the Prospector\",
\"Fixing many Bugs\",
\"And many more!\"
]
[DETAILS]
[PRIORITY]
priority = 10
[PRIORITY]
"""
[[messages]]
messageTitle = "Multiblock Changes"
messageBody = """
[BREAKING]
[DETAILS]
details = [
\"Multiblocks accept a new **maximum** of 2 Energy Hatches.\",
\"All Custom Multiblocks, such as Naquadah Reactors and Multiverse Projectors, now have **minimum casing requirements** and a **maintenance hatch**.\",
\"Some Custom Multiblocks now have Distinct Mode\",
\"All Custom Multiblocks now have custom Front Overlays\",
\"Reworked & Improved Multiblock UIs\"
]
[DETAILS]
[PRIORITY]
priority = 5
[PRIORITY]
"""
[EXPAND]
'''
[FIXUP]
[SKIP]
This improves the Build CI/CD System and the Release Commit Workflows.
The CD system now builds and zips the pack in parallel, increasing the speed twofold.
The CI system now does not produce double zips, but remains the same speed, thanks to parallel processing.
The CI system now also changes server.properties and random patches config files for the build, and the buildscript has been edited for that.
Since the CI system replaces the nightly task, the nightly workflow has been deleted. The makeArtifactNames task is now used, and has been changed to remove usage of deprecated features.
The release commit workflows now supports updating files without version input, and the version is grabbed from versions.txt.' The code for the release commit workflows has also been greatly cleaned up.
The changes made to the random patches template files have also been updated. The changes made incorrectly to the issue templates in #487 have also been fixed.
The README badges have also been changed. The issue badge has been replaced by a nightly builds badge.
Finally, this changes the forge download process to try again if the response is null, resulting in a decrease, to almost none, test build pack and build pack failures.
[INTERNAL]
[IGNORE]
checks = { compareNot = "1.7-alpha-1" }
[IGNORE]
Allows adding info/details to mod changes section of the changelog.
Because this uses numbers, the TOML parser has been changed. The old parser produced weird artifacts when processing numbers.
Refactor:
For most tags (except for ignore), allows for optional lists.
[MOD INFO]
[[infos]]
projectID = 620262
info = "Replaced by Alfheim Lighting Engine"
[[infos]]
projectID = 230976
info = "Replaced by Universal Tweaks"
[[infos]]
projectID = 271492
info = "Replaced by Universal Tweaks"
[[infos]]
projectID = 271740
info = "Replaced by Universal Tweaks"
[[infos]]
projectID = 278385
info = "Replaced by Universal Tweaks"
[[infos]]
projectID = 278494
info = "Replaced by Vintage Fix"
[[infos]]
projectID = 280510
info = "Replaced by Universal Tweaks"
[[infos]]
projectID = 284904
info = "Replaced by Universal Tweaks"
[[infos]]
projectID = 288885
info = "Replaced by Universal Tweaks"
[MOD INFO]
[FEATURE]
/* Description: */
Also moves all nodejs stuff into `tools` package.
Also adds a basic `CONTRIBUTING.md` file.
Superseeds https://github.com/Nomi-CEu/Nomi-CEu/pull/431, which was closed as the branch needed to be renamed, due to the last two items on this list.
TODO:
- [x] Make it only run on master repo.
- [x] Remove qb-lang-revamp branch from the events
- [x] Allow workflow to run on all branches starting with test_buildscript?
/* Commits: */
* Buildscript Changes
* Make Contributing Docs a .md file
* updateqb.yml v1
* Test QB change
* Add lang file to commit file list
* Another Test Change
* Test with only lang path, + `./` at beginning of path
* Test QB change
* updateqb.yml v3
* Test QB Change
* Add some debug settings
* Remove debug, branch input. Switch to auto-commit action
* Make activate: branches prefix `test_buildscript`, commit author GHA bot
* Add branch prefix note into CONTRIBUTING.md
* Make workflow only run if on master repo