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

More cache organization

This commit is contained in:
krateng
2022-04-25 04:28:53 +02:00
parent 62abc31930
commit ad50ee866c
6 changed files with 51 additions and 32 deletions

View File

@@ -43,6 +43,7 @@ minor_release_name: "Yeonhee"
- "[Bugfix] No longer releasing database lock during scrobble creation"
- "[Distribution] Experimental arm64 image"
3.0.7:
commit: "62abc319303a6cb6463f7c27b6ef09b76fc67f86"
notes:
- "[Bugix] Improved signal handling"
- "[Bugix] Fixed constant re-caching of all-time stats, significantly increasing page load speed"

View File

@@ -1 +1,2 @@
- "[Performance] Adjusted cache sizes"
- "[Logging] Added cache memory use information"

View File

@@ -6,6 +6,7 @@ FOLDER = "dev/releases"
releases = {}
for f in os.listdir(FOLDER):
if f == "branch.yml": continue
#maj,min = (int(i) for i in f.split('.')[:2])
with open(os.path.join(FOLDER,f)) as fd: