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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.0"
".": "0.1.0"
}
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

## 0.1.0 (2026-07-24)


### Features

* embed full rhwp-studio editor via Deno workspace ([#9](https://github.com/pleaseai/openhwp/issues/9)) ([b73f1bd](https://github.com/pleaseai/openhwp/commit/b73f1bd1c462046e539bec454208cd69504630df))
* scaffold Deno desktop app (viewer) ([b0b7e5e](https://github.com/pleaseai/openhwp/commit/b0b7e5e60d03a714ba81dd51950997d61064130a))
* **ui:** vendor the rhwp engine locally (offline, strict CSP) ([001d834](https://github.com/pleaseai/openhwp/commit/001d834b7afac7ee80644b611e7f463f2f58b64a))


### Documentation

* note pre-1.0 versioning policy in CONTRIBUTING ([#7](https://github.com/pleaseai/openhwp/issues/7)) ([21ed463](https://github.com/pleaseai/openhwp/commit/21ed4637db06c820b6ebd0ed6823965d497ec3dc))
27 changes: 22 additions & 5 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"workspace": ["./apps/desktop"],
"workspace": [
"./apps/desktop"
],
"tasks": {
"setup": "deno run --allow-read --allow-run scripts/setup-rhwp.ts",
"build:studio": "deno run --allow-read --allow-write --allow-run --allow-env scripts/build-studio.ts",
Expand All @@ -9,11 +11,26 @@
},
"fmt": {
"lineWidth": 100,
"include": ["apps/", "scripts/", "config/", ".claude/skills/run-openhwp/driver.ts"],
"exclude": ["apps/studio-host/dist/", "apps/studio-host/vendor/"]
"include": [
"apps/",
"scripts/",
"config/",
".claude/skills/run-openhwp/driver.ts"
],
"exclude": [
"apps/studio-host/dist/",
"apps/studio-host/vendor/"
]
},
"lint": {
"include": ["apps/", "scripts/", ".claude/skills/run-openhwp/driver.ts"],
"exclude": ["apps/studio-host/dist/", "apps/studio-host/vendor/"]
"include": [
"apps/",
"scripts/",
".claude/skills/run-openhwp/driver.ts"
],
"exclude": [
"apps/studio-host/dist/",
"apps/studio-host/vendor/"
]
}
}