Skip to content

Commit bc6b908

Browse files
dklilleyGitHub Enterprise
authored andcommitted
Merge pull request mathworks#50 from development/dlilley/release/1.2.7
Dlilley/release/1.2.7
2 parents 101448f + 4857a75 commit bc6b908

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+4410
-11061
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ MATLAB language server supports these editors by installing the corresponding ex
2828

2929
### Unreleased
3030

31+
### 1.2.7
32+
Release date: 2024-11-07
33+
34+
Added:
35+
* Allow specifying the maximum file size for code analysis through the `maxFileSizeForAnalysis` setting
36+
* Linting support in untitled files and in MATLAB files with different file extensions
37+
3138
### 1.2.6
3239
Release date: 2024-09-20
3340

build/copyLicensingToOut.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Copyright 2024 The MathWorks, Inc.
2+
const fs = require('fs')
3+
const path = require('path')
4+
5+
const sourceDir = path.join(__dirname, '..', 'src', 'licensing', 'gui', 'build')
6+
const targetDir = path.join(__dirname, '..', 'out', 'licensing', 'static')
7+
8+
fs.cp(sourceDir, targetDir, { recursive: true }, (err) => {
9+
if (err) {
10+
console.error('Error copying files: ', err)
11+
} else {
12+
console.log('Files copied successfully.')
13+
}
14+
})

build/makeLicensingOut.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Copyright 2024 The MathWorks, Inc.
2+
const fs = require('fs')
3+
const path = require('path')
4+
5+
const dirPath = path.join(__dirname, '..', 'out', 'licensing', 'static')
6+
7+
fs.mkdir(dirPath, { recursive: true }, (err) => {
8+
if (err) {
9+
console.error('Error creating directory: ', err)
10+
} else {
11+
console.log('Directory created successfully: ', dirPath)
12+
}
13+
})

0 commit comments

Comments
 (0)