From e206aea2f9a997031b69a49a12a7708f83ecbe5f Mon Sep 17 00:00:00 2001 From: Evald Smalyakov Date: Sun, 20 Jun 2021 13:29:55 +0600 Subject: [PATCH 1/3] Update README.MD --- CHANGELOG.md | 2 +- README.md | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5089a3f..e1f33b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -#### [v1.0.3](https://github.com/evald24/vscode-extensions-profiles/compare/v1.0.0...v1.0.3) +#### [v1.0.4](https://github.com/evald24/vscode-extensions-profiles/compare/v1.0.0...v1.0.4) - Refactoring and fix work for windows [`c8f736c`](https://github.com/evald24/vscode-extensions-profiles/commit/c8f736ce223a729b5af7f50de5e33ae722af20f9) - fix windows path [`6298116`](https://github.com/evald24/vscode-extensions-profiles/commit/629811616dec756dddc56e292c29999ec2ed9989) diff --git a/README.md b/README.md index 1b32220..5361bfd 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ My thoughts: - πŸ’‘ Apply a profile to a set of selected workspaces; - πŸ’‘ Import selected profiles; - πŸ’‘ After installing new extensions, automatically add to the list of disabled extensions not specified in the profile; -- ΠŸΡ€ΠΈΠ²ΡΠ· Linking the project to the profile (auto update when the profile changes); +- πŸ’‘ Linking the project to the profile (auto update when the profile changes); - πŸ’‘ `ext-profiles.json` - local configuration file for projects and recommendations for installing missing extensions; - πŸ’‘ More convenient modification of plugins for a separate project without linking to a profile or creating it; - πŸ’‘ Create a profile from the current or selected project. diff --git a/package.json b/package.json index 78243ce..8391c44 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vscode-extension-profiles", "displayName": "Extension profiles", - "version": "1.0.3", + "version": "1.0.4", "private": false, "description": "Lets you create profiles to include the selected extensions in the desired project.", "categories": [ From eaadca81f52b32972f23ed16c621be225612a7a6 Mon Sep 17 00:00:00 2001 From: Evald Smalyakov Date: Sun, 20 Jun 2021 14:22:05 +0600 Subject: [PATCH 2/3] fix path --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index 2ea1b50..8b346cf 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -168,7 +168,7 @@ export function loadJSON(path: string) { export async function getAllExtensions() { const extPath = getExtensionsPath(); let extensions: ExtensionValue[] = []; - let obsolete = Object.keys(loadJSON(extPath + platform_slash + ".obsolete")); + let obsolete = Object.keys(loadJSON(extPath + ".obsolete")); let all = await readdir(extPath); From b5da482b9425cc3462ddb3cd2e1441e42d5f174f Mon Sep 17 00:00:00 2001 From: Evald Smalyakov Date: Sun, 20 Jun 2021 14:29:42 +0600 Subject: [PATCH 3/3] Update package.json --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 8391c44..b31b9aa 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,9 @@ "vscode-settings", "profile", "extensions", - "extension" + "extension", + "manager", + "workspace" ], "repository": { "type": "git",