Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ipollowork/app",
"private": true,
"version": "0.20.0",
"version": "0.21.0",
"type": "module",
"scripts": {
"test": "bun test --isolate tests/",
Expand Down
6 changes: 4 additions & 2 deletions apps/app/tests/video-hyperframes-panel.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ describe("HyperFrames Video Studio", () => {
expect(urlStateSource.indexOf("setRightPanelTab(\"design\")")).toBeLessThan(urlStateSource.indexOf("applyUrlSelection(command.selection)"));
});

test("deletes selected canvas elements in place without forcing a full preview reload", () => {
test("deletes selected canvas elements optimistically and refreshes once after persistence", () => {
const desktopSource = readFileSync(
new URL("../../../apps/desktop/electron/main.mjs", import.meta.url),
"utf8",
Expand All @@ -231,7 +231,9 @@ describe("HyperFrames Video Studio", () => {
expect(lifecycleSource).toContain("function removeLivePreviewElement");
expect(lifecycleSource).toContain("findElementForSelection(doc, selection, activeCompPath)");
expect(lifecycleSource).toContain("parent.insertBefore(element, nextSibling?.parentNode === parent ? nextSibling : null)");
expect(lifecycleSource).toContain("if (!liveRemoval) reloadPreview()");
expect(lifecycleSource).toContain("const requestPreviewRefresh = () => {");
expect(lifecycleSource).toContain("if (!previewRefreshRequested && loadingShown)");
expect(lifecycleSource).not.toContain("if (!liveRemoval) reloadPreview()");
expect(lifecycleSource).not.toContain("forceReloadSdkSession?.();\n reloadPreview();");
expect(commitsSource).toContain("previewIframeRef,");
const deleteFunctionStart = desktopSource.indexOf("const deleteSelectedElement = async () => {");
Expand Down
2 changes: 1 addition & 1 deletion apps/app/tests/work-context-entry-wiring.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ describe("personal and Enterprise chat entry wiring", () => {
test("scopes workspaces and therefore all sessions to the active work context", () => {
expect(routeState).toContain("canonicalWorkspacesForWorkContext(");
expect(routeState).toContain("pruneServerWorkspacesForWorkContext(");
expect(routeState).toContain("workContextRef.current !== requestedContextId");
expect(routeState).toContain("workContextRef.current === requestedContextId");
expect(sessionRoute).toContain("workContextId: activeWorkContextId");
expect(sessionRoute).toContain("sessionsByWorkspaceId,");
expect(sessionRoute).not.toContain("ChatSpace");
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ipollowork/desktop",
"private": true,
"version": "0.20.0",
"version": "0.21.0",
"description": "iPolloWork desktop shell",
"author": {
"name": "iPolloWork",
Expand Down
4 changes: 2 additions & 2 deletions apps/orchestrator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipollowork-orchestrator",
"version": "0.20.0",
"version": "0.21.0",
"description": "iPolloWork host orchestrator for opencode + iPolloWork server",
"private": true,
"type": "module",
Expand Down Expand Up @@ -46,7 +46,7 @@
"@opencode-ai/sdk": "^1.18.16",
"@opentui/core": "0.1.77",
"@opentui/solid": "0.1.77",
"ipollowork-server": "0.20.0",
"ipollowork-server": "0.21.0",
"solid-js": "1.9.9"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion apps/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipollowork-server",
"version": "0.20.0",
"version": "0.21.0",
"description": "Filesystem-backed API for iPolloWork remote clients",
"type": "module",
"bin": {
Expand Down
8 changes: 4 additions & 4 deletions apps/server/src/hyperframes-catalog.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ describe("HyperFrames catalog parameters", () => {
const animations = gsapItems.filter((item) => item.kind === "animation");
const effects = gsapItems.filter((item) => item.kind === "effect");

expect(gsapItems).toHaveLength(167);
expect(gsapItems).toHaveLength(163);
expect(animations).toHaveLength(74);
expect(effects).toHaveLength(93);
expect(effects).toHaveLength(89);
expect(gsapItems.filter((item) => item.source?.provider === "gsap-docs")).toHaveLength(25);
expect(gsapItems.filter((item) => item.source?.provider === "hyperframes")).toHaveLength(126);
expect(gsapItems.filter((item) => item.source?.provider === "ipollowork")).toHaveLength(16);
expect(gsapItems.filter((item) => item.source?.provider === "hyperframes")).toHaveLength(111);
expect(gsapItems.filter((item) => item.source?.provider === "ipollowork")).toHaveLength(27);
expect(gsapItems.find((item) => item.name === "app-showcase")?.engine?.version).toBe("3.14.2");
expect(
gsapItems.find((item) => item.name === "gsap-scrolltrigger-story")?.engine?.plugins,
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading