mirror of https://github.com/snes9xgit/snes9x.git
gtk: fix desktop entry mimetype
Current application/x-snes-rom is not an official IANA mimetype: https://www.iana.org/assignments/media-types/application/x-snes-rom The correct mimetype is application/vnd.nintendo.snes.rom: https://www.iana.org/assignments/media-types/application/vnd.nintendo.snes.rom The old mimetype was kept since someone may be using it.
This commit is contained in:
parent
da9409b0e4
commit
92ef5edc15
|
@ -3,7 +3,7 @@ Name=Snes9x
|
||||||
Comment=Super NES Emulator
|
Comment=Super NES Emulator
|
||||||
Type=Application
|
Type=Application
|
||||||
Categories=Game;Emulator;
|
Categories=Game;Emulator;
|
||||||
MimeType=application/x-snes-rom;
|
MimeType=application/vnd.nintendo.snes.rom;application/x-snes-rom;
|
||||||
Exec=snes9x-gtk %F
|
Exec=snes9x-gtk %F
|
||||||
TryExec=snes9x-gtk
|
TryExec=snes9x-gtk
|
||||||
Icon=snes9x
|
Icon=snes9x
|
||||||
|
|
Loading…
Reference in New Issue