Skip to content

Commit 340541a

Browse files
committed
1.3.0
1 parent a1c1fbb commit 340541a

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

client/out/extension.js

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

5151
async 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&lt;T, M&gt; (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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1327,7 +1327,7 @@
13271327
"type": "git",
13281328
"url": "https://github.com/NightrainsRbx/RobloxLsp"
13291329
},
1330-
"version": "1.2.2",
1330+
"version": "1.3.0",
13311331
"__metadata": {
13321332
"id": "169d2b9c-69d2-482a-aee2-ea6c33ed4e89",
13331333
"publisherDisplayName": "Nightrains",

0 commit comments

Comments
 (0)