imgui-bindings 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog CHANGED
@@ -1,311 +1,324 @@
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
-
14
- 2022-08-14 vaiorabbit <http://twitter.com/vaiorabbit>
15
-
16
- * Added ImNodes ( https://github.com/rokups/ImNodes ) support
17
- * Moved cimgui location
18
- * Removed unmaintained debug version of shared libraries
19
- * Added hand-written binding code for imgui_internal.h
20
-
21
- 2022-08-06 vaiorabbit <http://twitter.com/vaiorabbit>
22
-
23
- * Fixed several warnings
24
-
25
- 2022-07-02 vaiorabbit <http://twitter.com/vaiorabbit>
26
-
27
- * (macOS) ImGui 1.88
28
- * (Windows) ImGui 1.88
29
- * Updated tested Ruby version
30
-
31
- 2022-02-12 vaiorabbit <http://twitter.com/vaiorabbit>
32
-
33
- * imgui_impl_sdl2.rb: Updated to use event API
34
- * imgui_impl_sdlrenderer.rb: Updated to use new API / Applied https://github.com/ocornut/imgui/commit/c39192ba6403d963d5983fa3e5973f5170cb0e31
35
- * imgui_impl_raylib.rb: Updated to use event API
36
- * basic_usage_sdl2_opengl2.rb: Updated to use new API
37
- * (Windows) ImGui 1.87
38
-
39
- 2022-02-11 vaiorabbit <http://twitter.com/vaiorabbit>
40
-
41
- * (macOS) ImGui 1.87
42
- * imgui_impl_glfw.rb: Updated to use event API
43
-
44
- 2022-01-08 vaiorabbit <http://twitter.com/vaiorabbit>
45
-
46
- * imgui_impl_raylib.rb: Added. Use this with Ruby raylib-bindings ( https://github.com/vaiorabbit/raylib-bindings )
47
-
48
- 2022-01-07 vaiorabbit <http://twitter.com/vaiorabbit>
49
-
50
- * Use opengl-bindings2
51
-
52
- 2022-01-01 vaiorabbit <http://twitter.com/vaiorabbit>
53
-
54
- * imgui-bindings.gemspec: Added
55
-
56
- 2021-12-31 vaiorabbit <http://twitter.com/vaiorabbit>
57
-
58
- * Added setup_dll.rb etc. for automatic library loading
59
- * Changed generator output paths
60
- * (Windows) Build binary with the latest ImGui
61
-
62
- 2021-12-26 vaiorabbit <http://twitter.com/vaiorabbit>
63
-
64
- * (macOS) ImGui 1.86
65
- * imgui_impl_sdlrenderer.rb, sample/test_sdl2_sdlrenderer.rb: Temporary fix to render correctly
66
-
67
- 2021-12-15 vaiorabbit <http://twitter.com/vaiorabbit>
68
-
69
- * imgui_impl_sdlrenderer.rb, sample/test_sdl2_sdlrenderer.rb: Added
70
-
71
- 2021-12-09 vaiorabbit <http://twitter.com/vaiorabbit>
72
-
73
- * (macOS) ImGui 1.86 WIP
74
-
75
- 2021-10-16 vaiorabbit <http://twitter.com/vaiorabbit>
76
-
77
- * (macOS) ImGui 1.85
78
- * basic_usage.rb: Added ImGuiDemo::StackToolWindow
79
-
80
- 2021-09-05 vaiorabbit <http://twitter.com/vaiorabbit>
81
-
82
- * (macOS) ImGui 1.84.2
83
-
84
- 2021-08-22 vaiorabbit <http://twitter.com/vaiorabbit>
85
-
86
- * (macOS) ImGui 1.84.1
87
-
88
- 2021-08-07 vaiorabbit <http://twitter.com/vaiorabbit>
89
-
90
- * imgui_impl_sdl2.rb: Applied https://github.com/ocornut/imgui/commit/1cdd110eb41830ed3c852eade976a066946b7071 (See https://github.com/ocornut/imgui/pull/2696#issuecomment-889336981 )
91
- * imgui_impl_glfw.rb: Applied https://github.com/ocornut/imgui/commit/044fd0cd2d976b31962689afa73c9824a6a08146 (See https://github.com/ocornut/imgui/pull/2696#issuecomment-889336981 )
92
-
93
- 2021-07-05 vaiorabbit <http://twitter.com/vaiorabbit>
94
-
95
- * imgui_impl_sdl2.rb: Partially applied changes in https://github.com/ocornut/imgui/commit/6792e1a3e08c30c6e9015cf51658d14f7872b10b https://github.com/ocornut/imgui/blob/6792e1a3e08c30c6e9015cf51658d14f7872b10b/backends/imgui_impl_sdl.cpp
96
-
97
- 2021-06-21 vaiorabbit <http://twitter.com/vaiorabbit>
98
-
99
- * imgui_impl_opengl3.rb: Applied changes in https://github.com/ocornut/imgui/pull/4244
100
-
101
- 2021-06-20 vaiorabbit <http://twitter.com/vaiorabbit>
102
-
103
- * (Windows) ImGui 1.83
104
- * (macOS) ImGui 1.83
105
- * (macOS) Build script now generates ARM64 binary
106
- * Added reference comments of arguments and return value
107
- * Several APIs now contain underscore in its name due to cimgui change (e.g. GetColorU32Col -> GetColorU32_Col)
108
- * (Experimental) Added overload functions (e.g.: ImGui::Combo, ImGui::MenuItem)
109
-
110
- 2021-03-27 vaiorabbit <http://twitter.com/vaiorabbit>
111
-
112
- * (Windows) ImGui 1.82
113
-
114
- 2021-03-21 vaiorabbit <http://twitter.com/vaiorabbit>
115
-
116
- * (macOS) ImGui 1.82
117
-
118
- 2021-02-20 vaiorabbit <http://twitter.com/vaiorabbit>
119
-
120
- * Applied https://github.com/ocornut/imgui/commit/bda12e5fdd829e44e01a25aac015e156f3dad761
121
-
122
- 2021-02-12 vaiorabbit <http://twitter.com/vaiorabbit>
123
-
124
- * (Windows) ImGui 1.81
125
-
126
- 2021-02-11 vaiorabbit <http://twitter.com/vaiorabbit>
127
-
128
- * (macOS) ImGui 1.81
129
- * sample: Cleaned up Japanese font initialization
130
-
131
- 2021-02-07 vaiorabbit <http://twitter.com/vaiorabbit>
132
-
133
- * (Windows) ImGui 1.80
134
- * (Windows) Built imgui.dll and imgui_debug.dll with:
135
- * ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x64-mingw32]
136
- * gcc (Rev6, Built by MSYS2 project) 10.2.0
137
- * (macOS) ImGui 1.80
138
- * (macOS) Built imgui.dylib with:
139
- * ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [arm64-darwin20]
140
- * Apple clang version 12.0.0 (clang-1200.0.32.29) / Target: arm64-apple-darwin20.2.0
141
- * imgui_impl_opengl2.rb, imgui_impl_opengl3.rb: Applied same changes made at https://github.com/ocornut/imgui/commit/7d5d5711c20d2448fb379de245ddc3b950289873
142
- * generator/generate_imgui.rb: Modified to handle exceptions
143
-
144
- 2020-12-20 vaiorabbit <http://twitter.com/vaiorabbit>
145
-
146
- * third_party/glfw_build.sh, third_party/sdl2_build_dylib.sh: Modified/added to support x86_64|arm64 Universal Binary
147
-
148
- 2020-11-15 vaiorabbit <http://twitter.com/vaiorabbit>
149
-
150
- * (Windows) ImGui 1.79
151
- * (macOS) ImGui 1.79
152
-
153
- 2020-08-24 vaiorabbit <http://twitter.com/vaiorabbit>
154
-
155
- * (macOS) ImGui 1.78
156
-
157
- 2020-08-22 vaiorabbit <http://twitter.com/vaiorabbit>
158
-
159
- * (Windows) ImGui 1.78
160
- * (Windows) Added imgui_debug.dll (Built with 'CMAKE_BUILD_TYPE=Debug')
161
-
162
- 2020-07-04 vaiorabbit <http://twitter.com/vaiorabbit>
163
-
164
- * (Windows) ImGui 1.77
165
-
166
- 2020-06-14 vaiorabbit <http://twitter.com/vaiorabbit>
167
-
168
- * imgui_impl_sdl2.rb: Fixed forcing 'include SDL2'
169
-
170
- 2020-06-12 vaiorabbit <http://twitter.com/vaiorabbit>
171
-
172
- * basic_usage.rb: Fixed ImGui::End() mismatch
173
-
174
- 2020-06-11 vaiorabbit <http://twitter.com/vaiorabbit>
175
-
176
- * imgui_impl_sdl2.rb: Renamed ImplSDL2_InitForOpenGL to ImplSDL2_Init
177
-
178
- 2020-05-13 vaiorabbit <http://twitter.com/vaiorabbit>
179
-
180
- * 'Added support for pointer to struct. Now you can call like 'io[:Fonts].AddFontDefault()'.
181
- * Constructors now return FFI::Struct, not :pointer
182
-
183
- 2020-05-12 vaiorabbit <http://twitter.com/vaiorabbit>
184
-
185
- * Added instance methods (e.g.: ImGui::FontAtlas_AddFontDefault(io[:Fonts]) -> ImFontAtlas.new(io[:Fonts]).AddFontDefault())
186
-
187
- 2020-05-10 vaiorabbit <http://twitter.com/vaiorabbit>
188
-
189
- * imgui_impl_opengl3.rb: Changed default GLSL version string from 130 to 150 (Ref.: https://github.com/ocornut/imgui/pull/3199 )
190
- * generator: Read "stname", "constructor" and "destructor" from "definitions.json"
191
-
192
- 2020-05-05 vaiorabbit <http://twitter.com/vaiorabbit>
193
-
194
- * Added ImDrawList support / Added ImColor.col32
195
- * Added support for ImFontConfig / Added icon font sample
196
- * Added support for FontGlyphRangesBuilder, ImWchar vector / Now constructors return :pointer
197
- * Added support for ImGuiTextFilter, etc. / public interfaces are changed a bit ("ImGuixxx" prefixes are omitted)
198
- * Fixed ImColor.create argument conversion
199
- * Fixed wrong default argument (sizeof(float))
200
- * Added provisional callback signature analyzer / Added callback typedef generation
201
- * Added some CallbackData / Added ImGuiTypedefMapEntry for later use
202
- * Returns ImVec2/4/Color correctly / Added default augument values to ImVec2.create, etc.
203
-
204
- 2020-05-03 vaiorabbit <http://twitter.com/vaiorabbit>
205
-
206
- * Added provisional ImGuiStyle_ methods
207
- * Added provisional ImGuiIO_ methods
208
- * Added sample/basic_usage_sdl2_opengl2.rb
209
- * (Windows) Catching up with ImGui 1.76
210
-
211
- 2020-04-19 vaiorabbit <http://twitter.com/vaiorabbit>
212
-
213
- * Supported default value of public API arguments
214
-
215
- 2020-04-18 vaiorabbit <http://twitter.com/vaiorabbit>
216
-
217
- * (macOS) Catching up with ImGui 1.76
218
- * Generate APIs as wrapper methods (to support default arguments/method overloading in the future)
219
-
220
- 2020-02-11 vaiorabbit <http://twitter.com/vaiorabbit>
221
-
222
- * (macOS) Catching up with ImGui 1.75
223
- * Fixed wrong array argument generation (e.g. arguments like 'float[3]' are now converted into :pointer.)
224
- * Added OpenGL3 render backend (Note that this feature is only tested only on macOS)
225
-
226
- 2020-01-26 vaiorabbit <http://twitter.com/vaiorabbit>
227
-
228
- * Applied changes made in https://github.com/ocornut/imgui/commit/f6da5000bfaf3a035e8d8a7db9b5150644f4630b
229
- "Backends: OpenGL2: Explicitly backup, setup and restore GL_TEXTURE_ENV to increase compatibility with legacy OpenGL applications."
230
-
231
- 2019-11-27 vaiorabbit <http://twitter.com/vaiorabbit>
232
-
233
- * (macOS) Catching up with ImGui 1.74
234
-
235
- 2019-11-02 vaiorabbit <http://twitter.com/vaiorabbit>
236
-
237
- * (Windows) Catching up with ImGui 1.73
238
-
239
- 2019-10-25 vaiorabbit <http://twitter.com/vaiorabbit>
240
-
241
- * (macOS) Catching up with ImGui 1.73
242
-
243
- 2019-09-11 vaiorabbit <http://twitter.com/vaiorabbit>
244
-
245
- * Revised folder structures
246
- * Moved some older codes into backup/
247
-
248
- 2019-09-01 vaiorabbit <http://twitter.com/vaiorabbit>
249
-
250
- * Design change: Libraries are separated into imgui.rb, imgui_impl_glfw.rb and imgui_impl_opengl2.rb
251
- * See sample/test_glfw_opengl2.rb for new usage
252
- * imgui_impl_sdl2.rb, sample/test_sdl2_opengl2.rb, sample/imgui_and_testgl2.rb: Added.
253
- * Note that imgui_glfw_opengl2.rb will not be supported any more.
254
-
255
- 2019-08-25 vaiorabbit <http://twitter.com/vaiorabbit>
256
-
257
- * Revised folder names
258
-
259
- 2019-08-20 vaiorabbit <http://twitter.com/vaiorabbit>
260
-
261
- * linux build tweak https://github.com/vaiorabbit/ruby-imgui/pull/1 (Thanks: Jake Vandereay https://github.com/lunarfyre7)
262
-
263
- 2019-08-03 vaiorabbit <http://twitter.com/vaiorabbit>
264
-
265
- * (Windows) Catching up with ImGui 1.72
266
- * `imgui_glfw_opengl2.dll` was built against ruby 2.6.0p0 (2018-12-25 revision 66547) [x64-mingw32].
267
-
268
- 2019-07-29 vaiorabbit <http://twitter.com/vaiorabbit>
269
-
270
- * (macOS) Catching up with ImGui 1.72
271
-
272
- 2019-07-28 vaiorabbit <http://twitter.com/vaiorabbit>
273
-
274
- * (macOS) Catching up with ImGui 1.71
275
-
276
- 2019-06-09 vaiorabbit <http://twitter.com/vaiorabbit>
277
-
278
- * (macOS) Catching up with ImGui 1.70
279
-
280
- 2019-03-24 vaiorabbit <http://twitter.com/vaiorabbit>
281
-
282
- * (macOS) Catching up with ImGui 1.69
283
-
284
- 2019-02-22 vaiorabbit <http://twitter.com/vaiorabbit>
285
-
286
- * (macOS) Catching up with ImGui 1.68
287
-
288
- 2019-01-15 vaiorabbit <http://twitter.com/vaiorabbit>
289
-
290
- * Catching up with ImGui 1.67
291
-
292
- 2019-01-14 vaiorabbit <http://twitter.com/vaiorabbit>
293
-
294
- * ImFont, ImFontAtlas (imgui_glfw_opengl2.rb): Added
295
-
296
- 2019-01-13 vaiorabbit <http://twitter.com/vaiorabbit>
297
-
298
- * Tested on Windows.
299
- * cimgui_build.sh, cimgui_build.bat: Added.
300
-
301
- 2019-01-06 vaiorabbit <http://twitter.com/vaiorabbit>
302
-
303
- * ImGuiBindings.build_ffi_typedef_map(common.rb): Changed usage
304
- * imgui_glfw_opengl2.dylib: Specified the terms of use.
305
-
306
- 2019-01-05 vaiorabbit <http://twitter.com/vaiorabbit>
307
-
308
- * initial commmit
309
- * Fixed API names (ex. igShowDemoWindow -> ImGui::ShowDemoWindow)
310
- * [Fixed] Failed to generate array type member of struct.
311
- * Added Japanese font loading & rendering example (test.rb)
1
+ 2023-02-23 vaiorabbit <http://twitter.com/vaiorabbit>
2
+
3
+ * ImGui v1.89.3
4
+ * sample/basic_usage.rb: Added ImGui::SeparatorText demo
5
+
6
+ 2023-01-09 vaiorabbit <http://twitter.com/vaiorabbit>
7
+
8
+ * Added Linux binaries (Only tested on aarch64 Chromebook Linux)
9
+
10
+ 2023-01-08 vaiorabbit <http://twitter.com/vaiorabbit>
11
+
12
+ * Generate function comments in bindings codes
13
+
14
+ 2023-01-07 vaiorabbit <http://twitter.com/vaiorabbit>
15
+
16
+ * ImGui v1.89.2
17
+
18
+ 2023-01-04 vaiorabbit <http://twitter.com/vaiorabbit>
19
+
20
+ * lib/imgui_impl_raylib.rb: Removed codes manipulating blend function. Now it seems there's no need to do so.
21
+ * imgui_dll/cimgui_internal.cpp: Internal functions I need are now imported manually
22
+
23
+ 2022-12-25 vaiorabbit <http://twitter.com/vaiorabbit>
24
+
25
+ * ImGui v1.89.1
26
+
27
+ 2022-08-14 vaiorabbit <http://twitter.com/vaiorabbit>
28
+
29
+ * Added ImNodes ( https://github.com/rokups/ImNodes ) support
30
+ * Moved cimgui location
31
+ * Removed unmaintained debug version of shared libraries
32
+ * Added hand-written binding code for imgui_internal.h
33
+
34
+ 2022-08-06 vaiorabbit <http://twitter.com/vaiorabbit>
35
+
36
+ * Fixed several warnings
37
+
38
+ 2022-07-02 vaiorabbit <http://twitter.com/vaiorabbit>
39
+
40
+ * (macOS) ImGui 1.88
41
+ * (Windows) ImGui 1.88
42
+ * Updated tested Ruby version
43
+
44
+ 2022-02-12 vaiorabbit <http://twitter.com/vaiorabbit>
45
+
46
+ * imgui_impl_sdl2.rb: Updated to use event API
47
+ * imgui_impl_sdlrenderer.rb: Updated to use new API / Applied https://github.com/ocornut/imgui/commit/c39192ba6403d963d5983fa3e5973f5170cb0e31
48
+ * imgui_impl_raylib.rb: Updated to use event API
49
+ * basic_usage_sdl2_opengl2.rb: Updated to use new API
50
+ * (Windows) ImGui 1.87
51
+
52
+ 2022-02-11 vaiorabbit <http://twitter.com/vaiorabbit>
53
+
54
+ * (macOS) ImGui 1.87
55
+ * imgui_impl_glfw.rb: Updated to use event API
56
+
57
+ 2022-01-08 vaiorabbit <http://twitter.com/vaiorabbit>
58
+
59
+ * imgui_impl_raylib.rb: Added. Use this with Ruby raylib-bindings ( https://github.com/vaiorabbit/raylib-bindings )
60
+
61
+ 2022-01-07 vaiorabbit <http://twitter.com/vaiorabbit>
62
+
63
+ * Use opengl-bindings2
64
+
65
+ 2022-01-01 vaiorabbit <http://twitter.com/vaiorabbit>
66
+
67
+ * imgui-bindings.gemspec: Added
68
+
69
+ 2021-12-31 vaiorabbit <http://twitter.com/vaiorabbit>
70
+
71
+ * Added setup_dll.rb etc. for automatic library loading
72
+ * Changed generator output paths
73
+ * (Windows) Build binary with the latest ImGui
74
+
75
+ 2021-12-26 vaiorabbit <http://twitter.com/vaiorabbit>
76
+
77
+ * (macOS) ImGui 1.86
78
+ * imgui_impl_sdlrenderer.rb, sample/test_sdl2_sdlrenderer.rb: Temporary fix to render correctly
79
+
80
+ 2021-12-15 vaiorabbit <http://twitter.com/vaiorabbit>
81
+
82
+ * imgui_impl_sdlrenderer.rb, sample/test_sdl2_sdlrenderer.rb: Added
83
+
84
+ 2021-12-09 vaiorabbit <http://twitter.com/vaiorabbit>
85
+
86
+ * (macOS) ImGui 1.86 WIP
87
+
88
+ 2021-10-16 vaiorabbit <http://twitter.com/vaiorabbit>
89
+
90
+ * (macOS) ImGui 1.85
91
+ * basic_usage.rb: Added ImGuiDemo::StackToolWindow
92
+
93
+ 2021-09-05 vaiorabbit <http://twitter.com/vaiorabbit>
94
+
95
+ * (macOS) ImGui 1.84.2
96
+
97
+ 2021-08-22 vaiorabbit <http://twitter.com/vaiorabbit>
98
+
99
+ * (macOS) ImGui 1.84.1
100
+
101
+ 2021-08-07 vaiorabbit <http://twitter.com/vaiorabbit>
102
+
103
+ * imgui_impl_sdl2.rb: Applied https://github.com/ocornut/imgui/commit/1cdd110eb41830ed3c852eade976a066946b7071 (See https://github.com/ocornut/imgui/pull/2696#issuecomment-889336981 )
104
+ * imgui_impl_glfw.rb: Applied https://github.com/ocornut/imgui/commit/044fd0cd2d976b31962689afa73c9824a6a08146 (See https://github.com/ocornut/imgui/pull/2696#issuecomment-889336981 )
105
+
106
+ 2021-07-05 vaiorabbit <http://twitter.com/vaiorabbit>
107
+
108
+ * imgui_impl_sdl2.rb: Partially applied changes in https://github.com/ocornut/imgui/commit/6792e1a3e08c30c6e9015cf51658d14f7872b10b https://github.com/ocornut/imgui/blob/6792e1a3e08c30c6e9015cf51658d14f7872b10b/backends/imgui_impl_sdl.cpp
109
+
110
+ 2021-06-21 vaiorabbit <http://twitter.com/vaiorabbit>
111
+
112
+ * imgui_impl_opengl3.rb: Applied changes in https://github.com/ocornut/imgui/pull/4244
113
+
114
+ 2021-06-20 vaiorabbit <http://twitter.com/vaiorabbit>
115
+
116
+ * (Windows) ImGui 1.83
117
+ * (macOS) ImGui 1.83
118
+ * (macOS) Build script now generates ARM64 binary
119
+ * Added reference comments of arguments and return value
120
+ * Several APIs now contain underscore in its name due to cimgui change (e.g. GetColorU32Col -> GetColorU32_Col)
121
+ * (Experimental) Added overload functions (e.g.: ImGui::Combo, ImGui::MenuItem)
122
+
123
+ 2021-03-27 vaiorabbit <http://twitter.com/vaiorabbit>
124
+
125
+ * (Windows) ImGui 1.82
126
+
127
+ 2021-03-21 vaiorabbit <http://twitter.com/vaiorabbit>
128
+
129
+ * (macOS) ImGui 1.82
130
+
131
+ 2021-02-20 vaiorabbit <http://twitter.com/vaiorabbit>
132
+
133
+ * Applied https://github.com/ocornut/imgui/commit/bda12e5fdd829e44e01a25aac015e156f3dad761
134
+
135
+ 2021-02-12 vaiorabbit <http://twitter.com/vaiorabbit>
136
+
137
+ * (Windows) ImGui 1.81
138
+
139
+ 2021-02-11 vaiorabbit <http://twitter.com/vaiorabbit>
140
+
141
+ * (macOS) ImGui 1.81
142
+ * sample: Cleaned up Japanese font initialization
143
+
144
+ 2021-02-07 vaiorabbit <http://twitter.com/vaiorabbit>
145
+
146
+ * (Windows) ImGui 1.80
147
+ * (Windows) Built imgui.dll and imgui_debug.dll with:
148
+ * ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x64-mingw32]
149
+ * gcc (Rev6, Built by MSYS2 project) 10.2.0
150
+ * (macOS) ImGui 1.80
151
+ * (macOS) Built imgui.dylib with:
152
+ * ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [arm64-darwin20]
153
+ * Apple clang version 12.0.0 (clang-1200.0.32.29) / Target: arm64-apple-darwin20.2.0
154
+ * imgui_impl_opengl2.rb, imgui_impl_opengl3.rb: Applied same changes made at https://github.com/ocornut/imgui/commit/7d5d5711c20d2448fb379de245ddc3b950289873
155
+ * generator/generate_imgui.rb: Modified to handle exceptions
156
+
157
+ 2020-12-20 vaiorabbit <http://twitter.com/vaiorabbit>
158
+
159
+ * third_party/glfw_build.sh, third_party/sdl2_build_dylib.sh: Modified/added to support x86_64|arm64 Universal Binary
160
+
161
+ 2020-11-15 vaiorabbit <http://twitter.com/vaiorabbit>
162
+
163
+ * (Windows) ImGui 1.79
164
+ * (macOS) ImGui 1.79
165
+
166
+ 2020-08-24 vaiorabbit <http://twitter.com/vaiorabbit>
167
+
168
+ * (macOS) ImGui 1.78
169
+
170
+ 2020-08-22 vaiorabbit <http://twitter.com/vaiorabbit>
171
+
172
+ * (Windows) ImGui 1.78
173
+ * (Windows) Added imgui_debug.dll (Built with 'CMAKE_BUILD_TYPE=Debug')
174
+
175
+ 2020-07-04 vaiorabbit <http://twitter.com/vaiorabbit>
176
+
177
+ * (Windows) ImGui 1.77
178
+
179
+ 2020-06-14 vaiorabbit <http://twitter.com/vaiorabbit>
180
+
181
+ * imgui_impl_sdl2.rb: Fixed forcing 'include SDL2'
182
+
183
+ 2020-06-12 vaiorabbit <http://twitter.com/vaiorabbit>
184
+
185
+ * basic_usage.rb: Fixed ImGui::End() mismatch
186
+
187
+ 2020-06-11 vaiorabbit <http://twitter.com/vaiorabbit>
188
+
189
+ * imgui_impl_sdl2.rb: Renamed ImplSDL2_InitForOpenGL to ImplSDL2_Init
190
+
191
+ 2020-05-13 vaiorabbit <http://twitter.com/vaiorabbit>
192
+
193
+ * 'Added support for pointer to struct. Now you can call like 'io[:Fonts].AddFontDefault()'.
194
+ * Constructors now return FFI::Struct, not :pointer
195
+
196
+ 2020-05-12 vaiorabbit <http://twitter.com/vaiorabbit>
197
+
198
+ * Added instance methods (e.g.: ImGui::FontAtlas_AddFontDefault(io[:Fonts]) -> ImFontAtlas.new(io[:Fonts]).AddFontDefault())
199
+
200
+ 2020-05-10 vaiorabbit <http://twitter.com/vaiorabbit>
201
+
202
+ * imgui_impl_opengl3.rb: Changed default GLSL version string from 130 to 150 (Ref.: https://github.com/ocornut/imgui/pull/3199 )
203
+ * generator: Read "stname", "constructor" and "destructor" from "definitions.json"
204
+
205
+ 2020-05-05 vaiorabbit <http://twitter.com/vaiorabbit>
206
+
207
+ * Added ImDrawList support / Added ImColor.col32
208
+ * Added support for ImFontConfig / Added icon font sample
209
+ * Added support for FontGlyphRangesBuilder, ImWchar vector / Now constructors return :pointer
210
+ * Added support for ImGuiTextFilter, etc. / public interfaces are changed a bit ("ImGuixxx" prefixes are omitted)
211
+ * Fixed ImColor.create argument conversion
212
+ * Fixed wrong default argument (sizeof(float))
213
+ * Added provisional callback signature analyzer / Added callback typedef generation
214
+ * Added some CallbackData / Added ImGuiTypedefMapEntry for later use
215
+ * Returns ImVec2/4/Color correctly / Added default augument values to ImVec2.create, etc.
216
+
217
+ 2020-05-03 vaiorabbit <http://twitter.com/vaiorabbit>
218
+
219
+ * Added provisional ImGuiStyle_ methods
220
+ * Added provisional ImGuiIO_ methods
221
+ * Added sample/basic_usage_sdl2_opengl2.rb
222
+ * (Windows) Catching up with ImGui 1.76
223
+
224
+ 2020-04-19 vaiorabbit <http://twitter.com/vaiorabbit>
225
+
226
+ * Supported default value of public API arguments
227
+
228
+ 2020-04-18 vaiorabbit <http://twitter.com/vaiorabbit>
229
+
230
+ * (macOS) Catching up with ImGui 1.76
231
+ * Generate APIs as wrapper methods (to support default arguments/method overloading in the future)
232
+
233
+ 2020-02-11 vaiorabbit <http://twitter.com/vaiorabbit>
234
+
235
+ * (macOS) Catching up with ImGui 1.75
236
+ * Fixed wrong array argument generation (e.g. arguments like 'float[3]' are now converted into :pointer.)
237
+ * Added OpenGL3 render backend (Note that this feature is only tested only on macOS)
238
+
239
+ 2020-01-26 vaiorabbit <http://twitter.com/vaiorabbit>
240
+
241
+ * Applied changes made in https://github.com/ocornut/imgui/commit/f6da5000bfaf3a035e8d8a7db9b5150644f4630b
242
+ "Backends: OpenGL2: Explicitly backup, setup and restore GL_TEXTURE_ENV to increase compatibility with legacy OpenGL applications."
243
+
244
+ 2019-11-27 vaiorabbit <http://twitter.com/vaiorabbit>
245
+
246
+ * (macOS) Catching up with ImGui 1.74
247
+
248
+ 2019-11-02 vaiorabbit <http://twitter.com/vaiorabbit>
249
+
250
+ * (Windows) Catching up with ImGui 1.73
251
+
252
+ 2019-10-25 vaiorabbit <http://twitter.com/vaiorabbit>
253
+
254
+ * (macOS) Catching up with ImGui 1.73
255
+
256
+ 2019-09-11 vaiorabbit <http://twitter.com/vaiorabbit>
257
+
258
+ * Revised folder structures
259
+ * Moved some older codes into backup/
260
+
261
+ 2019-09-01 vaiorabbit <http://twitter.com/vaiorabbit>
262
+
263
+ * Design change: Libraries are separated into imgui.rb, imgui_impl_glfw.rb and imgui_impl_opengl2.rb
264
+ * See sample/test_glfw_opengl2.rb for new usage
265
+ * imgui_impl_sdl2.rb, sample/test_sdl2_opengl2.rb, sample/imgui_and_testgl2.rb: Added.
266
+ * Note that imgui_glfw_opengl2.rb will not be supported any more.
267
+
268
+ 2019-08-25 vaiorabbit <http://twitter.com/vaiorabbit>
269
+
270
+ * Revised folder names
271
+
272
+ 2019-08-20 vaiorabbit <http://twitter.com/vaiorabbit>
273
+
274
+ * linux build tweak https://github.com/vaiorabbit/ruby-imgui/pull/1 (Thanks: Jake Vandereay https://github.com/lunarfyre7)
275
+
276
+ 2019-08-03 vaiorabbit <http://twitter.com/vaiorabbit>
277
+
278
+ * (Windows) Catching up with ImGui 1.72
279
+ * `imgui_glfw_opengl2.dll` was built against ruby 2.6.0p0 (2018-12-25 revision 66547) [x64-mingw32].
280
+
281
+ 2019-07-29 vaiorabbit <http://twitter.com/vaiorabbit>
282
+
283
+ * (macOS) Catching up with ImGui 1.72
284
+
285
+ 2019-07-28 vaiorabbit <http://twitter.com/vaiorabbit>
286
+
287
+ * (macOS) Catching up with ImGui 1.71
288
+
289
+ 2019-06-09 vaiorabbit <http://twitter.com/vaiorabbit>
290
+
291
+ * (macOS) Catching up with ImGui 1.70
292
+
293
+ 2019-03-24 vaiorabbit <http://twitter.com/vaiorabbit>
294
+
295
+ * (macOS) Catching up with ImGui 1.69
296
+
297
+ 2019-02-22 vaiorabbit <http://twitter.com/vaiorabbit>
298
+
299
+ * (macOS) Catching up with ImGui 1.68
300
+
301
+ 2019-01-15 vaiorabbit <http://twitter.com/vaiorabbit>
302
+
303
+ * Catching up with ImGui 1.67
304
+
305
+ 2019-01-14 vaiorabbit <http://twitter.com/vaiorabbit>
306
+
307
+ * ImFont, ImFontAtlas (imgui_glfw_opengl2.rb): Added
308
+
309
+ 2019-01-13 vaiorabbit <http://twitter.com/vaiorabbit>
310
+
311
+ * Tested on Windows.
312
+ * cimgui_build.sh, cimgui_build.bat: Added.
313
+
314
+ 2019-01-06 vaiorabbit <http://twitter.com/vaiorabbit>
315
+
316
+ * ImGuiBindings.build_ffi_typedef_map(common.rb): Changed usage
317
+ * imgui_glfw_opengl2.dylib: Specified the terms of use.
318
+
319
+ 2019-01-05 vaiorabbit <http://twitter.com/vaiorabbit>
320
+
321
+ * initial commmit
322
+ * Fixed API names (ex. igShowDemoWindow -> ImGui::ShowDemoWindow)
323
+ * [Fixed] Failed to generate array type member of struct.
324
+ * Added Japanese font loading & rendering example (test.rb)
data/LICENSE.txt CHANGED
File without changes