59
60
61
62
63
64
65
66
67
68
69
70
71
|
# File 'lib/window.rb', line 59
def display_about
Gtk::AboutDialog.show(self,
"authors" => ["Cedric Le Moigne <[email protected]>"],
"comments" => "Terminal Emulator based on the ruby bindings of Gtk3 and Vte3",
"copyright" => "Copyright (C) 2015-2018 Cedric Le Moigne",
"license" => "This program is licenced under the licence GPL-3.0 and later.",
"logo_icon_name" => "utilities-terminal-symbolic",
"program_name" => "Topinambour",
"version" => "2.0.4",
"website" => "https://github.com/cedlemo/topinambour",
"website_label" => "Topinambour github repository"
)
end
|