diff --git a/.CHANGELOG.MD.un~ b/.CHANGELOG.MD.un~ new file mode 100644 index 0000000..bc421fa Binary files /dev/null and b/.CHANGELOG.MD.un~ differ diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 260b8fa..c9166e8 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,3 +1,8 @@ +Release_1_7_3 +============= + +* Implemented https://github.com/CamielBouchier/cb_thunderlink/issues/62 + Release_1_7_2 ============= diff --git a/CHANGELOG.MD~ b/CHANGELOG.MD~ new file mode 100644 index 0000000..260b8fa --- /dev/null +++ b/CHANGELOG.MD~ @@ -0,0 +1,67 @@ +Release_1_7_2 +============= + +* Support for ESR115 +* Implemented https://github.com/CamielBouchier/cb_thunderlink/issues/59 +* Implemented https://github.com/CamielBouchier/cb_thunderlink/issues/58 + +Release_1_7_1 +============= + +* Implemented https://github.com/CamielBouchier/cb_thunderlink/pull/57 + +Release_1_7_0 +============= + +* Implemented https://github.com/CamielBouchier/cb_thunderlink/pull/56 + +Release_1_6_0 +============= + +* Implemented https://github.com/CamielBouchier/cb_thunderlink/issues/47 + +Release_1_5_0 +============= + +* Implemented https://github.com/CamielBouchier/cb_thunderlink/issues/32 + +Release_1_4_0 +============= + +* Implemented https://github.com/CamielBouchier/cb_thunderlink/issues/43 + +Release_1_3_0 +============= + +* Merged https://github.com/CamielBouchier/cb_thunderlink/pull/38 + +Release_1_2_0 +============= + +* Added drop_link command shortcut. + +Release_1_1_0 +============= + +* Introduced Mozilla Public License Version 2.0 + +Release_1_0_0 +============= + +* Messed up release numbering and version numbering in the past. Going to 1.0.0 after having introduced the suggestions from John Bieling, bringing it in the official thunderbird add-ons. + +Release_0_8_0 +============= + +* Issue [#16]((https://github.com/CamielBouchier/cb_thunderlink/issues/16) adressed : quotes in Windows registry. + +* hashbang added for linux. See also [#18](https://github.com/CamielBouchier/cb_thunderlink/issues/18). + +Release_0_7_0 +============= + +* Addressed issue [#10](https://github.com/CamielBouchier/cb_thunderlink/issues/10) + +* On Linux : Created directory for manifest.json if it does not exist + +As from Release_0_6_0 (not included) on, I will keep here a changelog. diff --git a/mail_extension/dot_vim/D%%software_my_development%Active%cb_thunderlink%mail_extension%manifest.json b/mail_extension/dot_vim/D%%software_my_development%Active%cb_thunderlink%mail_extension%manifest.json new file mode 100644 index 0000000..12e88c4 Binary files /dev/null and b/mail_extension/dot_vim/D%%software_my_development%Active%cb_thunderlink%mail_extension%manifest.json differ diff --git a/mail_extension/dot_vim/manifest.json~ b/mail_extension/dot_vim/manifest.json~ new file mode 100644 index 0000000..37bb903 --- /dev/null +++ b/mail_extension/dot_vim/manifest.json~ @@ -0,0 +1,92 @@ +{ + "manifest_version": 2, + "version": "1.7.2", + "name": "cb_thunderlink", + "description": "cb_thunderlink is a thunderlink replacement.", + "author": "camiel@bouchier.be", + "applications": { + "gecko": { + "id": "cb_thunderlink@bouchier.be", + "strict_min_version": "68.9.0", + "strict_max_version": "115.*" + } + }, + "browser_action": { + "default_icon": "images/cb-32px.png" + }, + "commands": { + "drop_link": { + "suggested_key": { + "default": "Ctrl+Alt+0" + }, + "description": "Paste configurable link from the clipboard" + }, + "copy_link_1": { + "suggested_key": { + "default": "Ctrl+Alt+1" + }, + "description": "Copy configurable link 1 to the clipboard" + }, + "copy_link_2": { + "suggested_key": { + "default": "Ctrl+Alt+2" + }, + "description": "Copy configurable link 2 to the clipboard" + }, + "copy_link_3": { + "suggested_key": { + "default": "Ctrl+Alt+3" + }, + "description": "Copy configurable link 3 to the clipboard" + }, + "copy_link_4": { + "suggested_key": { + "default": "Ctrl+Alt+4" + }, + "description": "Copy configurable link 4 to the clipboard" + }, + "copy_link_5": { + "suggested_key": { + "default": "Ctrl+Alt+5" + }, + "description": "Copy configurable link 5 to the clipboard" + } + }, + "permissions": [ + "accountsRead", + "clipboardRead", + "clipboardWrite", + "menus", + "messagesRead", + "nativeMessaging", + "storage" + ], + "icons": { + "64": "images/cb-64px.png", + "32": "images/cb-32px.png", + "16": "images/cb-16px.png" + }, + "background": { + "scripts": [ + "cb_background.js" + ], + "persistent": true + }, + "experiment_apis": { + "cb_api": { + "schema": "cb_api_schema.json", + "parent": { + "scopes": [ + "addon_parent" + ], + "paths": [ + [ "cb_api" ] + ], + "script": "cb_api.js" + } + } + }, + "options_ui": { + "page": "cb_options.html" + } +} diff --git a/mail_extension/manifest.json b/mail_extension/manifest.json index 0cd5f78..3070002 100644 --- a/mail_extension/manifest.json +++ b/mail_extension/manifest.json @@ -1,6 +1,6 @@ { "manifest_version": 2, - "version": "1.7.2", + "version": "1.7.3", "name": "cb_thunderlink", "description": "cb_thunderlink is a thunderlink replacement.", "author": "camiel@bouchier.be", @@ -70,7 +70,7 @@ "scripts": [ "cb_background.js" ], - "persistent": false + "persistent": true }, "experiment_apis": { "cb_api": {