mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-29 00:20:04 +01:00
13 lines
515 B
TypeScript
13 lines
515 B
TypeScript
import { FeatureType } from './src/components/sheets/new-feature';
|
|
|
|
export const features: FeatureType[] = [
|
|
{
|
|
title: 'Configurable line spacing',
|
|
body: 'Many of you requested to be able to change line spacing on pressing enter. Now you can go to settings & configure line spacing in Editor section'
|
|
},
|
|
{
|
|
title: 'Disabled image compression',
|
|
body: 'Due to some performance reasons, previously image compression was enabled. From now on, images will be uploaded, as is in full quality.'
|
|
}
|
|
];
|