MyGit

v0.1.11

dream-num/univer

版本发布时间: 2024-05-17 15:48:20

dream-num/univer最新发布版本:v0.1.12(2024-05-24 12:21:22)

🎊 Univer@v0.1.11

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!

🆕 What's new

🎉 Highlights

Disposing a Workbook

In this version we started to support disposing a Workbook instead of the whole Univer. You can call disposeUnit on FUniver or disposeUnit on IUniverInstanceService to do that. For example:

const univerAPI = FUniver.newAPI(univer);
univerAPI.disposeUnit('my-workbook-id')

Please refer to our document for more details.

Russian translation support

We are grateful to @niazlv for providing Russian translation support.

import { ruRU as UniverDesignRuRU } from '@univerjs/design';
// ...

const univer = new Univer({
    theme: defaultTheme,
    locale: LocaleType.RU_RU,
    locales: {
      [LocaleType.RU_RU]: Tools.deepMerge(
        UniverDesignRuRU,
        // ...
      ),
    },
});

Additionally, we have updated the Univer Plugins to enable automatic import of Russian content.

import { ruRU } from 'univer:locales';

const univer = new Univer({
    theme: defaultTheme,
    locale: LocaleType.RU_RU,
    locales: {
      [LocaleType.RU_RU]: ruRU,
    },
});

🐞 Bug Fixes

We've improved the cell clearing function to now also remove any associated custom fields, ensuring complete data cleanliness. Special thanks to @fmwww for his crucial contributions in identifying and fixing this issue!

🎢 Special Thanks

📢 Join the Conversation

We welcome your input and insights as we embark on this exciting journey. Connect with us on:

📝 Changelog

Full changelog (2024-05-17)

Bug Fixes

Features

相关地址:原始地址 下载(tar) 下载(zip)

查看:2024-05-17发行的版本