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
@@ -1,3 +1,7 @@
1
+ *** 3.2.4 / 2007-09-20
2
+ + 1 major spec change:
3
+ + Using ExternalInterface instead of fscommand.
4
+
1
5
  *** 3.2.3 / 2007-09-18
2
6
  + 1 major enhancement:
3
7
  + Implemented new option :except for Meteor::shoot.
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 6 -header 300:300:30',
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
@@ -1,3 +1,3 @@
1
1
  module ShootingStar
2
- VERSION = '3.2.3'
2
+ VERSION = '3.2.4'
3
3
  end
@@ -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() >= 6 ? 3000 : 0);
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() >= 6){
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.3
7
- date: 2007-09-18 00:00:00 +09:00
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