foxguib 1.1.0 → 1.1.1
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
- checksums.yaml.gz.sig +0 -0
- data/changelog.txt +108 -88
- data/foxguib.gemspec +3 -3
- data/src/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +27 -35
- 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: 972caee55bce9515154cdb04f4e4a05499f38840181d5482de15ed16732916ec
|
|
4
|
+
data.tar.gz: 274a7cc40e7cb720ae8c1b3ea17458a6f2fdcefa486ec9883c3c852e9c5afd76
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f71548873ace80fd70ee57f5258e64a2995ba3dcfd5759e15a3ce0a149866fa1b3e3bf2734d051672bf9c6fb03607fa2f0027c7cf073b77700eef5abfe58372
|
|
7
|
+
data.tar.gz: a9289d020a73f7f8bc7f3ca60a457a2dd1b71ddd1500e7b63b03954befe12777fea78cee9dece32b6838ccb747ef4f0fa3db7ac8847ec35bb182d3fda504740f
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/changelog.txt
CHANGED
|
@@ -1,68 +1,88 @@
|
|
|
1
|
-
===========================================================
|
|
2
|
-
foxGUIb v1.
|
|
3
|
-
===========================================================
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
===========================================================
|
|
2
|
+
foxGUIb v1.1.1 for FXRuby 1.6
|
|
3
|
+
===========================================================
|
|
4
|
+
|
|
5
|
+
* Fix compatibility to Ruby-4.0 and bundler-4.0
|
|
6
|
+
|
|
7
|
+
===========================================================
|
|
8
|
+
foxGUIb v1.1.0 for FXRuby 1.6
|
|
9
|
+
===========================================================
|
|
10
|
+
|
|
11
|
+
* Update code for compatibility up to ruby-3.3
|
|
12
|
+
* Save layouts to *.pp files in a sorted format, to allow proper diffs and better version control of pp files.
|
|
13
|
+
* Generate ruby files in a standardrb conforming coding style
|
|
14
|
+
* Lots of internal code formatting mostly by standardrb to match more common coding style
|
|
15
|
+
* Allow loading of *.pp-files as arguments to foxguib binary
|
|
16
|
+
* Fix crashes on X-Windows due to setting focus on non-created widgets
|
|
17
|
+
* Fix warnings generated by libGUIb on more recent ruby versions
|
|
18
|
+
* Fix setting numColumns and numRows on FX::Matrix
|
|
19
|
+
* Build foxguib and libguib gems and release them on rubygems.org
|
|
20
|
+
|
|
21
|
+
===========================================================
|
|
22
|
+
foxGUIb v1.0.0 for FXRuby 1.6
|
|
23
|
+
===========================================================
|
|
24
|
+
|
|
25
|
+
* fixed: a bug that blocked the radio buttons in Generator Dialog
|
|
26
|
+
* fixed: better error message when loading of libguib fails
|
|
27
|
+
* added $VERBOSE=nil to overcome a bug in ruby 1.8.x that yields a whole lot
|
|
28
|
+
of warnings when loading fxruby
|
|
29
|
+
* fixed a bug in RangeProp
|
|
30
|
+
|
|
11
31
|
===========================================================
|
|
12
32
|
foxGUIb v0.7.1 for FXRuby 1.6
|
|
13
33
|
===========================================================
|
|
14
34
|
|
|
15
35
|
* fixed: numbers and constants weren't saved/loaded right
|
|
16
|
-
* fixed: crash when deleting a radiobutton out of a
|
|
36
|
+
* fixed: crash when deleting a radiobutton out of a
|
|
17
37
|
radiomutex.
|
|
18
38
|
|
|
19
|
-
===========================================================
|
|
20
|
-
foxGUIb v0.7 for FXRuby 1.6
|
|
21
|
-
===========================================================
|
|
22
|
-
|
|
23
|
-
Summary:
|
|
24
|
-
--------
|
|
25
|
-
|
|
26
|
-
FOX 1.6 brings to you full unicode support. see:
|
|
27
|
-
foxGUIb/test/unicode_test_japanese.rbin
|
|
28
|
-
This release is tested against FXRuby 1.6.0
|
|
29
|
-
I got some bug reports and most of them are fixed in this
|
|
30
|
-
release. Please keep sending bug reports to further improve
|
|
31
|
-
foxGUIb.
|
|
32
|
-
|
|
33
|
-
List of changes:
|
|
34
|
-
----------------
|
|
35
|
-
* restructured the source repository to be user centered.
|
|
36
|
-
now the sources are in ./src and only the important files
|
|
37
|
-
are in the toplevel directory.
|
|
38
|
-
* Fixed the bug that allowed to change properties of a
|
|
39
|
-
deleted widget (caused a crash)
|
|
40
|
-
* Fixed several bugs that led to crashes when typing
|
|
41
|
-
improper values into the property manipulators. e.g.:
|
|
42
|
-
backColor="bad input" instead of "200,255,255"
|
|
43
|
-
* on startup foxGUIb logs important version infos to the
|
|
44
|
-
log file. the log file is appended instead of replaced.
|
|
45
|
-
in case of a problem you can send me your logfile.
|
|
46
|
-
* some code improvements. hope i didn't introduce more bugs
|
|
47
|
-
* repository switched to svn.
|
|
48
|
-
... the contracting design window issue (windows only) is
|
|
49
|
-
still unfixed.
|
|
50
|
-
|
|
51
|
-
===========================================================
|
|
39
|
+
===========================================================
|
|
40
|
+
foxGUIb v0.7 for FXRuby 1.6
|
|
41
|
+
===========================================================
|
|
42
|
+
|
|
43
|
+
Summary:
|
|
44
|
+
--------
|
|
45
|
+
|
|
46
|
+
FOX 1.6 brings to you full unicode support. see:
|
|
47
|
+
foxGUIb/test/unicode_test_japanese.rbin
|
|
48
|
+
This release is tested against FXRuby 1.6.0
|
|
49
|
+
I got some bug reports and most of them are fixed in this
|
|
50
|
+
release. Please keep sending bug reports to further improve
|
|
51
|
+
foxGUIb.
|
|
52
|
+
|
|
53
|
+
List of changes:
|
|
54
|
+
----------------
|
|
55
|
+
* restructured the source repository to be user centered.
|
|
56
|
+
now the sources are in ./src and only the important files
|
|
57
|
+
are in the toplevel directory.
|
|
58
|
+
* Fixed the bug that allowed to change properties of a
|
|
59
|
+
deleted widget (caused a crash)
|
|
60
|
+
* Fixed several bugs that led to crashes when typing
|
|
61
|
+
improper values into the property manipulators. e.g.:
|
|
62
|
+
backColor="bad input" instead of "200,255,255"
|
|
63
|
+
* on startup foxGUIb logs important version infos to the
|
|
64
|
+
log file. the log file is appended instead of replaced.
|
|
65
|
+
in case of a problem you can send me your logfile.
|
|
66
|
+
* some code improvements. hope i didn't introduce more bugs
|
|
67
|
+
* repository switched to svn.
|
|
68
|
+
... the contracting design window issue (windows only) is
|
|
69
|
+
still unfixed.
|
|
70
|
+
|
|
71
|
+
===========================================================
|
|
52
72
|
foxGUIb v0.6.2 for FXRuby 1.4.x (stable)
|
|
53
|
-
===========================================================
|
|
73
|
+
===========================================================
|
|
54
74
|
* fixed the "initial design window" isssue on windows.
|
|
55
|
-
|
|
56
75
|
|
|
57
|
-
|
|
76
|
+
|
|
77
|
+
===========================================================
|
|
58
78
|
foxGUIb v0.6.1 for FXRuby 1.4.x
|
|
59
|
-
===========================================================
|
|
79
|
+
===========================================================
|
|
60
80
|
* fixed the forgotten comma which caused a crash
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
===========================================================
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
===========================================================
|
|
64
84
|
foxGUIb v0.6 for FXRuby 1.4.x
|
|
65
|
-
===========================================================
|
|
85
|
+
===========================================================
|
|
66
86
|
* added widgets radiomutex menuradio and menucheck
|
|
67
87
|
* validates widget names (whether suitable as instance var), lowercase default names
|
|
68
88
|
* fixed the codegen-dialog startup bugs:
|
|
@@ -86,43 +106,43 @@ foxGUIb v0.6 for FXRuby 1.4.x
|
|
|
86
106
|
* updated foxGUIb to use libGUIb14.rb
|
|
87
107
|
* hacked mainwindow layouts to be always in front of foxGUIb mainwin
|
|
88
108
|
* fixed: the mainwindow allways in front of guib hack introduced a new problem. mainwindows got generated as dialog boxes
|
|
89
|
-
* eliminated include FX and include Fox from libGUIb.
|
|
109
|
+
* eliminated include FX and include Fox from libGUIb.
|
|
90
110
|
* fixed bug in event_handler example
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
--------------------------------------------------------------------
|
|
94
|
-
v0.5.0
|
|
95
|
-
* Compatible with FXRuby1.4.4. Unfortunately this release is incompatible with
|
|
96
|
-
old FXRuby versions <= 1.2.6. Send me a feature request if you need it.
|
|
97
|
-
* New feature: "EventEditor". Event handling code can be written directly in
|
|
98
|
-
the EventEditor. Test running of the designed GUI with events is not included yet.
|
|
99
|
-
* The code generator supports events. See the event_handler.rbin example.
|
|
100
|
-
* EventEditor shows documentation for each listed event in the FXRuby API
|
|
101
|
-
* I polished foxGUIb's own GUI a bit. Looks quite professional now ;)
|
|
102
|
-
* Most icons are now in TGA file format which can allways be loaded because TGA
|
|
103
|
-
support is built-in in the FOX library.
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
--------------------------------------------------------------------
|
|
114
|
+
v0.5.0
|
|
115
|
+
* Compatible with FXRuby1.4.4. Unfortunately this release is incompatible with
|
|
116
|
+
old FXRuby versions <= 1.2.6. Send me a feature request if you need it.
|
|
117
|
+
* New feature: "EventEditor". Event handling code can be written directly in
|
|
118
|
+
the EventEditor. Test running of the designed GUI with events is not included yet.
|
|
119
|
+
* The code generator supports events. See the event_handler.rbin example.
|
|
120
|
+
* EventEditor shows documentation for each listed event in the FXRuby API
|
|
121
|
+
* I polished foxGUIb's own GUI a bit. Looks quite professional now ;)
|
|
122
|
+
* Most icons are now in TGA file format which can allways be loaded because TGA
|
|
123
|
+
support is built-in in the FOX library.
|
|
104
124
|
* Fixed the startup crash on linux platforms.
|
|
105
|
-
* Fixed "Save As" Bug
|
|
106
|
-
Notes: Mike Parr is currently writing documentation for foxGUIb. The docu will be
|
|
107
|
-
included in the package in succeding versions. Thanks to all who encouraged me to
|
|
125
|
+
* Fixed "Save As" Bug
|
|
126
|
+
Notes: Mike Parr is currently writing documentation for foxGUIb. The docu will be
|
|
127
|
+
included in the package in succeding versions. Thanks to all who encouraged me to
|
|
108
128
|
continue on foxGUIb!!
|
|
109
|
-
--------------------------------------------------------------------
|
|
110
|
-
v1_branch: (unstable)
|
|
111
|
-
* completed module Direct Widget Manipulation that features
|
|
112
|
-
* insert mode: mouse and keyboard controllable insert cursor
|
|
113
|
-
* edit mode: mouse-over hovering, single/multiple select, recursive select
|
|
114
|
-
and mouse-drag-relink, keyboard relink of selected widget
|
|
115
|
-
--------------------------------------------------------------------
|
|
116
|
-
version 0.4.1: development release. (unstable)
|
|
117
|
-
* fixed a critical bug in code-generator.rb (widgetname without quotes)
|
|
118
|
-
--------------------------------------------------------------------
|
|
119
|
-
version 0.4: development release. (unstable)
|
|
120
|
-
* ported to fox12 - fxruby 1.2.6 but tried to be backward compatible to fox 1.0. that is:
|
|
121
|
-
previous foxGUIb version documents can be loaded.
|
|
122
|
-
NOTE: radiobuttons in groupboxes don't support radio behaviour any more.
|
|
123
|
-
* code generator outputs version
|
|
124
|
-
* fixed bug: crashes after switching to a loaded document.
|
|
125
|
-
* Combobox#comboItems= now takes a newline seperated string
|
|
126
|
-
* added widgets: MainWindow, Matrix
|
|
127
|
-
--------------------------------------------------------------------
|
|
129
|
+
--------------------------------------------------------------------
|
|
130
|
+
v1_branch: (unstable)
|
|
131
|
+
* completed module Direct Widget Manipulation that features
|
|
132
|
+
* insert mode: mouse and keyboard controllable insert cursor
|
|
133
|
+
* edit mode: mouse-over hovering, single/multiple select, recursive select
|
|
134
|
+
and mouse-drag-relink, keyboard relink of selected widget
|
|
135
|
+
--------------------------------------------------------------------
|
|
136
|
+
version 0.4.1: development release. (unstable)
|
|
137
|
+
* fixed a critical bug in code-generator.rb (widgetname without quotes)
|
|
138
|
+
--------------------------------------------------------------------
|
|
139
|
+
version 0.4: development release. (unstable)
|
|
140
|
+
* ported to fox12 - fxruby 1.2.6 but tried to be backward compatible to fox 1.0. that is:
|
|
141
|
+
previous foxGUIb version documents can be loaded.
|
|
142
|
+
NOTE: radiobuttons in groupboxes don't support radio behaviour any more.
|
|
143
|
+
* code generator outputs version
|
|
144
|
+
* fixed bug: crashes after switching to a loaded document.
|
|
145
|
+
* Combobox#comboItems= now takes a newline seperated string
|
|
146
|
+
* added widgets: MainWindow, Matrix
|
|
147
|
+
--------------------------------------------------------------------
|
|
128
148
|
Version 0.3: initial release.
|
data/foxguib.gemspec
CHANGED
|
@@ -16,11 +16,11 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
17
17
|
spec.require_paths = ["src"]
|
|
18
18
|
|
|
19
|
-
spec.required_ruby_version = [">= 2.5"
|
|
19
|
+
spec.required_ruby_version = [">= 2.5"]
|
|
20
20
|
|
|
21
21
|
spec.add_runtime_dependency "fxruby", "~> 1.6.0"
|
|
22
22
|
spec.add_runtime_dependency "libguib", "~> 1.1"
|
|
23
23
|
|
|
24
|
-
spec.add_development_dependency "bundler", ">= 1.11"
|
|
25
|
-
spec.add_development_dependency "rake", "
|
|
24
|
+
spec.add_development_dependency "bundler", ">= 1.11"
|
|
25
|
+
spec.add_development_dependency "rake", ">= 13.0"
|
|
26
26
|
end
|
data/src/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,36 +1,39 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: foxguib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Meinrad Recheis aka Henon
|
|
8
8
|
- Lars Kanis
|
|
9
|
-
autorequire:
|
|
10
9
|
bindir: exe
|
|
11
10
|
cert_chain:
|
|
12
11
|
- |
|
|
13
12
|
-----BEGIN CERTIFICATE-----
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
13
|
+
MIIEBDCCAmygAwIBAgIBBDANBgkqhkiG9w0BAQsFADAoMSYwJAYDVQQDDB1sYXJz
|
|
14
|
+
L0RDPWdyZWl6LXJlaW5zZG9yZi9EQz1kZTAeFw0yNjAxMDUxMTE5MzRaFw0yNzAx
|
|
15
|
+
MDUxMTE5MzRaMCgxJjAkBgNVBAMMHWxhcnMvREM9Z3JlaXotcmVpbnNkb3JmL0RD
|
|
16
|
+
PWRlMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAwum6Y1KznfpzXOT/
|
|
17
|
+
mZgJTBbxZuuZF49Fq3K0WA67YBzNlDv95qzSp7V/7Ek3NCcnT7G+2kSuhNo1FhdN
|
|
18
|
+
eSDO/moYebZNAcu3iqLsuzuULXPLuoU0GsMnVMqV9DZPh7cQHE5EBZ7hlzDBK7k/
|
|
19
|
+
8nBMvR0mHo77kIkapHc26UzVq/G0nKLfDsIHXVylto3PjzOumjG6GhmFN4r3cP6e
|
|
20
|
+
SDfl1FSeRYVpt4kmQULz/zdSaOH3AjAq7PM2Z91iGwQvoUXMANH2v89OWjQO/NHe
|
|
21
|
+
JMNDFsmHK/6Ji4Kk48Z3TyscHQnipAID5GhS1oD21/WePdj7GhmbF5gBzkV5uepd
|
|
22
|
+
eJQPgWGwrQW/Z2oPjRuJrRofzWfrMWqbOahj9uth6WSxhNexUtbjk6P8emmXOJi5
|
|
23
|
+
chQPnWX+N3Gj+jjYxqTFdwT7Mj3pv1VHa+aNUbqSPpvJeDyxRIuo9hvzDaBHb/Cg
|
|
24
|
+
9qRVcm8a96n4t7y2lrX1oookY6bkBaxWOMtWlqIprq8JZXM9AgMBAAGjOTA3MAkG
|
|
25
|
+
A1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQ4h1tIyvdUWtMI739xMzTR
|
|
26
|
+
7EfMFzANBgkqhkiG9w0BAQsFAAOCAYEAg/1LuXN3X8xwHVnhRvmBCZYkNErko40y
|
|
27
|
+
juq/qPF9vkPGxLEGaeZF1rv/obTs5SgIGEUkWdRsOl3F6bQN4MYUFlN/n6rPx19g
|
|
28
|
+
CqUMkmRtuFD+9EFBI4twoF2IJS0pYr9tkjUq8mb0VXblvfbEEUf460BJmuBXZTc6
|
|
29
|
+
OoLQHxjhhqhKBoP4lHXg/OMK9dnGn8+5DoKcsyWQvqq/GdK8pi4E47M/egzw54Go
|
|
30
|
+
g+oeyGDsNKOQlnIA9gbyPpExD1+akJ4v88T8jOUnsOkhBBUkpSktC2QmEYIU5e9j
|
|
31
|
+
N7muw6O5Bz3CQuSWIEjj9mMUS2fEEfq2km6zO5vs5eD6TdFnt8AC/HlOrPaxGcUX
|
|
32
|
+
Hjw/K7ZTvZLEb4awRijdy4wx3OlL9FAyZPjYOh8TdJrLl076c7GyimAkgnc8BrL5
|
|
33
|
+
g1vGc759o2t3KNnlUg8VwqkhFJp4gCko1QO/8Io5hPQZOvJw8dmqNiiiHqaDupfl
|
|
34
|
+
CI4mk2K8yQa8xtQ/RmFZxYS5XbHhDJCw
|
|
32
35
|
-----END CERTIFICATE-----
|
|
33
|
-
date:
|
|
36
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
34
37
|
dependencies:
|
|
35
38
|
- !ruby/object:Gem::Dependency
|
|
36
39
|
name: fxruby
|
|
@@ -67,9 +70,6 @@ dependencies:
|
|
|
67
70
|
- - ">="
|
|
68
71
|
- !ruby/object:Gem::Version
|
|
69
72
|
version: '1.11'
|
|
70
|
-
- - "<="
|
|
71
|
-
- !ruby/object:Gem::Version
|
|
72
|
-
version: '3.0'
|
|
73
73
|
type: :development
|
|
74
74
|
prerelease: false
|
|
75
75
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -77,21 +77,18 @@ dependencies:
|
|
|
77
77
|
- - ">="
|
|
78
78
|
- !ruby/object:Gem::Version
|
|
79
79
|
version: '1.11'
|
|
80
|
-
- - "<="
|
|
81
|
-
- !ruby/object:Gem::Version
|
|
82
|
-
version: '3.0'
|
|
83
80
|
- !ruby/object:Gem::Dependency
|
|
84
81
|
name: rake
|
|
85
82
|
requirement: !ruby/object:Gem::Requirement
|
|
86
83
|
requirements:
|
|
87
|
-
- - "
|
|
84
|
+
- - ">="
|
|
88
85
|
- !ruby/object:Gem::Version
|
|
89
86
|
version: '13.0'
|
|
90
87
|
type: :development
|
|
91
88
|
prerelease: false
|
|
92
89
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
90
|
requirements:
|
|
94
|
-
- - "
|
|
91
|
+
- - ">="
|
|
95
92
|
- !ruby/object:Gem::Version
|
|
96
93
|
version: '13.0'
|
|
97
94
|
description: GUI builder for the Fox toolkit written in Ruby.
|
|
@@ -211,7 +208,6 @@ homepage: https://github.com/larskanis/foxGUIb
|
|
|
211
208
|
licenses:
|
|
212
209
|
- Artistic License 1.0
|
|
213
210
|
metadata: {}
|
|
214
|
-
post_install_message:
|
|
215
211
|
rdoc_options: []
|
|
216
212
|
require_paths:
|
|
217
213
|
- src
|
|
@@ -220,17 +216,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
220
216
|
- - ">="
|
|
221
217
|
- !ruby/object:Gem::Version
|
|
222
218
|
version: '2.5'
|
|
223
|
-
- - "<"
|
|
224
|
-
- !ruby/object:Gem::Version
|
|
225
|
-
version: '4.0'
|
|
226
219
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
227
220
|
requirements:
|
|
228
221
|
- - ">="
|
|
229
222
|
- !ruby/object:Gem::Version
|
|
230
223
|
version: '0'
|
|
231
224
|
requirements: []
|
|
232
|
-
rubygems_version:
|
|
233
|
-
signing_key:
|
|
225
|
+
rubygems_version: 4.0.3
|
|
234
226
|
specification_version: 4
|
|
235
227
|
summary: Fox GUI builder
|
|
236
228
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|