@a3s-lab/office 0.38.0 → 0.38.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/README.md CHANGED
@@ -309,8 +309,13 @@ and [CLI reference](./docs/latest/en/cli-reference.md).
309
309
 
310
310
  ## Current release
311
311
 
312
- Version `0.38.0` keeps the release surface focused on local, testable
313
- workflows:
312
+ Version `0.38.1` keeps the release surface focused on local, testable
313
+ workflows and makes those changes easier to discover:
314
+
315
+ - The documentation now includes a first-class bilingual, version-aware
316
+ [What's new](https://a3s-lab.github.io/Office/docs/changelog.html) timeline.
317
+ It presents editor scope, user outcome, compatibility evidence, and detailed
318
+ references while frozen documentation hides releases that did not yet exist.
314
319
 
315
320
  - Writer's shared advanced Font dialog now edits the complete bounded Office
316
321
  2010 OpenType typography set: 16 ligature combinations, numeral form and
@@ -340,8 +345,9 @@ workflows:
340
345
  - PDF page organization performs insert, delete, rotate, reorder, extract,
341
346
  merge, and split in a dedicated Worker with Blob-level Undo/Redo.
342
347
 
343
- Release notes live in the [changelog](./CHANGELOG.md). The Playground exposes
344
- recent workflows from one release-labelled capability gallery.
348
+ Browse the product-focused [What's new](https://a3s-lab.github.io/Office/docs/changelog.html)
349
+ page or the exhaustive engineering [changelog](./CHANGELOG.md). The Playground
350
+ exposes recent workflows from one release-labelled capability gallery.
345
351
 
346
352
  ## Capabilities and boundaries
347
353
 
@@ -444,13 +450,14 @@ matrix.
444
450
 
445
451
  - [Live Playground](https://a3s-lab.github.io/Office/playground/)
446
452
  - [Documentation center](https://a3s-lab.github.io/Office/docs/)
453
+ - [What's new](https://a3s-lab.github.io/Office/docs/changelog.html)
447
454
  - [React, Vue, Web Component, and Core API](https://a3s-lab.github.io/Office/docs/components/)
448
455
  - [Real-time collaboration](https://a3s-lab.github.io/Office/docs/components/collaboration.html)
449
456
  - [CLI, MCP, and Office Skill](https://a3s-lab.github.io/Office/docs/automation/)
450
457
  - [Browser editor architecture](./docs/latest/en/browser-editor-architecture.md)
451
458
  - [Native Office engine](./docs/latest/en/native-office-engine.md)
452
459
  - [Editor quality roadmap](./docs/latest/en/editor-quality-roadmap.md)
453
- - [Changelog](./CHANGELOG.md)
460
+ - [Engineering changelog](./CHANGELOG.md)
454
461
 
455
462
  ## Community and security
456
463
 
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a3s-lab/office",
3
- "version": "0.38.0",
3
+ "version": "0.38.1",
4
4
  "description": "Open-source collaborative browser editors for documents, Markdown, spreadsheets, presentations, and PDFs.",
5
5
  "keywords": [
6
6
  "office",
@@ -88,6 +88,7 @@
88
88
  "playground:typecheck": "tsc --noEmit -p playground/tsconfig.json",
89
89
  "playground:ime:webkit": "playwright test --config playwright.ime.config.ts",
90
90
  "playground:visual": "playwright test --config playwright.config.ts",
91
+ "playground:visual:docs-changelog": "playwright test visual-tests/docs-changelog.functional.spec.ts --config playwright.config.ts",
91
92
  "playground:visual:document-emphasis": "playwright test visual-tests/document-emphasis.functional.spec.ts --config playwright.config.ts",
92
93
  "playground:visual:document-index": "playwright test visual-tests/document-index.functional.spec.ts --config playwright.config.ts",
93
94
  "playground:visual:document-comparison": "playwright test visual-tests/document-comparison.functional.spec.ts --config playwright.config.ts",