diff --git a/CHANGELOG.md b/CHANGELOG.md index fc87b5e..cad9111 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -All notable changes to the "git-line-commit" extension will be documented in this file. +All notable changes to the "git-line-blame" extension will be documented in this file. Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. diff --git a/README.md b/README.md index 70c730b..fdfd1a3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# git-line-commit README +# git-line-blame README -This is the README for your extension "git-line-commit". After writing up a brief description, we recommend including the following sections. +This is the README for your extension "git-line-blame". After writing up a brief description, we recommend including the following sections. ## Features diff --git a/package-lock.json b/package-lock.json index 9c09fb9..80ec768 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "git-line-commit", + "name": "git-line-blame", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "git-line-commit", + "name": "git-line-blame", "version": "0.0.1", "devDependencies": { "@types/mocha": "^10.0.1", diff --git a/package.json b/package.json index eb17e8a..9cd8f5d 100644 --- a/package.json +++ b/package.json @@ -1,22 +1,29 @@ { - "name": "git-line-commit", - "displayName": "git-line-commit", - "description": "Display inline information of the last commit that edited the currently selected line in the editor", + "name": "git-line-blame", + "displayName": "git-line-blame", + "description": "Display inline information in the text editor about the latest commit that edited the currently selected line", + "publisher": "carlthome", "version": "0.0.1", "engines": { "vscode": "^1.78.0" }, "categories": [ - "Other" + "Other", + "SCM Providers" ], + "keywords": [ + "git", + "blame" + ], + "repository": { + "type": "git", + "url": "https://github.com/carlthome/git-line-blame.git" + }, + "contributes": {}, "activationEvents": [ "*" ], "main": "./out/extension.js", - "contributes": {}, - "extensionDependencies": [ - "vscode.git" - ], "scripts": { "vscode:prepublish": "npm run compile", "compile": "tsc -p ./", diff --git a/src/extension.ts b/src/extension.ts index 5fd504d..b99ea04 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -50,7 +50,7 @@ const annotationDecoration: vscode.TextEditorDecorationType = }); export function activate(context: vscode.ExtensionContext) { - console.log('Extension "git-line-commit" has activated.'); + console.log('Extension "git-line-blame" has activated.'); context.subscriptions.push( vscode.window.onDidChangeTextEditorSelection((e) => {