Skip to content

🎉 Release v0.2.4

Compare
Choose a tag to compare
@hexf00 hexf00 released this 19 Jul 09:46
· 1199 commits to dev since this release

🎊 [email protected]

Univer Banner

🚧 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!

🎉 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:

  • Univer Doc supports headers and footers, as well as image insertion.

docs-drawing-ui

Allows you to insert images in Univer Doc.

  1. Install the following packages:
pnpm add @univerjs/docs-drawing-ui
  1. Import the plugins:
import '@univerjs/docs-drawing-ui/lib/index.css';

import { UniverDocsDrawingUIPlugin } from '@univerjs/docs-drawing-ui';
  1. Add locale resources:
import { LocaleType, Tools } from '@univerjs/core'
+ import DocsDrawingUiEnUs from '@univerjs/docs-drawing-ui/locale/en-US';


const univer = new Univer({
  theme: defaultTheme,
  locale: LocaleType.EN_US,
  locales: {
    [LocaleType.EN_US]: Tools.deepMerge(
+     DocsDrawingUiEnUs
    ),
  },
});
  1. Register the plugin:
univer.registerPlugin(UniverDocsDrawingUIPlugin);
  • Added some date-related formulas #2729
  • Enhanced the ability to configure protection range pop-up #2603

🐞 Bug Fixes

  • FRange.generateHTML fix, copy-paste enhancement #2773

💔 Breaking Changes

  • Adjustments made to the unit property data structure in IParagraphStyle within IDocumentBody of Univer Doc #2760

🎢 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-19)

Bug Fixes

Features