File tree Expand file tree Collapse file tree 3 files changed +16
-6
lines changed Expand file tree Collapse file tree 3 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 1+ # [ 2.12.0] ( https://github.com/JohnstonCode/svn-scm/compare/v2.11.7...v2.12.0 ) (2020-08-03)
2+
3+
4+ ### Features
5+
6+ * Added config option to show previous commits by user ([ #1023 ] ( https://github.com/JohnstonCode/svn-scm/issues/1023 ) ) ([ 42d3c36] ( https://github.com/JohnstonCode/svn-scm/commit/42d3c3616697c5ba0459d93fb2940d5335f46e44 ) )
7+
18## [ 2.11.7] ( https://github.com/JohnstonCode/svn-scm/compare/v2.11.6...v2.11.7 ) (2020-08-02)
29
310
Original file line number Diff line number Diff line change @@ -157,6 +157,9 @@ Here are all of the extension settings with their default values. To change any
157157 // Path to the svn executable
158158 " svn.path" : null ,
159159
160+ // Only show previous commits for a given user. Requires svn >= 1.8
161+ " svn.previousCommitsUser" : null ,
162+
160163 // Refresh remote changes on refresh command
161164 " svn.refresh.remoteChanges" : null ,
162165
Original file line number Diff line number Diff line change 22 "name" : " svn-scm" ,
33 "displayName" : " SVN" ,
44 "description" : " Integrated Subversion source control" ,
5- "version" : " 2.11.7 " ,
5+ "version" : " 2.12.0 " ,
66 "publisher" : " johnstoncode" ,
77 "engines" : {
88 "vscode" : " ^1.44.0"
12121212 "default" : null ,
12131213 "scope" : " machine"
12141214 },
1215+ "svn.previousCommitsUser" : {
1216+ "type" : " string" ,
1217+ "description" : " Only show previous commits for a given user. Requires svn >= 1.8" ,
1218+ "default" : null
1219+ },
12151220 "svn.refresh.remoteChanges" : {
12161221 "type" : " boolean" ,
12171222 "description" : " Refresh remote changes on refresh command" ,
12741279 "type" : " boolean" ,
12751280 "description" : " Set to ignore externals definitions on update (add --ignore-externals)" ,
12761281 "default" : true
1277- },
1278- "svn.previousCommitsUser" : {
1279- "type" : " string" ,
1280- "description" : " Only show previous commits for a given user. Requires svn >= 1.8" ,
1281- "default" : null
12821282 }
12831283 }
12841284 }
You can’t perform that action at this time.
0 commit comments