fss-link 1.0.76 → 1.0.77

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.
Files changed (2) hide show
  1. package/bundle/fss-link.js +12 -2
  2. package/package.json +1 -1
@@ -22379,7 +22379,7 @@ function createContentGeneratorConfig(config, authType) {
22379
22379
  return contentGeneratorConfig;
22380
22380
  }
22381
22381
  async function createContentGenerator(config, gcConfig, sessionId2) {
22382
- const version = "1.0.76";
22382
+ const version = "1.0.77";
22383
22383
  const userAgent = `FSS-Link/${version} (${process.platform}; ${process.arch})`;
22384
22384
  const baseHeaders = {
22385
22385
  "User-Agent": userAgent
@@ -373535,7 +373535,7 @@ async function getPackageJson() {
373535
373535
  // packages/cli/src/utils/version.ts
373536
373536
  async function getCliVersion() {
373537
373537
  const pkgJson = await getPackageJson();
373538
- return "1.0.76";
373538
+ return "1.0.77";
373539
373539
  }
373540
373540
 
373541
373541
  // packages/cli/src/ui/commands/aboutCommand.ts
@@ -407653,6 +407653,16 @@ function setWindowTitle(title, settings) {
407653
407653
  }
407654
407654
 
407655
407655
  // packages/cli/index.ts
407656
+ process.on("unhandledRejection", (reason, promise2) => {
407657
+ if (String(reason) === "Statement closed") {
407658
+ console.warn("\u26A0\uFE0F SUPPRESSED: SQL Statement closed error during startup - continuing execution");
407659
+ return;
407660
+ }
407661
+ console.error("Unhandled rejection:", reason);
407662
+ });
407663
+ console.log("\u{1F527} INDEX.TS: Starting import of gemini.js");
407664
+ console.log("\u{1F527} INDEX.TS: gemini.js import completed");
407665
+ console.log("\u{1F527} INDEX.TS: All imports completed, calling main()");
407656
407666
  main().catch((error) => {
407657
407667
  console.error("An unexpected critical error occurred:");
407658
407668
  console.error(String(error));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fss-link",
3
- "version": "1.0.76",
3
+ "version": "1.0.77",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },