|
2 | 2 | "name": "svn-scm",
|
3 | 3 | "displayName": "SVN",
|
4 | 4 | "description": "Integrated Subversion source control",
|
5 |
| - "version": "1.17.0", |
| 5 | + "version": "1.17.1", |
6 | 6 | "publisher": "johnstoncode",
|
7 | 7 | "engines": {
|
8 | 8 | "vscode": "^1.17.0"
|
|
17 | 17 | "bugs": {
|
18 | 18 | "url": "https://github.com/JohnstonCode/svn-scm/issues"
|
19 | 19 | },
|
20 |
| - "categories": [ |
21 |
| - "Other", |
22 |
| - "SCM Providers" |
23 |
| - ], |
24 |
| - "keywords": [ |
25 |
| - "multi-root ready", |
26 |
| - "scm", |
27 |
| - "svn" |
28 |
| - ], |
29 |
| - "activationEvents": [ |
30 |
| - "*" |
31 |
| - ], |
| 20 | + "categories": ["Other", "SCM Providers"], |
| 21 | + "keywords": ["multi-root ready", "scm", "svn"], |
| 22 | + "activationEvents": ["*"], |
32 | 23 | "main": "./out/extension",
|
33 | 24 | "scripts": {
|
34 | 25 | "vscode:prepublish": "tsc -p ./",
|
|
237 | 228 | },
|
238 | 229 | {
|
239 | 230 | "command": "svn.revertSelectedRanges",
|
240 |
| - "when": "config.svn.enabled && svnOpenRepositoryCount != 0 && svnHasSupportToRegisterDiffCommand == 1" |
| 231 | + "when": |
| 232 | + "config.svn.enabled && svnOpenRepositoryCount != 0 && svnHasSupportToRegisterDiffCommand == 1" |
241 | 233 | }
|
242 | 234 | ],
|
243 | 235 | "scm/title": [
|
|
276 | 268 | "scm/resourceState/context": [
|
277 | 269 | {
|
278 | 270 | "command": "svn.add",
|
279 |
| - "when": "config.svn.enabled && scmProvider == svn && scmResourceGroup == unversioned", |
| 271 | + "when": |
| 272 | + "config.svn.enabled && scmProvider == svn && scmResourceGroup == unversioned", |
280 | 273 | "group": "inline"
|
281 | 274 | },
|
282 | 275 | {
|
283 | 276 | "command": "svn.add",
|
284 |
| - "when": "config.svn.enabled && scmProvider == svn && scmResourceGroup == unversioned", |
| 277 | + "when": |
| 278 | + "config.svn.enabled && scmProvider == svn && scmResourceGroup == unversioned", |
285 | 279 | "group": "1_modification"
|
286 | 280 | },
|
287 | 281 | {
|
288 | 282 | "command": "svn.openFile",
|
289 |
| - "when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != external", |
| 283 | + "when": |
| 284 | + "config.svn.enabled && scmProvider == svn && scmResourceGroup != external", |
290 | 285 | "group": "navigation"
|
291 | 286 | },
|
292 | 287 | {
|
293 | 288 | "command": "svn.openHEADFile",
|
294 |
| - "when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
| 289 | + "when": |
| 290 | + "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
295 | 291 | "group": "navigation"
|
296 | 292 | },
|
297 | 293 | {
|
298 | 294 | "command": "svn.openChangeBase",
|
299 |
| - "when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
| 295 | + "when": |
| 296 | + "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
300 | 297 | "group": "navigation"
|
301 | 298 | },
|
302 | 299 | {
|
303 | 300 | "command": "svn.openChangeHead",
|
304 |
| - "when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
| 301 | + "when": |
| 302 | + "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
305 | 303 | "group": "navigation"
|
306 | 304 | },
|
307 | 305 | {
|
308 | 306 | "command": "svn.addChangelist",
|
309 |
| - "when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
| 307 | + "when": |
| 308 | + "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
310 | 309 | "group": "inline"
|
311 | 310 | },
|
312 | 311 | {
|
313 | 312 | "command": "svn.addChangelist",
|
314 |
| - "when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
| 313 | + "when": |
| 314 | + "config.svn.enabled && scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
315 | 315 | "group": "1_modification"
|
316 | 316 | },
|
317 | 317 | {
|
318 | 318 | "command": "svn.removeChangelist",
|
319 |
| - "when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != changes && scmResourceGroup != unversioned && scmResourceGroup != external", |
| 319 | + "when": |
| 320 | + "config.svn.enabled && scmProvider == svn && scmResourceGroup != changes && scmResourceGroup != unversioned && scmResourceGroup != external", |
320 | 321 | "group": "inline"
|
321 | 322 | },
|
322 | 323 | {
|
323 | 324 | "command": "svn.removeChangelist",
|
324 |
| - "when": "config.svn.enabled && scmProvider == svn && scmResourceGroup != changes && scmResourceGroup != unversioned && scmResourceGroup != external", |
| 325 | + "when": |
| 326 | + "config.svn.enabled && scmProvider == svn && scmResourceGroup != changes && scmResourceGroup != unversioned && scmResourceGroup != external", |
325 | 327 | "group": "1_modification"
|
326 | 328 | },
|
327 | 329 | {
|
328 | 330 | "command": "svn.commit",
|
329 |
| - "when": "scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
| 331 | + "when": |
| 332 | + "scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
330 | 333 | "group": "1_modification"
|
331 | 334 | },
|
332 | 335 | {
|
333 | 336 | "command": "svn.revert",
|
334 |
| - "when": "scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
| 337 | + "when": |
| 338 | + "scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
335 | 339 | "group": "1_modification"
|
336 | 340 | },
|
337 | 341 | {
|
338 | 342 | "command": "svn.remove",
|
339 |
| - "when": "scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
| 343 | + "when": |
| 344 | + "scmProvider == svn && scmResourceGroup != unversioned && scmResourceGroup != external", |
340 | 345 | "group": "2_modification"
|
341 | 346 | }
|
342 | 347 | ],
|
|
350 | 355 | {
|
351 | 356 | "command": "svn.openFile",
|
352 | 357 | "group": "navigation",
|
353 |
| - "when": "config.svn.enabled && svnOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme != extension && resourceScheme != merge-conflict.conflict-diff" |
| 358 | + "when": |
| 359 | + "config.svn.enabled && svnOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme != extension && resourceScheme != merge-conflict.conflict-diff" |
354 | 360 | },
|
355 | 361 | {
|
356 | 362 | "command": "svn.openChangeBase",
|
357 | 363 | "group": "navigation",
|
358 |
| - "when": "config.svn.enabled && svnOpenRepositoryCount != 0 && !isInDiffEditor && resourceScheme == file" |
| 364 | + "when": |
| 365 | + "config.svn.enabled && svnOpenRepositoryCount != 0 && !isInDiffEditor && resourceScheme == file" |
359 | 366 | },
|
360 | 367 | {
|
361 | 368 | "command": "svn.openChangeHead",
|
362 | 369 | "group": "navigation",
|
363 |
| - "when": "config.svn.enabled && svnOpenRepositoryCount != 0 && !isInDiffEditor && resourceScheme == file" |
| 370 | + "when": |
| 371 | + "config.svn.enabled && svnOpenRepositoryCount != 0 && !isInDiffEditor && resourceScheme == file" |
364 | 372 | },
|
365 | 373 | {
|
366 | 374 | "command": "svn.revertSelectedRanges",
|
367 | 375 | "group": "2_svn@3",
|
368 |
| - "when": "config.svn.enabled && svnOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme != merge-conflict.conflict-diff && && svnHasSupportToRegisterDiffCommand == 1" |
| 376 | + "when": |
| 377 | + "config.svn.enabled && svnOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme != merge-conflict.conflict-diff && && svnHasSupportToRegisterDiffCommand == 1" |
369 | 378 | }
|
370 | 379 | ]
|
371 | 380 | },
|
|
384 | 393 | },
|
385 | 394 | "svn.decorations.enabled": {
|
386 | 395 | "type": "boolean",
|
387 |
| - "description": "Controls if SVN contributes colors and badges to the explorer and the open (VSCode >= 1.18 with proposed-api)", |
| 396 | + "description": |
| 397 | + "Controls if SVN contributes colors and badges to the explorer and the open (VSCode >= 1.18 with proposed-api)", |
388 | 398 | "default": true
|
389 | 399 | },
|
390 | 400 | "svn.path": {
|
391 |
| - "type": [ |
392 |
| - "string", |
393 |
| - "null" |
394 |
| - ], |
| 401 | + "type": ["string", "null"], |
395 | 402 | "description": "Path to the svn executable",
|
396 | 403 | "default": null,
|
397 | 404 | "isExecutable": true
|
398 | 405 | },
|
399 | 406 | "svn.diff.withHead": {
|
400 | 407 | "type": "boolean",
|
401 |
| - "description": "Show diff changes using latest revision in the repository. Set false to use latest revision in local folder", |
| 408 | + "description": |
| 409 | + "Show diff changes using latest revision in the repository. Set false to use latest revision in local folder", |
402 | 410 | "default": true
|
403 | 411 | },
|
404 | 412 | "svn.layout.trunk": {
|
405 |
| - "type": [ |
406 |
| - "string", |
407 |
| - "null" |
408 |
| - ], |
409 |
| - "description": "Relative path for 'trunk' in SVN URL, 'null' to disable. (Ex.: 'trunk', 'main')", |
| 413 | + "type": ["string", "null"], |
| 414 | + "description": |
| 415 | + "Relative path for 'trunk' in SVN URL, 'null' to disable. (Ex.: 'trunk', 'main')", |
410 | 416 | "default": "trunk"
|
411 | 417 | },
|
412 | 418 | "svn.layout.branches": {
|
413 |
| - "type": [ |
414 |
| - "string", |
415 |
| - "null" |
416 |
| - ], |
417 |
| - "description": "Relative path for 'branches' in SVN URL, 'null' to disable. (Ex.: 'branches', 'versions')", |
| 419 | + "type": ["string", "null"], |
| 420 | + "description": |
| 421 | + "Relative path for 'branches' in SVN URL, 'null' to disable. (Ex.: 'branches', 'versions')", |
418 | 422 | "default": "branches"
|
419 | 423 | },
|
420 | 424 | "svn.layout.tags": {
|
421 |
| - "type": [ |
422 |
| - "string", |
423 |
| - "null" |
424 |
| - ], |
425 |
| - "description": "Relative path for 'tags' in SVN URL, 'null' to disable. (Ex.: 'tags', 'stamps')", |
| 425 | + "type": ["string", "null"], |
| 426 | + "description": |
| 427 | + "Relative path for 'tags' in SVN URL, 'null' to disable. (Ex.: 'tags', 'stamps')", |
426 | 428 | "default": "tags"
|
427 | 429 | },
|
428 | 430 | "svn.branch.update": {
|
429 | 431 | "type": "number",
|
430 | 432 | "minimum": 0,
|
431 |
| - "description": "How frequently (in minutes) to check branch changes. Set to `0` to avoid periodic checks.", |
| 433 | + "description": |
| 434 | + "How frequently (in minutes) to check branch changes. Set to `0` to avoid periodic checks.", |
432 | 435 | "default": 5
|
433 | 436 | },
|
434 | 437 | "svn.multipleFolders.enabled": {
|
|
445 | 448 | "svn.multipleFolders.ignore": {
|
446 | 449 | "type": "array",
|
447 | 450 | "description": "Folders to ignore using SVN",
|
448 |
| - "default": [ |
449 |
| - "**/.git", |
450 |
| - "**/.hg", |
451 |
| - "**/vendor", |
452 |
| - "**/node_modules" |
453 |
| - ] |
| 451 | + "default": ["**/.git", "**/.hg", "**/vendor", "**/node_modules"] |
454 | 452 | },
|
455 | 453 | "svn.sourceControl.ignoreOnCommit": {
|
456 | 454 | "type": "array",
|
457 | 455 | "description": "Changelists to ignore on commit",
|
458 |
| - "default": [ |
459 |
| - "ignore-on-commit" |
460 |
| - ] |
| 456 | + "default": ["ignore-on-commit"] |
461 | 457 | },
|
462 | 458 | "svn.sourceControl.showExternal": {
|
463 | 459 | "type": "boolean",
|
464 |
| - "description": "Allow to show in source control the list the external folders", |
| 460 | + "description": |
| 461 | + "Allow to show in source control the list the external folders", |
465 | 462 | "default": false
|
466 | 463 | },
|
467 | 464 | "svn.sourceControl.countExternal": {
|
|
0 commit comments