feat: bump version to 0.1.4 and set default logo SVG
Upgraded the project version to 0.1.4 in preparation for a new release. Additionally, introduced a default SVG data URL for the NO_LOGO constant in __main__.py, replacing the previously empty string. This change ensures a more meaningful default state for the logo, enhancing UI consistency and avoiding potential errors or unexpected behaviors in scenarios where a logo is required but not specified.
This commit is contained in:
parent
b2cb02c77f
commit
269e155f53
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "kalente"
|
||||
version = "0.1.3"
|
||||
version = "0.1.4"
|
||||
authors = [
|
||||
{ name="Kumi Mitterer", email="kalente@kumi.email" },
|
||||
]
|
||||
|
|
|
@ -13,7 +13,7 @@ from dateutil.parser import parse
|
|||
|
||||
import math
|
||||
|
||||
NO_LOGO = ""
|
||||
NO_LOGO = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"/>'
|
||||
|
||||
|
||||
def get_day(
|
||||
|
|
Loading…
Reference in a new issue