mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-01 22:42:55 +08:00
0.31
This commit is contained in:
17
NEWS
17
NEWS
@@ -1,3 +1,20 @@
|
||||
= RubyMotion 0.31 =
|
||||
|
||||
* Fixed the build system to avoid copying resource files each time.
|
||||
* Fixed a bug where some class method calling stubs would not be properly
|
||||
precompiled, such as NSTimer
|
||||
+scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:.
|
||||
* Added a `prerendered_icon' config setting, which, when set to true,
|
||||
disables the reflective shine effect applied by default on the icons
|
||||
files (thanks Watson).
|
||||
* Changed the `simulator' task to honor the `device_family' environment
|
||||
variable, which can be used to force the device family to be used by the
|
||||
simulator when running a universal app. Values can be 'iphone' or 'ipad'.
|
||||
(Thanks Matt Aimonetti for the idea.)
|
||||
* Fixed the `simulator' task to no longer remove the app sandbox directory
|
||||
by default. Instead, the `clean' environment variable must be provided.
|
||||
(For example, `$ rake simulator clean=1').
|
||||
|
||||
= RubyMotion 0.30 =
|
||||
|
||||
* Fixed a bug where deploying large applications would fail during install.
|
||||
|
||||
2
Rakefile
2
Rakefile
@@ -1,5 +1,5 @@
|
||||
PLATFORMS_DIR = '/Developer/Platforms'
|
||||
PROJECT_VERSION = '0.30'
|
||||
PROJECT_VERSION = '0.31'
|
||||
|
||||
sim_sdks = Dir.glob(File.join(PLATFORMS_DIR, 'iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator*.sdk')).map do |path|
|
||||
File.basename(path).scan(/^iPhoneSimulator(.+)\.sdk$/)[0][0]
|
||||
|
||||
Reference in New Issue
Block a user