airake 0.1.11 → 0.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.1.12 2007-10-08
2
+
3
+ * Updated generator test scaffolding to Beta 2
4
+
1
5
  == 0.1.11 2007-10-05
2
6
 
3
7
  * Fixing fcsh error message
@@ -1,29 +1,32 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <application xmlns="http://ns.adobe.com/air/application/1.0.M4" appId="Test" version="1.0">
3
-
4
- <!--
5
- AIR Application Descriptor File:
6
- Specifies parameters for identifying, installing, and launching AIR applications.
7
-
8
- The root element of the descriptor is "application" and has the attributes:
9
- appID - A string identifying this application. Every AIR application must
10
- have a unique appID. The recommended form of an appID is a
11
- dot-delimited, reverse-DNS-style string, such as
12
- "com.example.ApplicationName". The appID string must be between
13
- 17-255 characters long and may include the following characters:
14
- 0-9
15
- a-z
16
- A-Z
17
- . (dot)
18
- - (hyphen)
19
- version - An application-defined version designator.
20
- Examples: "1.0", ".4", "0.5", "Alpha 1",
21
- xmlns - The AIR namespace ("http://ns.adobe.com/air/application/1.0.M4").
22
- -->
2
+ <application xmlns="http://ns.adobe.com/air/application/1.0.M5" appId="Test" version="1.0">
3
+ <!--
4
+ AIR Application Descriptor File:
5
+ Specifies parameters for identifying, installing, and launching AIR applications.
6
+
7
+ The root element of the descriptor, "application" has these attributes:
8
+ appID - A string identifying this application. Every AIR
9
+ application must have a unique appID. The recommended
10
+ form of an appID is a dot-delimited, reverse-DNS-style
11
+ string, such as: "com.example.ApplicationName"
12
+ The appID string must be between 17-255 characters long
13
+ and may include the following characters:
14
+ 0-9
15
+ a-z
16
+ A-Z
17
+ . (dot)
18
+ - (hyphen)
19
+ version - An application version designator.
20
+ Examples: "1.0", ".4", "0.5", "Alpha 1"
21
+ minimumPatchLevel - the minimum patch level of the runtime version that this
22
+ application requires. Example: 45
23
+ xmlns - The AIR namespace: http://ns.adobe.com/air/application/1.0.M5
24
+ The last segment of the namespace specifies the version
25
+ of the runtime required for this application to run.
26
+ -->
23
27
 
24
28
  <!--
25
- The name displayed by the operating system when the application is
26
- running. (Required.)
29
+ The application name displayed by the operating system. (Required.)
27
30
  -->
28
31
  <name>Test</name>
29
32
 
@@ -43,72 +46,146 @@
43
46
  <copyright>2007</copyright>
44
47
 
45
48
  <!--
46
- The main content file of the application, which must be a SWF or
47
- HTML file. (Required.)
48
-
49
- Attributes:
50
- systemChrome - "standard" or "none". If "standard", the application
51
- window is opened with operating system-specific window
52
- elements such as a title bar, minimize, and close
53
- buttons. If "none", the application must provide its
54
- own window controls. (Note, the Flex WindowedApplication
55
- class supplies a set of window controls, which are only
56
- shown when systemChrome="none".)
57
- transparent - "true" or "false". If "true", the application has support
58
- for full transparency.
59
- visible - "true" or "false". If "false", the main window will not
60
- be displayed
61
- until the application changes the window visible property
62
- to "true".
63
- width - the initial window height (including chrome).
64
- height - the initial window width (including chrome).
65
-
66
- In Flex Builder, the SWF reference required within this tag will be set
67
- automatically when you launch or export this application.
68
- -->
69
- <rootContent systemChrome="standard" visible="true" width="600" height="400">bin/Test.swf</rootContent>
70
-
49
+ The settings for the initial application window.
50
+ -->
51
+ <initialWindow>
52
+ <!--
53
+ The title displayed in the AIR application installer.
54
+ -->
55
+ <title>Test</title>
56
+
57
+ <!--
58
+ The main content file of the application, which must be a SWF or HTML
59
+ file. (Required.)
60
+
61
+ Note: In Flex Builder, the SWF reference required within this tag will
62
+ be set automatically when you launch or export this application.
63
+ -->
64
+ <content>bin/Test.swf</content>
65
+
66
+ <!--
67
+ Specifies the type of system chrome used by the window.
68
+
69
+ standard - the application window is opened with standard operating
70
+ system window elements such as a title bar, minimize,
71
+ and close buttons.
72
+ none - the application must provide its own window controls.
73
+ (Note, that the Flex mx:WindowedApplication class supplies
74
+ its own window controls, shown only when systemChrome=none.)
75
+
76
+ Default value: standard
77
+ -->
78
+ <systemChrome>standard</systemChrome>
79
+
80
+ <!--
81
+ Specifies whether the window supports transparency and alpha blending
82
+ against the desktop.
83
+
84
+ If true, the window display is composited against the desktop. Areas of
85
+ the window not covered by a display object, or covered by display
86
+ objects with an alpha setting of zero, are effectively invisible and
87
+ will not intercept mouse events (which will be received by the desktop
88
+ object below the window).
89
+
90
+ Setting transparent=true for a window with system chrome is not supported.
91
+
92
+ Default value: false
93
+ -->
94
+ <transparent>false</transparent>
95
+
96
+ <!--
97
+ Specifies whether the window will be visible on application startup.
98
+
99
+ If false, the main window will not be displayed until the application
100
+ changes the NativeWindow.visible property to true or calls
101
+ NativeWindow.activate(). Note that the Flex Framework will set the
102
+ initial window defined by mx:WindowedApplication to be visible
103
+ immediately prior to the applicationComplete event unless the
104
+ WindowedApplication.windowVisible property is false.
105
+
106
+ Default value: false
107
+ -->
108
+ <visible>true</visible>
109
+
110
+ <!--
111
+ Other settings for the initial window.
112
+ -->
113
+ <!-- <minimizable>true</minimizable> -->
114
+ <!-- <maximizable>true</maximizable> -->
115
+ <!-- <resizable>true</resizable> -->
116
+ <!-- <width>500</width> -->
117
+ <!-- <height>500</height> -->
118
+ <!-- <x>150</x> -->
119
+ <!-- <y>150</y> -->
120
+ <x>100</x>
121
+ <y>100</y>
122
+ <width>600</width>
123
+ <height>400</height>
124
+ <!-- <minSize>300 300</minSize> -->
125
+ <!-- <maxSize>800 800</maxSize> -->
126
+ </initialWindow>
127
+
71
128
  <!--
72
129
  The subdirectory within the default application installation location in
73
130
  which to install the application.
131
+
132
+ Use forward slashes '/' to separate folders. The path cannot start with a
133
+ forward slash; end with a dot '.'; and cannot contain the characters: *":<>?\|
74
134
  -->
75
135
  <!-- <installFolder></installFolder> -->
76
-
136
+
137
+ <!--
138
+ The location within the Windows Programs menu in which to place
139
+ application shortcuts. Ignored on Mac OS X.
140
+
141
+ Use forward slashes '/' to separate folders. The path cannot start with a
142
+ forward slash; end with a dot '.'; and cannot contain the characters: *":<>?\|
143
+ -->
144
+ <!-- <programMenuFolder>Example Company/Example Application</programMenuFolder> -->
145
+
77
146
  <!--
78
147
  One or more PNG, GIF, or JPEG graphics files to be used as application
79
148
  icons. The path specified is relative to the application root directory.
80
- If an image is specified, it must be the exact size. The image files
81
- must be included in the AIR package.
149
+ If an image is specified, it must be the exact size. The image files must
150
+ be included in the AIR file.
82
151
  -->
83
-
84
- <!--
85
- <icon>
86
- <image16x16>icons/AIRApp_16.png</image16x16>
87
- <image32x32>icons/AIRApp_32.png</image32x32>
88
- <image48x48>icons/AIRApp_48.png</image48x48>
89
- <image128x128>icons/AIRApp_128.png</image128x128>
90
- </icon>
91
- -->
92
-
152
+ <icon>
153
+ <!-- <image16x16>icons/AIRApp_16.png</image16x16> -->
154
+ <!-- <image32x32>icons/AIRApp_32.png</image32x32> -->
155
+ <!-- <image48x48>icons/AIRApp_48.png</image48x48> -->
156
+ <!-- <image128x128>icons/AIRApp_128.png</image128x128> -->
157
+ </icon>
158
+
93
159
  <!--
94
160
  If the handleUpdates element is present in the application descriptor,
95
161
  then the AIR runtime will defer version updates to this application.
96
162
  -->
97
163
  <!-- <handleUpdates/> -->
98
-
164
+
99
165
  <!--
100
- One or more file types to register when this application is installed.
101
- -->
102
-
103
- <!--
104
- <fileTypes>
166
+ Defines the file types for which this application may register.
167
+
168
+ Use the Shell object file registration methods at run-time to set an
169
+ application as the default application for a file type.
170
+
171
+ Icons are optional. If used, the path specified is relative to the
172
+ application root directory. The icon files must be included in the AIR
173
+ file.
174
+ -->
175
+ <fileTypes>
176
+ <!--
105
177
  <fileType>
106
178
  <name>com.example</name>
107
179
  <extension>xmpl</extension>
108
180
  <description>Example file</description>
109
181
  <contentType>example/x-data-type</contentType>
182
+ <icon>
183
+ <image16x16>icons/AIRApp_16.png</image16x16>
184
+ <image32x32>icons/AIRApp_32.png</image32x32>
185
+ <image48x48>icons/AIRApp_48.png</image48x48>
186
+ <image128x128>icons/AIRApp_128.png</image128x128>
187
+ </icon>
110
188
  </fileType>
111
- </fileTypes>
112
- -->
113
-
189
+ -->
190
+ </fileTypes>
114
191
  </application>
@@ -2,7 +2,7 @@ module Airake #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 11
5
+ TINY = 12
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: airake
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.11
7
- date: 2007-10-05 00:00:00 -04:00
6
+ version: 0.1.12
7
+ date: 2007-10-08 00:00:00 -04:00
8
8
  summary: Adobe AIR tasks
9
9
  require_paths:
10
10
  - lib