[v0.1.0a3] Changed default output file name of make_xml to @code.xml

This commit is contained in:
sup39 2023-07-14 21:49:49 +09:00
parent 125667f474
commit 5ee33d27fb
No known key found for this signature in database
GPG key ID: 14D2E0D21140D260
3 changed files with 4 additions and 2 deletions

View file

@ -1,4 +1,6 @@
# Changelog
## v0.1.0a3
- Changed default output file name of `make_xml` to `@code.xml`
## v0.1.0a2
- Explicitly set the default file encoding to utf8
## v0.1.0a1

View file

@ -1,6 +1,6 @@
[metadata]
name = supSMSGecko
version = 0.1.0a2
version = 0.1.0a3
author = sup39
author_email = sms@sup39.dev
description = A helper library to write Gecko code for Super Mario Sunshine

View file

@ -17,7 +17,7 @@ def build(main, version):
def make_xml(
main, versions=VERSIONS,
info_xml='info.xml', out_xml='out.xml',
info_xml='info.xml', out_xml='@code.xml',
indent=4, tag='code', encoding='utf8',
):
if type(indent) == int: indent = ' '*indent