searchlink 2.3.70 → 2.3.71
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/lib/searchlink/parse.rb +8 -0
- data/lib/searchlink/script_plugin.rb +1 -1
- data/lib/searchlink/searches.rb +1 -0
- data/lib/searchlink/version.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: 55880b0891d029bf3dde58968a5b55c4cb302b14ceecd8e5f279338abc070895
|
4
|
+
data.tar.gz: 7ea4da442f494ce7c956d9510f7eb20f295de133d91d7abe538c380bfd7b4d79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61efe73ac610acaea6d949186358bb863df9ff10d9fd0698f6b5510c3128c4833e2904347deccdb335573e1dcc4793739ae801150e97ba4bbf1e0ade8544d979
|
7
|
+
data.tar.gz: 0dc5b9f05b691833a8a515f186513a4ee7c281d8358e81f1abdaf1f7412d855480ce8d34f4bbfd383682d811eeb016fbb1868cd6ff165b5cca36afd50eaea87b
|
data/lib/searchlink/parse.rb
CHANGED
@@ -424,6 +424,14 @@ module SL
|
|
424
424
|
@url, title, @link_text = do_search(search_type, search_terms, @link_text, @search_count)
|
425
425
|
end
|
426
426
|
|
427
|
+
if (@link_text == '' || @link_text == '%') && @url
|
428
|
+
if title
|
429
|
+
@link_text = title
|
430
|
+
else
|
431
|
+
add_title(@url)
|
432
|
+
end
|
433
|
+
end
|
434
|
+
|
427
435
|
if @url
|
428
436
|
title = SL::URL.title(@url) if SL.titleize && title == ''
|
429
437
|
|
@@ -68,7 +68,7 @@ module SL
|
|
68
68
|
end
|
69
69
|
|
70
70
|
def find_script(script)
|
71
|
-
return script if File.exist?(File.expand_path(script))
|
71
|
+
return File.expand_path(script) if File.exist?(File.expand_path(script))
|
72
72
|
|
73
73
|
base = File.expand_path('~/.config/searchlink/plugins')
|
74
74
|
first = File.join(base, script)
|
data/lib/searchlink/searches.rb
CHANGED
data/lib/searchlink/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: searchlink
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.71
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brett Terpstra
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|