@@ -66,7 +66,7 @@ function updateRobloxAPI(context: vscode.ExtensionContext) {
6666}
6767
6868async 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
0 commit comments