raylib-bindings 0.7.11-x86_64-linux → 0.7.12-x86_64-linux
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.
- checksums.yaml +4 -4
- data/ChangeLog +4 -0
- data/README.md +3 -3
- data/lib/libraylib.x86_64.so +0 -0
- data/lib/raygui.x86_64.so +0 -0
- data/lib/raygui_main.rb +5 -17
- data/lib/rlgl.rb +5 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7705005d0b7b2efd3599827911f2b841d77620ad18183fb9472fc8fb5cdb548b
|
4
|
+
data.tar.gz: fd27ad48ca7aa4d753c634be2702548e61fc35930781229622ee055f0275772d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a18edc10362c74371fdad8275edd7ca235eed70fdd92d0f3880a6af66882c33d540302e2310b2b145040aa4efd6d16b8368d75e50a1a5acb99335fcd1a97b80b
|
7
|
+
data.tar.gz: 8b6e19906b6b3c8589e19f444f744189a531f85b97d192a11dbde66b35e6b18ab8e7a32b912f8692f9944986d6d9d532ab50fd52b959851ce67218fc19ddc5dd
|
data/ChangeLog
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
2025-04-29 vaiorabbit <http://twitter.com/vaiorabbit>
|
2
|
+
|
3
|
+
* Updated with latest raylib ( https://github.com/raysan5/raylib/commit/1ec281e86fa518dd8d8d85271e42cf8db4340f41) and raygui ( https://github.com/raysan5/raygui/commit/0895c8b8c4bf9e111492b19fba336d62d4a0b960 )
|
4
|
+
|
1
5
|
2025-03-29 vaiorabbit <http://twitter.com/vaiorabbit>
|
2
6
|
|
3
7
|
* Updated with latest raylib ( https://github.com/raysan5/raylib/commit/9a049d1d27e3fe92c2591bc190b7f497b5f0283e) and raygui ( https://github.com/raysan5/raygui/commit/ea928f56091078aad9af847a1607c22f06c5992f )
|
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 : 2025-
|
6
|
+
* Last modified : 2025-04-29
|
7
7
|
|
8
8
|
Provides Ruby bindings for raylib-related libraries including:
|
9
9
|
|
10
|
-
* [raylib](https://github.com/raysan5/raylib) version [5.6-dev]( https://github.com/raysan5/raylib/commit/
|
10
|
+
* [raylib](https://github.com/raysan5/raylib) version [5.6-dev]( https://github.com/raysan5/raylib/commit/1ec281e86fa518dd8d8d85271e42cf8db4340f41 )
|
11
11
|
* raylib
|
12
12
|
* raymath
|
13
13
|
* rlgl
|
14
|
-
* [raygui](https://github.com/raysan5/raygui) version [5.0-dev]( https://github.com/raysan5/raygui/commit/
|
14
|
+
* [raygui](https://github.com/raysan5/raygui) version [5.0-dev]( https://github.com/raysan5/raygui/commit/0895c8b8c4bf9e111492b19fba336d62d4a0b960 )
|
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">
|
data/lib/libraylib.x86_64.so
CHANGED
Binary file
|
data/lib/raygui.x86_64.so
CHANGED
Binary file
|
data/lib/raygui_main.rb
CHANGED
@@ -387,11 +387,11 @@ module Raylib
|
|
387
387
|
ICON_MLAYERS = 226
|
388
388
|
ICON_MAPS = 227
|
389
389
|
ICON_HOT = 228
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
390
|
+
ICON_LABEL = 229
|
391
|
+
ICON_NAME_ID = 230
|
392
|
+
ICON_SLICING = 231
|
393
|
+
ICON_MANUAL_CONTROL = 232
|
394
|
+
ICON_COLLISION = 233
|
395
395
|
ICON_234 = 234
|
396
396
|
ICON_235 = 235
|
397
397
|
ICON_236 = 236
|
@@ -760,18 +760,6 @@ module Raylib
|
|
760
760
|
# @return [int]
|
761
761
|
[:GuiSlider, :GuiSlider, [Rectangle.by_value, :pointer, :pointer, :pointer, :float, :float], :int],
|
762
762
|
|
763
|
-
# @!method GuiSliderPro(bounds, textLeft, textRight, value, minValue, maxValue, sliderWidth)
|
764
|
-
# GuiSliderPro : Slider control with extended parameters
|
765
|
-
# @param bounds [Rectangle]
|
766
|
-
# @param textLeft [const char *]
|
767
|
-
# @param textRight [const char *]
|
768
|
-
# @param value [float *]
|
769
|
-
# @param minValue [float]
|
770
|
-
# @param maxValue [float]
|
771
|
-
# @param sliderWidth [int]
|
772
|
-
# @return [int]
|
773
|
-
[:GuiSliderPro, :GuiSliderPro, [Rectangle.by_value, :pointer, :pointer, :pointer, :float, :float, :int], :int],
|
774
|
-
|
775
763
|
# @!method GuiSliderBar(bounds, textLeft, textRight, value, minValue, maxValue)
|
776
764
|
# GuiSliderBar : Slider Bar control
|
777
765
|
# @param bounds [Rectangle]
|
data/lib/rlgl.rb
CHANGED
@@ -251,11 +251,11 @@ module Raylib
|
|
251
251
|
class RlVertexBuffer < FFI::Struct
|
252
252
|
layout(
|
253
253
|
:elementCount, :int, # Number of elements in the buffer (QUADS)
|
254
|
-
:vertices, :pointer,
|
255
|
-
:texcoords, :pointer,
|
256
|
-
:normals, :pointer,
|
257
|
-
:colors, :pointer,
|
258
|
-
:indices, :pointer,
|
254
|
+
:vertices, :pointer,
|
255
|
+
:texcoords, :pointer,
|
256
|
+
:normals, :pointer,
|
257
|
+
:colors, :pointer,
|
258
|
+
:indices, :pointer,
|
259
259
|
:vaoId, :uint, # OpenGL Vertex Array Object id
|
260
260
|
:vboId, [:uint, 5], # OpenGL Vertex Buffer Objects id (5 types of vertex data)
|
261
261
|
)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: raylib-bindings
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.12
|
5
5
|
platform: x86_64-linux
|
6
6
|
authors:
|
7
7
|
- vaiorabbit
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-29 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: ffi
|