Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @protheeuz @kurang-dana/maintainers
* @protheeuz @bookek/maintainers
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Questions
url: https://github.com/kurang-dana/satset/discussions
url: https://github.com/bookek/satset/discussions
about: Please use GitHub Discussions if you have questions or need help.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

# Sat·Set

![CI](https://github.com/kurang-dana/satset/actions/workflows/build.yml/badge.svg)
![Version](https://img.shields.io/github/v/release/kurang-dana/satset?label=version&color=orange)
![CI](https://github.com/bookek/satset/actions/workflows/build.yml/badge.svg)
![Version](https://img.shields.io/github/v/release/bookek/satset?label=version&color=orange)
![Platform](https://img.shields.io/badge/platform-Roblox-00A2FF)
![License](https://img.shields.io/github/license/kurang-dana/satset?color=blue)
![License](https://img.shields.io/github/license/bookek/satset?color=blue)

</div>

Expand Down Expand Up @@ -123,7 +123,7 @@ For a detailed step-by-step walkthrough of a packet's lifecycle, see the [Archit
Add Satset to your `wally.toml`:

```toml
Satset = "kurang-dana/satset@0.1.0"
Satset = "bookek/satset@0.1.2"
```

Then run `wally install`.
Expand Down
2 changes: 1 addition & 1 deletion docs/api/satset.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Defines a new stateful channel.

### `Satset.Version`

A string containing the current library version (e.g. `"0.1.1"`).
A string containing the current library version (e.g. `"0.1.2"`).

### `Satset.Types`

Expand Down
4 changes: 2 additions & 2 deletions docs/guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Add Satset to your `wally.toml`:

```toml
[dependencies]
Satset = "protheeuz/satset@0.1.0"
Satset = "bookek/satset@0.1.2"
```

Then run:
Expand All @@ -19,7 +19,7 @@ wally install

## Manual Installation

1. Download the latest `satset.rbxm` from the [Releases](https://github.com/protheeuz/satset/releases) page.
1. Download the latest `satset.rbxm` from the [Releases](https://github.com/bookek/satset/releases) page.
2. Drag and drop it into `ReplicatedStorage` in your Roblox Studio place.

## Rojo
Expand Down
2 changes: 1 addition & 1 deletion src/init.luau
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ local RunService = game:GetService("RunService")

-- [ Constants ]

local VERSION = "0.1.1"
local VERSION = "0.1.2"
local IS_SERVER = RunService:IsServer()

local CHANNEL_RELIABLE_NAME = "__SatsetChannelReliable"
Expand Down
9 changes: 6 additions & 3 deletions wally.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kurang-dana/satset"
name = "bookek/satset"
description = "High-performance, buffer-backed hybrid networking for Roblox with zero-allocation delta synchronization."
version = "0.1.0"
version = "0.1.2"
license = "MIT"
authors = ["Iqbal F"]
registry = "https://github.com/UpliftGames/wally-index"
Expand All @@ -13,9 +13,12 @@ exclude = [
"package.json",
"stylua.toml",
"selene.toml",
"benchmark/",
"docs/",
"tests/",
]

[dependencies]
[dev-dependencies]
ByteNet = "ffrostflame/bytenet@0.4.6"
BridgeNet2 = "ffrostflame/bridgenet2@1.0.0"
Warp = "imezx/warp@1.0.0"
Loading