From bbca10e34eeb6c2f0438e8e53f46faa20e0c7e60 Mon Sep 17 00:00:00 2001 From: Laurent Sansonetti Date: Wed, 21 Dec 2011 14:20:29 +0100 Subject: [PATCH] document prerendered_icon --- doc/ReferenceManual.textile | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/ReferenceManual.textile b/doc/ReferenceManual.textile index 2407ed03..4d5d60ca 100644 --- a/doc/ReferenceManual.textile +++ b/doc/ReferenceManual.textile @@ -451,6 +451,7 @@ The +rake config+ task will dump the project configuration. Each configuration v |+build_dir+ | Path to the directory for build products, as a +String+. It must be relative to the project directory. The directory will be created by the build system if it does not exist yet. If it cannot be created, a temporary directory will be used instead. The default value is +'build'+.| |+resources_dir+ | Directory for resources files, as a +String+. It must be relative to the project directory. The default value is +'resources'+. | |+icons+ | List of names of resource files to use for icons, as an +Array+. For example, +["Icon.png", "Icon-72.png", "Icon@2x.png"]+. The files must conform to the "HIG guidelines":http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/mobilehig/IconsImages/IconsImages.html. The default value is +[]+, an empty array. | +|+prerendered_icon+ | Whether the image files in +icons+ are already pre-rendered according to the HIG guidelines. If +false+, iOS will apply a reflective shine effect on the icons. The default value is +false+. | |+device_family+ | Family of devices to support. Possible values can be: +iphone+, +ipad+ or +[:iphone, :ipad]+ (for a universal application). The default value is +:iphone+.| |+interface_orientations+ | Supported interface orientations. Value must be an +Array+ of one or more of the following symbols: +:portrait+, +:landscape_left+, :+landscape_right+:, and +:portrait_upside_down+. The default value is +[:portrait, :landscape_left, :landscape_right]+. | |+platforms_dir+ | Platforms directory where to find SDKs, as a +String+. The default value is +'/Developer/Platforms'+. |