raylib-bindings 0.7.5 → 0.7.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f7d4920f5be73ed9dfc167ca506192553b04057ecf62782aeda46ffe1f1dcf9
4
- data.tar.gz: c64be7115c6619c607e02900fbfca1c4544bcfb260bbf3653fe384f6cfd0c4fd
3
+ metadata.gz: a600711b1aeb4b82b7aafc5fe9c0926fecf397bc32207c2036011f2475655976
4
+ data.tar.gz: 82c48b57f23e3176f0083e3c0db8abfbf853308599310adc6ef5f6fd1ab9a143
5
5
  SHA512:
6
- metadata.gz: ae09b83492679e0054ffad5251abd99f3872201c74e4d6aa8438fe7648f4af7d48790e3a661372f9df66402eede7bb6975b7b39330e1592eac9e5939f216e7d2
7
- data.tar.gz: 140b2180497b0c4f60faca4f11142b416e6a587fac167dfe11c374b981362941223070e7c5b446b4bb1322877ed70fa225384bb4f4f7e5edc4e942fe3a272048
6
+ metadata.gz: 3b4bd5d16803d85a85f4edfd09e55fa76f569c60aeb93e03fc352079d5e0f9327efd45d345097984799d289d52184cdf1c7f1b3388ccde7717cc863b0efd135b
7
+ data.tar.gz: 9e50d84228268cf6ba577971738f682f418f68729d0c989cde859d2ca07ae6ef7b457bc57335935ddb03a98a09c1b05a8f321d5c97dbe6c6340401b0ca3d2cdd
data/ChangeLog CHANGED
@@ -1,3 +1,11 @@
1
+ 2024-08-12 vaiorabbit <http://twitter.com/vaiorabbit>
2
+
3
+ * Updated with latest raylib ( https://github.com/raysan5/raylib/commit/418b8780533e6d7822aefcd1a1dd3cb6cca95fa5 )
4
+
5
+ 2024-07-28 vaiorabbit <http://twitter.com/vaiorabbit>
6
+
7
+ * Updated with latest raylib ( https://github.com/raysan5/raylib/commit/e5a1fc4f20f9daca17a2f76ffe217b1128625d0b ) and raygui ( https://github.com/raysan5/raygui/commit/33f16596091e8147d01f948e7125db02cfae5faa )
8
+
1
9
  2024-07-14 vaiorabbit <http://twitter.com/vaiorabbit>
2
10
 
3
11
  * Updated with latest raylib ( https://github.com/raysan5/raylib/commit/5ede47618bd9f9a440af648da1b4817e51644994 ) and raygui ( https://github.com/raysan5/raygui/commit/3fb9d77a67243497e10ae0448374a52a2a65e26f )
data/README.md CHANGED
@@ -3,15 +3,15 @@
3
3
  # Yet another raylib wrapper for Ruby #
4
4
 
5
5
  * Created : 2021-10-17
6
- * Last modified : 2024-07-14
6
+ * Last modified : 2024-08-12
7
7
 
8
8
  Provides Ruby bindings for raylib-related libraries including:
9
9
 
10
- * [raylib](https://github.com/raysan5/raylib) version [5.1-dev]( https://github.com/raysan5/raylib/commit/5ede47618bd9f9a440af648da1b4817e51644994 )
10
+ * [raylib](https://github.com/raysan5/raylib) version [5.5-dev]( https://github.com/raysan5/raylib/commit/418b8780533e6d7822aefcd1a1dd3cb6cca95fa5 )
11
11
  * raylib
12
12
  * raymath
13
13
  * rlgl
14
- * [raygui](https://github.com/raysan5/raygui) version [4.1-dev]( https://github.com/raysan5/raygui/commit/3fb9d77a67243497e10ae0448374a52a2a65e26f )
14
+ * [raygui](https://github.com/raysan5/raygui) version [4.5-dev]( https://github.com/raysan5/raygui/commit/33f16596091e8147d01f948e7125db02cfae5faa )
15
15
  * [Physac](https://github.com/raysan5/physac) version [1.1]( https://github.com/raysan5/physac/commit/4a8e17f263fb8e1150b3fbafc96f880c7d7a4833 )
16
16
 
17
17
  <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/bitmap_font_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/game_of_life_simple_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/lissajous_curve_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/procedural_texture_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/reversi_board_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/utf8_font_rb.png" width="125">
Binary file
Binary file
data/lib/libraylib.dll CHANGED
Binary file
Binary file
Binary file
Binary file
data/lib/physac.dll CHANGED
Binary file
Binary file
Binary file
Binary file
data/lib/raygui.dll CHANGED
Binary file
Binary file
data/lib/raygui.x86_64.so CHANGED
Binary file
data/lib/raygui_main.rb CHANGED
@@ -128,6 +128,7 @@ module Raylib
128
128
  ARROW_PADDING = 16 # DropdownBox arrow separation from border and items
129
129
  DROPDOWN_ITEMS_SPACING = 17 # DropdownBox items separation
130
130
  DROPDOWN_ARROW_HIDDEN = 18 # DropdownBox arrow hidden
131
+ DROPDOWN_ROLL_UP = 19 # DropdownBox roll up flag (default rolls down)
131
132
 
132
133
  # enum GuiTextBoxProperty
133
134
  # TextBox/TextBoxMulti/ValueBox/Spinner
@@ -379,11 +380,11 @@ module Raylib
379
380
  ICON_WARNING = 220
380
381
  ICON_HELP_BOX = 221
381
382
  ICON_INFO_BOX = 222
382
- ICON_223 = 223
383
- ICON_224 = 224
384
- ICON_225 = 225
385
- ICON_226 = 226
386
- ICON_227 = 227
383
+ ICON_PRIORITY = 223
384
+ ICON_LAYERS_ISO = 224
385
+ ICON_LAYERS2 = 225
386
+ ICON_MLAYERS = 226
387
+ ICON_MAPS = 227
387
388
  ICON_228 = 228
388
389
  ICON_229 = 229
389
390
  ICON_230 = 230
data/lib/raylib_main.rb CHANGED
@@ -14,7 +14,7 @@ module Raylib
14
14
  RAYLIB_VERSION_MAJOR = 5
15
15
  RAYLIB_VERSION_MINOR = 5
16
16
  RAYLIB_VERSION_PATCH = 0
17
- RAYLIB_VERSION = "5.5"
17
+ RAYLIB_VERSION = "5.5-dev"
18
18
 
19
19
  # Enum
20
20
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raylib-bindings
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.5
4
+ version: 0.7.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - vaiorabbit
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-14 00:00:00.000000000 Z
11
+ date: 2024-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  - !ruby/object:Gem::Version
85
85
  version: '0'
86
86
  requirements: []
87
- rubygems_version: 3.5.11
87
+ rubygems_version: 3.5.15
88
88
  signing_key:
89
89
  specification_version: 4
90
90
  summary: Ruby bindings for raylib, raygui and Physac