rbgooey 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES +22 -0
- data/GPL +674 -0
- data/README +37 -0
- data/lib/check.rb +13 -16
- data/lib/display.rb +15 -16
- data/lib/files.rb +32 -34
- data/lib/imagerender.rb +13 -15
- data/lib/imageui.rb +17 -15
- data/lib/mouse.rb +13 -15
- data/lib/rbgooey.rb +14 -16
- data/lib/rectcollide.rb +13 -15
- data/lib/setup.rb +14 -16
- data/lib/text.rb +13 -15
- data/lib/textrender.rb +15 -17
- data/lib/type.rb +3 -3
- data/lib/typelowercase.rb +14 -16
- data/lib/typelowerspecial.rb +15 -16
- data/lib/typespecialcommands.rb +14 -16
- data/lib/uidata.rb +3 -2
- metadata +43 -33
data/CHANGES
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
CHANGES for rbgooey
|
|
2
|
+
|
|
3
|
+
==Release 0.0.5
|
|
4
|
+
*Description: Bugfix release
|
|
5
|
+
+Fixed text rendering bug
|
|
6
|
+
|
|
7
|
+
==Release 0.0.4==
|
|
8
|
+
-Description: Fixed version of rbgooey 0.0.3
|
|
9
|
+
+Fixed typing bug
|
|
10
|
+
+Fixed warnings
|
|
11
|
+
|
|
12
|
+
==Release 0.0.3==
|
|
13
|
+
-Description: Raw out of SVN
|
|
14
|
+
+You can now add texts with the ability to omit the background colors
|
|
15
|
+
+You can now add images as Ui elements, along with the ability to make it clickable.
|
|
16
|
+
|
|
17
|
+
==Release 0.0.2==
|
|
18
|
+
-Description: Bugfix release with a new minor feature
|
|
19
|
+
+You can now configure basic setting such as screen size, show cursor or not, and various other items.
|
|
20
|
+
+Fix issues with installing the gem(If any).
|
|
21
|
+
+Remove hardcoded path for mouse image loading and thus removing the need to place an image in test directory.
|
|
22
|
+
+Remove the need to load an image for a mouse in order to use it without crashing the program.
|