topinambour 2.0.2 → 2.0.3
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
- data/data/app-menu.ui +4 -0
- data/data/topinambour.gresource +0 -0
- data/lib/actions.rb +8 -1
- data/lib/window.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dceeade034c4949f487b2816513a8ece5d6240435bde03a7a487cac00bd491f8
|
|
4
|
+
data.tar.gz: ba0462afe832cd12504e887424fc834935396494157daba3b020ccc4ba15aa30
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd135913940a826ca111d10a86b2eb59a141bfb6f978ceab41e8d9364d13a5e70c4fa19008a068e35531d2ad48d7115852aac142fb36a41563f4e8427584276d
|
|
7
|
+
data.tar.gz: 0d398fea91a39845d96c67c3c1477809d00d0be86b3755f8eb1194d3b662dffac878b10b75f73e3e219c523fdb13465d6dd6ede9ab46e79e06f193279a917ba3
|
data/data/app-menu.ui
CHANGED
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
<attribute name="label" translatable="yes">_Preferences</attribute>
|
|
16
16
|
<attribute name="action">app.preferences</attribute>
|
|
17
17
|
</item>
|
|
18
|
+
<item>
|
|
19
|
+
<attribute name="label" translatable="yes">_Reload Css</attribute>
|
|
20
|
+
<attribute name="action">app.reload_css_config</attribute>
|
|
21
|
+
</item>
|
|
18
22
|
</section>
|
|
19
23
|
|
|
20
24
|
<section>
|
data/data/topinambour.gresource
CHANGED
|
Binary file
|
data/lib/actions.rb
CHANGED
|
@@ -82,8 +82,15 @@ module TopinambourActions
|
|
|
82
82
|
action
|
|
83
83
|
end
|
|
84
84
|
|
|
85
|
+
def self.generate_reload_css_config_action(application)
|
|
86
|
+
action = generate_action("reload_css_config") do |_act, _param|
|
|
87
|
+
application.reload_css_config
|
|
88
|
+
end
|
|
89
|
+
action
|
|
90
|
+
end
|
|
91
|
+
|
|
85
92
|
def self.add_actions_to(application)
|
|
86
|
-
%w(quit about preferences term_copy term_paste shortcuts).each do |name|
|
|
93
|
+
%w(quit about preferences term_copy term_paste shortcuts reload_css_config).each do |name|
|
|
87
94
|
add_action_to(name, application)
|
|
88
95
|
end
|
|
89
96
|
end
|
data/lib/window.rb
CHANGED
|
@@ -64,7 +64,7 @@ class TopinambourWindow < Gtk::ApplicationWindow
|
|
|
64
64
|
"license" => "This program is licenced under the licence GPL-3.0 and later.",
|
|
65
65
|
"logo_icon_name" => "utilities-terminal-symbolic",
|
|
66
66
|
"program_name" => "Topinambour",
|
|
67
|
-
"version" => "2.0.
|
|
67
|
+
"version" => "2.0.3",
|
|
68
68
|
"website" => "https://github.com/cedlemo/topinambour",
|
|
69
69
|
"website_label" => "Topinambour github repository"
|
|
70
70
|
)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: topinambour
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cedric LE MOIGNE
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-02-
|
|
11
|
+
date: 2018-02-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: vte3
|