Skip to content

Commit 02c0492

Browse files
committed
1.5.7
1 parent c06feb7 commit 02c0492

File tree

4 files changed

+20
-8
lines changed

4 files changed

+20
-8
lines changed

client/out/extension.js

Lines changed: 9 additions & 3 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: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function updateRobloxAPI(context: vscode.ExtensionContext) {
6565
}
6666

6767
async function openUpdatesWindow(context: vscode.ExtensionContext) {
68-
if (context.globalState.get("sawVersionLogNew12", false) == false) {
68+
if (context.globalState.get("sawVersionLogNew14", false) == false) {
6969
const panel = vscode.window.createWebviewPanel(
7070
'robloxlspUpdates',
7171
'Roblox LSP Updates',
@@ -81,10 +81,16 @@ async function openUpdatesWindow(context: vscode.ExtensionContext) {
8181
<body>
8282
<div style="position:relative; padding-left:100px; padding-right:100px">
8383
<center><img src="https://i.imgur.com/PH5u9QD.png", witdh="300" height="300"></center>
84-
<h1 style="font-size:3rem; font-weight:100">Roblox LSP Updates!</h1>
84+
<h1 style="font-size:3rem; font-weight:100">Roblox LSP Release Notes!</h1>
8585
<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>
8686
<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>
8787
<hr style="height:2px;border:none;color:#333;background-color:#333;"/>
88+
<h2 style="font-size:2rem; font-weight:100">v1.5.7</h2>
89+
<li style="font-size:1rem">Syntax support for boolean singleton types.</li>
90+
<li style="font-size:1rem">Syntax support for default type parameters.</li>
91+
<li style="font-size:1rem">Added Vector2 and CFrame constants (thanks to <a href="https://github.com/ykh09242">@ykh09242</a>, <a href="https://github.com/NightrainsRbx/RobloxLsp/pull/145">#150</a>)</li>
92+
<li style="font-size:1rem">Added task.cancel and coroutine.close (thanks to <a href="https://github.com/Baileyeatspizza">@Baileyeatspizza</a>, <a href="https://github.com/NightrainsRbx/RobloxLsp/pull/145">#151</a>)</li>
93+
<li style="font-size:1rem">By default, all rojo project files found will be loaded and merged into one, change robloxLsp.workspace.rojoProjectFile if you prefer to use a specific one.</li>
8894
<h2 style="font-size:2rem; font-weight:100">v1.5.6</h2>
8995
<li style="font-size:1rem">Improved syntax support for Luau.</li>
9096
<li style="font-size:1rem">Added basic syntax support for generic type packs and singleton types.</li>
@@ -99,7 +105,7 @@ async function openUpdatesWindow(context: vscode.ExtensionContext) {
99105
</div>
100106
</body>
101107
</html>`;
102-
await context.globalState.update("sawVersionLogNew12", true);
108+
await context.globalState.update("sawVersionLogNew14", true);
103109
}
104110
}
105111

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1387,7 +1387,7 @@
13871387
"type": "git",
13881388
"url": "https://github.com/NightrainsRbx/RobloxLsp"
13891389
},
1390-
"version": "1.5.6",
1390+
"version": "1.5.7",
13911391
"__metadata": {
13921392
"id": "169d2b9c-69d2-482a-aee2-ea6c33ed4e89",
13931393
"publisherId": "e1e7384e-2406-4940-a937-5fad58f8815e",

0 commit comments

Comments
 (0)