From 0d005d49e62db7823787cbb0932d90dd2cc48a5d Mon Sep 17 00:00:00 2001 From: Laurent Sansonetti Date: Thu, 22 Dec 2011 00:21:28 +0100 Subject: [PATCH] 0.31 --- NEWS | 17 +++++++++++++++++ Rakefile | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 4ed29235..7913e4c1 100644 --- a/NEWS +++ b/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. diff --git a/Rakefile b/Rakefile index 4f9a7c0a..5f682838 100644 --- a/Rakefile +++ b/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]