imgui-bindings 0.1.0 → 0.1.2

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: 9d85ab51913e9f7e8f1a53d6ec0da01c5d6622242beebd9bada8d09bc0fe7023
4
- data.tar.gz: e5e0393ed8d1f481c6ed735f2ef09caefdf8f0049ddf66c4cd8ba461a8e6e5c6
3
+ metadata.gz: ac2e8aeafaeb6c13c43f183f9862e688d619798c4f307966bbf6eb12e1f25c41
4
+ data.tar.gz: a855ffee1f253bfcaecee333b1a24464643c579c066618ee9fbbf33fc9fdbe0c
5
5
  SHA512:
6
- metadata.gz: 701c4754521d32d9a951492a55ce1f6a18b83d1a420053ce8aaeae1bdfc7b053807c719a3b79c07668a6b613dc18793e71e12741ae1346a2e484344a8d15db83
7
- data.tar.gz: 1ec45b3575411a865285bd6aea1af87925321d592154edd4759bc4ba91da993c503058d4115fae02cf1dd4a4fceb7a72bfcb16e10321e7039018b5f94180413c
6
+ metadata.gz: b5250869d85ebf0b9996ba6d87b669a0b6d5ca689b58f07fd9b93a3473e24678482556644f8531bd6720d9d52ee2d68de806a45111c2bcf57d53636f63d0109c
7
+ data.tar.gz: ff8cd7ae729f5da4749ec30d7fda4c3cb2e6ba57d86515dc3d1ca8b49cc7c56cfdeff1d63353609f7246a79fed401c2a0801bc3ec509cb2c21165c0e5f82d67a
data/ChangeLog CHANGED
@@ -1,3 +1,16 @@
1
+ 2023-01-07 vaiorabbit <http://twitter.com/vaiorabbit>
2
+
3
+ * ImGui v1.89.2
4
+
5
+ 2023-01-04 vaiorabbit <http://twitter.com/vaiorabbit>
6
+
7
+ * lib/imgui_impl_raylib.rb: Removed codes manipulating blend function. Now it seems there's no need to do so.
8
+ * imgui_dll/cimgui_internal.cpp: Internal functions I need are now imported manually
9
+
10
+ 2022-12-25 vaiorabbit <http://twitter.com/vaiorabbit>
11
+
12
+ * ImGui v1.89.1
13
+
1
14
  2022-08-14 vaiorabbit <http://twitter.com/vaiorabbit>
2
15
 
3
16
  * Added ImNodes ( https://github.com/rokups/ImNodes ) support
data/LICENSE.txt CHANGED
@@ -1,5 +1,5 @@
1
1
  Ruby-ImGui : Yet another ImGui wrapper for Ruby
2
- Copyright (c) 2019-2022 vaiorabbit <http://twitter.com/vaiorabbit>
2
+ Copyright (c) 2019-2023 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 : 2022-08-14
6
+ * Last modified : 2023-01-07
7
7
 
8
8
  <img src="https://raw.githubusercontent.com/vaiorabbit/ruby-imgui/master/doc/jpfont_test.png" width="250">
9
9
 
@@ -14,18 +14,18 @@
14
14
  * Ruby interpreter
15
15
  * Tested on:
16
16
  * [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
17
- * ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [x64-mingw-ucrt]
17
+ * ruby 3.2.0 (2022-12-25 revision a528908271) [x64-mingw-ucrt]
18
18
  * [macOS]
19
- * ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [arm64-darwin21]
19
+ * ruby 3.2.0 (2022-12-25 revision a528908271) [arm64-darwin21]
20
20
  * Ruby Gems
21
- * opengl-bindings
22
- * gem install opengl-bindings
21
+ * opengl-bindings2
22
+ * gem install opengl-bindings2
23
23
  * ffi
24
24
  * gem install ffi
25
25
  * Compiler
26
26
  * Tested on:
27
- * [Windows] gcc (Rev1, Built by MSYS2 project) 8.2.1 20181214
28
- * [macOS] clang (Apple clang version 13.1.6 (clang-1316.0.21.2.5), Target: arm64-apple-darwin21.5.0)
27
+ * [Windows] gcc (Rev7, Built by MSYS2 project) 12.2.0
28
+ * [macOS] Apple clang version 14.0.0 (clang-1400.0.29.202), Target: arm64-apple-darwin22.2.0
29
29
  * CMake https://cmake.org/download/
30
30
 
31
31
  <details>
@@ -34,10 +34,12 @@
34
34
  * Ruby interpreter
35
35
  * Tested on:
36
36
  * [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
37
+ * ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [x64-mingw-ucrt]
37
38
  * ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [x64-mingw32]
38
39
  * ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x64-mingw32]
39
40
  * ruby 2.7.1p83 (2020-03-31 revision a0c7c23c9c) [x64-mingw32]
40
41
  * [macOS]
42
+ * ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [arm64-darwin21]
41
43
  * ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [arm64-darwin21]
42
44
  * ruby 3.1.0p0 (2021-12-25 revision fb4df44d16) [arm64-darwin20]
43
45
  * ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [arm64-darwin20]
@@ -48,7 +50,9 @@
48
50
 
49
51
  * Compiler
50
52
  * Tested on:
53
+ * [Windows] gcc (Rev10, Built by MSYS2 project) 11.2.0
51
54
  * [Windows] gcc (Rev1, Built by MSYS2 project) 8.2.1 20181214
55
+ * [macOS] clang (Apple clang version 13.1.6 (clang-1316.0.21.2.5), Target: arm64-apple-darwin21.5.0)
52
56
  * [macOS] clang (Apple clang version 12.0.5 (clang-1205.0.22.11), Target: arm64-apple-darwin20.6.0)
53
57
  </details>
54
58
 
@@ -88,7 +92,7 @@ All ruby codes here are available under the terms of the zlib/libpng License ( h
88
92
 
89
93
  ```
90
94
  Ruby-Imgui : Yet another ImGui wrapper for Ruby
91
- Copyright (c) 2019-2022 vaiorabbit <http://twitter.com/vaiorabbit>
95
+ Copyright (c) 2019-2023 vaiorabbit <http://twitter.com/vaiorabbit>
92
96
 
93
97
  This software is provided 'as-is', without any express or implied
94
98
  warranty. In no event will the authors be held liable for any damages
data/lib/imgui.dll CHANGED
Binary file
data/lib/imgui.dylib CHANGED
Binary file