Commit 9a4634a 1 parent 42d3c36 commit 9a4634a Copy full SHA for 9a4634a
File tree 3 files changed +16
-6
lines changed
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
+
1
8
## [ 2.11.7] ( https://github.com/JohnstonCode/svn-scm/compare/v2.11.6...v2.11.7 ) (2020-08-02)
2
9
3
10
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
157
157
// Path to the svn executable
158
158
" svn.path" : null ,
159
159
160
+ // Only show previous commits for a given user. Requires svn >= 1.8
161
+ " svn.previousCommitsUser" : null ,
162
+
160
163
// Refresh remote changes on refresh command
161
164
" svn.refresh.remoteChanges" : null ,
162
165
Original file line number Diff line number Diff line change 2
2
"name" : " svn-scm" ,
3
3
"displayName" : " SVN" ,
4
4
"description" : " Integrated Subversion source control" ,
5
- "version" : " 2.11.7 " ,
5
+ "version" : " 2.12.0 " ,
6
6
"publisher" : " johnstoncode" ,
7
7
"engines" : {
8
8
"vscode" : " ^1.44.0"
1212
1212
"default" : null ,
1213
1213
"scope" : " machine"
1214
1214
},
1215
+ "svn.previousCommitsUser" : {
1216
+ "type" : " string" ,
1217
+ "description" : " Only show previous commits for a given user. Requires svn >= 1.8" ,
1218
+ "default" : null
1219
+ },
1215
1220
"svn.refresh.remoteChanges" : {
1216
1221
"type" : " boolean" ,
1217
1222
"description" : " Refresh remote changes on refresh command" ,
1274
1279
"type" : " boolean" ,
1275
1280
"description" : " Set to ignore externals definitions on update (add --ignore-externals)" ,
1276
1281
"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
1282
1282
}
1283
1283
}
1284
1284
}
You can’t perform that action at this time.
0 commit comments