Skip to content
This repository has been archived by the owner on Jun 7, 2023. It is now read-only.

v1.0.4 #7

Merged
merged 3 commits into from
Jun 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand All @@ -11,7 +11,9 @@
"vscode-settings",
"profile",
"extensions",
"extension"
"extension",
"manager",
"workspace"
],
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down