From ead962c44c45b69d46074b571b0b8a721db115b6 Mon Sep 17 00:00:00 2001 From: "0.7%" Date: Thu, 30 Apr 2026 06:28:06 +0700 Subject: [PATCH] fix: final organization and version cleanup for v0.1.2 --- .github/CODEOWNERS | 2 +- .github/ISSUE_TEMPLATE/config.yml | 2 +- README.md | 8 ++++---- docs/api/satset.md | 2 +- docs/guide/installation.md | 4 ++-- src/init.luau | 2 +- wally.toml | 9 ++++++--- 7 files changed, 16 insertions(+), 13 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index eb20691..c822b44 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @protheeuz @kurang-dana/maintainers +* @protheeuz @bookek/maintainers diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 51f51d9..cb4c824 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -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. diff --git a/README.md b/README.md index bf44476..dea9399 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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`. diff --git a/docs/api/satset.md b/docs/api/satset.md index cb2d469..3647766 100644 --- a/docs/api/satset.md +++ b/docs/api/satset.md @@ -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` diff --git a/docs/guide/installation.md b/docs/guide/installation.md index a95cfe8..adbca44 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -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: @@ -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 diff --git a/src/init.luau b/src/init.luau index c972dfc..c094522 100644 --- a/src/init.luau +++ b/src/init.luau @@ -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" diff --git a/wally.toml b/wally.toml index 90d9ec7..5fa2b0e 100644 --- a/wally.toml +++ b/wally.toml @@ -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" @@ -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" \ No newline at end of file