This commit is contained in:
Laurent Sansonetti
2013-06-25 13:00:18 +02:00
parent 0e81a7d154
commit e91258d836

41
NEWS
View File

@@ -1,5 +1,6 @@
= RubyMotion 2.3 =
* Added support for iOS 7.0 Beta 2 and Xcode 5.0 DP 2.
* Fixed a bug where the `RUBYMOTION_ENV' constant would not be defined before
executing the main scope of .rb application files, resulting in a const
lookup error in case the constant was trying to be accessed within a file
@@ -7,30 +8,34 @@
* [iOS] Fixed a bug where `rake simulator' would open 2 simulator apps at
the same time, due to the fact that the application name changed between
Xcode 4.x and Xcode 5.
* Fixed a bug in Foundation.bridesupport on iOS7 and OS X 10.9 where it would
be missing NSObject methods.
* Fixed a bug in defined?(super) where it would return the incorrect value if
it uses in included module.
* [iOS] Fixed a bug where certain NSObject methods would be missing in the
Foundation framework compiler file.
* [iOS] Fixed a warning message from the linker that would be displayed when
building for iOS 7.0.
* Fixed a bug in defined?(super) where it would return an incorrect value
when used from an included module.
* Improve string interpolation performance. 40% faster.
* Improve String#delete performance. 5 times faster.
* Improve Objective-C methods performance in String object. 50% faster.
* Added `output=colorized' in `rake spec'.
* Added `skip_build' option to `rake simulater' (ios) and `rake run' (osx) to
to run simulator without recompiling.
* Added git repository support for templates.
(Ex motion create --template=https://github.com/IconoclastLabs/smart-ios.git test)
* Added `skip_build' option to `rake simulator' (iOS) and `rake run' (OSX) to
to run the program without recompiling (ex. `rake skip_build=1').
* Added git repository support for templates. (ex. `motion create
--template=https://github.com/IconoclastLabs/smart-ios.git test').
Thanks to Gant Laborde and Matt Garrison for the patch (pull request #92).
* Fixed the build error with Xcode 3.
* Fixed a build error that was happening with Xcode 3.
Thanks to Matt Garriott for the patch (pull request #97).
* Added callback after created controller in spec.
Thanks to Katsuyoshi Ito for the patch (pull request #96).
* Set `spec_mode' before running `setup' block in Rakefile.
Thanks to Clay Allsopp for the patch (pull request #84).
* Added `app.exclude_from_detect_dependencies'.
Thanks to Clay Allsopp for the patch (pull request #81).
* Fixed where it would remove '.nib' in resouces files even if it does not
exist '.xib'. Thanks to Kristian for the patch (pull request #98).
* Fixed warning message would be displayed when it builds iOS 7 app.
* Added callback after created controller in spec. Thanks to Katsuyoshi Ito
for the patch (pull request #96).
* Fixed the build system to set `spec_mode' before running the `setup' block
in Rakefile. Thanks to Clay Allsopp for the patch (pull request #84).
* Added the `app.exclude_from_detect_dependencies' Rakefile variable. Thanks
to Clay Allsopp for the patch (pull request #81).
* Fixed a bug in the build system where it would remove `.nib' ressource
files even corresponding `.xib' files did not exist. Thanks to Kristian for
the patch (pull request #98).
* Added back `motion ri' support, which was incidentally removed due to a
mistake on the build machine.
= RubyMotion 2.2 =