claude-code-session-manager 0.32.1 → 0.32.2

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/dist/index.html CHANGED
@@ -7,7 +7,7 @@
7
7
  <link rel="preconnect" href="https://fonts.googleapis.com">
8
8
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9
9
  <link href="https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;0,6..72,700;1,6..72,400&family=Geist:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap" rel="stylesheet">
10
- <script type="module" crossorigin src="./assets/index-CogvVs0W.js"></script>
10
+ <script type="module" crossorigin src="./assets/index-BTXVR9ds.js"></script>
11
11
  <link rel="modulepreload" crossorigin href="./assets/monaco-editor-BW5C4Iv1.js">
12
12
  <link rel="stylesheet" crossorigin href="./assets/monaco-editor-BTnBOi8r.css">
13
13
  <link rel="stylesheet" crossorigin href="./assets/index-DMIi9YZH.css">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-session-manager",
3
- "version": "0.32.1",
3
+ "version": "0.32.2",
4
4
  "description": "Local cockpit for the Claude Code CLI — multi-tab terminal, full config surface, scheduler, voice dictation, and live observability.",
5
5
  "type": "module",
6
6
  "main": "src/main/index.cjs",
@@ -119,8 +119,8 @@ function validateWrite(realAbs) {
119
119
  }
120
120
 
121
121
  async function readJson(abs) {
122
- abs = validatePath(expandHome(abs));
123
122
  try {
123
+ abs = validatePath(expandHome(abs));
124
124
  const raw = await fsp.readFile(abs, 'utf8');
125
125
  let data = null;
126
126
  let parseError = null;
@@ -140,8 +140,8 @@ async function readJson(abs) {
140
140
  }
141
141
 
142
142
  async function readText(abs) {
143
- abs = validatePath(expandHome(abs));
144
143
  try {
144
+ abs = validatePath(expandHome(abs));
145
145
  const raw = await fsp.readFile(abs, 'utf8');
146
146
  const stat = await fsp.stat(abs);
147
147
  return { exists: true, text: raw, mtimeMs: stat.mtimeMs, error: null };
@@ -210,8 +210,8 @@ function writeJsonSync(abs, data) {
210
210
  }
211
211
 
212
212
  async function listDir(abs, { filesOnly = false, dirsOnly = false, includeHidden = false } = {}) {
213
- abs = validatePath(expandHome(abs));
214
213
  try {
214
+ abs = validatePath(expandHome(abs));
215
215
  const entries = await fsp.readdir(abs, { withFileTypes: true });
216
216
  const results = [];
217
217
  for (const e of entries) {
@@ -245,8 +245,8 @@ async function listDir(abs, { filesOnly = false, dirsOnly = false, includeHidden
245
245
  }
246
246
 
247
247
  async function exists(abs) {
248
- abs = validatePath(expandHome(abs));
249
248
  try {
249
+ abs = validatePath(expandHome(abs));
250
250
  await fsp.access(abs);
251
251
  return true;
252
252
  } catch {