Compare commits

..

2 Commits

Author SHA1 Message Date
ge
5db22a23d6 bump version 2023-04-22 04:56:37 +03:00
ge
85c7b764ad fix tag setting via 'mee set' 2023-04-22 04:55:53 +03:00
2 changed files with 5 additions and 4 deletions

7
mee.py
View File

@ -29,7 +29,7 @@ Environment:
DEBUG enable debug messages. DEBUG enable debug messages.
""" """
__version__ = "0.2.0" __version__ = "0.2.1"
import os import os
import sys import sys
@ -208,8 +208,9 @@ def cli() -> None:
print(tag) print(tag)
if args["set"] and not args["--custom"]: if args["set"] and not args["--custom"]:
mee.exif_set(key, value) mee.image.delete(mee.storage)
mee.commit(outfile) mee.image.set(key, value)
mee.write_out(outfile)
if args["del"] and not args["--custom"]: if args["del"] and not args["--custom"]:
if args["--all"]: if args["--all"]:

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "mee" name = "mee"
version = "0.2.0" version = "0.2.1"
description = "Minimalistic EXIF Editor." description = "Minimalistic EXIF Editor."
authors = ["ge"] authors = ["ge"]
license = "Unlicense" license = "Unlicense"