🎉 Release v0.2.0 #2708
Closed
hexf00
announced in
Announcements | 公告
Replies: 1 comment
-
🎊 [email protected]🚧 重要提示该项目仍在积极开发中,预计会有重大 API 更改。您的反馈至关重要!请提交 issues 和建议,帮助我们塑造 Univer 的未来。 🚀 快速开始如果您希望了解 Univer,请查看我们的入门文档。 🆕 版本亮点Important Univer Doc 的 MVP 版本来了! 🎉 新功能重要更新
docs-thread-comment 允许您在在文档添加评论。
pnpm add @univerjs/docs-thread-comment-ui @univerjs/thread-comment @univerjs/thread-comment-ui
import '@univerjs/docs-thread-comment-ui/lib/index.css';
import { UniverThreadCommentPlugin } from '@univerjs/thread-comment';
import { UniverThreadCommentUIPlugin } from '@univerjs/thread-comment-ui';
import { UniverDocsThreadCommentUIPlugin } from '@univerjs/docs-thread-comment-ui';
import { LocaleType, Tools } from '@univerjs/core'
+ import UniverDocsThreadCommentUIEnUS from '@univerjs/docs-thread-comment-ui/locale/en-US';
const univer = new Univer({
theme: defaultTheme,
locale: LocaleType.EN_US,
locales: {
[LocaleType.EN_US]: Tools.deepMerge(
+ UniverDocsThreadCommentUIEnUS
),
},
});
univer.registerPlugin(UniverThreadCommentPlugin);
univer.registerPlugin(UniverThreadCommentUIPlugin);
univer.registerPlugin(UniverDocsThreadCommentUIPlugin); docs-hyper-link 允许您在文档中添加超链接。
pnpm add @univerjs/docs-hyper-link @univerjs/docs-hyper-link-ui
import '@univerjs/docs-hyper-link-ui/lib/index.css';
import { UniverDocsHyperLinkPlugin } from '@univerjs/docs-hyper-link';
import { UniverDocsHyperLinkUIPlugin } from '@univerjs/docs-hyper-link-ui';
import { LocaleType, Tools } from '@univerjs/core'
+ import UniverDocsHyperLinkUIEnUS from '@univerjs/docs-hyper-link-ui/locale/en-US';
const univer = new Univer({
theme: defaultTheme,
locale: LocaleType.EN_US,
locales: {
[LocaleType.EN_US]: Tools.deepMerge(
+ UniverDocsHyperLinkUIEnUS
),
},
});
univer.registerPlugin(UniverDocsHyperLinkPlugin);
univer.registerPlugin(UniverDocsHyperLinkUIPlugin); 🐞 Bug 修复
💔 破坏性变更
从 - import { SheetsConditionalFormattingPlugin } from '@univerjs/sheets-conditional-formatting'
+ import { UniverSheetsConditionalFormattingPlugin } from '@univerjs/sheets-conditional-formatting' 🎢 特别感谢感谢以下社区用户为本次发布做出的杰出贡献:
📢 加入讨论我们欢迎您的参与和见解,一起踏上这个激动人心的旅程。请通过以下方式与我们联系: 📝 更新日志完整的更新日志 (2024-07-06) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
🎊 [email protected]
🚧 Important Note
This project is still in heavy development, and major API changes are expected. Your feedback is crucial! Please submit issues and suggestions to help us shape the future of Univer.
🚀 Getting Started
If you're eager to explore Univer, check out our getting started documentation.
Dive into the world of collaborative document, spreadsheet, and presentation editing powered by Univer!
🆕 What's new
Important
The MVP version of Univer Doc is here!
We are thrilled to announce the release of the MVP version of Univer Doc. Now, you can explore and utilize the document editing features with Univer. We welcome community members to test it out and share their feedback to help us refine and enhance the platform.
🎉 Highlights
In this release, we are excited to introduce a new set of features and improvements to enhance your Univer experience. Here are the highlights:
Improvements
toolbar
configuration option in UniverUIPlugin feat: make toolbar configurable #2634NOW
,TIME
), 9 statistical - functions (e.g.,MINIFS
,AVERAGEIF
), and 8 mathematical functions (e.g.,SIN
,COS
) feat(formula): add now,time,datevalue,timevalue function #2598, feat(formula): add MINIFS,AVERAGEIF,AVERAGEIFS functions #2561, feat(formula): add asin function #2620setEditable
method to the Facade API to set the workbook to read-only chore: add sheet permission facade api #2604contextMenu
is set to false #2654docs-thread-comment
Our latest update introduces a docs thread comment feature, allowing you to comment on specific sections of a document.
docs-hyper-link
Our latest update introduces a docs hyper link feature, allowing you to link to specific sections of a document.
🐞 Bug Fixes
💔 Breaking Changes
AddDataValidationCommand
will be remove in the feature feat(sheets-data-validation): daily bugfix for data-validation #2637From v0.2.0, we have changed the package name of the conditional formatting plugin, developers need to modify the import path:
🎢 Special Thanks
Special thanks to the following contributors who have made this release possible:
📢 Join the Conversation
We welcome your input and insights as we embark on this exciting journey. Connect with us on:
📝 Changelog
Full changelog (2024-07-06)
Bug Fixes
getWrap
and remove redundantgetWraps
method (#2675) (6e2ef32)contextMenu
is set to false (#2654) (a5ecccc)Features
This discussion was created from the release 🎉 Release v0.2.0.
Beta Was this translation helpful? Give feedback.
All reactions