mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-05 09:39:14 +08:00
app.short_version defaults to app.version
This commit is contained in:
@@ -36,7 +36,7 @@ module Motion; module Project;
|
||||
@framework_search_paths = []
|
||||
@libs = []
|
||||
@bundle_signature = '????'
|
||||
@short_version = '1'
|
||||
@short_version = nil
|
||||
@vendor_projects = []
|
||||
@entitlements = {}
|
||||
@delegate_class = 'AppDelegate'
|
||||
@@ -269,7 +269,7 @@ EOS
|
||||
'CFBundleExecutable' => @name,
|
||||
'CFBundleInfoDictionaryVersion' => '6.0',
|
||||
'CFBundlePackageType' => 'APPL',
|
||||
'CFBundleShortVersionString' => @short_version,
|
||||
'CFBundleShortVersionString' => (@short_version || @version),
|
||||
'CFBundleSignature' => @bundle_signature,
|
||||
'CFBundleVersion' => @version
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user