Version bump

This commit is contained in:
krateng 2025-02-10 04:29:15 +01:00
parent 767a6bca26
commit c571ffbf07
4 changed files with 11 additions and 5 deletions

View File

@ -48,4 +48,10 @@ minor_release_name: "Nicole"
3.2.4: 3.2.4:
notes: notes:
- "[Architecture] Removed daemonization capabilities" - "[Architecture] Removed daemonization capabilities"
- "[Technical] Pinned dependencies" - "[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"

View File

@ -4,7 +4,7 @@
# you know what f*ck it # you know what f*ck it
# this is hardcoded for now because of that damn project / package name discrepancy # this is hardcoded for now because of that damn project / package name discrepancy
# i'll fix it one day # i'll fix it one day
VERSION = "3.2.3" VERSION = "3.2.4"
HOMEPAGE = "https://github.com/krateng/maloja" HOMEPAGE = "https://github.com/krateng/maloja"

View File

@ -948,7 +948,6 @@ def start_db():
# import scrobbles # import scrobbles
from ..proccontrol.tasks.import_scrobbles import import_scrobbles #lmao this codebase is so fucked 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']()): for f in os.listdir(data_dir['import']()):
if f != 'dummy': if f != 'dummy':
import_scrobbles(data_dir['import'](f)) import_scrobbles(data_dir['import'](f))

View File

@ -1,6 +1,6 @@
[project] [project]
name = "malojaserver" name = "malojaserver"
version = "3.2.3" version = "3.2.4"
description = "Self-hosted music scrobble database" description = "Self-hosted music scrobble database"
readme = "README.md" readme = "README.md"
requires-python = "==3.12.*" requires-python = "==3.12.*"
@ -65,7 +65,8 @@ build =[
run = [ run = [
"python3", "python3",
"py3-lxml", "py3-lxml",
"tzdata" "tzdata",
"libmagic"
] ]
opt = [ opt = [
"vips" "vips"