Bump version to 0.9.9; add Jeanne from Vanitas no Carte LoRA handling
All checks were successful
Gitea/kapitanbooru-uploader/pipeline/head This commit looks good

This commit is contained in:
2026-01-24 14:50:44 +01:00
parent 80f6a678a1
commit bd35239006
5 changed files with 7 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ class Core:
""" """
def __init__(self, settings: Settings, gui_mode: bool = True): def __init__(self, settings: Settings, gui_mode: bool = True):
self.version = "0.9.8" self.version = "0.9.9"
self.acknowledged_version = parse_version(self.version) self.acknowledged_version = parse_version(self.version)
self.settings = settings self.settings = settings
self.tags_repo = TagsRepo(settings) self.tags_repo = TagsRepo(settings)

View File

@@ -1,6 +1,6 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Kapitanbooru Uploader 0.9.8\n" "Project-Id-Version: Kapitanbooru Uploader 0.9.9\n"
"Report-Msgid-Bugs-To: kapitan@mlesniak.pl\n" "Report-Msgid-Bugs-To: kapitan@mlesniak.pl\n"
"POT-Creation-Date: 2025-06-26 18:21+0200\n" "POT-Creation-Date: 2025-06-26 18:21+0200\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"

View File

@@ -1,6 +1,6 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Kapitanbooru Uploader 0.9.8\n" "Project-Id-Version: Kapitanbooru Uploader 0.9.9\n"
"Report-Msgid-Bugs-To: kapitan@mlesniak.pl\n" "Report-Msgid-Bugs-To: kapitan@mlesniak.pl\n"
"POT-Creation-Date: 2025-06-26 18:21+0200\n" "POT-Creation-Date: 2025-06-26 18:21+0200\n"
"Language: pl\n" "Language: pl\n"

View File

@@ -229,6 +229,9 @@ def parse_parameters(param_str:str, tags_repo: TagsRepo) -> str:
elif lora_name=="konosuba-claire-s3-illustriousxl-lora-nochekaiser" and any(tag in tags for tag in ["claire", "claire_(konosuba)"]): elif lora_name=="konosuba-claire-s3-illustriousxl-lora-nochekaiser" and any(tag in tags for tag in ["claire", "claire_(konosuba)"]):
tags.discard("claire") tags.discard("claire")
tags.add("claire_(konosuba)") tags.add("claire_(konosuba)")
elif lora_name=="Jeanne_ILXL" and "jeanne" in tags:
tags.discard("jeanne")
tags.add("jeanne_(vanitas_no_carte)")
tags = set([WHITESPACE_PATTERN.sub("_", param.strip()) for param in tags]) tags = set([WHITESPACE_PATTERN.sub("_", param.strip()) for param in tags])
tags = set( tags = set(
[ [

View File

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "kapitanbooru-uploader" name = "kapitanbooru-uploader"
version = "0.9.8" version = "0.9.9"
description = "A GUI application for uploading images to KapitanBooru" description = "A GUI application for uploading images to KapitanBooru"
authors = [{ name = "Michał Leśniak", email = "kapitan@mlesniak.pl" }] authors = [{ name = "Michał Leśniak", email = "kapitan@mlesniak.pl" }]
dependencies = [ dependencies = [