fxruby 1.6.47 → 1.6.48
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/History.md +7 -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/fox16/version.rb +1 -1
- 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
- data.tar.gz.sig +0 -0
- metadata +25 -25
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a12bf3ccee4dc2ad1000de732f06ee0056e3a30f16ddd91fc180b5a5457a6e47
|
4
|
+
data.tar.gz: 3d038df31d2f94396bde11c9bcdf974e606f32d0642657d75c61f84dafa57520
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0bb71c9a1e2b4d950a92f9899a163e4b0c6a900872ca57eae69deadd6b437ebbe6fd5934bd2fe64c3b6c4de170cf9b45630fdf7b138f0bbb2a3ae2027b9fc9ff
|
7
|
+
data.tar.gz: '0759589a08821b3860fd025bac72b629e96281148c969821ea5e7e676e53806d717d1edf67140a443b61beba442202091a66d60703d8badd2ac8c0135561c6aa'
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/History.md
CHANGED
@@ -1,8 +1,14 @@
|
|
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
|
4
9
|
* Update to libz-1.3.1, libpng-1.6.42, libjpeg-turbo-3.0.2, libtiff-4.6.0 for Windows binary gems.
|
5
10
|
* Add binary gem support for ruby-3.3 on Windows.
|
11
|
+
* Drop support for ruby-2.5
|
6
12
|
|
7
13
|
## 1.6.46 / 2023-02-19
|
8
14
|
|
@@ -74,7 +80,7 @@
|
|
74
80
|
## 1.6.36 / 2017-06-04
|
75
81
|
|
76
82
|
* Support the fxruby source gem on Windows (only RubyInstaller-2.4).
|
77
|
-
* Replace our self-made directory search methods by
|
83
|
+
* Replace our self-made directory search methods by pkg-config.
|
78
84
|
* Enable the use of Win32 unicode functions. Fixes #30 and #38
|
79
85
|
* Fix segfault in vsprintf on Windows 10.
|
80
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;
|