This commit is contained in:
Laurent Sansonetti
2011-12-09 21:45:54 +01:00
parent bc78cdf659
commit 99cfbec1fd
2 changed files with 17 additions and 3 deletions

18
NEWS
View File

@@ -1,12 +1,26 @@
= RubyMotion 0.26 =
* Updated doc/ReferenceManual.html to track the new changes.
* Added the `entitlements' config setting, which exposes the
Entitlements.plist file as a Hash object that can be changed.
* Added the `seed_id' config setting, the provisioning app identifier.
* Improved the build system so that if the build_dir cannot be created, a
temporary build directory will be used instead. This can happen when trying
to build a project on a read-only directory.
* Fixed a bug where resource files would not be copied if the default rake
runs with Ruby 1.9.
* Added a new key to `vendor_project' with :xcode: `headers_dir'. Should be
set to the path that contains headers files.
= RubyMotion 0.25 =
* Fix regressions in the build system.
* Fixed regressions in the build system.
= RubyMotion 0.24 =
* Updated doc/ReferenceManual.html to track the new changes and also to
mention the `files_dependencies' config setting.
* Added the `info_plist' config setting, which exposes the Info.plist as
* Added the `info_plist' config setting, which exposes the Info.plist file as
a Hash object that can be changed (for advanced settings).
* Added the `identifier' config setting, reverse DNS name for an app.
* Reorganized the rake interface. Existing projects should migrate from

View File

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