sprout-as3-bundle 1.0.10 → 1.0.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,7 +3,7 @@ module Sprout # :nodoc:
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 1
5
5
  MINOR = 0
6
- TINY = 10
6
+ TINY = 11
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY].join('.')
9
9
  MAJOR_MINOR = [MAJOR, MINOR].join('.')
@@ -87,7 +87,6 @@ module Sprout # :nodoc:
87
87
  def configure_mxmlc_application(compiler)
88
88
  compiler.warnings = true
89
89
  compiler.verbose_stacktraces = true
90
- compiler.debug = model.use_fdb if model.use_fdb
91
90
  compiler.default_background_color = model.background_color if model.background_color
92
91
  compiler.default_frame_rate = model.frame_rate if model.frame_rate
93
92
  if(model.width && model.height)
@@ -98,14 +97,13 @@ module Sprout # :nodoc:
98
97
  def define_player
99
98
  flashplayer player_task_name do |t|
100
99
  t.swf = output_file
101
- t.use_fdb = model.use_fdb
102
100
  end
103
101
  end
104
102
 
105
103
  def define_fdb
106
104
  fdb player_task_name do |t|
107
105
  t.file = output_file
108
- t.kill_on_fault = kill_on_fault
106
+ t.kill_on_fault = true
109
107
  t.run
110
108
  t.continue
111
109
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sprout-as3-bundle
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.10
4
+ version: 1.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pattern Park