-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added code to make MacOS application bundle. #28
- Loading branch information
1 parent
2dad5c2
commit 32084b0
Showing
5 changed files
with
88 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
|
||
<plist version="1.0"> | ||
<dict> | ||
|
||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
|
||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
|
||
<key>CFBundleIconFile</key> | ||
<string>Jaya</string> | ||
|
||
<key>CFBundleName</key> | ||
<string>Jaya</string> | ||
|
||
<key>CFBundleExecutable</key> | ||
<string>Jaya.Ui</string> | ||
|
||
<key>CFBundleIdentifier</key> | ||
<string>com.jaya.explorer</string> | ||
|
||
<key>CFBundleVersion</key> | ||
<string>1.0</string> | ||
|
||
<key>CFBundleShortVersionString</key> | ||
<string>1.0</string> | ||
|
||
<key>NSHighResolutionCapable</key> | ||
<string>True</string> | ||
|
||
<key>LSMinimumSystemVersion</key> | ||
<string>10.14</string> | ||
|
||
<key>NSHumanReadableCopyright</key> | ||
<string>Copyright (c) 2020 Rubal Walia</string> | ||
|
||
<key>CFBundleDevelopmentRegion</key> | ||
<string>en</string> | ||
|
||
<key>CFBundleDocumentTypes</key> | ||
<array> | ||
<dict> | ||
<key>CFBundleTypeIconFile</key> | ||
<string>Jaya.icns</string> | ||
<key>CFBundleTypeRole</key> | ||
<string>Editor</string> | ||
</dict> | ||
</array> | ||
</dict> | ||
</plist> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.