0.41.pre1

This commit is contained in:
Laurent Sansonetti
2012-01-14 18:31:26 +01:00
parent b40b67b9a1
commit e16579c0f2
2 changed files with 12 additions and 1 deletions

11
NEWS
View File

@@ -1,3 +1,14 @@
= RubyMotion 0.41 =
* New memory management system.
* Fixed a bug in the simulator launcher, where environment variables would
not properly be propagated to the simulated app.
* Fixed a bug in the dependencies system, again.
* Fixed a problem when using attr_reader/accessor to override an Objective-C
method. Because the static compiler doesn't know the proper signature
ahead of time, we would be crashing later on. We now print a proper error
message and abort the program.
= RubyMotion 0.40 =
* Fixed a bug where multiple provisioned devices or application identifiers

View File

@@ -1,5 +1,5 @@
PLATFORMS_DIR = '/Developer/Platforms'
PROJECT_VERSION = '0.40'
PROJECT_VERSION = '0.41.pre1'
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]