Skip to content

Commit

Permalink
8.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
2jammers committed May 24, 2024
1 parent 2a3ff67 commit ab4f0f9
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 2 deletions.
30 changes: 30 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,36 @@

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

## 8.0.2

### Added

* Nothing

### Improvements

* Adds type references to init module as they were not accessible prior

### Removed

* Nothing

## 8.0.1

---

### Added

* Re-release due to wally issue

### Improvements

* Nothing

### Removed

* Nothing

## 8.0.0

---
Expand Down
12 changes: 11 additions & 1 deletion docs/guides/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,14 @@ The server and client interfaces can be accessed via the `.Server` and `.Client`
local Framework = require(ReplicatedStorage.Packages.Framework)
local Server = Framework.Server() -- or Framework.Client()
```
From here, you can access run context specific items like the player gui.
From here, you can access run context specific items like the player gui.

## Recommended Packages

To start a successful project, we recommend using:

`jsdotlua/react-lua`
`jsdotlua/react-roblox`
`sleitnick/trove`

... and of course Lumin Framework.
8 changes: 8 additions & 0 deletions src/init.luau
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,14 @@ end
Client.Network = NetworkRoot
Server.Network = NetworkRoot

export type Character15Joint = Types.Character15Joint
export type Character6Joint = Types.Character6Joint
export type Promise = Types.Promise<any>
export type ServerFunction = Types.ServerFunction
export type ServerEvent = Types.ServerEvent
export type ClientFunction = Types.ClientFunction
export type ClientEvent = Types.ClientEvent

return {
Promise = Promise :: Types.PromiseLib,

Expand Down
2 changes: 1 addition & 1 deletion wally.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "lumin/framework"
description = "A lightning fast & amazing game framework for Roblox"
version = "8.0.1"
version = "8.0.2"
license = "MIT"
registry = "https://github.com/UpliftGames/wally-index"
realm = "shared"
Expand Down

0 comments on commit ab4f0f9

Please sign in to comment.