dist/macos: put the date in the short version string

This commit is contained in:
Mitchell Hashimoto
2023-12-21 08:45:24 -08:00
parent 080bd530f4
commit 19ca893e10

View File

@ -62,12 +62,12 @@ elem.text = now.strftime("%a, %d %b %Y %H:%M:%S %z")
elem = ET.SubElement(item, "sparkle:version") elem = ET.SubElement(item, "sparkle:version")
elem.text = build elem.text = build
elem = ET.SubElement(item, "sparkle:shortVersionString") elem = ET.SubElement(item, "sparkle:shortVersionString")
elem.text = commit elem.text = f"{commit} ({now.strftime('%Y-%m-%d')})"
elem = ET.SubElement(item, "sparkle:minimumSystemVersion") elem = ET.SubElement(item, "sparkle:minimumSystemVersion")
elem.text = "12.0.0" elem.text = "12.0.0"
elem = ET.SubElement(item, "description") elem = ET.SubElement(item, "description")
elem.text = f""" elem.text = f"""
<p>Automated build from commit <code>{commit}</code>.</p> <p>Automated build from commit <code>{commit}</code> on {now.strftime('%Y-%m-%d')}.</p>
<p> <p>
These are automatic per-commit builds generated from the main Git branch. These are automatic per-commit builds generated from the main Git branch.
We do not generate any release notes for these builds. You can view the full We do not generate any release notes for these builds. You can view the full