Skip to content

Commit aaadb8c

Browse files
authored
Merge pull request #45 from Offerel/v2.0.0
- Added loader animation - Added option to remove media - Added Option to disable displayed formats - Added automatic ToC creation - Replaced tag library with [tagify v3.22.1](https://github.com/yairEO/tagify) - Removed HTML Format - Reduced http requests to speed up - Fixed empty response when delete a note
2 parents d7e3912 + 7fa7865 commit aaadb8c

File tree

115 files changed

+1172
-10017
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+1172
-10017
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions

README.md

Lines changed: 2 additions & 2 deletions

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage": "https://github.com/Offerel/roundcube_primitivenotes",
66
"type": "roundcube-plugin",
77
"license": "AGPL-3.0",
8-
"version": "1.5.7",
8+
"version": "2.0.0",
99
"authors": [
1010
{
1111
"name": "Offerel",

config.inc.php.dist

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
$config['notes_basepath'] = '/path/to/server/folder/'; // absolute base! path where your notes are stored
33
$config['notes_folder'] = '/files/Notes/'; // notes folder under basepath. in the end the folder is calculated by 'basepath' + 'username' + 'notes_folder'
44
$config['media_folder'] = '.media'; // folder to store embedded images or binary file like *.pdf
5-
$config['default_format'] = 'md'; // default format, you can choose between 'html', 'md' or 'txt'
5+
$config['default_format'] = 'md'; // default format, you can choose between 'md' or 'txt'
6+
$config['list_formats'] = ['md', 'txt']; // list of displayed formats, can be a combination of md, html, txt, pdf, jpg, png
67
$config['yaml_support'] = true; // set to true, if you want enable yaml support
78
$config['yaml_start'] = '---'; // the yaml header should starts as the first sign in a markdown note and is marked by default with '---'
89
$config['yaml_end'] = '---'; // the signs which marks the end of the yaml header
10+
$config['rm_md_media'] = true; // if set to yes, embedded media will be removed
911
?>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)