|
2 | 2 | "name": "git-graph-plus", |
3 | 3 | "displayName": "Git Graph Plus", |
4 | 4 | "description": "A modern, full-featured Git GUI for VS Code", |
5 | | - "version": "0.2.2", |
| 5 | + "version": "0.2.3", |
6 | 6 | "publisher": "the0807", |
7 | 7 | "repository": { |
8 | 8 | "type": "git", |
|
54 | 54 | { |
55 | 55 | "command": "gitGraphPlus.pull", |
56 | 56 | "title": "%command.pull%", |
57 | | - "icon": "$(repo-pull)" |
| 57 | + "icon": "$(arrow-down)" |
58 | 58 | }, |
59 | 59 | { |
60 | 60 | "command": "gitGraphPlus.push", |
61 | 61 | "title": "%command.push%", |
62 | | - "icon": "$(repo-push)" |
| 62 | + "icon": "$(arrow-up)" |
63 | 63 | }, |
64 | 64 | { |
65 | 65 | "command": "gitGraphPlus.checkoutBranch", |
|
166 | 166 | "scm": [ |
167 | 167 | { |
168 | 168 | "id": "gitGraphPlus.branches", |
169 | | - "name": "Branches" |
| 169 | + "name": "Branches", |
| 170 | + "icon": "$(git-branch)", |
| 171 | + "visibility": "visible" |
170 | 172 | }, |
171 | 173 | { |
172 | 174 | "id": "gitGraphPlus.remotes", |
173 | | - "name": "Remotes" |
| 175 | + "name": "Remotes", |
| 176 | + "icon": "$(cloud)" |
174 | 177 | }, |
175 | 178 | { |
176 | 179 | "id": "gitGraphPlus.tags", |
177 | | - "name": "Tags" |
| 180 | + "name": "Tags", |
| 181 | + "icon": "$(tag)" |
178 | 182 | }, |
179 | 183 | { |
180 | 184 | "id": "gitGraphPlus.stashes", |
181 | | - "name": "Stashes" |
| 185 | + "name": "Stashes", |
| 186 | + "icon": "$(archive)" |
182 | 187 | }, |
183 | 188 | { |
184 | 189 | "id": "gitGraphPlus.worktrees", |
185 | | - "name": "Worktrees" |
| 190 | + "name": "Worktrees", |
| 191 | + "icon": "$(worktree)" |
186 | 192 | } |
187 | 193 | ] |
188 | 194 | }, |
|
217 | 223 | "group": "navigation@3" |
218 | 224 | }, |
219 | 225 | { |
220 | | - "command": "gitGraphPlus.createBranch", |
| 226 | + "command": "gitGraphPlus.pull", |
221 | 227 | "when": "view == gitGraphPlus.branches", |
222 | 228 | "group": "navigation@4" |
223 | 229 | }, |
| 230 | + { |
| 231 | + "command": "gitGraphPlus.push", |
| 232 | + "when": "view == gitGraphPlus.branches", |
| 233 | + "group": "navigation@5" |
| 234 | + }, |
| 235 | + { |
| 236 | + "command": "gitGraphPlus.createBranch", |
| 237 | + "when": "view == gitGraphPlus.branches", |
| 238 | + "group": "navigation@6" |
| 239 | + }, |
224 | 240 | { |
225 | 241 | "command": "gitGraphPlus.createTag", |
226 | 242 | "when": "view == gitGraphPlus.tags", |
|
0 commit comments