diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2012-12-06 17:16:01 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2012-12-06 17:16:01 +0000 |
| commit | 2bfa1b1ab9b08dd1869fb1c47f57c11f2b43acab (patch) | |
| tree | 6ee090f83009108e93f59485077567d3a1db6638 | |
| parent | e36e315d55c42b4d17f3065661a3e8e1a97e1c7f (diff) | |
| download | qmmp-2bfa1b1ab9b08dd1869fb1c47f57c11f2b43acab.tar.gz qmmp-2bfa1b1ab9b08dd1869fb1c47f57c11f2b43acab.tar.bz2 qmmp-2bfa1b1ab9b08dd1869fb1c47f57c11f2b43acab.zip | |
updated flac mime-type (Christian Morales Vega) (Closes issue 567)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3024 90c681e8-e032-0410-971d-27865f9a5e38
| -rw-r--r-- | src/app/qmmp.desktop | 2 | ||||
| -rw-r--r-- | src/plugins/Input/flac/decoderflacfactory.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/app/qmmp.desktop b/src/app/qmmp.desktop index 0d5b9bb46..24d44a371 100644 --- a/src/app/qmmp.desktop +++ b/src/app/qmmp.desktop @@ -22,7 +22,7 @@ Icon=qmmp Terminal=false Type=Application Categories=AudioVideo;Player;Audio;Qt; -MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/x-flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten; +MimeType=application/x-ogg;audio/mp3;audio/mpeg;audio/flac;audio/x-mp3;audio/x-mpeg;audio/x-ms-wma;audio/x-musepack;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mpegurl;audio/x-it;audio/x-mod;audio/x-ape;application/x-cue;x-content/audio-cdda;audio/x-ffmpeg-shorten; X-KDE-StartupNotify=false X-Ayatana-Desktop-Shortcuts=Play;Pause;Stop;Previous;Next; diff --git a/src/plugins/Input/flac/decoderflacfactory.cpp b/src/plugins/Input/flac/decoderflacfactory.cpp index 2687a4697..163889099 100644 --- a/src/plugins/Input/flac/decoderflacfactory.cpp +++ b/src/plugins/Input/flac/decoderflacfactory.cpp @@ -57,7 +57,7 @@ const DecoderProperties DecoderFLACFactory::properties() const properties.name = tr("FLAC Plugin"); properties.filters << "*.flac" << "*.oga"; properties.description = tr("FLAC Files"); - properties.contentTypes << "audio/x-flac"; + properties.contentTypes << "audio/x-flac" << "audio/flac"; properties.shortName = "flac"; properties.protocols << "flac"; properties.hasAbout = true; |
