Skip to content

Commit fcb5f4f

Browse files
committed
2026-05-19T0750Z
1 parent 958af45 commit fcb5f4f

5 files changed

Lines changed: 13 additions & 7 deletions

File tree

Examples

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ Objects transformed include:
406406

407407
Some modern programs do weird things to client-sided scripts. They use `Script` classs objects, but with a [`RunContext`](https://robloxapi.github.io/ref/class/BaseScript.html#member-RunContext) property set to [`"Client"`](https://robloxapi.github.io/ref/enum/RunContext.html#member-Client). You will also need to _manually_ convert these objects to `LocalScripts`.
408408

409-
Parsing union operations done in current-day Studio still need work. This is because CSG v2 support was completely removed in late 2022.
409+
Parsing union operations done in current-day Studio still need work. This is because CSGv2 support was completely removed in late 2022.
410410

411411
If you need any help, please shoot me an issue on GitHub or a message to an account with some form of 'VisualPlugin' elsewhere.
412412

Source/assets/serialisers/csg/csgphs8.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,14 @@ def decode_clers_symbols(bitreader: Iterator[int]) -> Iterator[CLERS]:
119119
yield CLERS.C
120120
continue
121121

122-
b2 = next(bitreader)
123-
b3 = next(bitreader)
122+
b2 = next(bitreader, None)
123+
if b2 is None:
124+
return
125+
126+
b3 = next(bitreader, None)
127+
if b3 is None:
128+
return
129+
124130
op = (
125131
(b1 * 0b100) +
126132
(b2 * 0b010) +

Source/util/const.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# The `GIT_RELEASE_VERSION` and `ZIPPED_RELEASE_VERSION` lines can change programmatically using a PowerShell script.
22

3-
GIT_RELEASE_VERSION = '''0.66.2'''
3+
GIT_RELEASE_VERSION = '''0.66.3'''
44

5-
ZIPPED_RELEASE_VERSION = '''0.66.1-binaries'''
5+
ZIPPED_RELEASE_VERSION = '''0.66.3-binaries'''
66
ZIPPED_RELEASE_LINK_FORMAT = 'https://github.com/Windows81/Roblox-Freedom-Distribution/releases/download/%s/%s.%s.7z'
77

88
PLACE_IDEN_CONST = 1818

0 commit comments

Comments
 (0)