Skip to content

Commit 7566be0

Browse files
committed
updates window
1 parent 7c90708 commit 7566be0

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

client/out/extension.js

Lines changed: 13 additions & 1 deletion
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: 13 additions & 1 deletion
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("sawVersionLogNew6", false) == false) {
69+
if (context.globalState.get("sawVersionLogNew8", false) == false) {
7070
const panel = vscode.window.createWebviewPanel(
7171
'robloxlspUpdates',
7272
'Roblox LSP Updates',
@@ -86,6 +86,18 @@ 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.4.0</h2>
90+
<li style="font-size:1rem">Support for Rojo project composition and Wally.</li>
91+
<li style="font-size:1rem">Added robloxLsp.intelliSense.autoDetectLibraries.</li>
92+
<li style="font-size:1rem">Improved markdown in descriptions.</li>
93+
<h2 style="font-size:2rem; font-weight:100">As of 1.3.1</h2>
94+
<li style="font-size:1rem">Added progress notification when updating API.</li>
95+
<li style="font-size:1rem">Added Color3.fromHex (as deprecated) with Color preview.</li>
96+
<li style="font-size:1rem">$className is no longer required in services for Rojo project files.</li>
97+
<li style="font-size:1rem">Added syntax support for generic functions.</li>
98+
<li style="font-size:1rem">Ignored files are now compiled for IntelliSense when requiring them.</li>
99+
<li style="font-size:1rem">Added robloxLsp.workspace.loadRequiredFiles.</li>
100+
<li style="font-size:1rem">A lot of fixes.</li>
89101
<h2 style="font-size:2rem; font-weight:100">1.3.0</h2>
90102
<li style="font-size:1rem">More improvements to type inference.</li>
91103
<li style="font-size:1rem">Improved how typeof (the type) works.</li>

0 commit comments

Comments
 (0)