Skip to content

Commit 68d4500

Browse files
committedMar 25, 2025
feat(mimetypes): Added musicxml mimetypes
1 parent 652b0cc commit 68d4500

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
 

‎lib/private/Repair/RepairMimeTypes.php

+18
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,20 @@ private function introduceZstType(): IResult|int|null {
337337
return $this->updateMimetypes($updatedMimetypes);
338338
}
339339

340+
/**
341+
* @throws Exception
342+
* @since 32.0.0
343+
*/
344+
private function introduceMusicxmlType(): IResult|int|null {
345+
'mxl' => 'application/vnd.recordare.musicxml',
346+
'musicxml' => 'application/vnd.recordare.musicxml+xml',
347+
];
348+
349+
return $this->updateMimetypes($updatedMimetypes);
350+
}
351+
352+
353+
340354
/**
341355
* Check if there are any migrations available
342356
*
@@ -447,6 +461,10 @@ public function run(IOutput $out): void {
447461
$out->info('Fixed zst mime type');
448462
}
449463

464+
if (version_compare($mimeTypeVersion, '32.0.0.0', '<') && $this->introduceMusicxmlType()) {
465+
$out->info('Fixed musicxml mime type');
466+
}
467+
450468
if (!$this->dryRun) {
451469
$this->appConfig->setValueString('files', 'mimetype_version', $serverVersion);
452470
}

‎resources/config/mimetypemapping.dist.json

+2
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@
129129
"msi": ["application/x-msi"],
130130
"mt2s": ["video/MP2T"],
131131
"mts": ["video/MP2T"],
132+
"musicxml": ["application/vnd.recordare.musicxml+xml"],
133+
"mxl": ["application/vnd.recordare.musicxml"],
132134
"nef": ["image/x-dcraw"],
133135
"nfo": ["text/x-nfo"],
134136
"numbers": ["application/x-iwork-numbers-sffnumbers"],

0 commit comments

Comments
 (0)
Please sign in to comment.