Skip to content
Open
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
5 changes: 0 additions & 5 deletions .changeset/gait-travel-planting.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/motion-export-bvh-gltf.md

This file was deleted.

10 changes: 10 additions & 0 deletions packages/posecode-embed/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# posecode-embed

## 0.4.2

### Patch Changes

- Updated dependencies [094d453]
- Updated dependencies [94399be]
- posecode-render@0.4.2
- posecode-parser@0.4.2
- posecode-share@0.4.2

## 0.4.1

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/posecode-embed/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posecode-embed",
"version": "0.4.1",
"version": "0.4.2",
"description": "Embed a live 3D Posecode movement anywhere with one <script> tag — the <posecode-player> web component.",
"license": "AGPL-3.0-only",
"type": "module",
Expand Down Expand Up @@ -38,9 +38,9 @@
"three.js"
],
"dependencies": {
"posecode-parser": "0.4.1",
"posecode-render": "0.4.1",
"posecode-share": "0.4.1"
"posecode-parser": "0.4.2",
"posecode-render": "0.4.2",
"posecode-share": "0.4.2"
},
"devDependencies": {
"esbuild": "^0.28.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/posecode-embed/src/compat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { parse, POSECODE_VERSION } from "posecode-parser";
import type { ParseResult } from "posecode-parser";

/** Version of the posecode-embed package/bundle. */
export const version = "0.4.1";
export const version = "0.4.2";

/** Version of the Posecode language understood by this bundle. */
export const languageVersion = POSECODE_VERSION;
Expand Down
4 changes: 2 additions & 2 deletions packages/posecode-eval/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
".": "./src/index.ts"
},
"dependencies": {
"posecode-parser": "0.4.1",
"posecode-render": "0.4.1",
"posecode-parser": "0.4.2",
"posecode-render": "0.4.2",
"three": "^0.171.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/posecode-language/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
".": "./src/index.ts"
},
"dependencies": {
"posecode-parser": "0.4.1"
"posecode-parser": "0.4.2"
}
}
7 changes: 7 additions & 0 deletions packages/posecode-mcp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# posecode-mcp

## 0.4.2

### Patch Changes

- posecode-parser@0.4.2
- posecode-share@0.4.2

## 0.4.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/posecode-mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posecode-mcp",
"version": "0.4.1",
"version": "0.4.2",
"description": "Model Context Protocol server for Posecode: let any LLM agent validate, ROM-check, and get a render link for a .posecode movement, natively.",
"mcpName": "io.github.posecode-dev/posecode-mcp",
"license": "AGPL-3.0-only",
Expand Down Expand Up @@ -46,8 +46,8 @@
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"posecode-parser": "0.4.1",
"posecode-share": "0.4.1",
"posecode-parser": "0.4.2",
"posecode-share": "0.4.2",
"zod": "^4.4.3"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/posecode-mcp/server.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"url": "https://github.com/posecode-dev/posecode",
"source": "github"
},
"version": "0.4.1",
"version": "0.4.2",
"packages": [
{
"registryType": "npm",
"identifier": "posecode-mcp",
"version": "0.4.1",
"version": "0.4.2",
"transport": {
"type": "stdio"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/posecode-mcp/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export interface PosecodeServerOptions {
}

/** Package/server identity kept in sync by `version-packages`. */
export const POSECODE_MCP_VERSION = "0.4.1";
export const POSECODE_MCP_VERSION = "0.4.2";

export function createPosecodeServer(opts: PosecodeServerOptions = {}): McpServer {
const baseUrl = opts.baseUrl ?? DEFAULT_BASE_URL;
Expand Down
2 changes: 2 additions & 0 deletions packages/posecode-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# posecode-parser

## 0.4.2

## 0.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/posecode-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posecode-parser",
"version": "0.4.1",
"version": "0.4.2",
"description": "Parse the .posecode kinematic motion DSL into a validated, ROM-clamped intermediate representation.",
"license": "Apache-2.0",
"type": "module",
Expand Down
7 changes: 7 additions & 0 deletions packages/posecode-render/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# posecode-render

## 0.4.2

### Patch Changes

- 094d453: Carry the body to its authored travel waypoints in gait moves. A floor foot-pin in a clip that travels and alternates both feet is now solved as a stance foot (leg IK to the fixed plant) while the travelled root stays put, instead of translating the whole body back onto the plant and cancelling the travel. Same-foot travel pins and vertical supports keep the body-translate behaviour.
- 94399be: Add motion export. `exportBVH(ir, options?)` bakes a movement's authored joint motion and root travel/turn into a standard Biovision Hierarchy (`.bvh`) file, and `exportGLTF(ir, options?)` / `buildAnimatedRig(ir, options?)` export the mannequin rig plus a baked `AnimationClip` as a glTF/GLB asset that loads with Three.js `GLTFLoader`. Both sample the timeline headlessly (no WebGL) at a configurable frame rate and bake the full looped runtime; they export authored motion, not the contact/IK-solved motion.

## 0.4.1

## 0.4.0
Expand Down
2 changes: 1 addition & 1 deletion packages/posecode-render/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posecode-render",
"version": "0.4.1",
"version": "0.4.2",
"description": "Render a Posecode IR as an animated 3D human figure (skinned character or procedural mannequin) with Three.js.",
"license": "AGPL-3.0-only",
"type": "module",
Expand Down
2 changes: 2 additions & 0 deletions packages/posecode-share/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# posecode-share

## 0.4.2

## 0.4.1

## 0.4.0
Expand Down
2 changes: 1 addition & 1 deletion packages/posecode-share/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posecode-share",
"version": "0.4.1",
"version": "0.4.2",
"description": "Encode/decode .posecode documents to URL-safe share tokens — the distribution primitive for Posecode permalinks and embeds.",
"license": "Apache-2.0",
"type": "module",
Expand Down
6 changes: 3 additions & 3 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"@lezer/highlight": "^1.2.1",
"@vercel/analytics": "^2.0.1",
"posecode-language": "0.2.2",
"posecode-parser": "0.4.1",
"posecode-render": "0.4.1",
"posecode-share": "0.4.1",
"posecode-parser": "0.4.2",
"posecode-render": "0.4.2",
"posecode-share": "0.4.2",
"three": "^0.171.0"
},
"devDependencies": {
Expand Down