@@ -49,7 +49,7 @@ function updateRobloxAPI(context: vscode.ExtensionContext) {
4949}
5050
5151async function openUpdatesWindow ( context : vscode . ExtensionContext ) {
52- if ( context . globalState . get ( "sawVersionLogNew5 " , false ) == false ) {
52+ if ( context . globalState . get ( "sawVersionLogNew6 " , false ) == false ) {
5353 const panel = vscode . window . createWebviewPanel (
5454 'robloxlspUpdates' ,
5555 'Roblox LSP Updates' ,
@@ -69,6 +69,13 @@ async function openUpdatesWindow(context: vscode.ExtensionContext) {
6969 <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>
7070 <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>
7171 <hr style="height:2px;border:none;color:#333;background-color:#333;"/>
72+ <h2 style="font-size:2rem; font-weight:100">1.3.0</h2>
73+ <li style="font-size:1rem">More improvements to type inference.</li>
74+ <li style="font-size:1rem">Improved how typeof (the type) works.</li>
75+ <li style="font-size:1rem">Implemented type inference and type checking of metatables.</li>
76+ <li style="font-size:1rem">Added utility type WithMeta<T, M> (may change).</li>
77+ <li style="font-size:1rem">Improved preloading of workspace.</li>
78+ <li style="font-size:1rem">Fixed many bugs.</li>
7279 <h2 style="font-size:2rem; font-weight:100">1.2.2</h2>
7380 <li style="font-size:1rem">Improved type inference by a lot.</li>
7481 <li style="font-size:1rem">Fixed many bugs with auto-completion.</li>
@@ -111,7 +118,7 @@ async function openUpdatesWindow(context: vscode.ExtensionContext) {
111118 </div>
112119 </body>
113120 </html>` ;
114- await context . globalState . update ( "sawVersionLogNew5 " , true ) ;
121+ await context . globalState . update ( "sawVersionLogNew6 " , true ) ;
115122 }
116123}
117124
0 commit comments