From 3c87cfbadb72136c2ba3a176390192e17da0011f Mon Sep 17 00:00:00 2001 From: Emanuele Bartolesi Date: Tue, 9 Sep 2025 17:30:35 +0200 Subject: [PATCH] fix: update version to 0.7.3 and correct categories in package.json; add spacing in demo.js for improved readability --- demo.js | 3 +++ package.json | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/demo.js b/demo.js index bbc3fc4..aa101d3 100644 --- a/demo.js +++ b/demo.js @@ -2,11 +2,13 @@ // Demo file for testing DropComments functionality // Select any function below and run "DropComments: Add Comments to Selection" Object.defineProperty(exports, "__esModule", { value: true }); + function calculateTotal(items, taxRate) { const subtotal = items.reduce((sum, item) => sum + item.price, 0); const tax = subtotal * taxRate; return subtotal + tax; } + class UserManager { users = []; addUser(user) { @@ -19,6 +21,7 @@ class UserManager { return this.users.find(user => user.id === id); } } + const processData = async (data) => { const results = []; for (const item of data) { diff --git a/package.json b/package.json index 99c6716..8abaf97 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "dropcomments", "displayName": "DropComments", "description": "DropComments is a Visual Studio Code extension that helps you automatically add comments to your code using AI.", - "version": "0.7.2", + "version": "0.7.3", "icon": "img/DropCommentsLogo.png", "repository": { "type": "git", @@ -12,7 +12,8 @@ "vscode": "^1.103.0" }, "categories": [ - "Other" + "Programming Languages", + "Snippets" ], "keywords": [ "ai",