shooting_star 3.2.3 → 3.2.4
Sign up to get free protection for your applications and to get access to all the features.
data/History.txt
CHANGED
data/Rakefile
CHANGED
@@ -66,7 +66,7 @@ desc 'make swf file'
|
|
66
66
|
task :swf => 'public/meteor_strike.swf'
|
67
67
|
|
68
68
|
file 'public/meteor_strike.swf' => 'as/meteor_strike.as' do
|
69
|
-
sh ['mtasc -version
|
69
|
+
sh ['mtasc -version 8 -header 300:300:30',
|
70
70
|
'-swf public/meteor_strike.swf',
|
71
71
|
'-main as/meteor_strike.as'].join(' ')
|
72
72
|
end
|
Binary file
|
@@ -96,7 +96,7 @@
|
|
96
96
|
var timerId = setTimeout(ms.connector, 3000);
|
97
97
|
$('#{iframe_id}').onload = function(){clearTimeout(timerId)};
|
98
98
|
form.submit();
|
99
|
-
}, meteorStrike.getFlashVersion() >=
|
99
|
+
}, meteorStrike.getFlashVersion() >= 8 ? 3000 : 0);
|
100
100
|
});
|
101
101
|
})();
|
102
102
|
function meteor_strike_#{@meteor_strike}_DoFSCommand(command, args){
|
@@ -118,7 +118,7 @@
|
|
118
118
|
break;
|
119
119
|
}
|
120
120
|
}
|
121
|
-
if(meteorStrike.getFlashVersion() >=
|
121
|
+
if(meteorStrike.getFlashVersion() >= 8){
|
122
122
|
$('#{iframe_id}-flash').innerHTML = #{@flash_html.to_json};
|
123
123
|
}
|
124
124
|
} %>
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
|
|
3
3
|
specification_version: 1
|
4
4
|
name: shooting_star
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 3.2.
|
7
|
-
date: 2007-09-
|
6
|
+
version: 3.2.4
|
7
|
+
date: 2007-09-21 00:00:00 +09:00
|
8
8
|
summary: Our goal is development of practical comet server which will be achieving over 100,000 simultaneous connections per host. On this purpose, we abandon portability and use system calls depending on particular OS such as epoll and kqueue.
|
9
9
|
require_paths:
|
10
10
|
- lib
|