Skip to content

Commit 954d8f7

Browse files
committed
chore(release): 2.10.0 [skip ci]
# [2.10.0](v2.9.1...v2.10.0) (2020-02-19) ### Features * added new experimental encoding detection ([#831](#831)) ([34edcca](34edcca))
1 parent 34edcca commit 954d8f7

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [2.10.0](https://github.com/JohnstonCode/svn-scm/compare/v2.9.1...v2.10.0) (2020-02-19)
2+
3+
4+
### Features
5+
6+
* added new experimental encoding detection ([#831](https://github.com/JohnstonCode/svn-scm/issues/831)) ([34edcca](https://github.com/JohnstonCode/svn-scm/commit/34edccaadbb2a71ba555127ba839d84bde15f523))
7+
18
## [2.9.1](https://github.com/JohnstonCode/svn-scm/compare/v2.9.0...v2.9.1) (2020-02-19)
29

310

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,9 @@ Here are all of the extension settings with their default values. To change any
9999
// Whether svn is enabled
100100
"svn.enabled": true,
101101

102+
// Try the experimental encoding detection
103+
"svn.experimental.detect_encoding": null,
104+
102105
// Url for the gravitar icon using the <AUTHOR>, <AUTHOR_MD5> and <SIZE> placeholders
103106
"svn.gravatar.icon_url": "https://www.gravatar.com/avatar/<AUTHOR_MD5>.jpg?s=<SIZE>&d=robohash",
104107

package.json

+6-6
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.9.1",
5+
"version": "2.10.0",
66
"publisher": "johnstoncode",
77
"engines": {
88
"vscode": "^1.42.0"
@@ -1066,6 +1066,11 @@
10661066
"description": "Whether svn is enabled",
10671067
"default": true
10681068
},
1069+
"svn.experimental.detect_encoding": {
1070+
"type": "boolean",
1071+
"description": "Try the experimental encoding detection",
1072+
"default": false
1073+
},
10691074
"svn.gravatar.icon_url": {
10701075
"type": "string",
10711076
"description": "Url for the gravitar icon using the <AUTHOR>, <AUTHOR_MD5> and <SIZE> placeholders",
@@ -1248,11 +1253,6 @@
12481253
"type": "boolean",
12491254
"description": "Set to ignore externals definitions on update (add --ignore-externals)",
12501255
"default": true
1251-
},
1252-
"svn.experimental.detect_encoding": {
1253-
"type": "boolean",
1254-
"description": "Try the experimental encoding detection",
1255-
"default": false
12561256
}
12571257
}
12581258
}

0 commit comments

Comments
 (0)