diff --git a/CHANGELOG.md b/CHANGELOG.md index 711a8ec2..3929aa59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.10.0] - 2025-03-10 +- Modified video link in README + ## [4.9.0] - 2025-01-21 - Removed button "View this repo on the Web" from PopUps and Side Panel diff --git a/README.md b/README.md index 23516396..c22aeeb8 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Free for 14 days. Available for JetBrains IDEs and VS Code. **Visuals** diff --git a/package.json b/package.json index 2dfc7eb3..e4a50d5a 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "CodeSync", "description": "CodeSync's AI-generated summaries provide clear, insightful coding overviews directly in your IDE, keeping your team aligned without manual tracking. Seamlessly integrate with GitHub and Slack to streamline your workflow.", "icon": "images/icon.png", - "version": "4.9.0", + "version": "4.10.0", "publisher": "codesync", "engines": { "vscode": "^1.86.0", diff --git a/src/codesyncd/websocket/socket_events.ts b/src/codesyncd/websocket/socket_events.ts index d7115824..b0cc0509 100644 --- a/src/codesyncd/websocket/socket_events.ts +++ b/src/codesyncd/websocket/socket_events.ts @@ -127,7 +127,7 @@ export class SocketEvents { } if (validTabs.length) { CodeSyncLogger.debug(`Sending ${validTabs.length} tabs`); - TabsHandler.sendTabsToServer(this.connection, validTabs) + TabsHandler.sendTabsToServer(this.connection, validTabs); } CodeSyncState.set(CODESYNC_STATES.BUFFER_HANDLER_RUNNING, false); } diff --git a/tests/test_utils/auth_utils.test.js b/tests/test_utils/auth_utils.test.js index db832f22..172a44cf 100644 --- a/tests/test_utils/auth_utils.test.js +++ b/tests/test_utils/auth_utils.test.js @@ -132,8 +132,9 @@ describe("logoutHandler", () => { expect(vscode.commands.executeCommand.mock.calls[0][1]).toStrictEqual("showLogIn"); expect(vscode.commands.executeCommand.mock.calls[0][2]).toBe(true); await waitFor(2); - expect(vscode.window.showInformationMessage).toHaveBeenCalledTimes(1); + expect(vscode.window.showInformationMessage).toHaveBeenCalledTimes(2); expect(vscode.window.showInformationMessage.mock.calls[0][0]).toStrictEqual(NOTIFICATION.LOGGED_OUT_SUCCESSFULLY); + expect(vscode.window.showInformationMessage.mock.calls[1][0]).toStrictEqual(NOTIFICATION.WELCOME_MSG); }); });