|
2 | 2 | "name": "svn-scm", |
3 | 3 | "displayName": "SVN", |
4 | 4 | "description": "Integrated Subversion source control", |
5 | | - "version": "1.4.6", |
| 5 | + "version": "1.5.0", |
6 | 6 | "publisher": "johnstoncode", |
7 | 7 | "engines": { |
8 | 8 | "vscode": "^1.17.0" |
|
16 | 16 | "bugs": { |
17 | 17 | "url": "https://github.com/JohnstonCode/svn-scm/issues" |
18 | 18 | }, |
19 | | - "categories": [ |
20 | | - "Other", |
21 | | - "SCM Providers" |
22 | | - ], |
23 | | - "keywords": [ |
24 | | - "multi-root ready", |
25 | | - "scm", |
26 | | - "svn" |
27 | | - ], |
28 | | - "activationEvents": [ |
29 | | - "*" |
30 | | - ], |
| 19 | + "categories": ["Other", "SCM Providers"], |
| 20 | + "keywords": ["multi-root ready", "scm", "svn"], |
| 21 | + "activationEvents": ["*"], |
31 | 22 | "main": "./out/extension", |
32 | 23 | "scripts": { |
33 | 24 | "vscode:prepublish": "tsc -p ./", |
|
160 | 151 | "default": true |
161 | 152 | }, |
162 | 153 | "svn.path": { |
163 | | - "type": [ |
164 | | - "string", |
165 | | - "null" |
166 | | - ], |
| 154 | + "type": ["string", "null"], |
167 | 155 | "description": "Path to the svn executable", |
168 | 156 | "default": null, |
169 | 157 | "isExecutable": true |
170 | 158 | }, |
171 | 159 | "svn.diff.withHead": { |
172 | 160 | "type": "boolean", |
173 | | - "description": "Show diff changes using latest revision in the repository. Set false to use latest revision in local folder", |
| 161 | + "description": |
| 162 | + "Show diff changes using latest revision in the repository. Set false to use latest revision in local folder", |
174 | 163 | "default": true |
175 | 164 | }, |
176 | 165 | "svn.layout.trunk": { |
177 | | - "type": [ |
178 | | - "string", |
179 | | - "null" |
180 | | - ], |
181 | | - "description": "Relative path for 'trunk' in SVN URL, 'null' to disable. (Ex.: 'trunk', 'main')", |
| 166 | + "type": ["string", "null"], |
| 167 | + "description": |
| 168 | + "Relative path for 'trunk' in SVN URL, 'null' to disable. (Ex.: 'trunk', 'main')", |
182 | 169 | "default": "trunk" |
183 | 170 | }, |
184 | 171 | "svn.layout.branches": { |
185 | | - "type": [ |
186 | | - "string", |
187 | | - "null" |
188 | | - ], |
189 | | - "description": "Relative path for 'branches' in SVN URL, 'null' to disable. (Ex.: 'branches', 'versions')", |
| 172 | + "type": ["string", "null"], |
| 173 | + "description": |
| 174 | + "Relative path for 'branches' in SVN URL, 'null' to disable. (Ex.: 'branches', 'versions')", |
190 | 175 | "default": "branches" |
191 | 176 | }, |
192 | 177 | "svn.layout.tags": { |
193 | | - "type": [ |
194 | | - "string", |
195 | | - "null" |
196 | | - ], |
197 | | - "description": "Relative path for 'tags' in SVN URL, 'null' to disable. (Ex.: 'tags', 'stamps')", |
| 178 | + "type": ["string", "null"], |
| 179 | + "description": |
| 180 | + "Relative path for 'tags' in SVN URL, 'null' to disable. (Ex.: 'tags', 'stamps')", |
198 | 181 | "default": "tags" |
199 | 182 | }, |
200 | 183 | "svn.multipleFolders.enabled": { |
|
0 commit comments