joybox 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -23,81 +23,10 @@ Gem::Specification.new do |gem|
23
23
  gem.extensions = ['ext/extconf.rb']
24
24
 
25
25
  gem.post_install_message = <<-MESSAGE
26
- = Joybox 1.1.0 =
26
+ = Joybox 1.1.1 =
27
27
 
28
- Contributors
29
- * Kenichi Yonekawa, yonekawa
30
- * Earl St Sauver, estsauver
31
- * Denis Laprise, nside
32
- * Franklin Webber, burtlo
33
- * Andrew Currie, AndrewCurrie
34
- * Jamon Holmgren, jamonholmgren
35
- * Christopher David Yudichak, TheOddLinguist
36
- * Donald Hutchison, rkachowski
37
- * Didier Prophete, dprophete
38
- * Severin Schoepke, severin
39
- * awdogsgo2heaven
40
- * Juha Litola, jlitola
41
- * David Padilla, dabit
42
- * PanPan, ippan
43
- * Keyvan Fatehi, keyvanfatehi
44
- * n-studio
45
-
46
- Physics
47
- * Support for all Shapes and Listeners.
48
-
49
- * Filters, AABB computations, Queries and Ray Casts.
50
-
51
- * Collision support for Physics Sprites.
52
-
53
- * Experimental support for actions on Physics Sprites.
54
-
55
- * Physics Debug Draw.
56
-
57
- Effects and Background Music
58
- * AudioEffect and BackgroundAudio to playback background music and special effects.
59
-
60
- Tile Maps Support
61
- * Support for TMX Maps using the TileMap class.
62
-
63
- Actions
64
- * Complete actions
65
-
66
- Gestures
67
- * Support the default gestures on OSX.
68
-
69
- Commands
70
- * Adds joybox:retina command to create a Retina version of a TMX Map.
71
-
72
- Sprites
73
- * Support for custom options on the Sprite initialization.
74
-
75
- Source Code
76
- * The commands and templates now install automatically.
77
-
78
- * Added 218 specifications and 617 requirements.
79
-
80
- Critical Changes
81
- * Node: The method add_childs is now add_children.
82
-
83
- * SpriteFrameCache: The method where now starts from 1 instead of 0.
84
-
85
- * Animation: The delay method is now delay_units, and total_delay is now delay_per_unit.
86
-
87
- * Menu: The method align_items_in_columns now receive an array for defining how many columns and
88
- how many items in which of them.
89
-
90
- * Physics: Now every object returns their values in pixel coordinates and degrees, if you still
91
- need to use the metric values you can access them with the prefix metric_.
92
- For example: metric_position.
93
-
94
- * World: The Method continuos_physics is now deprecated.
95
-
96
- * Physics Collisions: Now for use when_collide method of the World instance, you need to pass an
97
- instance of a PhysicsSprite and it will return in the block the colliding
98
- physics sprite if available, or the body that is colliding.
99
-
100
- * Point: The methods to and from pixel coordinates are now inverted, there was an incorrect naming.
28
+ Bug Fix
29
+ * Missing include in LayerColor
101
30
 
102
31
  00000000000000111111111111110000000000000000000000000000000000
103
32
  00000000000000000111111111111111111111100000000000000000000000
@@ -1,3 +1,3 @@
1
1
  module Joybox
2
- VERSION = '1.1.0' unless defined?(Joybox::VERSION)
2
+ VERSION = '1.1.1' unless defined?(Joybox::VERSION)
3
3
  end
@@ -3,6 +3,8 @@ module Joybox
3
3
 
4
4
  class LayerColor < CCLayerColor
5
5
 
6
+ include Joybox::Common
7
+
6
8
  def self.scene
7
9
  define_singleton_method(:scene) do
8
10
  scene = CCScene.new
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: joybox
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2013-08-02 00:00:00.000000000 Z
14
+ date: 2013-09-09 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rake
@@ -660,35 +660,7 @@ files:
660
660
  homepage: http://joybox.io
661
661
  licenses:
662
662
  - MIT
663
- post_install_message: ! " = Joybox 1.1.0 =\n\n Contributors\n * Kenichi Yonekawa,
664
- yonekawa\n * Earl St Sauver, estsauver\n * Denis Laprise, nside\n * Franklin
665
- Webber, burtlo\n * Andrew Currie, AndrewCurrie\n * Jamon Holmgren, jamonholmgren\n
666
- \ * Christopher David Yudichak, TheOddLinguist\n * Donald Hutchison, rkachowski\n
667
- \ * Didier Prophete, dprophete \n * Severin Schoepke, severin\n * awdogsgo2heaven\n
668
- \ * Juha Litola, jlitola\n * David Padilla, dabit \n * PanPan, ippan\n * Keyvan
669
- Fatehi, keyvanfatehi\n * n-studio\n\n Physics\n * Support for all Shapes and
670
- Listeners.\n\n * Filters, AABB computations, Queries and Ray Casts.\n\n * Collision
671
- support for Physics Sprites.\n\n * Experimental support for actions on Physics
672
- Sprites.\n\n * Physics Debug Draw.\n\n Effects and Background Music\n * AudioEffect
673
- and BackgroundAudio to playback background music and special effects.\n\n Tile
674
- Maps Support\n * Support for TMX Maps using the TileMap class.\n\n Actions\n *
675
- Complete actions\n\n Gestures\n * Support the default gestures on OSX.\n\n Commands\n
676
- \ * Adds joybox:retina command to create a Retina version of a TMX Map. \n\n Sprites\n
677
- \ * Support for custom options on the Sprite initialization.\n\n Source Code\n
678
- \ * The commands and templates now install automatically.\n\n * Added 218 specifications
679
- and 617 requirements.\n\n Critical Changes\n * Node: The method add_childs is
680
- now add_children.\n\n * SpriteFrameCache: The method where now starts from 1 instead
681
- of 0.\n\n * Animation: The delay method is now delay_units, and total_delay is
682
- now delay_per_unit.\n\n * Menu: The method align_items_in_columns now receive an
683
- array for defining how many columns and \n how many items in which of them.\n\n
684
- \ * Physics: Now every object returns their values in pixel coordinates and degrees,
685
- if you still \n need to use the metric values you can access them with
686
- the prefix metric_. \n For example: metric_position.\n\n * World: The
687
- Method continuos_physics is now deprecated.\n\n * Physics Collisions: Now for use
688
- when_collide method of the World instance, you need to pass an \n instance
689
- of a PhysicsSprite and it will return in the block the colliding \n physics
690
- sprite if available, or the body that is colliding.\n\n * Point: The methods to
691
- and from pixel coordinates are now inverted, there was an incorrect naming.\n\n
663
+ post_install_message: ! " = Joybox 1.1.1 =\n\n Bug Fix\n * Missing include in LayerColor\n\n
692
664
  \ 00000000000000111111111111110000000000000000000000000000000000\n 00000000000000000111111111111111111111100000000000000000000000\n
693
665
  \ 00000000000000000011111111111111111111111111111110000000000000\n 00000000000000111111111111111111111111111111111111111000000000\n
694
666
  \ 00000000000001111111111111111111111111111111111111111111000000\n 00000001100001111111111110000000111111111111111111111111000000\n