1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-30 22:51:16 +01:00

OS X resources fix + cleanup

This commit is contained in:
Martin Tůma 2018-02-09 22:25:20 +01:00
parent b9a93d30c0
commit d18c0d1643
2 changed files with 15 additions and 13 deletions

View File

@ -29,7 +29,7 @@
<string>application/gpx+xml</string> <string>application/gpx+xml</string>
</array> </array>
<key>CFBundleTypeIconFile</key> <key>CFBundleTypeIconFile</key>
<string>gpx.icns</string> <string>icons/gpx.icns</string>
<key>CFBundleTypeName</key> <key>CFBundleTypeName</key>
<string>GPS Exchange Format</string> <string>GPS Exchange Format</string>
<key>CFBundleTypeRole</key> <key>CFBundleTypeRole</key>
@ -45,7 +45,7 @@
<string>application/tcx+xml</string> <string>application/tcx+xml</string>
</array> </array>
<key>CFBundleTypeIconFile</key> <key>CFBundleTypeIconFile</key>
<string>tcx.icns</string> <string>icons/tcx.icns</string>
<key>CFBundleTypeName</key> <key>CFBundleTypeName</key>
<string>Training Center XML</string> <string>Training Center XML</string>
<key>CFBundleTypeRole</key> <key>CFBundleTypeRole</key>
@ -61,7 +61,7 @@
<string>application/vnd.google-earth.kml+xml</string> <string>application/vnd.google-earth.kml+xml</string>
</array> </array>
<key>CFBundleTypeIconFile</key> <key>CFBundleTypeIconFile</key>
<string>kml.icns</string> <string>icons/kml.icns</string>
<key>CFBundleTypeName</key> <key>CFBundleTypeName</key>
<string>Keyhole Markup Language</string> <string>Keyhole Markup Language</string>
<key>CFBundleTypeRole</key> <key>CFBundleTypeRole</key>
@ -77,7 +77,7 @@
<string>application/vnd.ant.fit</string> <string>application/vnd.ant.fit</string>
</array> </array>
<key>CFBundleTypeIconFile</key> <key>CFBundleTypeIconFile</key>
<string>fit.icns</string> <string>icons/fit.icns</string>
<key>CFBundleTypeName</key> <key>CFBundleTypeName</key>
<string>Flexible and Interoperable Data Transfer</string> <string>Flexible and Interoperable Data Transfer</string>
<key>CFBundleTypeRole</key> <key>CFBundleTypeRole</key>
@ -93,7 +93,7 @@
<string>application/vnd.fai.igc</string> <string>application/vnd.fai.igc</string>
</array> </array>
<key>CFBundleTypeIconFile</key> <key>CFBundleTypeIconFile</key>
<string>igc.icns</string> <string>icons/igc.icns</string>
<key>CFBundleTypeName</key> <key>CFBundleTypeName</key>
<string>Flight Recorder Data Format</string> <string>Flight Recorder Data Format</string>
<key>CFBundleTypeRole</key> <key>CFBundleTypeRole</key>
@ -109,7 +109,7 @@
<string>application/vnd.nmea.nmea</string> <string>application/vnd.nmea.nmea</string>
</array> </array>
<key>CFBundleTypeIconFile</key> <key>CFBundleTypeIconFile</key>
<string>nmea.icns</string> <string>icons/nmea.icns</string>
<key>CFBundleTypeName</key> <key>CFBundleTypeName</key>
<string>NMEA 0183 data</string> <string>NMEA 0183 data</string>
<key>CFBundleTypeRole</key> <key>CFBundleTypeRole</key>

View File

@ -213,24 +213,26 @@ TRANSLATIONS = lang/gpxsee_cs.ts \
macx { macx {
ICON = icons/gpxsee.icns ICON = icons/gpxsee.icns
QMAKE_INFO_PLIST = Info.plist QMAKE_INFO_PLIST = Info.plist
LOCALE.path = Contents/Resources/locale LOCALE.path = Contents/Resources/translations
LOCALE.files = lang/gpxsee_cs.qm \ LOCALE.files = lang/gpxsee_cs.qm \
lang/gpxsee_de.qm \ lang/gpxsee_de.qm \
lang/gpxsee_fi.qm \ lang/gpxsee_fi.qm \
lang/gpxsee_fr.qm \ lang/gpxsee_fr.qm \
lang/gpxsee_ru.qm \ lang/gpxsee_ru.qm \
lang/gpxsee_sv.qm lang/gpxsee_sv.qm
APP_RESOURCES.files = pkg/maps \ MAPS.path = Contents/Resources
icons/tcx.icns \ MAPS.files = pkg/maps
ICONS.path = Contents/Resources/icons
ICONS.files = icons/tcx.icns \
icons/kml.icns \ icons/kml.icns \
icons/fit.icns \ icons/fit.icns \
icons/igc.icns \ icons/igc.icns \
icons/nmea.icns \ icons/nmea.icns
pkg/ellipsoids.csv \ CSV.path = Contents/Resources
CSV.files = pkg/ellipsoids.csv \
pkg/gcs.csv \ pkg/gcs.csv \
pkg/pcs.csv pkg/pcs.csv
APP_RESOURCES.path = Contents/Resources QMAKE_BUNDLE_DATA += LOCALE MAPS ICONS CSV
QMAKE_BUNDLE_DATA += APP_RESOURCES LOCALE
} }
win32 { win32 {
RC_ICONS = icons/gpxsee.ico \ RC_ICONS = icons/gpxsee.ico \