fxruby 1.6.47-x64-mingw32 → 1.6.48-x64-mingw32
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/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/2.6/fox16_c.so +0 -0
- data/lib/2.7/fox16_c.so +0 -0
- data/lib/3.0/fox16_c.so +0 -0
- data/lib/fox16/version.rb +1 -1
- data/ports/x64-mingw32/bin/libFOX-1.6-0.dll +0 -0
- data/ports/x64-mingw32/bin/libfxscintilla-20.dll +0 -0
- data/ports/x64-mingw32/bin/libjpeg-62.dll +0 -0
- data/ports/x64-mingw32/bin/libpng16-16.dll +0 -0
- data/ports/x64-mingw32/bin/libtiff-6.dll +0 -0
- data/ports/x64-mingw32/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: ad424f64db48027fda47e022bdc162d7f0f90a6de1429e0103da7997bab904c5
|
4
|
+
data.tar.gz: 74fca6ac23e9a165251caa97f76a7a4801d28d530695cd6e5edec0ca86503841
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e58e1297f7864330126ff81b1f950d1f26f72173875e863f4d84bbc67292c3f35443341132200c0606889c1d14f0572fbc35fb21e9cd89873ea191c51bcb524
|
7
|
+
data.tar.gz: 84e1f5873576f923c202c44319dc52102fe98d7188fd37062ae05e6c22c5f54bd1aab7846f5c3755c3cf24b92f5b2ef13c5d2aef2e10c1951fec3e925363190f
|
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;
|