From e0966cad331992687274af460e6ee5514501ec7f Mon Sep 17 00:00:00 2001 From: Parker Smith Date: Sun, 23 Feb 2025 01:11:47 -0700 Subject: [PATCH 1/2] Fix missing vscode logic --- src/utils.ts | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/utils.ts b/src/utils.ts index 6d38f3b..83c43fe 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -84,13 +84,15 @@ export async function main() { name: "Code", path: codePath, }); + } - if (process.platform === 'linux' && existsSync(codeRemotePath)) { - IDEPaths.push({ - name: "Code - Remote", - path: codeRemotePath - }) - } + if (process.platform === 'linux' && existsSync(codeRemotePath)) { + IDEPaths.push({ + name: "Code - Remote", + path: codeRemotePath + }); + + log.success('Note: We found some remote information, we\'ll use it as well') } } From d28625f06705bab96c43ac6e8bb3c152663474e4 Mon Sep 17 00:00:00 2001 From: Parker Smith Date: Sun, 23 Feb 2025 01:12:01 -0700 Subject: [PATCH 2/2] Bump version with logix fix --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 920f891..427c39a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codewrap", - "version": "0.0.15", + "version": "0.0.16", "description": "Get a personalized year in review for any VSCode based editor", "keywords": [], "license": "MIT",