1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Doc: Add release 2.13

This commit is contained in:
Laurent Cozic 2023-12-03 14:23:48 +01:00
parent 1a250639ca
commit 01cc550adf

View File

@ -9,17 +9,17 @@ forum_url: https://discourse.joplinapp.org/t/34033
### RTE
We made many improvements to the Rich Text Editor in this release to improve its usability. For example, you can now embed any content with the tables, including lists and other tables, which was a frequently requested feature:
In this update, significant enhancements have been implemented in the Rich Text Editor to enhance user experience. One notable improvement is the ability to seamlessly embed various content within tables, including lists and other tables, which was a frequently requested feature:
![](https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/news/20231203-rte-table.png)
The interoperability with other text editors such as Word and Excel as also been improved, in particular when copying and pasting content between these tools and Joplin.
The interoperability with other text editors such as Word and Excel has also been improved, in particular when copying and pasting content between these tools and Joplin.
### Improved ENEX import
The Evernote Export format, known as ENEX, has always been very challenging to support. This is because Evernote frequently changes it, breaking importers, and may also occasionally introduce bugs, to the point where their application sometimes can't even import back the files they've exported!
The Evernote Export format, known as ENEX, has always been challenging to support. This is because Evernote frequently changes it, breaking importers, and may also occasionally introduce bugs. At times, their own application struggles to import back files that it has exported, highlighting the volatility of the ENEX format.
At this point, after having worked on this importer for nearly 7 years it is relatively stable and most of the issues we encounter are due to invalid files that Evernote generates due to bugs they introduced in recent versions. We still try to import these files as well as possible by processing the invalid data using various heuristics.
After undergoing continuous improvements for seven years, the importer has achieved a relatively stable state. The majority of issues encountered now stem from invalid files generated by Evernote, a result of bugs introduced in recent versions. Despite these challenges, we strive to enhance the import process by employing various heuristics to process the invalid data as effectively as possible.
The list of bug fixes is below:
@ -34,25 +34,23 @@ The list of bug fixes is below:
We are continuously improving the plugin API to make it as easy as possible to customize the application.
One of the main addition is support note list plugins - it allows any plugins to customise what the note list should display.
One of the main addition is support note list plugins - it allows any plugins to customise what the list should display each note.
See the [Joplin Plugin Note List API](https://joplinapp.org/api/references/plugin_api/classes/joplinviewsnotelist.html)
See the [Joplin Plugin Note List API](https://joplinapp.org/api/references/plugin_api/classes/joplinviewsnotelist.html) and the [Note List Demo](https://github.com/laurent22/joplin/blob/dev/packages/app-cli/tests/support/plugins/note_list_renderer/src/index.ts) for more information.
And the [Note List Demo](https://github.com/laurent22/joplin/blob/dev/packages/app-cli/tests/support/plugins/note_list_renderer/src/index.ts)
The demo includes three examples of note lists: a fundamental "top to bottom" version, a sophisticated "left to right" variant that additionally displays a note thumbnail, and a demonstration of an interactive note list, allowing direct modification of the note title from the list.
Which includes three note list examples, a basic "top to bottom" one, a more advanced "left to right" one, which also renders a thumbnail of the note, and another one which shows how to create an interactive note list item to directly modify the title of the note from the list.
This API was developed based on the feedback we got and we hope it will be useful! We are still keen to hear more from users and plugin developers on what features may still be missing and what could be improved!
This API was developed based on the feedback we got and we hope it will be useful. We remain open to further input from users and plugin developers regarding any potential missing features and areas for improvement!
#### Imaging API
The imaging API was created to allow plugin developer to easily load and manipulate images. For now it is possible to load PNG and JPG files, and to resize and crop them.
The imaging API was created to allow plugin developers to easily load and manipulate images. For now it is possible to load PNG and JPG files, and to resize and crop them.
https://joplinapp.org/api/references/plugin_api/classes/joplinimaging.html
#### And more
A few more APIs have been added such as one to [open dialog to select a file or folder](https://joplinapp.org/api/references/plugin_api/classes/joplinviewsdialogs.html#showopendialog) and a way to [access the plugin settings from a renderer script](https://joplinapp.org/api/references/plugin_api/enums/contentscripttype.html#getting-the-settings-from-the-renderer)
A few more APIs have been added such as one to [open dialog to select a file or folder](https://joplinapp.org/api/references/plugin_api/classes/joplinviewsdialogs.html#showopendialog) and a way to [access the plugin settings from a renderer script](https://joplinapp.org/api/references/plugin_api/enums/contentscripttype.html#getting-the-settings-from-the-renderer).
### New beta Markdown editor