diff --git a/.changeset/editor-shortcuts-and-fixes.md b/.changeset/editor-shortcuts-and-fixes.md deleted file mode 100644 index d838a65e..00000000 --- a/.changeset/editor-shortcuts-and-fixes.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@open-slide/core': minor ---- - -Add I and D shortcuts for the inspector and design panel, show a dashed hover frame alongside the inspector selection, and polish the inspector header and save bar. diff --git a/.changeset/header-title-truncate.md b/.changeset/header-title-truncate.md deleted file mode 100644 index f9c1c0ab..00000000 --- a/.changeset/header-title-truncate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@open-slide/core': patch ---- - -Truncate long slide titles in the editor header instead of letting them overlap the right-side controls. diff --git a/.changeset/inspector-image-quick-actions.md b/.changeset/inspector-image-quick-actions.md deleted file mode 100644 index 929a65ac..00000000 --- a/.changeset/inspector-image-quick-actions.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@open-slide/core": minor ---- - -Show a floating action panel below the inspector selection box when an image is selected, with quick-access Replace and Crop icons. diff --git a/.changeset/sanitize-init-target-dir.md b/.changeset/sanitize-init-target-dir.md deleted file mode 100644 index f0f02415..00000000 --- a/.changeset/sanitize-init-target-dir.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@open-slide/cli': patch ---- - -Sanitize `init` target directory names and suggest a safe equivalent for shell-unfriendly input. diff --git a/.changeset/scaffold-gitignore-ds-store.md b/.changeset/scaffold-gitignore-ds-store.md deleted file mode 100644 index 7712cb0c..00000000 --- a/.changeset/scaffold-gitignore-ds-store.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@open-slide/cli": patch ---- - -Add `.DS_Store` to the scaffolded `.gitignore`. diff --git a/.changeset/slide-transition-api.md b/.changeset/slide-transition-api.md deleted file mode 100644 index 4f83ea06..00000000 --- a/.changeset/slide-transition-api.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@open-slide/core': minor -'@open-slide/cli': patch ---- - -Add SlideTransition API for declaring per-page page-transition animations, plus a transitions section in the bundled slide-authoring skill with tasteful few-shot examples. diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 1c040159..4909d007 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,15 @@ # @open-slide/cli +## 1.2.5 + +### Patch Changes + +- [#152](https://github.com/1weiho/open-slide/pull/152) [`30cec7f`](https://github.com/1weiho/open-slide/commit/30cec7f94b76fea9e0f92357328dcbaccdc25e44) Thanks [@itskylechung](https://github.com/itskylechung)! - Sanitize `init` target directory names and suggest a safe equivalent for shell-unfriendly input. + +- [#151](https://github.com/1weiho/open-slide/pull/151) [`75667fa`](https://github.com/1weiho/open-slide/commit/75667fa9968a8956a7a703f4ab8a977c87ee1db4) Thanks [@1weiho](https://github.com/1weiho)! - Add `.DS_Store` to the scaffolded `.gitignore`. + +- [#149](https://github.com/1weiho/open-slide/pull/149) [`26f6cb1`](https://github.com/1weiho/open-slide/commit/26f6cb13cdc1c738d41bd5bab90940b38562e828) Thanks [@1weiho](https://github.com/1weiho)! - Add SlideTransition API for declaring per-page page-transition animations, plus a transitions section in the bundled slide-authoring skill with tasteful few-shot examples. + ## 1.2.4 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 40a9764b..70d83c73 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@open-slide/cli", - "version": "1.2.4", + "version": "1.2.5", "description": "Scaffold an open-slide workspace with Claude Code skills preconfigured.", "type": "module", "bin": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 25d39f7d..59c4a277 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,19 @@ # @open-slide/core +## 1.7.0 + +### Minor Changes + +- [#153](https://github.com/1weiho/open-slide/pull/153) [`7952a06`](https://github.com/1weiho/open-slide/commit/7952a06a518a5b444e7df34307aef13324e36518) Thanks [@ridemountainpig](https://github.com/ridemountainpig)! - Add I and D shortcuts for the inspector and design panel, show a dashed hover frame alongside the inspector selection, and polish the inspector header and save bar. + +- [#148](https://github.com/1weiho/open-slide/pull/148) [`78333bc`](https://github.com/1weiho/open-slide/commit/78333bcd7156e511ad2c84a0800f084705c44536) Thanks [@1weiho](https://github.com/1weiho)! - Show a floating action panel below the inspector selection box when an image is selected, with quick-access Replace and Crop icons. + +- [#149](https://github.com/1weiho/open-slide/pull/149) [`26f6cb1`](https://github.com/1weiho/open-slide/commit/26f6cb13cdc1c738d41bd5bab90940b38562e828) Thanks [@1weiho](https://github.com/1weiho)! - Add SlideTransition API for declaring per-page page-transition animations, plus a transitions section in the bundled slide-authoring skill with tasteful few-shot examples. + +### Patch Changes + +- [#154](https://github.com/1weiho/open-slide/pull/154) [`51108f1`](https://github.com/1weiho/open-slide/commit/51108f1547942c2fb1cf6d18c62e8c449b5be587) Thanks [@ridemountainpig](https://github.com/ridemountainpig)! - Truncate long slide titles in the editor header instead of letting them overlap the right-side controls. + ## 1.6.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index aaaa5218..72a9558b 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@open-slide/core", - "version": "1.6.0", + "version": "1.7.0", "description": "Runtime and CLI for open-slide — write slides in slides/, we handle the rest.", "type": "module", "exports": {