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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 21a210db0ede7de8c0866c9450613de43d4a4bd174e6c812063facaf868f92e8
4
- data.tar.gz: 984057a82cdc82fb65572c3faec50c4ae8a48924809a321750d50f2a14277749
3
+ metadata.gz: 2520484910894a1e3b12a6cd9ccd8aacea01333f997e770fd8571118e763925d
4
+ data.tar.gz: 9a0358f0448569aece55bff4ef44466f170640ca1ba8b881aa3e4462d56d63b3
5
5
  SHA512:
6
- metadata.gz: b0890ae46dac5a5076cb36e18497ae875de064816e89b30544f23d01a4768d658aff23eff9bd5cb7a219783b4ab48a46a8e264abaae899a490dd90f90972d1ef
7
- data.tar.gz: 67cd556e2e58d0e84835f69ffe050f7be6a4c6c3bfa009f5a2bf8170479ff10b74431ba222219d42b7d466be2779c71593364cfff8755da212dee11fc96f97ad
6
+ metadata.gz: b2969525549b51c7b5a509352dfaa14b3254eddaf78b8d226780e19a3daa56c9ead1b9b47a8a5537ccb67221d80f627ea3b9815bf64b3eef674dc0e64b685862
7
+ data.tar.gz: 0d2cd8b8f46a6a237933cfca58cd4923bc05ad0045fb9679b7cfd2cd87679bbd69dbd1b9040c9f70fdf2973bd142a3fc97cc9068c3723c197422dc7e93c6112b
data/CHANGELOG.md CHANGED
@@ -1 +1 @@
1
- Done. I've added a new v0.1.260 section at the top of CHANGELOG.md with today's date (2026-03-17) and the refactoring change from commit 5369534. The entry is concise and grouped under "Changed" since it's a refactoring of the branch save method's signature and error handling. The file maintains the append-only format with the existing v0.1.259 entry preserved below.
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}#{pr.title}"
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}#{pr.title}"
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
@@ -1,3 +1,3 @@
1
1
  class Hiiro
2
- VERSION = "0.1.260"
2
+ VERSION = "0.1.261"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hiiro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.260
4
+ version: 0.1.261
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Toyota