From c571ffbf077d2402238181ef10c9f0689ad8cf3a Mon Sep 17 00:00:00 2001 From: krateng Date: Mon, 10 Feb 2025 04:29:15 +0100 Subject: [PATCH] Version bump --- dev/releases/3.2.yml | 8 +++++++- maloja/__pkginfo__.py | 2 +- maloja/database/__init__.py | 1 - pyproject.toml | 5 +++-- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/dev/releases/3.2.yml b/dev/releases/3.2.yml index 1968394..30b762b 100644 --- a/dev/releases/3.2.yml +++ b/dev/releases/3.2.yml @@ -48,4 +48,10 @@ minor_release_name: "Nicole" 3.2.4: notes: - "[Architecture] Removed daemonization capabilities" - - "[Technical] Pinned dependencies" \ No newline at end of file + - "[Architecture] Moved import to main server process" + - "[Feature] Implemented support for ghan's csv Last.fm export" + - "[Performance] Debounced search" + - "[Bugfix] Fixed stuck scrobbling from Navidrome" + - "[Bugfix] Fixed missing image mimetype" + - "[Technical] Pinned dependencies" + - "[Technical] Upgraded Python and Alpine" \ No newline at end of file diff --git a/maloja/__pkginfo__.py b/maloja/__pkginfo__.py index bed6b61..7eaa792 100644 --- a/maloja/__pkginfo__.py +++ b/maloja/__pkginfo__.py @@ -4,7 +4,7 @@ # you know what f*ck it # this is hardcoded for now because of that damn project / package name discrepancy # i'll fix it one day -VERSION = "3.2.3" +VERSION = "3.2.4" HOMEPAGE = "https://github.com/krateng/maloja" diff --git a/maloja/database/__init__.py b/maloja/database/__init__.py index 108e3b6..c134fc4 100644 --- a/maloja/database/__init__.py +++ b/maloja/database/__init__.py @@ -948,7 +948,6 @@ def start_db(): # import scrobbles from ..proccontrol.tasks.import_scrobbles import import_scrobbles #lmao this codebase is so fucked - print(data_dir['import']()) for f in os.listdir(data_dir['import']()): if f != 'dummy': import_scrobbles(data_dir['import'](f)) diff --git a/pyproject.toml b/pyproject.toml index 4406bdd..8bd40ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "malojaserver" -version = "3.2.3" +version = "3.2.4" description = "Self-hosted music scrobble database" readme = "README.md" requires-python = "==3.12.*" @@ -65,7 +65,8 @@ build =[ run = [ "python3", "py3-lxml", - "tzdata" + "tzdata", + "libmagic" ] opt = [ "vips"