imgui-bindings 0.1.12-x86_64-darwin → 0.1.14-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 +5 -3
- data/lib/imgui.rb +617 -279
- data/lib/imgui.x86_64.dylib +0 -0
- data/lib/imnodes.x86_64.dylib +0 -0
- 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: 51ec689d91daf96c99720bedfe4ea5fb154036a8fc84282c0672c7b9cb229b87
|
4
|
+
data.tar.gz: b391cc6b7bdfcdfdca6ef535f1e7c780212f773f0e2e5d45c22c23bffafae4b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f36a81e857fdde306b22af871865c65a72cca5e62125291c4706037b8e2cab9d3f08be462009f60de3da4a89450cd0059681e48be4e60fc82b3f0bb907e6d94
|
7
|
+
data.tar.gz: fb2073a0a15bcf4784b48c41536c3e2b9ba7e7ae676eb726ef32af70809603bfb405d2c9e6eb61f82a727f335986051aee27f79f51d221f9b55e32baf5e9cc94
|
data/ChangeLog
CHANGED
data/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# Yet another ImGui wrapper for Ruby #
|
4
4
|
|
5
5
|
* Created : 2019-01-05
|
6
|
-
* Last modified : 2024-04
|
6
|
+
* Last modified : 2024-08-04
|
7
7
|
|
8
8
|
<img src="https://raw.githubusercontent.com/vaiorabbit/ruby-imgui/master/doc/jpfont_test.png" width="250">
|
9
9
|
|
@@ -16,7 +16,7 @@
|
|
16
16
|
* [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
|
17
17
|
* ruby 3.2.0 (2022-12-25 revision a528908271) [x64-mingw-ucrt]
|
18
18
|
* [macOS]
|
19
|
-
* ruby 3.3.
|
19
|
+
* ruby 3.3.3 (2024-06-12 revision f1c7b6f435) [arm64-darwin23]
|
20
20
|
* [Linux]
|
21
21
|
* ruby 3.2.0 (2022-12-25 revision a528908271) [aarch64-linux]
|
22
22
|
* Ruby Gems
|
@@ -27,7 +27,7 @@
|
|
27
27
|
* Compiler
|
28
28
|
* Tested on:
|
29
29
|
* [Windows] gcc (Rev7, Built by MSYS2 project) 12.2.0
|
30
|
-
* [macOS] Apple clang version
|
30
|
+
* [macOS] Apple clang version 15.0.0 (clang-1500.3.9.4)
|
31
31
|
* [Linux] gcc (Debian 10.2.1-6) 10.2.1 20210110
|
32
32
|
* CMake https://cmake.org/download/
|
33
33
|
|
@@ -42,6 +42,7 @@
|
|
42
42
|
* ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x64-mingw32]
|
43
43
|
* ruby 2.7.1p83 (2020-03-31 revision a0c7c23c9c) [x64-mingw32]
|
44
44
|
* [macOS]
|
45
|
+
* ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [arm64-darwin23]
|
45
46
|
* ruby 3.2.1 (2023-02-08 revision 31819e82c8) [arm64-darwin22]
|
46
47
|
* ruby 3.2.0 (2022-12-25 revision a528908271) [arm64-darwin21]
|
47
48
|
* ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [arm64-darwin21]
|
@@ -57,6 +58,7 @@
|
|
57
58
|
* Tested on:
|
58
59
|
* [Windows] gcc (Rev10, Built by MSYS2 project) 11.2.0
|
59
60
|
* [Windows] gcc (Rev1, Built by MSYS2 project) 8.2.1 20181214
|
61
|
+
* [macOS] Apple clang version 14.0.0 (clang-1400.0.29.202), Target: arm64-apple-darwin22.2.0
|
60
62
|
* [macOS] clang (Apple clang version 13.1.6 (clang-1316.0.21.2.5), Target: arm64-apple-darwin21.5.0)
|
61
63
|
* [macOS] clang (Apple clang version 12.0.5 (clang-1205.0.22.11), Target: arm64-apple-darwin20.6.0)
|
62
64
|
</details>
|