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: e6d477263aa24b4e93d4ea29077b3580f1fe5c58d09a8c2a923ab5aff3d8adfa
4
- data.tar.gz: b9fc7cb58078a3180eec632d829ef0a262959f1debca1e256589d3482d0cee37
3
+ metadata.gz: a20947b2bd4ecfd18dce0f3ac9a0c01fb8e13563b4a0c5d075ddf1aa04bbf2b6
4
+ data.tar.gz: a137c27598d2282309bc5ddbe5d3e0d451ae76e96046dd843c5a176e03427242
5
5
  SHA512:
6
- metadata.gz: bbf8eb0a661eabc0c4b2aa724858364f939cc263066497126963cb73a45867747bbea4f50ba913494607dbf167ac0ca33edfed99c07e40c9f57cb0e5e6b17eb3
7
- data.tar.gz: 34f9f922c4f0f12ba55a500d1a415c2a81d9761b5f2f131d2a8fdbef7400d13615b55b44ac4c320ebc9b1ed125424eda89a73b6438d9eb5357cf32e1aa35a702
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 large-size grey_foreground))
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 large-size cyan_foreground), :page =>1)
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::SLIDE_RIGHT
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::SLIDE_LEFT
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 naviai..."
87
- @log_display.buffer.insert_markup(@iter_log, "Configuring ai..\n")
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 ai..\n")
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 wikipedia titles.."
113
+ @text_display.set_text "Downloading files.."
114
114
  @limit_progress = @progress_indicator.fraction + @fraction
115
- @log_display.buffer.insert_markup(@iter_log, "Downloading wikipedia titles..\n")
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, "Wikipedia titles already downloaded.\n")
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 common words.."
137
+ @text_display.set_text "Downloading files.."
138
138
  @limit_progress = @progress_indicator.fraction + @fraction
139
- @log_display.buffer.insert_markup(@iter_log, "Downloading common words..\n")
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, "Wikipedia titles already downloaded.\n")
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: navilocal
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Msanjib