Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b541e1084d | |||
| c9b9da4abc |
@ -86,7 +86,7 @@ fetching and simple saving.
|
|||||||
**** Bookmarklet
|
**** Bookmarklet
|
||||||
*** Metadata sources
|
*** Metadata sources
|
||||||
**** Scraper
|
**** Scraper
|
||||||
* Backlog [0/12] :vrobbler:project:personal:
|
* Backlog [0/13] :vrobbler:project:personal:
|
||||||
** TODO [#C] Create small utility to clean up tracks scrobbled with wonky playback times :vrobbler:personal:bug:music:scrobbles:
|
** TODO [#C] Create small utility to clean up tracks scrobbled with wonky playback times :vrobbler:personal:bug:music:scrobbles:
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
:ID: 702462cf-d54b-48c6-8a7c-78b8de751deb
|
:ID: 702462cf-d54b-48c6-8a7c-78b8de751deb
|
||||||
@ -512,6 +512,12 @@ epiodes up in three parts, while they were always broadcast three-in-one, and
|
|||||||
that's how IMDB lists them. Thus, the IMDB ID means nothing, and the videos end
|
that's how IMDB lists them. Thus, the IMDB ID means nothing, and the videos end
|
||||||
up unenriched.
|
up unenriched.
|
||||||
|
|
||||||
|
* Version 47.1 [1/1]
|
||||||
|
** DONE [#A] Untangle the sports migrations errors :sports:bug:migrations:
|
||||||
|
:PROPERTIES:
|
||||||
|
:ID: 4d50ca2e-f45b-dde8-e3c9-cd84f353b349
|
||||||
|
:END:
|
||||||
|
|
||||||
* Version 47.0 [1/1]
|
* Version 47.0 [1/1]
|
||||||
** DONE [#B] Change sports scrobbling a bit :feature:sports:scrobbles:
|
** DONE [#B] Change sports scrobbling a bit :feature:sports:scrobbles:
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "vrobbler"
|
name = "vrobbler"
|
||||||
version = "47.0"
|
version = "47.1"
|
||||||
description = ""
|
description = ""
|
||||||
authors = ["Colin Powell <colin@unbl.ink>"]
|
authors = ["Colin Powell <colin@unbl.ink>"]
|
||||||
|
|
||||||
|
|||||||
@ -108,20 +108,4 @@ class Migration(migrations.Migration):
|
|||||||
migrations.RunPython(
|
migrations.RunPython(
|
||||||
migrate_sport_event_data, reverse_code=migrations.RunPython.noop
|
migrate_sport_event_data, reverse_code=migrations.RunPython.noop
|
||||||
),
|
),
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="sportevent",
|
|
||||||
name="home_team",
|
|
||||||
),
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="sportevent",
|
|
||||||
name="away_team",
|
|
||||||
),
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="sportevent",
|
|
||||||
name="player_one",
|
|
||||||
),
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="sportevent",
|
|
||||||
name="player_two",
|
|
||||||
),
|
|
||||||
]
|
]
|
||||||
|
|||||||
@ -0,0 +1,27 @@
|
|||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("sports", "0021_team_logo"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RemoveField(
|
||||||
|
model_name="sportevent",
|
||||||
|
name="home_team",
|
||||||
|
),
|
||||||
|
migrations.RemoveField(
|
||||||
|
model_name="sportevent",
|
||||||
|
name="away_team",
|
||||||
|
),
|
||||||
|
migrations.RemoveField(
|
||||||
|
model_name="sportevent",
|
||||||
|
name="player_one",
|
||||||
|
),
|
||||||
|
migrations.RemoveField(
|
||||||
|
model_name="sportevent",
|
||||||
|
name="player_two",
|
||||||
|
),
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user