public
Description: A game template for building and distributing Rubygame apps.
Homepage:
Clone URL: git://github.com/shawn42/gamebox.git
Click here to lend your support to: gamebox and make a donation at www.pledgie.com !
gamebox / History.txt
100644 61 lines (47 sloc) 1.741 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
=== 0.0.1 / 2009-06-19
 
* Gamebox lives!
  * got game generation working in ruby 1.8
  * initial objects built
    * Actor/ActorViews (game objects)
    * Director manages actors
    * Level manages directors, backgrounds, level goals
    * Mode manages level loading and order
    * Behavior system for adding behaviors to actors (ie physical to put an actor into a physical space)
    * Loading of Levels from an SVG file
* Polaris A* path finder
    * Lots more to come!
  * examples to show how to use it
    * netris
    * roids
    * rague
    * nario
 
=== 0.0.2 / 2009-06-26
 
* Bug fix release for RubyWeekend #3
  * input_manager had problems with mouse events
 
=== 0.0.3 / 2009-06-26
 
* Bug fix release for RubyWeekend #3
  * updatable behavior was not in the manifest
 
=== 0.0.4 / 2009-06-27
 
* Bug fix release for RubyWeekend #3
  * added registering for events with input_manager that have no ids (ie i.reg KeyDownEvent do |e| ... will get all keys pressed)
 
=== 0.0.5 / 2009-06-28
 
* Bug fix release for RubyWeekend #3
  * sound manager now ignores txt files
 
=== 0.0.6 / 2009-06-30
 
* Multiple fixes and features
  * added rake run to all gamebox games
  * added rake debug to all gamebox games
  * added input_manager to levels
  * added usage -help to gamebox
  * added ./script/generate to generate actors (ie ./script/generate actor Foo)
  * migrated all test to use rspec
  * changed clear_hooks to take a listener instance
 
=== 0.0.7 / 2009-07-04
 
* New Particle System code in roids
* Changed license to MIT
* Bug fixes
  * added OpenGL option for screen (per jacius request)
* reorganized code
* changed :parts to :shapes in the physical behavior
* merged in jacius' new event system
* new physics playground example