Skip to content

Commit

Permalink
chore(release): 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Light authored and Light committed Mar 10, 2021
1 parent 849fd09 commit dc8ab90
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.2.0](https://github.com/LightAPIs/free-export-bookmarks/compare/v1.1.0...v1.2.0) (2021-03-10)


### Features

* **build:** 添加打包 Firefox 版本 ([849fd09](https://github.com/LightAPIs/free-export-bookmarks/commit/849fd0919b7361ab68f5dd9657a8b6a2586a350a))

## [1.1.0](https://github.com/LightAPIs/free-export-bookmarks/compare/v1.0.2...v1.1.0) (2021-03-08)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "free-export-bookmarks",
"description": "A chrome-extension project",
"version": "1.1.0",
"version": "1.2.0",
"author": "pana <new4wang@outlook.com>",
"license": "MIT",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/chrome/manifest.development.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_extensionName__ (Dev)",
"description": "__MSG_extensionDescription__",
"version": "1.1.0",
"version": "1.2.0",
"author": "pana",
"homepage_url": "https://github.com/LightAPIs/free-export-bookmarks",
"default_locale": "en",
Expand Down
2 changes: 1 addition & 1 deletion src/chrome/manifest.production.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.1.0",
"version": "1.2.0",
"author": "pana",
"homepage_url": "https://github.com/LightAPIs/free-export-bookmarks",
"default_locale": "en",
Expand Down
7 changes: 5 additions & 2 deletions src/firefox/manifest.development.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_extensionName__ (Dev)",
"description": "__MSG_extensionDescription__",
"version": "1.1.0",
"version": "1.2.0",
"author": "pana",
"homepage_url": "https://github.com/LightAPIs/free-export-bookmarks",
"default_locale": "en",
Expand Down Expand Up @@ -32,6 +32,9 @@
},
"default_title": "__MSG_extensionName__ (Dev)\n__MSG_extensionTip__"
},
"permissions": ["bookmarks", "storage"],
"permissions": [
"bookmarks",
"storage"
],
"content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src * data: chrome:; connect-src * blob:; object-src 'none';"
}
7 changes: 5 additions & 2 deletions src/firefox/manifest.production.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.1.0",
"version": "1.2.0",
"author": "pana",
"homepage_url": "https://github.com/LightAPIs/free-export-bookmarks",
"default_locale": "en",
Expand Down Expand Up @@ -32,6 +32,9 @@
},
"default_title": "__MSG_extensionName__\n__MSG_extensionTip__"
},
"permissions": ["bookmarks", "storage"],
"permissions": [
"bookmarks",
"storage"
],
"content_security_policy": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src * data: chrome:; connect-src * blob:; object-src 'none';"
}

0 comments on commit dc8ab90

Please sign in to comment.