imgui-bindings 0.1.8 → 0.1.10
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 +12 -0
- data/LICENSE.txt +1 -1
- data/README.md +4 -3
- data/lib/imgui.aarch64.so +0 -0
- data/lib/imgui.arm64.dylib +0 -0
- data/lib/imgui.dll +0 -0
- data/lib/imgui.rb +641 -579
- data/lib/imgui.x86_64.dylib +0 -0
- data/lib/imgui.x86_64.so +0 -0
- data/lib/imnodes.aarch64.so +0 -0
- data/lib/imnodes.arm64.dylib +0 -0
- data/lib/imnodes.dll +0 -0
- data/lib/imnodes.x86_64.dylib +0 -0
- data/lib/imnodes.x86_64.so +0 -0
- metadata +9 -7
- data/lib/imgui.dylib +0 -0
- data/lib/imnodes.dylib +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e160bbc6de11474be8b789ef9da4406485f1eaf287007d24d924abd70da046c5
|
|
4
|
+
data.tar.gz: ccfaf322d30b67c3bc21294de95c8a509d21ee05d17f54427c4888a721d7e252
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6134209486b6866eec12dc1664e1928399c956fe87cbdd770e40f69e1e23247f151733e9114a377ff48359e6dcb28a6e056d01bdb3223b8c07da18b0fee197af
|
|
7
|
+
data.tar.gz: 3af69715d7f64e056d8ee187fec3a174cc413dceb9f37e66039a07c838aea576ea098235d6847a8ed9b12c49e39e0d81a794ad5a0824b13fce9649604ddb566a
|
data/ChangeLog
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
2024-01-12 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
2
|
+
|
|
3
|
+
* ImGui v1.90.1
|
|
4
|
+
|
|
5
|
+
2023-12-10 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
6
|
+
|
|
7
|
+
* macOS : Generate libraries for each platform
|
|
8
|
+
|
|
9
|
+
2023-11-19 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
10
|
+
|
|
11
|
+
* ImGui v1.90.0
|
|
12
|
+
|
|
1
13
|
2023-09-09 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
2
14
|
|
|
3
15
|
* ImGui v1.89.9
|
data/LICENSE.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Ruby-ImGui : Yet another ImGui wrapper for Ruby
|
|
2
|
-
Copyright (c) 2019-
|
|
2
|
+
Copyright (c) 2019-2024 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
3
3
|
|
|
4
4
|
This software is provided 'as-is', without any express or implied
|
|
5
5
|
warranty. In no event will the authors be held liable for any damages
|
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 :
|
|
6
|
+
* Last modified : 2024-01-12
|
|
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.
|
|
19
|
+
* ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [arm64-darwin23]
|
|
20
20
|
* [Linux]
|
|
21
21
|
* ruby 3.2.0 (2022-12-25 revision a528908271) [aarch64-linux]
|
|
22
22
|
* Ruby Gems
|
|
@@ -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.2.1 (2023-02-08 revision 31819e82c8) [arm64-darwin22]
|
|
45
46
|
* ruby 3.2.0 (2022-12-25 revision a528908271) [arm64-darwin21]
|
|
46
47
|
* ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [arm64-darwin21]
|
|
47
48
|
* ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [arm64-darwin21]
|
|
@@ -95,7 +96,7 @@ All ruby codes here are available under the terms of the zlib/libpng License ( h
|
|
|
95
96
|
|
|
96
97
|
```
|
|
97
98
|
Ruby-Imgui : Yet another ImGui wrapper for Ruby
|
|
98
|
-
Copyright (c) 2019-
|
|
99
|
+
Copyright (c) 2019-2024 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
99
100
|
|
|
100
101
|
This software is provided 'as-is', without any express or implied
|
|
101
102
|
warranty. In no event will the authors be held liable for any damages
|
data/lib/imgui.aarch64.so
CHANGED
|
Binary file
|
|
Binary file
|
data/lib/imgui.dll
CHANGED
|
Binary file
|