mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-06-17 05:30:01 +08:00
0.61
This commit is contained in:
13
NEWS
13
NEWS
@@ -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).
|
||||
|
||||
2
Rakefile
2
Rakefile
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user