navilocal 0.0.8 → 0.0.9
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/installer_assistant.rb +2 -4
- 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: 14eebe3430a78024693c96561e48ca9993e940530469310505b107da3c57c793
|
|
4
|
+
data.tar.gz: 03354ca57e0e15a1f34be7f8f337ef2950e851c87f2390a6b75ddf5f345ace63
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 04c5b3c5f0d9bcb07591e94bacb15215fd56b9eed63a961cdf59332f944d9829d546bf3fa55b307a41b702c9f6dc002842640004d25900fe0bed52d60b1dea36
|
|
7
|
+
data.tar.gz: 0f6212817566b6cf1afb47fc85689d401ad4e45d772adcefc8db96d84c0f1030bf81f952f1277cdeb3e617a9f02608764dfe16a34e7963dec5cb60050ead8238
|
|
@@ -88,10 +88,10 @@ module NaviClientInstaller
|
|
|
88
88
|
else
|
|
89
89
|
Thread.new do
|
|
90
90
|
# duration for the splash screen
|
|
91
|
-
gaussian = Proc.new do |
|
|
91
|
+
gaussian = Proc.new do |token, *args|
|
|
92
92
|
# @current_window.prepare_ui btn_next, btn_back
|
|
93
93
|
@current_window = @runner_window
|
|
94
|
-
@runner_window.set_token
|
|
94
|
+
@runner_window.set_token token
|
|
95
95
|
main_stack.set_transition_type(Gtk::Stack::TransitionType::SLIDE_RIGHT)
|
|
96
96
|
main_stack.set_visible_child(@current_window.window_ui)
|
|
97
97
|
@runner_window.start
|
|
@@ -110,12 +110,10 @@ module NaviClientInstaller
|
|
|
110
110
|
@step_navi_install = NaviClientInstaller::NaviInstall.new @settings, btn_next
|
|
111
111
|
@step_navi_install_summary = NaviClientInstaller::NaviInstallSummary.new @settings, btn_next
|
|
112
112
|
|
|
113
|
-
|
|
114
113
|
@current_window = recover_state
|
|
115
114
|
|
|
116
115
|
@steps = [ @step_licence_agreement, @step_account_configuration, @step_destination_select, @step_navi_install, @step_navi_install_summary]
|
|
117
116
|
|
|
118
|
-
|
|
119
117
|
# main_stack.add_named(@splash.window_ui, "splash")
|
|
120
118
|
main_stack.add_named(@step_licence_agreement.window_ui, "agreement")
|
|
121
119
|
main_stack.add_named(@step_account_configuration.window_ui, "account_configuration")
|