Skip to content

Commit ada7725

Browse files
committed
Fix #523: metadata:url was not allowed for base sets
1 parent bc77f89 commit ada7725

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

bananas_api/new_upload/readers/base_graphics.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class BaseGraphics(BaseSet):
1313
"description": str,
1414
"palette": str,
1515
"blitter": str,
16+
"url": str,
1617
},
1718
"files": {
1819
"base": str,

bananas_api/new_upload/readers/base_music.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class BaseMusic(BaseSet):
1111
"shortname": str,
1212
"version": str,
1313
"description": str,
14+
"url": str,
1415
},
1516
"files": {
1617
"theme": str,

bananas_api/new_upload/readers/base_sounds.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class BaseSounds(BaseSet):
1111
"shortname": str,
1212
"version": str,
1313
"description": str,
14+
"url": str,
1415
},
1516
"files": {
1617
"samples": str,

regression/nosound.obs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = NoSound
33
shortname = NULL
44
version = 0
55
description = A sound pack without any sounds
6+
url = http://localhost
67

78
[files]
89
samples = nosound.cat

0 commit comments

Comments
 (0)