airake 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
data/History.txt
CHANGED
@@ -1,9 +1,15 @@
|
|
1
|
+
== 0.1.6 2007-08-31
|
2
|
+
|
3
|
+
* Fixing task bugs
|
4
|
+
|
1
5
|
== 0.1.5 2007-08-30
|
6
|
+
|
2
7
|
* Fixed required include in Rakefile
|
3
8
|
* Removing app_id as required argument
|
4
9
|
* Refactored deployment.rake
|
5
10
|
|
6
11
|
== 0.1.4 2007-08-30
|
12
|
+
|
7
13
|
* Fixed bug with app_name being titleized
|
8
14
|
|
9
15
|
== 0.1.3 2007-08-29
|
@@ -1,6 +1,12 @@
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml">
|
2
|
+
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" title="<%= app_name %>">
|
3
3
|
|
4
|
-
<mx:
|
4
|
+
<mx:Style>
|
5
|
+
Application {
|
6
|
+
background-image:"";
|
7
|
+
background-color:"";
|
8
|
+
background-alpha:"0.5";
|
9
|
+
}
|
10
|
+
</mx:Style>
|
5
11
|
|
6
12
|
</mx:WindowedApplication>
|
@@ -66,7 +66,7 @@
|
|
66
66
|
In Flex Builder, the SWF reference required within this tag will be set
|
67
67
|
automatically when you launch or export this application.
|
68
68
|
-->
|
69
|
-
<rootContent systemChrome="none" transparent="true" visible="true" width="
|
69
|
+
<rootContent systemChrome="none" transparent="true" visible="true" width="800" height="600">bin/<%= app_name %>.swf</rootContent>
|
70
70
|
|
71
71
|
<!--
|
72
72
|
The subdirectory within the default application installation location in
|
@@ -66,7 +66,7 @@
|
|
66
66
|
In Flex Builder, the SWF reference required within this tag will be set
|
67
67
|
automatically when you launch or export this application.
|
68
68
|
-->
|
69
|
-
<rootContent systemChrome="standard" visible="true">bin/Test.swf</rootContent>
|
69
|
+
<rootContent systemChrome="standard" visible="true" width="600" height="400">bin/Test.swf</rootContent>
|
70
70
|
|
71
71
|
<!--
|
72
72
|
The subdirectory within the default application installation location in
|
@@ -6,7 +6,7 @@ namespace :air do
|
|
6
6
|
project = Airake::Project.new_from_rake(ENV)
|
7
7
|
fcsh = PatternPark::FCSH.new_from_rake(ENV)
|
8
8
|
fcsh.execute([ project.base_dir, project.mxmlc_command ])
|
9
|
-
rescue FCSHConnectError => e
|
9
|
+
rescue PatternPark::FCSHConnectError => e
|
10
10
|
puts "Cannot connect to FCSHD (start by running: rake air:fcshd); Continuing compilation..."
|
11
11
|
project.run_mxmlc
|
12
12
|
end
|
data/lib/airake/version.rb
CHANGED
metadata
CHANGED