hiiro 0.1.267 → 0.1.269

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: 54abd9eef43f8a597ac942eb693f5e5605125a44ad4e8ffb40569432757aaa26
4
- data.tar.gz: 7d9ee236bb5d97ba7ed6dea6573e787bed18589fef834df137037d986928d441
3
+ metadata.gz: cc17d3e06a4cad39900e4177955804bae129678d2e6fe541b1a6db62fe826de5
4
+ data.tar.gz: 51d49a5d48278f7c3c7bfadd9015afdbf8abb444c82a49dcac9bd003e37ca963
5
5
  SHA512:
6
- metadata.gz: 28dc7b4d806715e615aafcb3dcfddd4fb9e10ceeb850f6a671f6de6d6ea903d71d596ddb146aa0692d952475ee3a7cb11c34c9e8c6d5fe2973ad9f3806424d6e
7
- data.tar.gz: 49090e51d98f87d8d957596cdc06381fd85ad15d2b74a5c7afcfe228b63957076a2a65749f01ce94a2cf2bfb9e03aab241f273a2b5782f4d268b452d5ab2f18e
6
+ metadata.gz: 10f0a4642d176fc3eab56a42d61f68f3667e03ad2d0ac84bfd6209389a3fbffa44b6d96e18cf5e715c23d8a320c738cf221afe453055621ad9b078c8b054d798
7
+ data.tar.gz: fce55f581027ae90073864337f92d94434fe5e60982184fd3a6929b70d39ea5805f122da5f35ada08c0f9edc160bc84be8012eb2f5c8fa6c543e95ecaf7d083f
data/CHANGELOG.md CHANGED
@@ -1,15 +1 @@
1
- # Changelog
2
-
3
- ## [0.1.267] - 2026-03-20
4
-
5
- ### Fixed
6
- - Queue: Skip markdown headers when auto-generating prompt names from content
7
- - PR: Include tags in oneline PR display format
8
-
9
- ## [0.1.266] - 2026-03-19
10
-
11
- ### Added
12
- - Queue: Support app and dir frontmatter for working directory resolution
13
-
14
- ### Fixed
15
- - PR: Dependency tracking for pull requests
1
+ Done. Updated CHANGELOG.md with v0.1.269 entry at the top, referencing the fix for the sparse-checkout command help text from commit fe78802.
data/bin/h-notify CHANGED
@@ -22,8 +22,8 @@ NOTIFY_TMUX_HOOKS = %w[after-kill-pane window-unlinked session-closed].freeze
22
22
  NOTIFY_TMUX_CONF_CONTENT = <<~'CONF'
23
23
  # --- Notify hooks (clean up notifications when panes/windows/sessions close) ---
24
24
  set-hook -g after-kill-pane "run-shell -b 'h notify remove_pane \#{hook_pane_id}'"
25
- set-hook -g window-unlinked "run-shell -b 'h notify remove_window \#{hook_window_id}'"
26
25
  set-hook -g session-closed "run-shell -b 'h notify remove_session \#{hook_session_name}'"
26
+ # set-hook -g window-unlinked "run-shell -b 'h notify remove_window \#{hook_window_id}'"
27
27
 
28
28
  # --- Notify keybinding (prefix + N to open notification menu) ---
29
29
  bind-key N run-shell "h notify menu"
data/lib/hiiro/tasks.rb CHANGED
@@ -772,6 +772,11 @@ class Hiiro
772
772
  flag(:disable, short: 'd', desc: 'disable sparse checkout on the current task worktree')
773
773
  end
774
774
 
775
+ if opts.help
776
+ puts opts.help_text
777
+ exit 1
778
+ end
779
+
775
780
  if opts.list
776
781
  groups = Hiiro::SparseGroups.load
777
782
  if groups.empty?
data/lib/hiiro/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Hiiro
2
- VERSION = "0.1.267"
2
+ VERSION = "0.1.269"
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.267
4
+ version: 0.1.269
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Toyota