hyperlist 1.2.2 → 1.2.3
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/hyperlist +5 -7
- data/hyperlist.gemspec +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: cf122ea3e53905dda1673a8a1c79f059fd19bbb55765cff5330ea9adac850aeb
|
4
|
+
data.tar.gz: c96e2559e357a69fa21d8fce8286b17c32460ce6aac7261035d5da92034c8772
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 007ae293391311a7f13ece074f98fe2fb6a99b3d2b4eb73e59267828c46337a24104a1d7cbf7fb59ead5df282f6baad25a15722d054483774915757dc4c6ba22
|
7
|
+
data.tar.gz: e065656d916620d74cdb60e0bcb29f7b998fa2f08faaeb742165eaf340aa45d5dc4cb940bc7c8822c7d519b876665b33732b21c7a02f115a16464a61872408c5
|
data/hyperlist
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
# Check for help/version BEFORE loading any libraries
|
8
8
|
if ARGV[0] == '-h' || ARGV[0] == '--help'
|
9
9
|
puts <<~HELP
|
10
|
-
HyperList v1.2.
|
10
|
+
HyperList v1.2.3 - Terminal User Interface for HyperList files
|
11
11
|
|
12
12
|
USAGE
|
13
13
|
hyperlist [OPTIONS] [FILE]
|
@@ -52,7 +52,7 @@ if ARGV[0] == '-h' || ARGV[0] == '--help'
|
|
52
52
|
HELP
|
53
53
|
exit 0
|
54
54
|
elsif ARGV[0] == '-v' || ARGV[0] == '--version'
|
55
|
-
puts "HyperList v1.2.
|
55
|
+
puts "HyperList v1.2.3"
|
56
56
|
exit 0
|
57
57
|
end
|
58
58
|
|
@@ -72,7 +72,7 @@ class HyperListApp
|
|
72
72
|
include Rcurses::Input
|
73
73
|
include Rcurses::Cursor
|
74
74
|
|
75
|
-
VERSION = "1.2.
|
75
|
+
VERSION = "1.2.3"
|
76
76
|
|
77
77
|
def initialize(filename = nil)
|
78
78
|
@filename = filename ? File.expand_path(filename) : nil
|
@@ -4870,15 +4870,13 @@ class HyperListApp
|
|
4870
4870
|
quit
|
4871
4871
|
when "ESC", "C-C" # ESC or Ctrl-C
|
4872
4872
|
if @search && !@search.empty?
|
4873
|
-
# Clear search on
|
4873
|
+
# Clear search on ESC
|
4874
4874
|
@search = ""
|
4875
4875
|
@search_matches = []
|
4876
4876
|
@message = "Search cleared"
|
4877
4877
|
clear_cache
|
4878
|
-
elsif !@modified
|
4879
|
-
# Quit on second ESC if not modified
|
4880
|
-
quit
|
4881
4878
|
end
|
4879
|
+
# ESC no longer quits the program - only clears search
|
4882
4880
|
end
|
4883
4881
|
end
|
4884
4882
|
|
data/hyperlist.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hyperlist
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geir Isene
|
8
8
|
autorequire:
|
9
9
|
bindir: "."
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rcurses
|