This commit is contained in:
Laurent Sansonetti
2012-03-23 22:23:05 +01:00
parent 294eb8a360
commit 8cbdd7f5e2
2 changed files with 14 additions and 1 deletions

13
NEWS
View File

@@ -1,3 +1,16 @@
= RubyMotion 0.61 =
* Fixed a bug when doing `rake clean' on a project with vendored projects.
* Fixed a bug when the terminal echo could be off after an app crashes in
the simulator, due to the REPL's readline.
* Changed the compiler to not save local variables when creating blocks.
* The REPL now exposes special methods: #repl, #quit, #sessions and #help.
Use #help to know more.
* Fixed `motion support' to properly collect the version of Xcode for
installations in /Applications.
* Fixed the REPL to refresh the prompt in capture mode using a different
technique, to make it work in iTerm.
= RubyMotion 0.60 =
* Fixed various bugs in the REPL (also, make it work under Snow Leopard).

View File

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