@norman-else/dsh-claude 0.1.29 → 0.1.32

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.
package/lib/bin.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { i as parseClaudeVersion, n as ensureManagedPreset, r as removeManagedPreset } from "./preset-installer-CPOH9lAr.mjs";
2
+ import { i as parseClaudeVersion, n as ensureManagedPreset, r as removeManagedPreset } from "./preset-installer-CVdbU87E.mjs";
3
3
  import { access } from "node:fs/promises";
4
4
  import { delimiter, isAbsolute, join } from "node:path";
5
5
  import { homedir } from "node:os";
package/lib/client.d.ts CHANGED
@@ -13,6 +13,8 @@ declare const en: {
13
13
  readonly subagent: "Subagent";
14
14
  readonly usedTool: "Used 1 tool";
15
15
  readonly usedTools: "Used {count} tools";
16
+ readonly compacted: "Context compacted";
17
+ readonly compactedAuto: "Context auto-compacted";
16
18
  readonly toolInput: "Input";
17
19
  readonly toolOutput: "Output";
18
20
  readonly toolError: "Error";
@@ -124,6 +126,11 @@ declare const en: {
124
126
  readonly repositoryBranch: "Branch";
125
127
  readonly repositoryBranchSearch: "Search branches";
126
128
  readonly repositoryBranchSearchEmpty: "No matching branches";
129
+ readonly repositoryBranchRefresh: "Refresh remote branches";
130
+ readonly repositoryBranchRefreshing: "Refreshing remote branches…";
131
+ readonly repositoryBranchRefreshed: "Refreshed · {count} branches";
132
+ readonly repositoryBranchRefreshFailed: "Could not refresh remote branches";
133
+ readonly repositoryBranchRefreshStale: "The Host process is still running the previous plugin build, which has no refresh route. Restart DSH and try again.";
127
134
  readonly repositoryBranchesLoading: "Loading branches…";
128
135
  readonly repositoryProgressTitle: "Creating Worktree";
129
136
  readonly repositoryProgressFailed: "Worktree creation failed";
@@ -173,6 +180,9 @@ declare const en: {
173
180
  readonly no: "No";
174
181
  readonly diffOpen: "View branch changes";
175
182
  readonly diffClose: "Close diff panel";
183
+ readonly sessionMenu: "Session menu";
184
+ readonly sessionMenuOpenIn: "Open in";
185
+ readonly sessionMenuOpenFailed: "Could not open: {message}";
176
186
  readonly presetHeaderHint: "The agent preset this session runs";
177
187
  readonly diffWorkingTree: "Branch changes";
178
188
  readonly diffFiles: "{count} modified file(s)";
@@ -272,7 +282,7 @@ declare const en: {
272
282
  readonly jiraError: "Jira request failed";
273
283
  readonly cleanupButton: "Clean up";
274
284
  readonly cleanupTitle: "Clean up merged branch";
275
- readonly cleanupDescription: "Remove the worktree and local branch and delete the workspace; a plain checkout switches back to the base branch and deletes the merged branch.";
285
+ readonly cleanupDescription: "Remove the worktree and local branch, then archive the workspace sessions and delete the workspace; a plain checkout switches back to the base branch and deletes the merged branch.";
276
286
  readonly cleanupCompleted: "Cleaned up {branch}";
277
287
  readonly overviewOpen: "Open the Claude session board";
278
288
  readonly overviewTitle: "Session board";
@@ -316,6 +326,16 @@ declare const en: {
316
326
  readonly diffUnmodifiedTail: "More unmodified lines below";
317
327
  readonly diffExpandUp: "Expand up";
318
328
  readonly diffExpandDown: "Expand down";
329
+ readonly diffFileComments: "{count} comments";
330
+ readonly rewindTooltip: "Rewind to here";
331
+ readonly rewindTitle: "Rewind to before this message";
332
+ readonly rewindDescription: "This removes the message and the {count} entries below it, and returns Claude to the context it had before you sent it. This cannot be undone.";
333
+ readonly rewindHint: "The removed entries are hidden from this session and Claude forgets them; the message text goes back to the composer so you can edit and resend it.";
334
+ readonly rewindConfirm: "Delete and rewind";
335
+ readonly rewindSubmitting: "Rewinding…";
336
+ readonly rewindFailed: "The rewind failed ({code}).";
337
+ readonly rewindBusy: "This session is running; wait for the turn to finish before rewinding.";
338
+ readonly rewindStale: "The Host process is still running the previous plugin build, which has no rewind route. Restart DSH and try again.";
319
339
  };
320
340
  type ClaudeCodeSettingsKey = keyof typeof en;
321
341
  //#endregion