-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Offerel/dev
Notifications for pushed links
- Loading branch information
Showing
10 changed files
with
212 additions
and
54 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"name": "Fruchtzwerg", | ||
"host": "192.168.188.4", | ||
"protocol": "sftp", | ||
"port": 22, | ||
"username": "root", | ||
"remotePath": "/media/stick/www/roundcube/plugins/syncmarks", | ||
"uploadOnSave": true, | ||
"agent": "pageant", | ||
"downloadOnOpen": true, | ||
"syncOption":{ "delete": true, | ||
"skipCreate": false, | ||
"ignoreExisting": false, | ||
"update" : true | ||
}, | ||
"remoteTimeOffsetInHours": 1, | ||
"syncMode": "full", | ||
"watcher": { | ||
"files": "**/*", | ||
"autoUpload": true, | ||
"autoDelete": true | ||
}, | ||
"ignore": [ | ||
".vscode", | ||
".git" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
### v2.2.0 | ||
- Added notifications for pushed links | ||
|
||
### v2.1.2 | ||
- Moved the get_bookmarks function from init to click to speed up inital loading | ||
|
||
### v2.1.1 | ||
- Moved the get_bookmarks function from init to click to speed up inital loading | ||
|
||
### v2.1.0 | ||
- Added support for SyncMarks | ||
- Renamed to Roundcube Sycmarks | ||
|
||
### v2.0.3 | ||
- Added support for Rouncube 1.4 elastic skin | ||
|
||
### v2.0.2 | ||
- changed composer.json | ||
|
||
### v2.0.1 | ||
- Added Chrome Extension | ||
|
||
### v2.0.0 | ||
- The bookmarks saved with DAVMarks AddOn (https://addons.mozilla.org/en-US/firefox/addon/davmarks/) are now supported. Change $config['bookmarks_path'] to the WebDAV url (foldername) to your WebDAV share and $config['bookmarks_filename'] to "bookmarks.json". For the username and password, the Roundcube credentials are used. | ||
|
||
### v1.2.0 | ||
- delete bookmarks with right-click | ||
- retrieve bookmark now via curl instead file_get_contents | ||
- bug fixes | ||
|
||
### v1.1.0 | ||
- Add bookmarks via button | ||
- automatically import bookmarks to Firefox file at Firefox start | ||
|
||
### v1.0.3 | ||
- fix JavaScript for initialization error | ||
- fix css for toolbar button | ||
|
||
### v1.0.2 | ||
- small fix for a error message | ||
|
||
### v1.0.1 | ||
- fixed open links in other tab | ||
|
||
### v1.0.0 | ||
- Initial version |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
{ | ||
"name": "offerel/syncmarks", | ||
"description": "Access your Firefox Bookmarks in Roundcube", | ||
"keywords": ["bookmarks","plugin","firefox","roundcube"], | ||
"homepage": "https://github.com/Offerel/roundcube_syncmarks", | ||
"type": "roundcube-plugin", | ||
"license": "AGPL-3.0", | ||
"authors": [ | ||
{ | ||
"name": "Offerel", | ||
"homepage": "https://github.com/Offerel", | ||
"role": "Developer" | ||
} | ||
], | ||
"version": "2.1.1", | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://plugins.roundcube.net" | ||
} | ||
], | ||
"require": { | ||
"roundcube/plugin-installer": ">=0.1.6" | ||
} | ||
} | ||
{ | ||
"name": "offerel/syncmarks", | ||
"description": "Access your Firefox Bookmarks in Roundcube", | ||
"keywords": ["bookmarks","plugin","firefox","roundcube"], | ||
"homepage": "https://github.com/Offerel/roundcube_syncmarks", | ||
"type": "roundcube-plugin", | ||
"license": "AGPL-3.0", | ||
"authors": [ | ||
{ | ||
"name": "Offerel", | ||
"homepage": "https://github.com/Offerel", | ||
"role": "Developer" | ||
} | ||
], | ||
"version": "2.2.0", | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://plugins.roundcube.net" | ||
} | ||
], | ||
"require": { | ||
"roundcube/plugin-installer": ">=0.1.6" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters