Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
2jammers committed Apr 28, 2024
1 parent acd75a8 commit 57e2c92
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default defineConfig({
base: "/LuminFramework/",
title: "Lumin Framework",
titleTemplate: "Lumin Labs",
description: "A blazingly fast & lightweight game framework",
description: "A lightning fast & lightweight game framework",
lastUpdated: true,
lang: 'en-us',
themeConfig: {
Expand Down Expand Up @@ -41,7 +41,8 @@ export default defineConfig({
{
text: 'Engine Recaps',
items: [
{ text: 'February 2024', link: '/recaps/' },
{ text: 'May 2024', link: '/recaps/' },
{ text: 'February 2024', link: '/recaps/february2024' },
{ text: 'December 2023', link: '/recaps/december2023' },
{ text: 'November 2023', link: '/recaps/november2023' },
{ text: 'October 2023', link: '/recaps/october2023' },
Expand Down
8 changes: 5 additions & 3 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,23 @@

This is the changelog which is changed every update, and we follow semver.

## 7.0.3
## 8.0.0

---

### Added

* Nothing
* Improved networking system
* Better solutions to load modules during run time

### Improvements

* Changed project name from **CanaryEngine** to **LuminFramework**
* All yielding code now uses promises

### Removed

* Nothing
* Client.PlayerBackpack

## 7.0.2

Expand Down
2 changes: 1 addition & 1 deletion tests/client/Test.client.luau
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local Client = Lumin.Client()

local AnnounceNetwork = Client.Network.Event("Announcer"):expect()
local Gui = Client.PlayerGui:WaitForChild("Announce")
local Label = Gui:WaitForChild("AnnounceLabel")
local Label = Gui:WaitForChild("AnnounceLabel") :: TextLabel

AnnounceNetwork:Listen(function(message)
Label.Text = message
Expand Down

0 comments on commit 57e2c92

Please sign in to comment.