From 2e75cd5e3a37a2775d8d1bf1dc0ebf85a08fd89e Mon Sep 17 00:00:00 2001 From: Jonathan Carter Date: Sat, 14 Mar 2020 08:12:48 -0700 Subject: [PATCH] Update name --- README.md | 2 +- package.json | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index da48033..7e587d0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Code Tour 🗺️ +# CodeTour 🗺️ Code Tour is a Visual Studio Code extension, which allows you to record and playback guided walkthroughs of your codebases. It's like a virtual brownbag, that can make it easier to onboard to a new project/feature area, visualize bug reports, or understand the context of a code review/PR change. A "code tour" is simply a series of interactive steps, each of which are associated with a specific file/line, and include a description of the respective code. This allows developers to clone a repo, and then immediately start **learning it**, without needing to refer to a `CONTRIBUTING.md` file and/or rely on help from others. diff --git a/package.json b/package.json index 8e781af..0349ff9 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,17 @@ { "name": "codetour", - "displayName": "Code Tour", + "displayName": "CodeTour", "description": "VS Code extension that allows you to record and playback guided tours of codebases, directly within the editor", "publisher": "vsls-contrib", "version": "0.0.6", "repository": { "type": "git", - "url": "https://github.com/vsls-contrib/code-tour" + "url": "https://github.com/vsls-contrib/codetour" }, "bugs": { - "url": "https://github.com/vsls-contrib/code-tour/issues" + "url": "https://github.com/vsls-contrib/codetour/issues" }, - "homepage": "https://github.com/vsls-contrib/code-tour#readme", + "homepage": "https://github.com/vsls-contrib/codetour#readme", "license": "ISC", "icon": "images/icon.png", "engines": { @@ -88,23 +88,23 @@ { "command": "codetour.recordTour", "title": "Record Tour", - "category": "Code Tour", + "category": "CodeTour", "icon": "$(add)" }, { "command": "codetour.refreshTours", "title": "Refresh Tours", - "category": "Code Tour" + "category": "CodeTour" }, { "command": "codetour.resumeTour", "title": "Resume Tour", - "category": "Code Tour" + "category": "CodeTour" }, { "command": "codetour.saveTour", "title": "Save Tour", - "category": "Code Tour", + "category": "CodeTour", "icon": "$(save)", "enablement": "!commentThreadIsEmpty" }, @@ -115,7 +115,7 @@ { "command": "codetour.startTour", "title": "Start Tour", - "category": "Code Tour", + "category": "CodeTour", "icon": "$(play)" } ], @@ -311,7 +311,7 @@ "explorer": [ { "id": "codetour.tours", - "name": "Code Tours" + "name": "CodeTour" } ] },