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 +4 -0
- data/app_generators/airake/templates/test/Test-app.xml +147 -70
- data/lib/airake/version.rb +1 -1
- metadata +2 -2
data/History.txt
CHANGED
@@ -1,29 +1,32 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<application xmlns="http://ns.adobe.com/air/application/1.0.
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
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
|
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
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
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
|
-
|
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
|
-
<
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
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
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
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
|
-
|
112
|
-
|
113
|
-
|
189
|
+
-->
|
190
|
+
</fileTypes>
|
114
191
|
</application>
|
data/lib/airake/version.rb
CHANGED
metadata
CHANGED