@norman-else/dsh-claude 0.1.24 → 0.1.26

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-B_Cb0RG6.mjs";
2
+ import { i as parseClaudeVersion, n as ensureManagedPreset, r as removeManagedPreset } from "./preset-installer-BMRaIHLu.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
@@ -226,6 +226,59 @@ declare const en: {
226
226
  readonly queueEditFailed: "The queued message could not be edited.";
227
227
  readonly queueRemoveFailed: "The queued message could not be removed.";
228
228
  readonly queueSteerFailed: "The queued message could not be steered.";
229
+ readonly heroTicket: "Ticket";
230
+ readonly heroTicketMenu: "Pick a Jira ticket";
231
+ readonly heroTicketSearch: "Search tickets or enter a key…";
232
+ readonly heroTicketLoading: "Searching…";
233
+ readonly heroTicketEmpty: "No matching tickets";
234
+ readonly heroTicketNone: "Clear selected tickets";
235
+ readonly heroTicketRemove: "Remove {key}";
236
+ readonly heroTicketCount: "{count} tickets";
237
+ readonly heroBatchStarted: "Kicked off {count} tickets, each in its own worktree session";
238
+ readonly heroTicketNotConnected: "Connect Jira in Settings first";
239
+ readonly heroTicketFailed: "Ticket search failed";
240
+ readonly jiraTitle: "Jira";
241
+ readonly jiraBody: "Connect Jira Cloud to start new sessions from a ticket: the branch is named after the ticket key, the composer is seeded with the ticket brief, and the ticket is assigned to you once the worktree exists.";
242
+ readonly jiraSite: "Site URL";
243
+ readonly jiraSitePlaceholder: "https://your-team.atlassian.net";
244
+ readonly jiraEmail: "Account email";
245
+ readonly jiraToken: "API token";
246
+ readonly jiraTokenHelp: "Create an API token at Atlassian";
247
+ readonly jiraConnect: "Connect";
248
+ readonly jiraConnecting: "Verifying…";
249
+ readonly jiraDisconnect: "Disconnect";
250
+ readonly jiraConnected: "Connected";
251
+ readonly jiraLoading: "Loading Jira status…";
252
+ readonly jiraError: "Jira request failed";
253
+ readonly cleanupButton: "Clean up";
254
+ readonly cleanupTitle: "Clean up merged branch";
255
+ 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.";
256
+ readonly cleanupCompleted: "Cleaned up {branch}";
257
+ readonly overviewOpen: "Open the Claude session board";
258
+ readonly overviewTitle: "Session board";
259
+ readonly overviewBody: "Run state, branch, and pull request across Claude sessions";
260
+ readonly overviewEmpty: "No active Claude sessions";
261
+ readonly overviewNoPr: "No PR";
262
+ readonly overviewRunning: "Running";
263
+ readonly overviewNeedsPermission: "Awaiting approval";
264
+ readonly overviewNeedsAnswer: "Awaiting answer";
265
+ readonly overviewContextUsage: "Context {percentage}%";
266
+ readonly overviewAutoFix: "Auto fix on";
267
+ readonly overviewLoading: "Loading…";
268
+ readonly askToolbar: "Selection actions";
269
+ readonly askTooltip: "Ask about this";
270
+ readonly copyTooltip: "Copy";
271
+ readonly askCopied: "Copied";
272
+ readonly askPlaceholder: "Ask about the selected text…";
273
+ readonly askSubmit: "Ask";
274
+ readonly askStarting: "Starting Claude…";
275
+ readonly askThinking: "Thinking…";
276
+ readonly askThinkingLive: "Thinking ·";
277
+ readonly askThinkingLabel: "Think ·";
278
+ readonly askCopyAnswer: "Copy answer";
279
+ readonly askSendToChat: "Send to chat";
280
+ readonly askClose: "Close";
281
+ readonly askFailed: "The question could not be answered";
229
282
  readonly reviewCommentAdd: "Add line comment";
230
283
  readonly reviewCommentPlaceholder: "Request changes";
231
284
  readonly reviewCommentSubmit: "Comment";
@@ -237,6 +290,12 @@ declare const en: {
237
290
  readonly reviewCommentsSendDraft: "Please address the attached review comments.";
238
291
  readonly reviewCommentOldSide: "Old line {line}";
239
292
  readonly reviewCommentNewSide: "Line {line}";
293
+ readonly reviewCommentOldRange: "Old lines {start}–{end}";
294
+ readonly reviewCommentNewRange: "Lines {start}–{end}";
295
+ readonly diffUnmodifiedLines: "{count} unmodified lines";
296
+ readonly diffUnmodifiedTail: "More unmodified lines below";
297
+ readonly diffExpandUp: "Expand up";
298
+ readonly diffExpandDown: "Expand down";
240
299
  };
241
300
  type ClaudeCodeSettingsKey = keyof typeof en;
242
301
  //#endregion