All Versions
120
Latest Version
Avg Release Cycle
-
Latest Release
-
Changelog History
Page 8
Changelog History
Page 8
-
v0.2.9 Changes
- ⬆️ Upgrade to glimmer 2.3.0
- ⚡️ Use glimmer 2.3.0 to support automatic table row change when performing a direct deep row/column update in
cell_rows
(e.g.data[3][0] = 'new value'
) as opposed to a general shallow row update (e.g.data[3] = ['new value', 'other new value']
<- already supported)
-
v0.2.8 Changes
- 👌 Support
table
on_changed
listener to report all changes (of operation type:deleted
,:changed
,:inserted
) - 👌 Support
table
on_edited
listener to report changes happening through direct table editing only - 0️⃣ Default value of
text
width
argument looks into x and adjusts by leaving the same space on the right side
- 👌 Support
-
v0.2.7 Changes
- New examples/basic_table_color.rb
- Support
background_color_column
fortable
- Support
text_color_column
fortable
- Support
checkbox_text_color_column
fortable
- Support
image_text_color_column
fortable
-
v0.2.6 Changes
- Support
string
control property:open_type_features
- 🆓 Auto-free attributed string objects from memory
- Support
-
v0.2.5 Changes
- 👌 Support attributed
string
underline_color
property (built-in enum symbols and custom color)
- 👌 Support attributed
-
v0.2.4 Changes
- Support examples/custom_draw_text.rb
- 👌 Support stable
text
control nestable underarea
- 👌 Support
string
control property:background
- 👌 Support
string
control property:font
- 👌 Support
string
control property:underline
- ✨ Enhance
combobox
to acceptString
value forselected
item instead of justInteger
index - ➕ Add
selected_item
read-only property tocombobox
to return selected itemString
value - 🛠 Fix
color
property support forstring
to accept 255-based rgb values - Fix issue with alternating string colors in examples/basic_draw_text.rb
-
v0.2.3 Changes
- ⚡️ Update examples/midi_player.rb to read sounds locally from gem
- Support examples/basic_draw_text.rb
- 👌 Support dynamic
text
control to be called inarea
on_draw
listener - 👌 Support
text
controldefault_font
property - 👌 Support
string
control nestable undertext
to represent an attributed/unattributed string (depending on nestable properties) - 👌 Support
string
control property:color
- 👌 Support enum symbols for
align
property oftext
control - 👌 Support enum symbols for
:italic
font descriptor key (in addition to numbers) - 👌 Support enum symbols for
:stretch
font descriptor key (in addition to numbers) - 👌 Support enum symbols for
:weight
font descriptor key (in addition to numbers)
-
v0.2.2 Changes
- 🐧 Automatically add
vertical_box
parent toarea
if it did not have a box parent (otherwise, it seems not to show up on Linux, even when directly undergrid
)
- 🐧 Automatically add
-
v0.2.1 Changes
- Have examples/timer.rb show
msg_box
on finish - Have examples/color_the_circles.rb push colored circles when colored behind uncolored circles to keep uncolored circles visible
- Fix non-blocking dialog issue on Linux with examples/color_the_circles.rb
- 👌 Support all
LibUI
methods throughGlimmer::LibUI
(with some enhanced, liketimer
andqueue_main
, which accept blocks)
- Have examples/timer.rb show
-
v0.2.0 Changes
- 👌 Support examples/timer.rb
- Support examples/color_the_circles.rb
- Support
timer
andqueue_main
with simple blocks throughGlimmer::LibUI.timer(time_in_seconds=0.1, repeat: true, &block)
andGlimmer::LibUI.queue_main(&block)
- Support
radio_menu_item
(similar tocheck_menu_item
, but auto-unchecks siblingradio_menu_item
s when checked) - 👌 Support degrees for arc arguments (instead of radians)
- 👌 Support
circle
shape and use in examples/area_gallery.rb (all versions) - 👌 Support
Glimmer::LibUI.x11_colors
to obtain all available X11 color symbols - 👌 Support
#include?
method incircle
,rectangle
, andsquare
to test containment of a pointx
,y
coordinates