Skip to content

馃帀 Release v0.1.16

Compare
Choose a tag to compare
@hexf00 hexf00 released this 21 Jun 07:05
· 36 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!

馃啎 What's new

馃帀 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:

sheets-sort

Our latest update introduces a sorting feature, allowing you to easily sort and organize data within your spreadsheets.

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

import { UniverSheetsSortPlugin } from '@univerjs/sheets-sort';
import { UniverSheetsSortUIPlugin } from '@univerjs/sheets-sort-ui';
  1. Add locale resources:
import { LocaleType, Tools } from '@univerjs/core'
+ import SheetsSortUIEnUS from '@univerjs/sheets-sort-ui/locale/en-US';

 
const univer = new Univer({
  theme: defaultTheme,
  locale: LocaleType.EN_US,
  locales: {
    [LocaleType.EN_US]: Tools.deepMerge(
+     SheetsSortUIEnUS
    ),
  },
});
  1. Register the plugin:
univer.registerPlugin(UniverSheetsSortPlugin);
univer.registerPlugin(UniverSheetsSortUIPlugin);

馃悶 Bug Fixes

  • Fixed the bug when deleting formulas. #2389
  • Corrected the import location of useObservable. #2456
  • Resolved the issue with inserting rows when columns are frozen. #2492
  • Fixed critical permission bugs affecting user collaboration and access control. #2522 #2528
  • Resolved issues with data-validation and hyperlink functionalities, improving the overall stability of the sheets module. #2527

馃帰 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-06-21)

Bug Fixes

Features