部分API小幅度新增内容

This commit is contained in:
2024-10-22 00:19:39 +08:00
parent 794ee6d080
commit e4304dc3d1
6 changed files with 18 additions and 18 deletions

View File

@@ -22,7 +22,7 @@ The Licensor of Musicreater("this project") is Eilles Wan, bgArray.
# 若需转载或借鉴 许可声明请查看仓库目录下的 License.md
__version__ = "2.2.1"
__version__ = "2.2.2"
__vername__ = "部分API小幅度新增内容"
__author__ = (
("金羿", "Eilles Wan"),

View File

@@ -147,7 +147,7 @@ def to_addon_pack_in_score(
os.remove(f"{dist_path}/{midi_cvt.music_name}.mcpack")
compress_zipfile(
f"{dist_path}/temp/",
f"{dist_path}/{midi_cvt.music_name}.mcpack",
f"{dist_path}/{midi_cvt.music_name}[score].mcpack",
)
shutil.rmtree(f"{dist_path}/temp/")
@@ -350,7 +350,7 @@ def to_addon_pack_in_delay(
os.remove(f"{dist_path}/{midi_cvt.music_name}.mcpack")
compress_zipfile(
f"{dist_path}/temp/",
f"{dist_path}/{midi_cvt.music_name}.mcpack",
f"{dist_path}/{midi_cvt.music_name}[delay].mcpack",
)
shutil.rmtree(f"{dist_path}/temp/")
@@ -557,7 +557,7 @@ def to_addon_pack_in_repeater(
os.remove(f"{dist_path}/{midi_cvt.music_name}.mcpack")
compress_zipfile(
f"{dist_path}/temp/",
f"{dist_path}/{midi_cvt.music_name}.mcpack",
f"{dist_path}/{midi_cvt.music_name}[repeater].mcpack",
)
shutil.rmtree(f"{dist_path}/temp/")
@@ -677,7 +677,7 @@ def to_addon_pack_in_repeater_divided_by_instrument(
os.remove(f"{dist_path}/{midi_cvt.music_name}.mcpack")
compress_zipfile(
f"{dist_path}/temp/",
f"{dist_path}/{midi_cvt.music_name}.mcpack",
f"{dist_path}/{midi_cvt.music_name}[repeater-div].mcpack",
)
shutil.rmtree(f"{dist_path}/temp/")

View File

@@ -117,7 +117,7 @@ def to_BDX_file_in_score(
_bytes += cmdBytes
with open(
os.path.abspath(os.path.join(dist_path, f"{midi_cvt.music_name}.bdx")),
os.path.abspath(os.path.join(dist_path, f"{midi_cvt.music_name}[score].bdx")),
"ab+",
) as f:
f.write(brotli.compress(_bytes + b"XE"))
@@ -212,7 +212,7 @@ def to_BDX_file_in_delay(
_bytes += cmdBytes
with open(
os.path.abspath(os.path.join(dist_path, f"{midi_cvt.music_name}.bdx")),
os.path.abspath(os.path.join(dist_path, f"{midi_cvt.music_name}[delay].bdx")),
"ab+",
) as f:
f.write(brotli.compress(_bytes + b"XE"))

View File

@@ -67,7 +67,7 @@ def to_mcstructure_file_in_delay(
)
with open(
os.path.abspath(os.path.join(dist_path, f"{midi_cvt.music_name}.mcstructure")),
os.path.abspath(os.path.join(dist_path, f"{midi_cvt.music_name}[delay].mcstructure")),
"wb+",
) as f:
struct.dump(f)
@@ -138,7 +138,7 @@ def to_mcstructure_file_in_score(
)
with open(
os.path.abspath(os.path.join(dist_path, f"{midi_cvt.music_name}.mcstructure")),
os.path.abspath(os.path.join(dist_path, f"{midi_cvt.music_name}[score].mcstructure")),
"wb+",
) as f:
struct.dump(f)
@@ -197,7 +197,7 @@ def to_mcstructure_file_in_repeater(
)
with open(
os.path.abspath(os.path.join(dist_path, f"{midi_cvt.music_name}.mcstructure")),
os.path.abspath(os.path.join(dist_path, f"{midi_cvt.music_name}[repeater].mcstructure")),
"wb+",
) as f:
struct.dump(f)
@@ -262,7 +262,7 @@ def to_mcstructure_files_in_repeater_divided_by_instruments(
os.path.abspath(
os.path.join(
dist_path,
"{}_{}.mcstructure".format(
"{}[repeater-div]_{}.mcstructure".format(
midi_cvt.music_name, inst.replace(".", "-")
),
)