hiiro 0.1.364 → 0.1.365

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: bc3bb4ffb44a7fd10c4326c3b66ce610252b5577a2bf9bbd853609e136ce372d
4
- data.tar.gz: b5656ec5578ab8d44db8d052ee221a8fc0ec7a20b3dd576e0f1e26aab8b50a75
3
+ metadata.gz: 5cd9e9d71bc395bd2c2595f8087e46f1ba6ea4e5ec80ae9ea9be9942aeddc15a
4
+ data.tar.gz: 96f39bc0fe91064bb6a7c95371b7d1105be32daad17883e5a75ec565a617783c
5
5
  SHA512:
6
- metadata.gz: '089a0505748168d9589a116e9c21b2b7b28e7a5703128d4a897ba00d44d2fc19026230b4f34fb83fef436c96228e3e0c77e866683048cea0e73a4b977aa5656d'
7
- data.tar.gz: 0557625e1493c2a9aad1e398f93f0ee1f1504eeea5b753c4c9de908ccb89a99731cdb6127d84d44396a5dcdfde43728fdc10670a457fea4a8686a4fb61f08bd9
6
+ metadata.gz: ff2f56ae6f5c69db4476308c1f52eff96504b8ce52b8fb1d015a4ade478e3000e075ac0e8a737d2fc03b9bb16108ba6408ca7eb22af76965780addf528f94758
7
+ data.tar.gz: f15c1f626b4c6b7ffccfc62559517a35d75a0f0e10ac1a72601401b7b953231ec2e9df4495946c9724d46d7ce3d2d9d2b26826f4f4119dfadf80041935288c75
data/CHANGELOG.md CHANGED
@@ -1,12 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## [0.1.364] - 2026-09-13
4
-
5
- ### Fixed
6
- - Create the publish response log directory before saving Claude's output, preventing release preparation from failing when the directory is absent.
7
- - Prevent infinite recursion in help directory grouping when command locations span different filesystem-root directories, such as `/Users` and `/Volumes`.
8
-
9
- ## [Unreleased]
3
+ ## [0.1.365] - 2026-09-13
10
4
 
11
5
  ### Added
12
6
  - Add the `t` task CLI with `--task`/`-t` selection, durable task status and next actions, document homes, resource references, and Herdr workspace/tab/pane commands.
@@ -25,6 +19,7 @@
25
19
  - Remove the old `Hiiro::Tmux` adapter and tmux-specific command tests.
26
20
 
27
21
  ### Fixed
22
+ - Strip the desktop notifier executable path and run notifications and sounds as detached processes instead of creating persistent Herdr tabs.
28
23
  - Preserve `add_cmd` declaration locations and argument metadata in generated help; allow command groups to pass arguments and help through to child commands.
29
24
  - Make undeclared `add_cmd opts:` entries boolean flags without consuming positional arguments; preserve explicit options and reserve conflicting short aliases.
30
25
  - Show selected command options for `add_cmd -h`/`--help` without executing the command block.
@@ -33,6 +28,12 @@
33
28
  - Make Hiiro's Ruby requirement explicit as Ruby 3.2+ and have rbenv-wide gem installs skip incompatible Ruby versions.
34
29
  - Update the publish script to preserve the Ruby support constant, run only on supported Ruby, and install releases only into compatible rbenv versions.
35
30
 
31
+ ## [0.1.364] - 2026-09-13
32
+
33
+ ### Fixed
34
+ - Create the publish response log directory before saving Claude's output, preventing release preparation from failing when the directory is absent.
35
+ - Prevent infinite recursion in help directory grouping when command locations span different filesystem-root directories, such as `/Users` and `/Volumes`.
36
+
36
37
  ## [0.1.355] - 2026-05-19
37
38
 
38
39
  ### Added
@@ -42,19 +42,19 @@ class Hiiro
42
42
  cmd += ['-title', options.title.tr('()[]', '')] if options.title
43
43
  cmd += ['-open', options.link] if options.link
44
44
  cmd += ['-execute', options.command] if options.command
45
- Background.run(*cmd)
45
+ Process.detach(spawn(*cmd))
46
46
 
47
47
  play_sound
48
48
  end
49
49
 
50
50
  def play_sound
51
51
  if options.sound && sounds[options.sound]
52
- Background.run('afplay', sounds[options.sound.downcase])
52
+ Process.detach(spawn('afplay', sounds[options.sound.downcase]))
53
53
  end
54
54
  end
55
55
 
56
56
  def binpath
57
- `command -v terminal-notifier`
57
+ `command -v terminal-notifier`.strip
58
58
  end
59
59
 
60
60
  def has_cmd?
data/lib/hiiro/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  class Hiiro
2
- VERSION = "0.1.364"
2
+ VERSION = "0.1.365"
3
3
  SUPPORTED_RUBY_VERSION = ">= 3.2.0"
4
4
  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.364
4
+ version: 0.1.365
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Toyota