Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ea7b0946bb | |||
| b8384166de |
@ -578,6 +578,12 @@ named constants for maintainability.
|
|||||||
- ~vrobbler/apps/webpages/models.py~ (line 290) -- ="url"=
|
- ~vrobbler/apps/webpages/models.py~ (line 290) -- ="url"=
|
||||||
- ~vrobbler/apps/scrobbles/importers/tsv.py~ (line 55) -- ="S"= completion status
|
- ~vrobbler/apps/scrobbles/importers/tsv.py~ (line 55) -- ="S"= completion status
|
||||||
|
|
||||||
|
* Version 53.1 [1/1]
|
||||||
|
** DONE [#A] Error with loading logdict :scrobbles:bug:logdata:
|
||||||
|
:PROPERTIES:
|
||||||
|
:ID: 92d4fa16-4b90-47e0-95ae-472bdca582ce
|
||||||
|
:END:
|
||||||
|
|
||||||
|
|
||||||
* Version 53.0 [5/5]
|
* Version 53.0 [5/5]
|
||||||
** DONE [#B] Add a /trends/ page that shows trends based on scrobble data :feature:trends:scrobbles:
|
** DONE [#B] Add a /trends/ page that shows trends based on scrobble data :feature:trends:scrobbles:
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "vrobbler"
|
name = "vrobbler"
|
||||||
version = "53.0"
|
version = "53.1"
|
||||||
description = ""
|
description = ""
|
||||||
authors = ["Colin Powell <colin@unbl.ink>"]
|
authors = ["Colin Powell <colin@unbl.ink>"]
|
||||||
|
|
||||||
|
|||||||
@ -600,8 +600,9 @@ class Track(ScrobblableMixin):
|
|||||||
def __str__(self):
|
def __str__(self):
|
||||||
return f"{self.title} by {self.artist}"
|
return f"{self.title} by {self.artist}"
|
||||||
|
|
||||||
|
@property
|
||||||
def logdata_cls(self):
|
def logdata_cls(self):
|
||||||
return TrackLogData()
|
return TrackLogData
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def primary_album(self):
|
def primary_album(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user