navilocal 1.0.7 → 1.0.8
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a20947b2bd4ecfd18dce0f3ac9a0c01fb8e13563b4a0c5d075ddf1aa04bbf2b6
|
4
|
+
data.tar.gz: a137c27598d2282309bc5ddbe5d3e0d451ae76e96046dd843c5a176e03427242
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45a09a0e3ae7d106fd533e4395fd4fb8bdb8c332b86f55dd8c8eecec7edb19afd7672cfc974f64345ca9d788488d6fb05b796fbef6aec4547f36ca56a78cb207
|
7
|
+
data.tar.gz: 54c1a1185942ee28d3e727c73164f3300b71ebd27c2ed9573683b57fa4ee0857b58cf3ee3f32a615f7a013c897caf75ae2a09ffe2e0f20e5103e465465a28d99
|
@@ -25,9 +25,9 @@ module NaviClientInstaller
|
|
25
25
|
create_tags( view_summary.buffer)
|
26
26
|
iter = view_summary.buffer.get_iter_at(:offset => 0)
|
27
27
|
view_summary.buffer.insert(iter, "The Software was installed. You'll be prompted when NAVI app updates are available. Always install updates to get the latest information and security improvements.",
|
28
|
-
:tags => %w(large_spaced_line
|
28
|
+
:tags => %w(large_spaced_line normal-size grey_foreground))
|
29
29
|
view_summary.buffer.insert(iter, " Learn More.",
|
30
|
-
:tags => %w(large_spaced_line
|
30
|
+
:tags => %w(large_spaced_line normal-size cyan_foreground), :page =>1)
|
31
31
|
|
32
32
|
# grey_foregroundview_summary.buffer.insert_markup(view_summary.buffer.get_iter_at(:offset => 0), "<span rise='10000' color='#7a7a7a' size='large'>The Software was installed. You'll be prompted when NAVI app updates are available. Always install updates to get the latest information and security improvements. <a href='google.com'>Learn more.</a></span>")
|
33
33
|
#
|
@@ -190,7 +190,7 @@ module NaviClientInstaller
|
|
190
190
|
|
191
191
|
|
192
192
|
btn_next.signal_connect 'clicked' do |button|
|
193
|
-
renderSteps 1, Gtk::Stack::TransitionType::
|
193
|
+
renderSteps 1, Gtk::Stack::TransitionType::SLIDE_LEFT
|
194
194
|
end
|
195
195
|
|
196
196
|
btn_cancel.signal_connect 'clicked' do |button|
|
@@ -198,7 +198,7 @@ module NaviClientInstaller
|
|
198
198
|
end
|
199
199
|
|
200
200
|
btn_back.signal_connect 'clicked' do |button|
|
201
|
-
renderSteps -1, Gtk::Stack::TransitionType::
|
201
|
+
renderSteps -1, Gtk::Stack::TransitionType::SLIDE_RIGHT
|
202
202
|
end
|
203
203
|
end
|
204
204
|
|
@@ -83,8 +83,8 @@ module NaviClientInstaller
|
|
83
83
|
|
84
84
|
def configure_ai
|
85
85
|
@limit_progress = @progress_indicator.fraction + @fraction
|
86
|
-
@text_display.set_text "Configuring
|
87
|
-
@log_display.buffer.insert_markup(@iter_log, "Configuring
|
86
|
+
@text_display.set_text "Configuring services..."
|
87
|
+
@log_display.buffer.insert_markup(@iter_log, "Configuring services..\n")
|
88
88
|
|
89
89
|
unless File.file?(File.expand_path File.join(NaviClientInstaller::Settings::DEFAULT_STORAGE,'bin', 'naviai'))
|
90
90
|
%x(rm -rf #{NaviClientInstaller::Settings::DEFAULT_STORAGE}/bin/naviai*)
|
@@ -100,7 +100,7 @@ module NaviClientInstaller
|
|
100
100
|
%x(chmod 777 #{NaviClientInstaller::Settings::DEFAULT_STORAGE}/bin/naviai)
|
101
101
|
%x(rm -rf #{NaviClientInstaller::Settings::DEFAULT_STORAGE}/bin/naviai.zip 2>&1 | tee #{@log_storage})
|
102
102
|
|
103
|
-
@log_display.buffer.insert_markup(@iter_log, "Done Configuring
|
103
|
+
@log_display.buffer.insert_markup(@iter_log, "Done Configuring processes..\n")
|
104
104
|
else
|
105
105
|
@log_display.buffer.insert_markup(@iter_log, "Ai already installed...forwarding to the next step\n")
|
106
106
|
end
|
@@ -110,9 +110,9 @@ module NaviClientInstaller
|
|
110
110
|
|
111
111
|
|
112
112
|
def download_wiki_topics
|
113
|
-
@text_display.set_text "Downloading
|
113
|
+
@text_display.set_text "Downloading files.."
|
114
114
|
@limit_progress = @progress_indicator.fraction + @fraction
|
115
|
-
@log_display.buffer.insert_markup(@iter_log, "Downloading
|
115
|
+
@log_display.buffer.insert_markup(@iter_log, "Downloading files..\n")
|
116
116
|
|
117
117
|
wiki_storage = File.expand_path File.join(NaviClientInstaller::Settings::DEFAULT_STORAGE,'wikipedia-titles')
|
118
118
|
|
@@ -126,7 +126,7 @@ module NaviClientInstaller
|
|
126
126
|
%x(unzip -a #{wiki_storage}.zip -d #{NaviClientInstaller::Settings::DEFAULT_STORAGE} 2>&1 | tee #{@log_storage})
|
127
127
|
%x(rm -rf #{wiki_storage}.zip 2>&1 | tee #{@log_storage})
|
128
128
|
else
|
129
|
-
@log_display.buffer.insert_markup(@iter_log, "
|
129
|
+
@log_display.buffer.insert_markup(@iter_log, "Skipping already downloaded files.\n")
|
130
130
|
end
|
131
131
|
|
132
132
|
@progress_indicator.fraction = @limit_progress
|
@@ -134,9 +134,9 @@ module NaviClientInstaller
|
|
134
134
|
end
|
135
135
|
|
136
136
|
def download_wiki_common_words
|
137
|
-
@text_display.set_text "Downloading
|
137
|
+
@text_display.set_text "Downloading files.."
|
138
138
|
@limit_progress = @progress_indicator.fraction + @fraction
|
139
|
-
@log_display.buffer.insert_markup(@iter_log, "Downloading
|
139
|
+
@log_display.buffer.insert_markup(@iter_log, "Downloading files..\n")
|
140
140
|
|
141
141
|
common_storage = File.expand_path File.join(NaviClientInstaller::Settings::DEFAULT_STORAGE,'common-words')
|
142
142
|
|
@@ -150,7 +150,7 @@ module NaviClientInstaller
|
|
150
150
|
%x(unzip -a #{common_storage}.zip -d #{NaviClientInstaller::Settings::DEFAULT_STORAGE} 2>&1 | tee #{@log_storage})
|
151
151
|
%x(rm -rf #{common_storage}.zip 2>&1 | tee #{@log_storage})
|
152
152
|
else
|
153
|
-
@log_display.buffer.insert_markup(@iter_log, "
|
153
|
+
@log_display.buffer.insert_markup(@iter_log, "Skipping already downloaded files.\n")
|
154
154
|
end
|
155
155
|
|
156
156
|
|
data/gresource.bin
CHANGED
Binary file
|