mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-02-07 15:09:05 +00:00
Scripts: Fix generate_release, don't use markdown for changelogs
This commit is contained in:
parent
0dd02da57c
commit
2b10b9792b
@ -22,7 +22,7 @@ for line in sys.stdin.readlines():
|
||||
Meta["_Misc"] = []
|
||||
Meta["_Misc"].append(line.strip())
|
||||
|
||||
print("# " + sys.argv[1])
|
||||
print(sys.argv[1])
|
||||
|
||||
Category = ""
|
||||
Tag = ""
|
||||
@ -37,11 +37,14 @@ for item in sorted(Meta.items()):
|
||||
Category = category
|
||||
Tag = ""
|
||||
print("")
|
||||
print("## " + category)
|
||||
print("- " + category)
|
||||
if Tag != tag and tag != category:
|
||||
Tag = tag
|
||||
print("")
|
||||
print("### " + tag.split("/")[1])
|
||||
print(" - " + tag.split("/")[1])
|
||||
|
||||
for change in item[1]:
|
||||
print("- " + change)
|
||||
if Tag == "":
|
||||
print(" - " + change)
|
||||
else:
|
||||
print(" - " + change)
|
||||
|
@ -15,7 +15,7 @@ git tag FEX-$2 -a -m "temporary"
|
||||
Scripts/generate_doc_outline.sh > docs/SourceOutline.md
|
||||
git commit docs/SourceOutline.md -m "Docs: Update for release FEX-$2"
|
||||
git tad -d FEX-$2
|
||||
git tag FEX-2104 -a -m "$(Scripts/generate_changelog.sh FEX-$1 FEX-$2)" --edit
|
||||
git tag FEX-$2 -a -m "$(Scripts/generate_changelog.sh FEX-$1 FEX-$2)" --edit
|
||||
|
||||
echo "Inspect if everything went smooth via 'git log -6 FEX-$2' "
|
||||
echo "Inspect if everything went smoothly via 'git log -6 FEX-$2' "
|
||||
echo "if all is good, do 'git push FEX-$2:FEX-$2'"
|
||||
|
Loading…
x
Reference in New Issue
Block a user