This commit is contained in:
Laurent Sansonetti
2012-02-28 18:36:57 +01:00
parent 8070c74ec2
commit c105e58a13
2 changed files with 17 additions and 1 deletions

16
NEWS
View File

@@ -1,3 +1,19 @@
= RubyMotion 0.52 =
* Added a new sample, locations, which demonstrates CoreData.
* Fixed `motion update' to use SSL when transmitting the license key. The
server will stop honoring non-SSL requests by the next build.
* Fixed `motion create' to now generate app/app_delegate.rb instead of
app/main.rb.
* Cleaned up a bit the samples.
* Split the reference manual into 3 separate documents.
* Fixed a bug when the calling stub of a retyped property could not be found
at runtime, because the target abstract class doesn't actually define the
message (ex: UIBarItem's setEnabled:).
* Fixed a bug when the runtime could not perform the -hash selector because
the calling stub wasn't precompiled.
* Fixed `rake simulator debug=1`' to work with Xcode 4.3.
= RubyMotion 0.51 =
* Forgot to bundle the ctags config file. `rake ctags' should work now.

View File

@@ -1,5 +1,5 @@
PLATFORMS_DIR = '/Applications/Xcode.app/Contents/Developer/Platforms'
PROJECT_VERSION = '0.51'
PROJECT_VERSION = '0.52'
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]