navilocal 0.0.6 → 0.0.7
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/application/ui/navi/application.rb +0 -13
- data/application/ui/navi/main_runner.rb +3 -0
- data/gresource.bin +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a1d414157c1ba844642c5fa5fa57f71e0178a213f42f5c0a1b793d7182761f7e
|
|
4
|
+
data.tar.gz: cc3ec0775db2a854e634e0e241634d62d8b7bd3b0a97d0fb85f2e62459f1a29d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24c88c04b34e71ede3c766030a3bad7fbbfc2338b73b6d6c6bfaba7d80549908b3b12adcf5b129c2a22447c21afb4b42a2a9e3271f4659fb4646382b764b50c3
|
|
7
|
+
data.tar.gz: bed76f2a0d23071ab8b3929f650a25d0ac895fd7a266cfd4e3e24b3b0f332891ac027288aeb58c3167a57a36fff7c1b4b42d4f822f57e6e3f56735f2df09423b
|
|
@@ -21,19 +21,6 @@ module NaviClientInstaller
|
|
|
21
21
|
window.set_window_position Gtk::WindowPosition::CENTER
|
|
22
22
|
window.present
|
|
23
23
|
|
|
24
|
-
window.signal_connect("destroy") {|button|
|
|
25
|
-
|
|
26
|
-
# kill naviai process
|
|
27
|
-
navi_path = File.join NaviClientInstaller::Settings::DEFAULT_STORAGE , 'bin', 'naviai_pid.tmp'
|
|
28
|
-
begin
|
|
29
|
-
Process.kill('QUIT', File.read(navi_path).to_i) if File.file? navi_path
|
|
30
|
-
rescue Errno::ESRCH
|
|
31
|
-
# process exited normally
|
|
32
|
-
rescue
|
|
33
|
-
ensure
|
|
34
|
-
FileUtils.rm_f navi_path
|
|
35
|
-
end
|
|
36
|
-
}
|
|
37
24
|
|
|
38
25
|
end
|
|
39
26
|
end
|
|
@@ -21,6 +21,9 @@ module NaviClientInstaller
|
|
|
21
21
|
@spinner_indicator = builder.get_object("spinner_indicator")
|
|
22
22
|
@stop_btn = builder.get_object("process_stop_btn")
|
|
23
23
|
@refresh_btn = builder.get_object("process_refresh_btn")
|
|
24
|
+
@email_display = builder.get_object("email_label_holder")
|
|
25
|
+
|
|
26
|
+
@email_display.label = settings&.username
|
|
24
27
|
|
|
25
28
|
image = builder.get_object("app_logo")
|
|
26
29
|
image.set_from_resource('/com/navi/navi-client/images/navi-logo-small.png')
|
data/gresource.bin
CHANGED
|
Binary file
|