raylib-bindings 0.7.5-x86_64-darwin → 0.7.6-x86_64-darwin
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 +8 -0
- data/README.md +3 -3
- data/lib/libraylib.x86_64.dylib +0 -0
- data/lib/physac.x86_64.dylib +0 -0
- data/lib/raygui.x86_64.dylib +0 -0
- data/lib/raygui_main.rb +6 -5
- data/lib/raylib_main.rb +1 -1
- metadata +3 -3
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 92634dcb163e972186ee5b2b62d4a7a416b30ccafdf8875d16b46de75115c0c0
         | 
| 4 | 
            +
              data.tar.gz: a38b36756920634fa4ba0b994ade9eadc4933197d8e9cf1a6821028bb7c51160
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 0e99951b0f1031a3c0a9403ad1d5cac3c2f6a554b2ecd138b004be1ad043a6a9417cb0ba25ec8c2819168f7337bbcae277e2f89d13d2d56adf4eeb5946c12234
         | 
| 7 | 
            +
              data.tar.gz: 0eec8fa142e5cfc325e12bc891d10d32e2af509c12a69d934e9468fee39baaebbc70fa556e192373cd6f6fade52b89fc83a1378303d511776ec67de2491d92b3
         | 
    
        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- | 
| 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. | 
| 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. | 
| 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">
         | 
    
        data/lib/libraylib.x86_64.dylib
    CHANGED
    
    | Binary file | 
    
        data/lib/physac.x86_64.dylib
    CHANGED
    
    | Binary file | 
    
        data/lib/raygui.x86_64.dylib
    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 | 
            -
               | 
| 383 | 
            -
               | 
| 384 | 
            -
               | 
| 385 | 
            -
               | 
| 386 | 
            -
               | 
| 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
    
    
    
        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. | 
| 4 | 
            +
              version: 0.7.6
         | 
| 5 5 | 
             
            platform: x86_64-darwin
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - vaiorabbit
         | 
| 8 8 | 
             
            autorequire:
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2024- | 
| 11 | 
            +
            date: 2024-08-12 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: ffi
         | 
| @@ -71,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 71 71 | 
             
                - !ruby/object:Gem::Version
         | 
| 72 72 | 
             
                  version: '0'
         | 
| 73 73 | 
             
            requirements: []
         | 
| 74 | 
            -
            rubygems_version: 3.5. | 
| 74 | 
            +
            rubygems_version: 3.5.15
         | 
| 75 75 | 
             
            signing_key:
         | 
| 76 76 | 
             
            specification_version: 4
         | 
| 77 77 | 
             
            summary: Ruby bindings for raylib, raygui and Physac
         |