This commit is contained in:
Laurent Sansonetti
2012-01-23 16:19:08 +01:00
parent 762adbd73f
commit 38565aa2a5
2 changed files with 15 additions and 1 deletions

14
NEWS
View File

@@ -1,3 +1,17 @@
= RubyMotion 0.42 =
* Added builtin support for TestFlight. It will be a gem once RubyMotion
launches. Basic documentation can be read in the file:
/Library/Motion/lib/motion/project/testflight.rb
(Thanks to Hugues Lismonde for the help.)
* Added the possibility to vendor 'static' projects (which contains
static libraries and header files). Used by the TestFlight support.
See the reference manual. (Thanks to Hugues Lismonde.)
* Fixed a bug in the compiler when attempting to precompile an Objective-C
method definition stub that doesn't have the same arity as the Ruby
definition.
* Fixed memory leaks (IO).
= RubyMotion 0.41 =
* New memory management system. Similar to ARC in design, uses the existing

View File

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