Skip to content

Commit

Permalink
Rename extension to git-line-blame and expand package metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
carlthome committed Sep 16, 2023
1 parent 53c8d1c commit cb3ad80
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 15 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -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 ./",
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down

0 comments on commit cb3ad80

Please sign in to comment.