Skip to content

Commit af945a9

Browse files
committed
chore: bump version to 0.3.1
Entire-Checkpoint: 742e828c6b37
1 parent 6b3ea98 commit af945a9

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tail-claude-gui",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"private": true,
55
"type": "module",
66
"scripts": {

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tail-claude-gui"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55
rust-version = "1.77.2"
66

src-tauri/src/parser/ongoing.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,11 @@ impl<'a> OngoingChecker<'a> {
212212
Self::has_pending_background_commands(self.chunks)
213213
}
214214

215-
/// Check if a subagent process is ongoing (chunk-based + file staleness).
215+
/// Check if a subagent process is ongoing (chunk-based + background commands + file staleness).
216216
pub fn is_subagent_ongoing(proc: &super::subagent::SubagentProcess) -> bool {
217-
Self::is_chunks_ongoing(&proc.chunks) && apply_staleness(true, proc.file_mod_time)
217+
(Self::is_chunks_ongoing(&proc.chunks)
218+
|| Self::has_pending_background_commands(&proc.chunks))
219+
&& apply_staleness(true, proc.file_mod_time)
218220
}
219221

220222
/// Cascading check: returns true if `proc` or any of its descendant subagents are ongoing.

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"productName": "tail-claude-gui",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"identifier": "com.tailclaude.gui",
55
"build": {
66
"devUrl": "http://localhost:1420",

0 commit comments

Comments
 (0)