-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
540875c
commit cfd7680
Showing
6 changed files
with
166 additions
and
2 deletions.
There are no files selected for viewing
Binary file not shown.
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
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,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. |
Binary file added
BIN
+1016 Bytes
...ion/dot_vim/D%%software_my_development%Active%cb_thunderlink%mail_extension%manifest.json
Binary file not shown.
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,92 @@ | ||
{ | ||
"manifest_version": 2, | ||
"version": "1.7.2", | ||
"name": "cb_thunderlink", | ||
"description": "cb_thunderlink is a thunderlink replacement.", | ||
"author": "[email protected]", | ||
"applications": { | ||
"gecko": { | ||
"id": "[email protected]", | ||
"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" | ||
} | ||
} |
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,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": "[email protected]", | ||
|
@@ -70,7 +70,7 @@ | |
"scripts": [ | ||
"cb_background.js" | ||
], | ||
"persistent": false | ||
"persistent": true | ||
}, | ||
"experiment_apis": { | ||
"cb_api": { | ||
|