ソースを参照

[scrobbles] Add Food and Geolocation to long play & manual comics

Colin Powell 1 日 前
コミット
cbd46df4bc
1 ファイル変更4 行追加0 行削除
  1. 4 0
      vrobbler/apps/scrobbles/constants.py

+ 4 - 0
vrobbler/apps/scrobbles/constants.py

@@ -18,6 +18,8 @@ PLAY_AGAIN_MEDIA = {
     "bricksets": "BrickSet",
     "trails": "Trail",
     "beers": "Beer",
+    "foods": "Food",
+    "locations": "GeoLocation",
 }
 
 MEDIA_END_PADDING_SECONDS = {
@@ -35,6 +37,7 @@ SCROBBLE_CONTENT_URLS = {
     "-t": ["https://app.todoist.com/app/task/{id}"],
     "-p": ["https://www.ipdb.plus/IPDb/puzzle.php?id="],
     "-l": ["https://brickset.com/sets/"],
+    "-c": ["https://readcomicsonline.ru"],
 }
 
 EXCLUDE_FROM_NOW_PLAYING = ("GeoLocation",)
@@ -50,6 +53,7 @@ MANUAL_SCROBBLE_FNS = {
     "-t": "manual_scrobble_task",
     "-p": "manual_scrobble_puzzle",
     "-l": "manual_scrobble_brickset",
+    "-c": "manual_scrobble_book",
 }