Skip to content

Commit 5fcedeb

Browse files
committed
chore(release): 2.10.2 [skip ci]
## [2.10.2](v2.10.1...v2.10.2) (2020-02-21) ### Bug Fixes * added experimental encoding priority list ([#835](#835)) ([706dbc1](706dbc1))
1 parent 706dbc1 commit 5fcedeb

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [2.10.2](https://github.com/JohnstonCode/svn-scm/compare/v2.10.1...v2.10.2) (2020-02-21)
2+
3+
4+
### Bug Fixes
5+
6+
* added experimental encoding priority list ([#835](https://github.com/JohnstonCode/svn-scm/issues/835)) ([706dbc1](https://github.com/JohnstonCode/svn-scm/commit/706dbc19957bdae7634b7b72120be6f85ba74ad3))
7+
18
## [2.10.1](https://github.com/JohnstonCode/svn-scm/compare/v2.10.0...v2.10.1) (2020-02-20)
29

310

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,9 @@ Here are all of the extension settings with their default values. To change any
102102
// Try the experimental encoding detection
103103
"svn.experimental.detect_encoding": null,
104104

105+
// Priority of encoding
106+
"svn.experimental.encoding_priority": [],
107+
105108
// Url for the gravitar icon using the <AUTHOR>, <AUTHOR_MD5> and <SIZE> placeholders
106109
"svn.gravatar.icon_url": "https://www.gravatar.com/avatar/<AUTHOR_MD5>.jpg?s=<SIZE>&d=robohash",
107110

package.json

+7-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "svn-scm",
33
"displayName": "SVN",
44
"description": "Integrated Subversion source control",
5-
"version": "2.10.1",
5+
"version": "2.10.2",
66
"publisher": "johnstoncode",
77
"engines": {
88
"vscode": "^1.42.0"
@@ -1072,11 +1072,15 @@
10721072
"default": false
10731073
},
10741074
"svn.experimental.encoding_priority": {
1075-
"type":"array",
1075+
"type": "array",
10761076
"description": "Priority of encoding",
10771077
"default": [],
10781078
"examples": [
1079-
["UTF-8", "GB18030", "windows-1251"]
1079+
[
1080+
"UTF-8",
1081+
"GB18030",
1082+
"windows-1251"
1083+
]
10801084
]
10811085
},
10821086
"svn.gravatar.icon_url": {

0 commit comments

Comments
 (0)