Skip to content

Commit 00a5576

Browse files
authored
Merge pull request #53 from Offerel/dev
Dev
2 parents 121183d + f7f7465 commit 00a5576

Some content is hidden

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

54 files changed

+3449
-8874
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
### v2.0.6
2+
- Added contextmenu
3+
- Updated easyMDE to v2.14.0
4+
- Updated tagify to v3.22.3
5+
- Fixed tag tooltips
6+
- Fixed error message with empty noteslist
7+
- Removed fontawesome
8+
- Simplified path configuration
9+
110
### v2.0.5
211
- Added function to change YAML metadata
312
- YAML holds now date(created) and updated dates

composer.json

Lines changed: 13 additions & 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": "2.0.5",
8+
"version": "2.0.6",
99
"authors": [
1010
{
1111
"name": "Offerel",
@@ -17,6 +17,18 @@
1717
{
1818
"type": "composer",
1919
"url": "https://plugins.roundcube.net"
20+
},
21+
{
22+
"type": "package",
23+
"name": "tagify",
24+
"version": "v3.22.3",
25+
"source": "https://github.com/yairEO/tagify"
26+
},
27+
{
28+
"type": "package",
29+
"name": "turndown",
30+
"version": "v7.0.1",
31+
"source": "https://github.com/domchristie/turndown"
2032
}
2133
],
2234
"require": {

config.inc.php.dist

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
<?php
2-
$config['notes_basepath'] = '/path/to/server/folder/'; // absolute base! path where your notes are stored
3-
$config['notes_folder'] = '/files/Notes/'; // notes folder under basepath. in the end the folder is calculated by 'basepath' + 'username' + 'notes_folder'
2+
$config['notes_path'] = '/path/to/server/folder/%u/files/Notes'; // path to your notes, use %u for username
43
$config['media_folder'] = '.media'; // folder to store embedded images or binary file like *.pdf
54
$config['default_format'] = 'md'; // default format, you can choose between 'md' or 'txt'
65
$config['list_formats'] = ['md', 'txt']; // list of displayed formats, can be a combination of md, html, txt, pdf, jpg, png
76
$config['yaml_support'] = true; // set to true, if you want enable yaml support
8-
$config['yaml_start'] = '---'; // the yaml header should starts as the first sign in a markdown note and is marked by default with '---'
9-
$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
7+
$config['rm_md_media'] = false; // if set to yes, embedded media will be removed
118
?>

0 commit comments

Comments
 (0)