Skip to content

Commit 2675b6c

Browse files
LightLight
authored andcommitted
chore(release): 1.4.3
1 parent f9faad0 commit 2675b6c

8 files changed

Lines changed: 332 additions & 325 deletions

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
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.
44

5+
### [1.4.3](https://github.com/LightAPIs/free-export-bookmarks/compare/v1.4.2...v1.4.3) (2021-11-10)
6+
7+
8+
### Bug Fixes
9+
10+
* **export:** 修复在不导出父文件夹时出错的问题 ([f9faad0](https://github.com/LightAPIs/free-export-bookmarks/commit/f9faad009f5eb29acd5236428136f0ea45d3ff8c))
11+
512
### [1.4.2](https://github.com/LightAPIs/free-export-bookmarks/compare/v1.4.1...v1.4.2) (2021-09-11)
613

714

package.json

Lines changed: 72 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,72 @@
1-
{
2-
"name": "free-export-bookmarks",
3-
"description": "A extension project",
4-
"version": "1.4.2",
5-
"author": "pana <new4wang@outlook.com>",
6-
"license": "MIT",
7-
"private": true,
8-
"scripts": {
9-
"build-chrome-watch": "vue-cli-service build-watch --mode chrome",
10-
"build-firefox-watch": "vue-cli-service build-watch --mode firefox",
11-
"build-edge-watch": "vue-cli-service build-watch --mode edge",
12-
"build-chrome": "vue-cli-service build --mode chromezip",
13-
"build-firefox": "vue-cli-service build --mode firefoxzip",
14-
"build-edge": "vue-cli-service build --mode edgezip",
15-
"lint": "vue-cli-service lint",
16-
"fix": "eslint --fix 'src/**/*.{js,vue,scss}'",
17-
"format": "prettier --write 'src/**/*.{js,vue,scss}'",
18-
"release": "standard-version"
19-
},
20-
"lint-staged": {
21-
"src/**/*.{js,vue,scss}": [
22-
"prettier --write",
23-
"eslint --fix"
24-
]
25-
},
26-
"husky": {
27-
"hooks": {
28-
"pre-commit": "lint-staged",
29-
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
30-
}
31-
},
32-
"standard-version": {
33-
"scripts": {
34-
"posttag": "npm run build-chrome && npm run build-firefox && npm run build-edge"
35-
}
36-
},
37-
"dependencies": {
38-
"core-js": "^3.6.5",
39-
"element-ui": "^2.15.6",
40-
"vue": "^2.6.14"
41-
},
42-
"devDependencies": {
43-
"@commitlint/config-conventional": "^11.0.0",
44-
"@vue/cli-plugin-babel": "~4.5.0",
45-
"@vue/cli-plugin-eslint": "~4.5.0",
46-
"@vue/cli-service": "~4.5.0",
47-
"@vue/eslint-config-prettier": "^6.0.0",
48-
"babel-eslint": "^10.1.0",
49-
"babel-plugin-component": "^1.1.1",
50-
"commitizen": "^4.2.2",
51-
"commitlint": "^11.0.0",
52-
"copy-webpack-plugin": "^6.3.2",
53-
"cz-customizable": "^6.3.0",
54-
"eslint": "^6.8.0",
55-
"eslint-plugin-prettier": "^3.1.3",
56-
"eslint-plugin-vue": "^7.0.0-beta.4",
57-
"husky": "^4.3.6",
58-
"lint-staged": "^10.5.3",
59-
"prettier": "^1.19.1",
60-
"sass": "^1.26.5",
61-
"sass-loader": "^8.0.2",
62-
"standard-version": "^9.0.0",
63-
"vue-cli-plugin-chrome-ext": "~0.0.5",
64-
"vue-template-compiler": "^2.6.14",
65-
"zip-webpack-plugin": "^4.0.1"
66-
},
67-
"config": {
68-
"commitizen": {
69-
"path": "./node_modules/cz-customizable"
70-
}
71-
}
72-
}
1+
{
2+
"name": "free-export-bookmarks",
3+
"description": "A extension project",
4+
"version": "1.4.3",
5+
"author": "pana <new4wang@outlook.com>",
6+
"license": "MIT",
7+
"private": true,
8+
"scripts": {
9+
"build-chrome-watch": "vue-cli-service build-watch --mode chrome",
10+
"build-firefox-watch": "vue-cli-service build-watch --mode firefox",
11+
"build-edge-watch": "vue-cli-service build-watch --mode edge",
12+
"build-chrome": "vue-cli-service build --mode chromezip",
13+
"build-firefox": "vue-cli-service build --mode firefoxzip",
14+
"build-edge": "vue-cli-service build --mode edgezip",
15+
"lint": "vue-cli-service lint",
16+
"fix": "eslint --fix 'src/**/*.{js,vue,scss}'",
17+
"format": "prettier --write 'src/**/*.{js,vue,scss}'",
18+
"release": "standard-version"
19+
},
20+
"lint-staged": {
21+
"src/**/*.{js,vue,scss}": [
22+
"prettier --write",
23+
"eslint --fix"
24+
]
25+
},
26+
"husky": {
27+
"hooks": {
28+
"pre-commit": "lint-staged",
29+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
30+
}
31+
},
32+
"standard-version": {
33+
"scripts": {
34+
"posttag": "npm run build-chrome && npm run build-firefox && npm run build-edge"
35+
}
36+
},
37+
"dependencies": {
38+
"core-js": "^3.6.5",
39+
"element-ui": "^2.15.6",
40+
"vue": "^2.6.14"
41+
},
42+
"devDependencies": {
43+
"@commitlint/config-conventional": "^11.0.0",
44+
"@vue/cli-plugin-babel": "~4.5.0",
45+
"@vue/cli-plugin-eslint": "~4.5.0",
46+
"@vue/cli-service": "~4.5.0",
47+
"@vue/eslint-config-prettier": "^6.0.0",
48+
"babel-eslint": "^10.1.0",
49+
"babel-plugin-component": "^1.1.1",
50+
"commitizen": "^4.2.2",
51+
"commitlint": "^11.0.0",
52+
"copy-webpack-plugin": "^6.3.2",
53+
"cz-customizable": "^6.3.0",
54+
"eslint": "^6.8.0",
55+
"eslint-plugin-prettier": "^3.1.3",
56+
"eslint-plugin-vue": "^7.0.0-beta.4",
57+
"husky": "^4.3.6",
58+
"lint-staged": "^10.5.3",
59+
"prettier": "^1.19.1",
60+
"sass": "^1.26.5",
61+
"sass-loader": "^8.0.2",
62+
"standard-version": "^9.0.0",
63+
"vue-cli-plugin-chrome-ext": "~0.0.5",
64+
"vue-template-compiler": "^2.6.14",
65+
"zip-webpack-plugin": "^4.0.1"
66+
},
67+
"config": {
68+
"commitizen": {
69+
"path": "./node_modules/cz-customizable"
70+
}
71+
}
72+
}
Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
1-
{
2-
"manifest_version": 2,
3-
"name": "__MSG_extensionName__ (Dev)",
4-
"description": "__MSG_extensionDescription__",
5-
"version": "1.4.2",
6-
"author": "pana",
7-
"homepage_url": "https://github.com/LightAPIs/free-export-bookmarks",
8-
"default_locale": "en",
9-
"icons": {
10-
"16": "icons/app/icon-16.png",
11-
"19": "icons/app/icon-19.png",
12-
"24": "icons/app/icon-24.png",
13-
"32": "icons/app/icon-32.png",
14-
"48": "icons/app/icon-48.png",
15-
"64": "icons/app/icon-64.png",
16-
"96": "icons/app/icon-96.png",
17-
"128": "icons/app/icon-128.png"
18-
},
19-
"background": {
20-
"page": "background.html",
21-
"persistent": false
22-
},
23-
"browser_action": {
24-
"default_icon": {
25-
"16": "icons/app/icon-16.png",
26-
"19": "icons/app/icon-19.png",
27-
"24": "icons/app/icon-24.png",
28-
"32": "icons/app/icon-32.png",
29-
"48": "icons/app/icon-48.png",
30-
"64": "icons/app/icon-64.png",
31-
"96": "icons/app/icon-96.png",
32-
"128": "icons/app/icon-128.png"
33-
},
34-
"default_title": "__MSG_extensionName__ (Dev)\n__MSG_extensionTip__"
35-
},
36-
"permissions": [
37-
"bookmarks",
38-
"storage",
39-
"chrome://favicon/*"
40-
],
41-
"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';"
42-
}
1+
{
2+
"manifest_version": 2,
3+
"name": "__MSG_extensionName__ (Dev)",
4+
"description": "__MSG_extensionDescription__",
5+
"version": "1.4.3",
6+
"author": "pana",
7+
"homepage_url": "https://github.com/LightAPIs/free-export-bookmarks",
8+
"default_locale": "en",
9+
"icons": {
10+
"16": "icons/app/icon-16.png",
11+
"19": "icons/app/icon-19.png",
12+
"24": "icons/app/icon-24.png",
13+
"32": "icons/app/icon-32.png",
14+
"48": "icons/app/icon-48.png",
15+
"64": "icons/app/icon-64.png",
16+
"96": "icons/app/icon-96.png",
17+
"128": "icons/app/icon-128.png"
18+
},
19+
"background": {
20+
"page": "background.html",
21+
"persistent": false
22+
},
23+
"browser_action": {
24+
"default_icon": {
25+
"16": "icons/app/icon-16.png",
26+
"19": "icons/app/icon-19.png",
27+
"24": "icons/app/icon-24.png",
28+
"32": "icons/app/icon-32.png",
29+
"48": "icons/app/icon-48.png",
30+
"64": "icons/app/icon-64.png",
31+
"96": "icons/app/icon-96.png",
32+
"128": "icons/app/icon-128.png"
33+
},
34+
"default_title": "__MSG_extensionName__ (Dev)\n__MSG_extensionTip__"
35+
},
36+
"permissions": [
37+
"bookmarks",
38+
"storage",
39+
"chrome://favicon/*"
40+
],
41+
"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';"
42+
}
Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
1-
{
2-
"manifest_version": 2,
3-
"name": "__MSG_extensionName__",
4-
"description": "__MSG_extensionDescription__",
5-
"version": "1.4.2",
6-
"author": "pana",
7-
"homepage_url": "https://github.com/LightAPIs/free-export-bookmarks",
8-
"default_locale": "en",
9-
"icons": {
10-
"16": "icons/app/icon-16.png",
11-
"19": "icons/app/icon-19.png",
12-
"24": "icons/app/icon-24.png",
13-
"32": "icons/app/icon-32.png",
14-
"48": "icons/app/icon-48.png",
15-
"64": "icons/app/icon-64.png",
16-
"96": "icons/app/icon-96.png",
17-
"128": "icons/app/icon-128.png"
18-
},
19-
"background": {
20-
"page": "background.html",
21-
"persistent": false
22-
},
23-
"browser_action": {
24-
"default_icon": {
25-
"16": "icons/app/icon-16.png",
26-
"19": "icons/app/icon-19.png",
27-
"24": "icons/app/icon-24.png",
28-
"32": "icons/app/icon-32.png",
29-
"48": "icons/app/icon-48.png",
30-
"64": "icons/app/icon-64.png",
31-
"96": "icons/app/icon-96.png",
32-
"128": "icons/app/icon-128.png"
33-
},
34-
"default_title": "__MSG_extensionName__\n__MSG_extensionTip__"
35-
},
36-
"permissions": [
37-
"bookmarks",
38-
"storage",
39-
"chrome://favicon/*"
40-
],
41-
"content_security_policy": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src * data: chrome:; connect-src * blob:; object-src 'none';",
42-
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0upo8Ezr2Eqq/E82nd93iHGwt/Dqh6Pr51EncxgJiWXeESiKltG/SChAQL9l2+ymp9eDAJgIXYsq23vGk6jPWa1+hKNdDX212OH02FSAJhNvlUFJu/2zVdXchi3XnPRq7IsEZnR1gO9BPDa58Vl18KBKT+MPN+KDRNTUXVDqx4MyB0zaDXOsqFrhYYAGUxc2LkhgSedyT6UYh3efdEe/Ebtaia1GO/bgVHj5pcUotHSiZvfLEnXPoyoXTbzaoe7hTAjAuZ+ixng6oVdNRRBfOgQb2IiqDnxkLzJKHQL190UUgLY0mzAdWmu0GanyyAST/8DYuVZWPQzJ8vDSiMTnJwIDAQAB"
43-
}
1+
{
2+
"manifest_version": 2,
3+
"name": "__MSG_extensionName__",
4+
"description": "__MSG_extensionDescription__",
5+
"version": "1.4.3",
6+
"author": "pana",
7+
"homepage_url": "https://github.com/LightAPIs/free-export-bookmarks",
8+
"default_locale": "en",
9+
"icons": {
10+
"16": "icons/app/icon-16.png",
11+
"19": "icons/app/icon-19.png",
12+
"24": "icons/app/icon-24.png",
13+
"32": "icons/app/icon-32.png",
14+
"48": "icons/app/icon-48.png",
15+
"64": "icons/app/icon-64.png",
16+
"96": "icons/app/icon-96.png",
17+
"128": "icons/app/icon-128.png"
18+
},
19+
"background": {
20+
"page": "background.html",
21+
"persistent": false
22+
},
23+
"browser_action": {
24+
"default_icon": {
25+
"16": "icons/app/icon-16.png",
26+
"19": "icons/app/icon-19.png",
27+
"24": "icons/app/icon-24.png",
28+
"32": "icons/app/icon-32.png",
29+
"48": "icons/app/icon-48.png",
30+
"64": "icons/app/icon-64.png",
31+
"96": "icons/app/icon-96.png",
32+
"128": "icons/app/icon-128.png"
33+
},
34+
"default_title": "__MSG_extensionName__\n__MSG_extensionTip__"
35+
},
36+
"permissions": [
37+
"bookmarks",
38+
"storage",
39+
"chrome://favicon/*"
40+
],
41+
"content_security_policy": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src * data: chrome:; connect-src * blob:; object-src 'none';",
42+
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0upo8Ezr2Eqq/E82nd93iHGwt/Dqh6Pr51EncxgJiWXeESiKltG/SChAQL9l2+ymp9eDAJgIXYsq23vGk6jPWa1+hKNdDX212OH02FSAJhNvlUFJu/2zVdXchi3XnPRq7IsEZnR1gO9BPDa58Vl18KBKT+MPN+KDRNTUXVDqx4MyB0zaDXOsqFrhYYAGUxc2LkhgSedyT6UYh3efdEe/Ebtaia1GO/bgVHj5pcUotHSiZvfLEnXPoyoXTbzaoe7hTAjAuZ+ixng6oVdNRRBfOgQb2IiqDnxkLzJKHQL190UUgLY0mzAdWmu0GanyyAST/8DYuVZWPQzJ8vDSiMTnJwIDAQAB"
43+
}

0 commit comments

Comments
 (0)