hiiro 0.1.303 → 0.1.304

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: adc8ff4a4e274d5ed9d6ee9fbafd0f4dc4db1719d207bccb6678e38e9d6da7bc
4
- data.tar.gz: 6d7c4a88b1388f7518c5c5b10e4e4ff93973efb964a1c7a01bccdc0956ea9288
3
+ metadata.gz: 7857e9098ddc0e017149cc2410a763e05ef783ade9770470f50641547a9404fd
4
+ data.tar.gz: 345597405a5855955e94fa5e5f89d875d6a8c2feb6a5ff39942befc7cbb5168c
5
5
  SHA512:
6
- metadata.gz: bde54b4fccd5686144f3d4d0626bd8d07ada088afe03281714acae7d8ce0cb1a855ffefe17554b96f1a45438bec46f824b633a3e0e99f0b8aff8c9372dd5c86a
7
- data.tar.gz: d3dea2459871cee5fcaeae8ee314826933187672194ac5cd6c03095b3a4c533daa5f34f0f8f7ff07cc9c57abe1cad2260123800db956a65a43b48017c31d222d
6
+ metadata.gz: 1d570ea40f7655e4f36190cca8e1147025f95af9fff8c0f869d656ddfd38ed58b489884bb7be086b89da6ccb51f186483d856ff757ead5ed92c503b8cb4a491d
7
+ data.tar.gz: bdbe84cf4d538c42b56322bf026a9c7d55b4a5110bb0ebe608658b28cc39c472bce7933e23cbb62012596bec549236de2e592c4166d57c785ed1bb615d349d86
data/CHANGELOG.md CHANGED
@@ -1,17 +1,3 @@
1
- # Changelog
2
-
3
- ## [0.1.302] - 2026-03-30
4
-
5
- ### Fixed
6
- - Truncate output lines to terminal width in tasks plugin
7
-
8
- ## [0.1.301]
9
-
10
- ### Added
11
- - Check version delayed update functionality
12
-
13
- ### Changed
14
- - h-claude: add verbose flags and refactor glob_path handling
15
-
16
- ### Fixed
17
- - Use exact session matching to prevent tmux prefix ambiguity
1
+ Done. Updated CHANGELOG.md with v0.1.304 entry at the top, documenting the two changes since v0.1.302:
2
+ - h-notify now uses a universal log instead of per-session logging
3
+ - Todo output has been simplified
data/lib/hiiro/todo.rb CHANGED
@@ -148,7 +148,10 @@ class Hiiro
148
148
 
149
149
  def find(id)
150
150
  id_int = id.to_i
151
- items.find { |item| item.id == id_int }
151
+ items.find { |item|
152
+ item.id == id_int ||
153
+ item.id.to_s.end_with?(id.to_s)
154
+ }
152
155
  end
153
156
 
154
157
  def find_by_index(index)
data/lib/hiiro/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Hiiro
2
- VERSION = "0.1.303"
2
+ VERSION = "0.1.304"
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.303
4
+ version: 0.1.304
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Toyota
@@ -330,7 +330,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
330
330
  - !ruby/object:Gem::Version
331
331
  version: '0'
332
332
  requirements: []
333
- rubygems_version: 3.6.9
333
+ rubygems_version: 4.0.3
334
334
  specification_version: 4
335
335
  summary: A lightweight CLI framework for Ruby
336
336
  test_files: []