hiiro 0.1.260 → 0.1.261
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/CHANGELOG.md +1 -1
- data/bin/h-pr +4 -3
- data/lib/hiiro/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2520484910894a1e3b12a6cd9ccd8aacea01333f997e770fd8571118e763925d
|
|
4
|
+
data.tar.gz: 9a0358f0448569aece55bff4ef44466f170640ca1ba8b881aa3e4462d56d63b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2969525549b51c7b5a509352dfaa14b3254eddaf78b8d226780e19a3daa56c9ead1b9b47a8a5537ccb67221d80f627ea3b9815bf64b3eef674dc0e64b685862
|
|
7
|
+
data.tar.gz: 0d2cd8b8f46a6a237933cfca58cd4923bc05ad0045fb9679b7cfd2cd87679bbd69dbd1b9040c9f70fdf2973bd142a3fc97cc9068c3723c197422dc7e93c6112b
|
data/CHANGELOG.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Done.
|
|
1
|
+
Done. The CHANGELOG.md now has v0.1.261 at the top with today's date and the style enhancement from commit 8e1db54 grouped under "Changed".
|
data/bin/h-pr
CHANGED
|
@@ -409,14 +409,15 @@ class PinnedPRManager
|
|
|
409
409
|
tags = Array(pr.tags)
|
|
410
410
|
tags_str = tags.any? ? tags.map { |t| "\e[30;104m#{t}\e[0m" }.join(' ') : nil
|
|
411
411
|
|
|
412
|
-
branch_str = pr.head_branch ? " #{pr.head_branch}" : ""
|
|
412
|
+
branch_str = pr.head_branch ? " \e[90m#{pr.head_branch}\e[0m" : ""
|
|
413
|
+
title_str = "\e[1m#{pr.title}\e[0m"
|
|
413
414
|
line1 = "#{num} ##{pr.number} #{state_icon} #{reviews_str}#{branch_str}"
|
|
414
|
-
line2 = "#{indent}#{repo_label}#{
|
|
415
|
+
line2 = "#{indent}#{repo_label}#{title_str}"
|
|
415
416
|
line3 = pr.url ? "#{indent}#{pr.url}" : nil
|
|
416
417
|
line4 = tags_str ? "#{indent}#{tags_str}" : nil
|
|
417
418
|
|
|
418
419
|
if oneline
|
|
419
|
-
"#{line1} #{repo_label}#{
|
|
420
|
+
"#{line1} #{repo_label}#{title_str}"
|
|
420
421
|
else
|
|
421
422
|
[line1, line2, line3, line4].compact.join("\n")
|
|
422
423
|
end
|
data/lib/hiiro/version.rb
CHANGED