X Tutup
Skip to content

Commit 6c3fc2f

Browse files
Change mimetype of pxo files
application/x-pixelorama is a better mimetype than image/pxo
1 parent f3ca301 commit 6c3fc2f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Misc/Linux/com.orama_interactive.Pixelorama.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ Keywords=pixel;retro;animation;art;image;2d;sprite;graphics;drawing;editor;
2424
Keywords[el]=pixel;retro;animation;art;image;2d;sprite;graphics;drawing;editor;πίξελ;ρετρό;κίνηση;τέχνη;εικόνα;2δ;γραφικά;ζωγραφιά;ζωγραφική;επεξεργαστής;σχέδιο;
2525
Keywords[ru]=pixel;retro;animation;art;image;2d;sprite;graphics;drawing;editor;пиксель;ретро;анимация;арт;изображение;2д;спрайт;графика;рисование;редактор;
2626
Keywords[uk]=pixel;retro;animation;art;image;2d;sprite;graphics;drawing;editor;піксель;ретро;анімація;арт;зображення;2д;спрайт;графіка;малювання;редактор;
27-
MimeType=image/pxo;image/png;image/bmp;image/vnd.radiance;image/jpeg;image/svg+xml;image/x-tga;image/webp;x-scheme-handler/lospec-palette;
27+
MimeType=application/x-pixelorama;image/png;image/bmp;image/vnd.radiance;image/jpeg;image/svg+xml;image/x-tga;image/webp;x-scheme-handler/lospec-palette;

Misc/Linux/com.orama_interactive.Pixelorama.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
3-
<mime-type type="image/pxo">
3+
<mime-type type="application/x-pixelorama">
44
<comment>Pixelorama Project</comment>
55
<glob pattern="*.pxo"/>
66
</mime-type>

addons/applinks/applinks.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const CUSTOM_MANIFEST_ACTIVITY_ELEMENT := """
2222
<data android:mimeType="image/jpeg"/>
2323
<data android:mimeType="image/webp"/>
2424
<data android:mimeType="image/gif"/>
25-
<data android:mimeType="image/pxo"/>
25+
<data android:mimeType="application/x-pixelorama"/>
2626
<data android:pathPattern=".*\\.pxo"/>
2727
</intent-filter>
2828
"""

src/Autoload/OpenSave.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ func save_pxo_file(
492492
zip_packer.close_file()
493493

494494
zip_packer.start_file("mimetype")
495-
zip_packer.write_file("image/pxo".to_utf8_buffer())
495+
zip_packer.write_file("application/x-pixelorama".to_utf8_buffer())
496496
zip_packer.close_file()
497497

498498
var current_frame := project.frames[project.current_frame]

0 commit comments

Comments
 (0)
X Tutup