fxruby 1.6.47-x64-mingw-ucrt → 1.6.48-x64-mingw-ucrt
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.md +6 -1
- data/doap.rdf +1 -1
- data/ext/fox16_c/FXRuby.cpp +2 -2
- data/ext/fox16_c/core_wrap.cpp +497 -412
- data/ext/fox16_c/dc_wrap.cpp +215 -128
- data/ext/fox16_c/dialogs_wrap.cpp +1333 -1246
- data/ext/fox16_c/extconf.rb +3 -3
- data/ext/fox16_c/frames_wrap.cpp +633 -550
- data/ext/fox16_c/fx3d_wrap.cpp +1556 -1471
- data/ext/fox16_c/iconlist_wrap.cpp +555 -468
- data/ext/fox16_c/icons_wrap.cpp +1062 -975
- data/ext/fox16_c/image_wrap.cpp +912 -825
- data/ext/fox16_c/label_wrap.cpp +744 -657
- data/ext/fox16_c/layout_wrap.cpp +564 -477
- data/ext/fox16_c/list_wrap.cpp +556 -469
- data/ext/fox16_c/markfuncs.cpp +1 -1
- data/ext/fox16_c/mdi_wrap.cpp +1453 -1366
- data/ext/fox16_c/menu_wrap.cpp +1216 -1129
- data/ext/fox16_c/scintilla_wrap.cpp +1034 -943
- data/ext/fox16_c/swigruby.h +88 -28
- data/ext/fox16_c/table_wrap.cpp +1034 -945
- data/ext/fox16_c/text_wrap.cpp +1029 -942
- data/ext/fox16_c/treelist_wrap.cpp +1083 -996
- data/ext/fox16_c/ui_wrap.cpp +1210 -1123
- data/lib/3.1/fox16_c.so +0 -0
- data/lib/3.2/fox16_c.so +0 -0
- data/lib/3.3/fox16_c.so +0 -0
- data/lib/fox16/version.rb +1 -1
- data/ports/x64-mingw-ucrt/bin/libFOX-1.6-0.dll +0 -0
- data/ports/x64-mingw-ucrt/bin/libfxscintilla-20.dll +0 -0
- data/ports/x64-mingw-ucrt/bin/libjpeg-62.dll +0 -0
- data/ports/x64-mingw-ucrt/bin/libpng16-16.dll +0 -0
- data/ports/x64-mingw-ucrt/bin/libtiff-6.dll +0 -0
- data/ports/x64-mingw-ucrt/bin/zlib1.dll +0 -0
- data/swig-interfaces/FXFileDialog.i +2 -2
- data/swig-interfaces/FXFileSelector.i +1 -1
- data/swig-interfaces/FXGLViewer.i +1 -1
- data/swig-interfaces/ruby-typemaps.i +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a41f4d2bb1c4784e7fd8519492e97673421ffd9114f42f50c472f628a7b227f
|
4
|
+
data.tar.gz: 7d5403e73c59cb6bdf03ce258778a3893d1c38da12f0cb487f4250772ca8a625
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e6a350b1e579157048183412e7ccbf0b6d1b1aca70cb125d27b28cc9bb92fa3364c246a8c4db0636c0fa22edd4671e3123f18eb692621d44082faa55b493dcf
|
7
|
+
data.tar.gz: db92a78ae7e542fe38b9aa5c5efe81cd3b0924eb3fed0bb75e4cc2130e4e306b0c02bf6a31e7afd3b4581f337f3661d6b1609dec29d1c943b732e6a3fd06e911
|
data/History.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## 1.6.48 / 2024-07-02
|
2
|
+
|
3
|
+
* Remove 'register' classifier from variables since it's disallowed in C++17.
|
4
|
+
* Update to libpng-1.6.43, libjpeg-turbo-3.0.3, libfox-1.6.58 for Windows binary gems.
|
5
|
+
|
1
6
|
## 1.6.47 / 2024-02-15
|
2
7
|
|
3
8
|
* Migrate from opengl-bindings to opengl-bindings2. #74
|
@@ -75,7 +80,7 @@
|
|
75
80
|
## 1.6.36 / 2017-06-04
|
76
81
|
|
77
82
|
* Support the fxruby source gem on Windows (only RubyInstaller-2.4).
|
78
|
-
* Replace our self-made directory search methods by
|
83
|
+
* Replace our self-made directory search methods by pkg-config.
|
79
84
|
* Enable the use of Win32 unicode functions. Fixes #30 and #38
|
80
85
|
* Fix segfault in vsprintf on Windows 10.
|
81
86
|
* Update support for RubyInstaller-2.4.1-1
|
data/doap.rdf
CHANGED
data/ext/fox16_c/FXRuby.cpp
CHANGED
@@ -1530,7 +1530,7 @@ void FXRbTreeList::enumerateItem(FXTreeItem* item,FXObjectListOf<FXTreeItem>& it
|
|
1530
1530
|
// Visit all of the items between fm and to (inclusive), plus their
|
1531
1531
|
// child items, and add to the items list
|
1532
1532
|
void FXRbTreeList::enumerateItems(FXTreeItem* fm,FXTreeItem* to,FXObjectListOf<FXTreeItem>& items){
|
1533
|
-
|
1533
|
+
FXTreeItem *item;
|
1534
1534
|
if(fm && to){
|
1535
1535
|
do{
|
1536
1536
|
item=fm;
|
@@ -1561,7 +1561,7 @@ void FXRbFoldingList::enumerateItem(FXFoldingItem* item,FXObjectListOf<FXFolding
|
|
1561
1561
|
* child items, and add to the items list.
|
1562
1562
|
*/
|
1563
1563
|
void FXRbFoldingList::enumerateItems(FXFoldingItem* fm,FXFoldingItem* to,FXObjectListOf<FXFoldingItem>& items){
|
1564
|
-
|
1564
|
+
FXFoldingItem *item;
|
1565
1565
|
if(fm && to){
|
1566
1566
|
do{
|
1567
1567
|
item=fm;
|