Skip to content

Commit

Permalink
Deployment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gjacquemin committed May 12, 2014
1 parent 884cef3 commit 6cf8302
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 20 deletions.
46 changes: 30 additions & 16 deletions Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,40 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleName</key>
<string>IanniX</string>
<key>CFBundleExecutable</key>
<string>IanniX</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.9.16</string>
<key>CFBundleVersion</key>
<string>0.9.16</string>

<key>CFBundleIdentifier</key>
<string>org.iannix.desktop</string>
<key>NSHumanReadableCopyright</key>
<string>IanniX Association</string>

<key>LSApplicationCategoryType</key>
<string>public.app-category.music</string>

<key>CFBundleIconFile</key>
<string>icon.icns</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleGetInfoString</key>
<string>buzzing light</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>LSMinimumSystemVersion</key>
<string>10.6.0</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSHighResolutionCapable</key>
<string>True</string>

<key>CFBundleDocumentTypes</key>
<array>
<dict>
Expand Down Expand Up @@ -65,17 +91,5 @@
<string>Editor</string>
</dict>
</array>
<key>NSHumanReadableCopyright</key>
<string>IanniX Association</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.music</string>
<key>CFBundleSignature</key>
<string>INNX</string>
<key>CFBundleVersion</key>
<string>0.9.16</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSHighResolutionCapable</key>
<string>True</string>
</dict>
</plist>
8 changes: 4 additions & 4 deletions iannixapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ int main(int argc, char *argv[]) {
qDebug("Command line syntax : ./IanniX <file path>");
#endif

QCoreApplication::setApplicationName (appName);
QCoreApplication::setApplicationVersion(appVersion);
QCoreApplication::setOrganizationName ("IanniX");
QCoreApplication::setOrganizationDomain("org.iannix");
QCoreApplication::setApplicationName (appName.trimmed());
QCoreApplication::setApplicationVersion(appVersion.trimmed());
QCoreApplication::setOrganizationName ("buzzing light");
QCoreApplication::setOrganizationDomain("org.iannix.desktop");

iannixApp.launch(argc, argv);

Expand Down

0 comments on commit 6cf8302

Please sign in to comment.