Skip to content

Commit

Permalink
Issue 62
Browse files Browse the repository at this point in the history
  • Loading branch information
CamielBouchier committed Sep 30, 2023
1 parent 540875c commit cfd7680
Show file tree
Hide file tree
Showing 6 changed files with 166 additions and 2 deletions.
Binary file added .CHANGELOG.MD.un~
Binary file not shown.
5 changes: 5 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Release_1_7_3
=============

* Implemented https://github.com/CamielBouchier/cb_thunderlink/issues/62

Release_1_7_2
=============

Expand Down
67 changes: 67 additions & 0 deletions CHANGELOG.MD~
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 not shown.
92 changes: 92 additions & 0 deletions mail_extension/dot_vim/manifest.json~
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"
}
}
4 changes: 2 additions & 2 deletions mail_extension/manifest.json
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]",
Expand Down Expand Up @@ -70,7 +70,7 @@
"scripts": [
"cb_background.js"
],
"persistent": false
"persistent": true
},
"experiment_apis": {
"cb_api": {
Expand Down

0 comments on commit cfd7680

Please sign in to comment.