termdock 1.4.199 → 1.4.200
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.
|
@@ -1272,6 +1272,13 @@ async function buildWorkspaceGitBundle(resolvedCwd, gitRoot, includeNested, sign
|
|
|
1272
1272
|
files: bundle.files,
|
|
1273
1273
|
context: bundle.context,
|
|
1274
1274
|
error: bundle.error,
|
|
1275
|
+
// The client only ever reads this flag off the repository, never off the
|
|
1276
|
+
// top-level payload: it is what makes it re-fetch untracked files after
|
|
1277
|
+
// an 800ms `ls-files` timeout. Leaving it unset here means the whole
|
|
1278
|
+
// untracked half of the change list silently disappears — an empty pane
|
|
1279
|
+
// on a repo whose changes are all untracked. buildGitRepositoryBundle
|
|
1280
|
+
// sets it for nested repos; single-repo mode is the odd one out.
|
|
1281
|
+
untrackedDeferred: bundle.untrackedDeferred,
|
|
1275
1282
|
};
|
|
1276
1283
|
return {
|
|
1277
1284
|
...bundle,
|
package/package.json
CHANGED
package/runtime-manifest.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"packageName": "termdock",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.200",
|
|
5
5
|
"runtimeProtocolVersion": 1,
|
|
6
6
|
"minimumDesktopVersion": "1.4.46",
|
|
7
7
|
"nodeMajor": 22,
|
|
8
8
|
"dependencyHash": "sha256-K4KyYJuVoQDpZsBM8ZX1Rw3MddOxAzVdp/cPm0iGZz0=",
|
|
9
|
-
"serverBundleHash": "sha256-
|
|
9
|
+
"serverBundleHash": "sha256-7ehRd5JtBH62ssB6luI6oJwhvA6Rtk5zK+9OHjLR9js=",
|
|
10
10
|
"clientBundleHash": "sha256-cJQTiuhltK2Q14i4AXibdc0sglS7llKXTOHZ+vgjl3A=",
|
|
11
11
|
"entrypoint": "dist/server/cli.js",
|
|
12
12
|
"clientEntrypoint": "dist/client/index.html"
|