1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00

Version bump

This commit is contained in:
krateng 2022-04-05 16:00:25 +02:00
parent 72b74eb27e
commit ec5723d2b3
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ def loadexternal(filename):
msg = f"Skipped {result['CONFIDENT_SKIP'] + result['UNCERTAIN_SKIP']} scrobbles"
if result['UNCERTAIN_SKIP'] > 0:
warningmsg = col['orange'](f"{result['UNCERTAIN_SKIP']} Warning{'s' if result['UNCERTAIN_SKIP'] != 1 else ''}!")
warningmsg = col['indianred'](f"{result['UNCERTAIN_SKIP']} Warning{'s' if result['UNCERTAIN_SKIP'] != 1 else ''}!")
msg += f" ({warningmsg})"
print(msg)

View File

@ -14,7 +14,7 @@ outputs = {
"UNCERTAIN_IMPORT": lambda msg: print(col['orange'](msg)),
#"CONFIDENT_SKIP": lambda msg: print(col['ffcba4'](msg)),
"CONFIDENT_SKIP": lambda msg: None,
"UNCERTAIN_SKIP": lambda msg: print(col['orange'](msg)),
"UNCERTAIN_SKIP": lambda msg: print(col['indianred'](msg)),
"FAIL": lambda msg: print(col['red'](msg)),
}

View File

@ -1,6 +1,6 @@
[project]
name = "malojaserver"
version = "2.14.7"
version = "2.14.8"
description = "Self-hosted music scrobble database"
readme = "./README.md"
requires-python = ">=3.6"