mnemosyne-core 2.1.9 → 2.1.10

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.
@@ -6107,6 +6107,7 @@ function bondLinkMouseOut(e, d) {
6107
6107
  return ls === s && lt === t;
6108
6108
  }).transition().duration(150).attr("opacity", 0);
6109
6109
  }
6110
+ }
6110
6111
  function bondLinkClick(e, d) {
6111
6112
  e.stopPropagation();
6112
6113
  showBondToolbar(e, d);
package/dist/index.js CHANGED
@@ -201,7 +201,7 @@ function getVersion() {
201
201
  const pkg = JSON.parse(readFileSync6(resolve9(process.cwd(), "package.json"), "utf-8"));
202
202
  return pkg.version;
203
203
  } catch {
204
- return "2.1.9";
204
+ return "2.1.10";
205
205
  }
206
206
  }
207
207
  }
@@ -5391,7 +5391,7 @@ function getVersion2() {
5391
5391
  const pkg = JSON.parse(readFileSync6(resolve9(process.cwd(), "package.json"), "utf-8"));
5392
5392
  return pkg.version;
5393
5393
  } catch {
5394
- return "2.1.9";
5394
+ return "2.1.10";
5395
5395
  }
5396
5396
  }
5397
5397
  }
@@ -5978,7 +5978,7 @@ function getVersion3() {
5978
5978
  const pkg = JSON.parse(readFileSync6(resolve9(process.cwd(), "package.json"), "utf-8"));
5979
5979
  return pkg.version;
5980
5980
  } catch {
5981
- return "2.1.9";
5981
+ return "2.1.10";
5982
5982
  }
5983
5983
  }
5984
5984
  }
@@ -7144,7 +7144,7 @@ var PKG_VERSION = (() => {
7144
7144
  const pkg = JSON.parse(require("fs").readFileSync(require("path").resolve(__dirname, "../../package.json"), "utf-8"));
7145
7145
  return pkg.version;
7146
7146
  } catch {
7147
- return "2.1.9";
7147
+ return "2.1.10";
7148
7148
  }
7149
7149
  })();
7150
7150
  function handleHealth(store, pathname, method, res) {
@@ -7509,7 +7509,7 @@ var MnemosyneServer = class {
7509
7509
  const wss = new import_websocket_server.default({ server: this.httpServer });
7510
7510
  this.wsHandler = new WebSocketHandler(wss, this.store);
7511
7511
  }
7512
- const version = cfg?.server?.version || "2.1.9";
7512
+ const version = cfg?.server?.version || "2.1.10";
7513
7513
  this.httpServer.listen(port, () => {
7514
7514
  console.log(`Mnemosyne v${version} \u2014 port ${port}`);
7515
7515
  console.log(`Dashboard: http://${host}:${port}/dashboard`);