Skip to content

Commit 43966da

Browse files
committed
chore(release): 2.8.0 [skip ci]
# [2.8.0](v2.7.3...v2.8.0) (2020-02-18) ### Features * custom user commit icons ([#825](#825)) ([20ea925](20ea925))
1 parent 20ea925 commit 43966da

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.8.0](https://github.com/JohnstonCode/svn-scm/compare/v2.7.3...v2.8.0) (2020-02-18)
2+
3+
4+
### Features
5+
6+
* custom user commit icons ([#825](https://github.com/JohnstonCode/svn-scm/issues/825)) ([20ea925](https://github.com/JohnstonCode/svn-scm/commit/20ea925eae54888db602e486dd793294b05e0d1d))
7+
18
## [2.7.3](https://github.com/JohnstonCode/svn-scm/compare/v2.7.2...v2.7.3) (2020-02-18)
29

310

README.md

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

99+
// Url for the gravitar icon using the <AUTHOR>, <AUTHOR_MD5> and <SIZE> placeholders
100+
"svn.gravatar.icon_url": "https://www.gravatar.com/avatar/<AUTHOR_MD5>.jpg?s=<SIZE>&d=robohash",
101+
99102
// Use garavatar icons in log viewers
100103
"svn.gravatars.enabled": true,
101104

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.7.3",
5+
"version": "2.8.0",
66
"publisher": "johnstoncode",
77
"engines": {
88
"vscode": "^1.42.0"
@@ -1059,11 +1059,6 @@
10591059
"description": "Whether svn is enabled",
10601060
"default": true
10611061
},
1062-
"svn.gravatars.enabled": {
1063-
"type": "boolean",
1064-
"description": "Use garavatar icons in log viewers",
1065-
"default": true
1066-
},
10671062
"svn.gravatar.icon_url": {
10681063
"type": "string",
10691064
"description": "Url for the gravitar icon using the <AUTHOR>, <AUTHOR_MD5> and <SIZE> placeholders",
@@ -1072,6 +1067,11 @@
10721067
],
10731068
"default": "https://www.gravatar.com/avatar/<AUTHOR_MD5>.jpg?s=<SIZE>&d=robohash"
10741069
},
1070+
"svn.gravatars.enabled": {
1071+
"type": "boolean",
1072+
"description": "Use garavatar icons in log viewers",
1073+
"default": true
1074+
},
10751075
"svn.ignoreMissingSvnWarning": {
10761076
"type": "boolean",
10771077
"description": "Ignores the warning when SVN is missing",

0 commit comments

Comments
 (0)