diff --git a/CHANGES b/CHANGES index c69211dbd..0dfec181d 100644 --- a/CHANGES +++ b/CHANGES @@ -101,6 +101,7 @@ Misc: - FFmpeg: Force MP4 files to YUV420P - Qt: Make "Mute" able to be bound to a key - Core: Restore sleep callback + - Qt: Add .gb/.gbc files to the extension list in Info.plist medusa alpha 1: (2017-04-08) Features: diff --git a/res/info.plist.in b/res/info.plist.in index 3a32700f9..f37904dee 100644 --- a/res/info.plist.in +++ b/res/info.plist.in @@ -44,6 +44,17 @@ CFBundleTypeRole Viewer + + CFBundleTypeExtensions + + gb + gbc + + CFBundleTypeName + Game Boy ROM Image + CFBundleTypeRole + Viewer + diff --git a/src/platform/qt/ts.cmake b/src/platform/qt/ts.cmake index 3bb8c2e43..fdf58779a 100644 --- a/src/platform/qt/ts.cmake +++ b/src/platform/qt/ts.cmake @@ -1,8 +1,6 @@ file(GLOB TRANSLATION_FILES "${QM_BASE}/*.qm") file(WRITE ${TRANSLATION_QRC} "\n\t\n") -message(STATUS ${TRANSLATION_FILES}) foreach(TS ${TRANSLATION_FILES}) - message(STATUS ${TS}) get_filename_component(TS_BASE "${TS}" NAME) file(APPEND ${TRANSLATION_QRC} "\t\t${TS_BASE}\n") endforeach()