mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-11-10 05:04:13 +00:00
discogs_importer: Seed format acetate (#548)
Add support for the newly introduced "Acetate" formats see https://tickets.metabrainz.org/browse/STYLE-2407
This commit is contained in:
parent
0eae2b96ba
commit
6f37f9ee24
1 changed files with 5 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
// @name Import Discogs releases to MusicBrainz
|
||||
// @description Add a button to import Discogs releases to MusicBrainz and add links to matching MusicBrainz entities for various Discogs entities (artist,release,master,label)
|
||||
// @version 2023.11.4.2
|
||||
// @version 2023.11.9.1
|
||||
// @namespace http://userscripts.org/users/22504
|
||||
// @downloadURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/discogs_importer.user.js
|
||||
// @updateURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/discogs_importer.user.js
|
||||
|
@ -830,7 +830,10 @@ function decodeDiscogsJoinphrase(join) {
|
|||
|
||||
const MediaTypes = {
|
||||
'8-Track Cartridge': 'Cartridge',
|
||||
Acetate: 'Vinyl',
|
||||
Acetate: 'Acetate',
|
||||
'Acetate7"': '7" Acetate',
|
||||
'Acetate10"': '10" Acetate',
|
||||
'Acetate12"': '12" Acetate',
|
||||
Betamax: 'Betamax',
|
||||
'Blu-ray': 'Blu-ray',
|
||||
'Blu-ray-R': 'Blu-ray',
|
||||
|
|
Loading…
Reference in a new issue