Skip to content

Commit

Permalink
Bump Version to 0.4.1
Browse files Browse the repository at this point in the history
closes #0.4.1
  • Loading branch information
thsmi committed Apr 12, 2020
1 parent 20d988f commit c78acc4
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 14 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sieve",
"version": "0.4.0",
"version": "0.4.1",
"description": "Configures server-side sieve email filters",
"directories": {
"doc": "docs",
Expand Down Expand Up @@ -35,4 +35,4 @@
"url": "https://github.com/thsmi/sieve/issues"
},
"homepage": "https://github.com/thsmi/sieve#readme"
}
}
46 changes: 34 additions & 12 deletions src/wx/manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "Sieve",
"description": "Manages Sieve Message Filters",
"version": "0.4.0",
"icons" : {
"64" : "libs/icons/linux.png"
"version": "0.4.1",
"icons": {
"64": "libs/icons/linux.png"
},
"applications": {
"gecko": {
Expand All @@ -15,33 +15,55 @@
},
"manifest_version": 2,
"permissions": [
"accountsRead", "tabs", "storage"
"accountsRead",
"tabs",
"storage"
],

"experiment_apis": {
"SieveAccountsApi": {
"schema": "api/sieve/SieveAccountsApi.json",
"parent": {
"scopes": ["addon_parent"],
"scopes": [
"addon_parent"
],
"script": "api/sieve/SieveAccountsApi.js",
"paths": [["sieve", "accounts"]]
"paths": [
[
"sieve",
"accounts"
]
]
}
},
"SieveSessionApi": {
"schema": "api/sieve/SieveSessionApi.json",
"parent": {
"scopes": ["addon_parent"],
"scopes": [
"addon_parent"
],
"script": "api/sieve/SieveSessionApi.js",
"paths": [["sieve", "session"]]
"paths": [
[
"sieve",
"session"
]
]
}
},
"SieveMenuApi": {
"schema": "api/sieve/SieveMenuApi.json",
"parent": {
"scopes": ["addon_parent"],
"scopes": [
"addon_parent"
],
"script": "api/sieve/SieveMenuApi.js",
"paths": [["sieve", "menu"]]
"paths": [
[
"sieve",
"menu"
]
]
}
}
}
}
}

1 comment on commit c78acc4

@thsmi
Copy link
Owner Author

@thsmi thsmi commented on c78acc4 Apr 12, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

closes #234

Please sign in to comment.