Bump version to 0.7.0 and add style tag processing for artist tags
All checks were successful
Gitea/kapitanbooru-uploader/pipeline/head This commit looks good

This commit is contained in:
2025-03-16 03:10:20 +01:00
parent 96597a4e2b
commit dcd8e0824f
6 changed files with 36 additions and 6 deletions

View File

@@ -142,7 +142,7 @@ class ImageBrowser(tk.Tk):
super().__init__()
self.title("Kapitanbooru Uploader")
self.geometry("900x600")
self.version = "0.6.0"
self.version = "0.7.0"
self.acknowledged_version = parse_version(self.version)
self.settings = Settings()
@@ -1417,7 +1417,7 @@ class ImageBrowser(tk.Tk):
self.final_tags_text.config(state=tk.NORMAL)
self.final_tags_text.delete("1.0", tk.END)
for tag in final_list:
_, deprecated = process_tag(tag, self.tags_repo)
tag, deprecated = process_tag(tag, self.tags_repo)
# Ustal kolor i podkreślenie na podstawie wyniku
if deprecated is True:
color = "red"