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 +4 -4
- data/CHANGELOG.md +8 -7
- data/lib/hiiro/notification.rb +3 -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: 5cd9e9d71bc395bd2c2595f8087e46f1ba6ea4e5ec80ae9ea9be9942aeddc15a
|
|
4
|
+
data.tar.gz: 96f39bc0fe91064bb6a7c95371b7d1105be32daad17883e5a75ec565a617783c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
data/lib/hiiro/notification.rb
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
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