Glimmer DSL for GTK v0.0.1 Release Notes
-
- ๐ Initial version of Glimmer DSL for GTK
- ๐ General widget support with keyword arguments (e.g.
window(:toplevel).show
) - ๐ General widget property support (e.g.
title 'Hello, Application!'
) - ๐ฆ General signal connect support via nested
on
keyword (e.g.on(:activate) { ... }
) - Have
window
automatically call::Gtk::main_quit
upon hittingwindow
close (destroy) button - 0๏ธโฃ Automatically set
window
default_size
to190, 150
by default - 0๏ธโฃ Automatically set
message_dialog
default_width
to190
by default - Automatically set
application
first arg to'org.glimmer-dsl-gtk.application'
and second arg to:flags_none
when not supplied - Automatically set
box
orientation to:vertical
if not specified - Hello, World! sample
- Hello, Application! sample
- Hello, Button! sample