|
2 | 2 | "name": "commitweave",
|
3 | 3 | "displayName": "CommitWeave",
|
4 | 4 | "description": "Smart, structured, and beautiful git commits with AI assistance - by GLINR STUDIOS",
|
5 |
| - "version": "1.0.2", |
| 5 | + "version": "1.0.3", |
6 | 6 | "publisher": "glincker",
|
| 7 | + "icon": "assets/icon.png", |
7 | 8 | "engines": {
|
8 | 9 | "vscode": "^1.80.0"
|
9 | 10 | },
|
|
21 | 22 | "activationEvents": [
|
22 | 23 | "onCommand:commitweave.create",
|
23 | 24 | "onCommand:commitweave.ai",
|
24 |
| - "onCommand:commitweave.configure" |
| 25 | + "onCommand:commitweave.configure", |
| 26 | + "onCommand:commitweave.quickCommit", |
| 27 | + "onCommand:commitweave.validateCommit" |
25 | 28 | ],
|
26 | 29 | "main": "./out/src/extension.js",
|
27 | 30 | "contributes": {
|
|
40 | 43 | "command": "commitweave.configure",
|
41 | 44 | "title": "CommitWeave: Configure",
|
42 | 45 | "category": "CommitWeave"
|
| 46 | + }, |
| 47 | + { |
| 48 | + "command": "commitweave.quickCommit", |
| 49 | + "title": "CommitWeave: Quick Commit", |
| 50 | + "category": "CommitWeave", |
| 51 | + "icon": "$(git-commit)" |
| 52 | + }, |
| 53 | + { |
| 54 | + "command": "commitweave.validateCommit", |
| 55 | + "title": "CommitWeave: Validate Last Commit", |
| 56 | + "category": "CommitWeave", |
| 57 | + "icon": "$(check-all)" |
43 | 58 | }
|
44 | 59 | ],
|
| 60 | + "menus": { |
| 61 | + "scm/title": [ |
| 62 | + { |
| 63 | + "command": "commitweave.quickCommit", |
| 64 | + "group": "navigation", |
| 65 | + "when": "scmProvider == git" |
| 66 | + } |
| 67 | + ], |
| 68 | + "commandPalette": [ |
| 69 | + { |
| 70 | + "command": "commitweave.create", |
| 71 | + "when": "gitOpenRepositoryCount != 0" |
| 72 | + }, |
| 73 | + { |
| 74 | + "command": "commitweave.ai", |
| 75 | + "when": "gitOpenRepositoryCount != 0" |
| 76 | + }, |
| 77 | + { |
| 78 | + "command": "commitweave.quickCommit", |
| 79 | + "when": "gitOpenRepositoryCount != 0" |
| 80 | + }, |
| 81 | + { |
| 82 | + "command": "commitweave.validateCommit", |
| 83 | + "when": "gitOpenRepositoryCount != 0" |
| 84 | + } |
| 85 | + ] |
| 86 | + }, |
45 | 87 | "configuration": {
|
46 | 88 | "type": "object",
|
47 | 89 | "title": "CommitWeave",
|
|
0 commit comments