Skip to content

Commit

Permalink
Merge pull request #53 from Offerel/dev
Browse files Browse the repository at this point in the history
Dev
Offerel authored Feb 17, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents 121183d + f7f7465 commit 00a5576
Showing 54 changed files with 3,449 additions and 8,874 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
### v2.0.6
- Added contextmenu
- Updated easyMDE to v2.14.0
- Updated tagify to v3.22.3
- Fixed tag tooltips
- Fixed error message with empty noteslist
- Removed fontawesome
- Simplified path configuration

### v2.0.5
- Added function to change YAML metadata
- YAML holds now date(created) and updated dates
14 changes: 13 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
"homepage": "https://github.com/Offerel/roundcube_primitivenotes",
"type": "roundcube-plugin",
"license": "AGPL-3.0",
"version": "2.0.5",
"version": "2.0.6",
"authors": [
{
"name": "Offerel",
@@ -17,6 +17,18 @@
{
"type": "composer",
"url": "https://plugins.roundcube.net"
},
{
"type": "package",
"name": "tagify",
"version": "v3.22.3",
"source": "https://github.com/yairEO/tagify"
},
{
"type": "package",
"name": "turndown",
"version": "v7.0.1",
"source": "https://github.com/domchristie/turndown"
}
],
"require": {
7 changes: 2 additions & 5 deletions config.inc.php.dist
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
<?php
$config['notes_basepath'] = '/path/to/server/folder/'; // absolute base! path where your notes are stored
$config['notes_folder'] = '/files/Notes/'; // notes folder under basepath. in the end the folder is calculated by 'basepath' + 'username' + 'notes_folder'
$config['notes_path'] = '/path/to/server/folder/%u/files/Notes'; // path to your notes, use %u for username
$config['media_folder'] = '.media'; // folder to store embedded images or binary file like *.pdf
$config['default_format'] = 'md'; // default format, you can choose between 'md' or 'txt'
$config['list_formats'] = ['md', 'txt']; // list of displayed formats, can be a combination of md, html, txt, pdf, jpg, png
$config['yaml_support'] = true; // set to true, if you want enable yaml support
$config['yaml_start'] = '---'; // the yaml header should starts as the first sign in a markdown note and is marked by default with '---'
$config['yaml_end'] = '---'; // the signs which marks the end of the yaml header
$config['rm_md_media'] = true; // if set to yes, embedded media will be removed
$config['rm_md_media'] = false; // if set to yes, embedded media will be removed
?>
Loading

0 comments on commit 00a5576

Please sign in to comment.