Skip to content

Commit 2c300ba

Browse files
authored
Merge pull request #87 from mathworks/dklilley/release/1.3.12
MATLAB language server - v1.3.12
2 parents 81a33c2 + 046ae83 commit 2c300ba

11 files changed

Lines changed: 347 additions & 236 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.3.12] - 2026-06-15
11+
12+
### Added
13+
- Improved formatting of warnings in output
14+
- Support for the diary command (Addresses [mathworks/MATLAB-extension-for-vscode#186](https://github.com/mathworks/MATLAB-extension-for-vscode/issues/186))
15+
1016
## [1.3.11] - 2026-05-08
1117

1218
### Added

matlab/+matlabls/+project/openProject.m

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,14 @@ function openProject (projectPath)
44
% folder containing one.
55

66
% Copyright 2026 The MathWorks, Inc.
7+
matlabls.internal.CommunicationManager.publish("/matlabls/events/input", struct("promptString", "Do you want to continue? [YES/no]:"));
78
matlab.project.loadProject(projectPath);
8-
end
9+
matlabls.internal.CommunicationManager.publish("/matlabls/events/input", struct("promptString", "? ")); % Clear the prompt string
10+
11+
% Check if the project failed to open (e.g. if the user declined the prompt)
12+
if isempty(matlab.project.rootProject())
13+
% Notify that a project is closed (no longer opening)
14+
event = struct(Event = "closed");
15+
matlabls.internal.CommunicationManager.publish("/matlabls/project/event", event);
16+
end
17+
end

package-lock.json

Lines changed: 23 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "matlab-language-server",
3-
"version": "1.3.11",
3+
"version": "1.3.12",
44
"description": "Language Server for MATLAB code",
55
"main": "./src/index.ts",
66
"bin": "./out/index.js",

0 commit comments

Comments
 (0)