From 5fe2255a0878c8409036ffcce30250ec252eb3c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nathan=20Rivi=C3=A8re?= Date: Wed, 13 Nov 2024 11:34:11 +0100 Subject: [PATCH 1/2] style: add category property to commands --- package.json | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index f312d8e..67c0190 100644 --- a/package.json +++ b/package.json @@ -55,35 +55,43 @@ "commands": [ { "command": "gitguardian.quota", - "title": "gitguardian: Show quota" + "title": "Show quota", + "category": "GitGuardian" }, { "command": "gitguardian.ignore", - "title": "gitguardian: Ignore last found incidents" + "title": "Ignore last found incidents", + "category": "GitGuardian" }, { "command": "gitguardian.authenticate", - "title": "gitguardian: Authenticate" + "title": "Authenticate", + "category": "GitGuardian" }, { "command": "gitguardian.logout", - "title": "gitguardian: logout" + "title": "Logout", + "category": "GitGuardian" }, { "command": "gitguardian.showOutput", - "title": "Show Output" + "title": "Show Output", + "category": "GitGuardian" }, { "command": "gitguardian.openSidebar", - "title": "Open Sidebar" + "title": "Open Sidebar", + "category": "GitGuardian" }, { "command": "gitguardian.openProblems", - "title": "Open Problems" + "title": "Open Problems", + "category": "GitGuardian" }, { "command": "gitguardian.refreshQuota", "title": "Refresh Quota", + "category": "GitGuardian", "icon": { "light": "images/refresh-light.svg", "dark": "images/refresh-dark.svg" From c3ac8e4dde967dc4673140f3949e809c7296c519 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nathan=20Rivi=C3=A8re?= Date: Thu, 14 Nov 2024 09:52:14 +0100 Subject: [PATCH 2/2] style: add proper case to extension views names --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 67c0190..e94001b 100644 --- a/package.json +++ b/package.json @@ -112,19 +112,19 @@ { "type": "webview", "id": "gitguardianView", - "name": "gitguardian" + "name": "GitGuardian" }, { "type": "webview", "id": "gitguardianRemediationMessageView", - "name": "remediation message", + "name": "Remediation message", "collapsed": true, "when": "isAuthenticated == true" }, { "type": "webview", "id": "gitguardianQuotaView", - "name": "quota", + "name": "Quota", "collapsed": true, "when": "isAuthenticated == true" }