Add support for ordering stickers in custom packs

This commit is contained in:
Tulir Asokan
2020-09-13 17:29:08 +03:00
parent 727b022b23
commit b0509920b4
2 changed files with 9 additions and 1 deletions

View File

@ -42,7 +42,7 @@ async def main(args: argparse.Namespace) -> None:
else:
old_stickers = {sticker["id"]: sticker for sticker in pack["stickers"]}
pack["stickers"] = []
for file in os.listdir(args.path):
for file in sorted(os.listdir(args.path)):
if file.startswith("."):
continue
path = os.path.join(args.path, file)
@ -60,6 +60,12 @@ async def main(args: argparse.Namespace) -> None:
continue
print(f"Processing {file}", end="", flush=True)
name = os.path.splitext(file)[0]
# If the name starts with "number-", remove the prefix
name_split = name.split("-", 1)
if len(name_split) == 2 and name_split[0].isdecimal():
name = name_split[1]
sticker_id = f"sha256:{sha256(image_data).hexdigest()}"
print(".", end="", flush=True)
if sticker_id in old_stickers: