firstrow 0.0.3 → 0.0.4
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 +8 -8
- data/bin/firstrow +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NTkyYWI2MzMwMDM5ZjMyMjJmNzc5MDhmMjRiNjc5Y2FjMzU0MzBlYw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZDc4Y2QyODNhNDY1YmYwMzcwNDE2MDkzNWI2NGM4YWY2YmE4YTMzNg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
N2Y2OGEyZjlhNzc5OTZjZGViZmJkYTViNDdlMDRhMTM5NTI4ZWE4MTBjNjkz
|
10
|
+
NDE2MzU1NzMzYThiZGZlM2Y0N2M1YTdlZDdhMjRhNmNhYmVhNjViMmE4YzZl
|
11
|
+
ZjAzOTVmZjFlNDM2ODYwNjVlMjBlMGI4OTFhMmNiN2Q1NGIyNzQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MjdmNTc0ZDU3M2NkN2M0NzdjMzM0ODFkMDk2NWJjNzY1ZWQzMmQ0YTRhMjdm
|
14
|
+
YTQ1MTc5YjJmMGQ5NDE4YjNkMzUxZGRkMmM5OGQwY2I4NWYyNmE2NGExYWE1
|
15
|
+
ODc0N2IxMWZmOWMzOTQzZTNiZjM4ZTczMWM2ODUwMjA4OGM5N2M=
|
data/bin/firstrow
CHANGED
@@ -136,7 +136,7 @@ else
|
|
136
136
|
start_time = start_time.strftime("%H:%M %Z") # Parse into readable time.
|
137
137
|
|
138
138
|
# Don't show all.
|
139
|
-
if (show_all == false and start_hour > Time.now.hour + 1
|
139
|
+
if (show_all == false and (start_hour > Time.now.hour + 1 or start_hour <= Time.now.hour - 2))
|
140
140
|
next
|
141
141
|
end
|
142
142
|
|