Skip to content

Commit 35ae5c7

Browse files
committed
1.5.0
1 parent 58b8d8e commit 35ae5c7

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

client/out/extension.js

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

client/out/extension.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/src/extension.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function updateRobloxAPI(context: vscode.ExtensionContext) {
6666
}
6767

6868
async function openUpdatesWindow(context: vscode.ExtensionContext) {
69-
if (context.globalState.get("sawVersionLogNew8", false) == false) {
69+
if (context.globalState.get("sawVersionLogNew9", false) == false) {
7070
const panel = vscode.window.createWebviewPanel(
7171
'robloxlspUpdates',
7272
'Roblox LSP Updates',
@@ -86,6 +86,9 @@ async function openUpdatesWindow(context: vscode.ExtensionContext) {
8686
<p style="font-size:1rem">More info: <a href="https://devforum.roblox.com/t/roblox-lsp-full-intellisense-for-roblox-and-luau/717745">https://devforum.roblox.com/t/roblox-lsp-full-intellisense-for-roblox-and-luau/717745</a></p>
8787
<p style="font-size:1rem">Report any bug or question here: <a href="https://github.com/NightrainsRbx/RobloxLsp/issues">https://github.com/NightrainsRbx/RobloxLsp/issues</a></p>
8888
<hr style="height:2px;border:none;color:#333;background-color:#333;"/>
89+
<h2 style="font-size:2rem; font-weight:100">1.5.0</h2>
90+
<li style="font-size:1rem">Support for if expressions.</li>
91+
<li style="font-size:1rem">Added table.freeze and table.isfrozen.</li>
8992
<h2 style="font-size:2rem; font-weight:100">1.4.0</h2>
9093
<li style="font-size:1rem">Support for Rojo project composition and Wally.</li>
9194
<li style="font-size:1rem">Added robloxLsp.intelliSense.autoDetectLibraries.</li>
@@ -147,7 +150,7 @@ async function openUpdatesWindow(context: vscode.ExtensionContext) {
147150
</div>
148151
</body>
149152
</html>`;
150-
await context.globalState.update("sawVersionLogNew8", true);
153+
await context.globalState.update("sawVersionLogNew9", true);
151154
}
152155
}
153156

language-configuration.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"autoCloseBefore": "}])",
3232

3333
"indentationRules": {
34-
"increaseIndentPattern": "^((?!(\\-\\-)).)*((\\b(function|do|repeat)\\b((?!\\b(end|until)\\b).)*)|(\\{\\s*)|(\\b(then|else)\\b\\s*))$",
35-
"decreaseIndentPattern": "^\\s*((\\b(end|until)\\b)|(\\})|(\\))|(\\b(elseif|else)\\b\\s*))"
34+
"increaseIndentPattern": "^((?!(\\-\\-)).)*((\\b(function|do|repeat)\\b((?!\\b(end|until)\\b).)*)|(\\{\\s*)|(\\b(then|else)\\b[;\\s]*))$",
35+
"decreaseIndentPattern": "^\\s*((\\b(end|until)\\b)|(\\})|(\\))|(\\b(else)\\b[;\\s]*))"
3636
}
3737
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1346,7 +1346,7 @@
13461346
"type": "git",
13471347
"url": "https://github.com/NightrainsRbx/RobloxLsp"
13481348
},
1349-
"version": "1.4.0",
1349+
"version": "1.5.0",
13501350
"__metadata": {
13511351
"id": "169d2b9c-69d2-482a-aee2-ea6c33ed4e89",
13521352
"publisherId": "e1e7384e-2406-4940-a937-5fad58f8815e",

0 commit comments

Comments
 (0)