@mean-weasel/lineage 0.1.0 → 0.1.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1
4
+
5
+ - Fix first-run demo lineage loading and catalog-root lineage workspace creation.
6
+ - Add visible release version/channel metadata in Settings.
7
+ - Keep the New lineage modal actions reachable at default viewport heights.
8
+
3
9
  ## 0.1.0
4
10
 
5
11
  - Initial public extraction of Lineage as a local-first creative lineage workspace.
package/dist/server.js CHANGED
@@ -4718,7 +4718,9 @@ function registerLineageWorkspaceRoutes(app2, projectFrom2, asyncRoute2) {
4718
4718
  res.json(listLineageWorkspaces(projectFrom2(req)));
4719
4719
  }));
4720
4720
  app2.post("/api/lineage-workspaces", asyncRoute2((req, res) => {
4721
- res.json(createLineageWorkspace(projectFrom2(req), {
4721
+ const project = projectFrom2(req);
4722
+ if (req.body.confirmWrite === true) indexLineageAssets(project);
4723
+ res.json(createLineageWorkspace(project, {
4722
4724
  rootAssetId: String(req.body.rootAssetId || ""),
4723
4725
  title: typeof req.body.title === "string" ? req.body.title : void 0,
4724
4726
  status: req.body.status === "paused" || req.body.status === "archived" ? req.body.status : "active",