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 hitting window close (destroy) button
    • 0๏ธโƒฃ Automatically set window default_size to 190, 150 by default
    • 0๏ธโƒฃ Automatically set message_dialog default_width to 190 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