@axpecter/lync 1.4.1 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +3 -2
- package/src/init.luau +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
```toml
|
|
15
15
|
[dependencies]
|
|
16
|
-
Lync = "axp3cter/lync@1.4.
|
|
16
|
+
Lync = "axp3cter/lync@1.4.2"
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
**npm (roblox-ts)**
|
|
@@ -163,7 +163,7 @@ end
|
|
|
163
163
|
| | What it does |
|
|
164
164
|
|:---------|:------------|
|
|
165
165
|
| `Lync.start()` | Sets up transport. Server creates remotes, client connects. Call once after all definitions. |
|
|
166
|
-
| `Lync.VERSION` | `"1.4.
|
|
166
|
+
| `Lync.VERSION` | `"1.4.2"` |
|
|
167
167
|
|
|
168
168
|
## Packets
|
|
169
169
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axpecter/lync",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"description": "Buffer networking for Roblox. Delta compression, XOR framing, built-in security.",
|
|
5
5
|
"main": "src/init.luau",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -28,7 +28,8 @@
|
|
|
28
28
|
"luau"
|
|
29
29
|
],
|
|
30
30
|
"files": [
|
|
31
|
-
"src"
|
|
31
|
+
"src",
|
|
32
|
+
"README.md"
|
|
32
33
|
],
|
|
33
34
|
"devDependencies": {
|
|
34
35
|
"@rbxts/compiler-types": "^3.0.0-types.0",
|