fxruby 1.6.47 → 1.6.48

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31c2ec8dd6757de09c8067f2db382b8ca7dd8548d87cd705827212b9abf7c8c4
4
- data.tar.gz: b3d7ebf4e8f9d944dcdf913d13d6c8b6b1f4dce41788ad0cba76b18b149c6e4d
3
+ metadata.gz: a12bf3ccee4dc2ad1000de732f06ee0056e3a30f16ddd91fc180b5a5457a6e47
4
+ data.tar.gz: 3d038df31d2f94396bde11c9bcdf974e606f32d0642657d75c61f84dafa57520
5
5
  SHA512:
6
- metadata.gz: 1acefbdfc54aa31207b073fea5ca7fd93ba5a050fa7c6a96caebd70cfdade613fee3663f7490a1f857f6c3f6d51c181e15273d8d84acd43b2009cf8c87adb2a9
7
- data.tar.gz: c917f690d105c77dff4f213ad06cf897f20d0eefafbc541ea312ee62f03cbe9a5d4ff8b908fd3a4278bd5415582af4aaeb9d9e42280df0e78d68153390ef544c
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 pgk-config.
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
@@ -77,7 +77,7 @@
77
77
  <doap:release>
78
78
  <doap:Version>
79
79
  <doap:branch>fox16</doap:branch>
80
- <doap:created>2022-12-13</doap:created>
80
+ <doap:created>2023-02-18</doap:created>
81
81
  <doap:revision>1.6.45</doap:revision>
82
82
  </doap:Version>
83
83
  </doap:release>
@@ -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
- register FXTreeItem *item;
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
- register FXFoldingItem *item;
1564
+ FXFoldingItem *item;
1565
1565
  if(fm && to){
1566
1566
  do{
1567
1567
  item=fm;