Skip to content

Commit

Permalink
1.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
NightrainsRbx committed Mar 21, 2022
1 parent c06feb7 commit 02c0492
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
12 changes: 9 additions & 3 deletions client/out/extension.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/out/extension.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions client/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function updateRobloxAPI(context: vscode.ExtensionContext) {
}

async function openUpdatesWindow(context: vscode.ExtensionContext) {
if (context.globalState.get("sawVersionLogNew12", false) == false) {
if (context.globalState.get("sawVersionLogNew14", false) == false) {
const panel = vscode.window.createWebviewPanel(
'robloxlspUpdates',
'Roblox LSP Updates',
Expand All @@ -81,10 +81,16 @@ async function openUpdatesWindow(context: vscode.ExtensionContext) {
<body>
<div style="position:relative; padding-left:100px; padding-right:100px">
<center><img src="https://i.imgur.com/PH5u9QD.png", witdh="300" height="300"></center>
<h1 style="font-size:3rem; font-weight:100">Roblox LSP Updates!</h1>
<h1 style="font-size:3rem; font-weight:100">Roblox LSP Release Notes!</h1>
<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>
<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>
<hr style="height:2px;border:none;color:#333;background-color:#333;"/>
<h2 style="font-size:2rem; font-weight:100">v1.5.7</h2>
<li style="font-size:1rem">Syntax support for boolean singleton types.</li>
<li style="font-size:1rem">Syntax support for default type parameters.</li>
<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>
<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>
<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>
<h2 style="font-size:2rem; font-weight:100">v1.5.6</h2>
<li style="font-size:1rem">Improved syntax support for Luau.</li>
<li style="font-size:1rem">Added basic syntax support for generic type packs and singleton types.</li>
Expand All @@ -99,7 +105,7 @@ async function openUpdatesWindow(context: vscode.ExtensionContext) {
</div>
</body>
</html>`;
await context.globalState.update("sawVersionLogNew12", true);
await context.globalState.update("sawVersionLogNew14", true);
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1387,7 +1387,7 @@
"type": "git",
"url": "https://github.com/NightrainsRbx/RobloxLsp"
},
"version": "1.5.6",
"version": "1.5.7",
"__metadata": {
"id": "169d2b9c-69d2-482a-aee2-ea6c33ed4e89",
"publisherId": "e1e7384e-2406-4940-a937-5fad58f8815e",
Expand Down

0 comments on commit 02c0492

Please sign in to comment.