Skip to content

Commit 29a30a6

Browse files
committed
2026-04-27T0922Z
1 parent 3857f70 commit 29a30a6

4 files changed

Lines changed: 28 additions & 221 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ RFD
1515
**/*.exe
1616

1717
GlobalBasicSettings_13.xml
18+
GlobalSettings_13.xml
1819
AnalysticsSettings.xml
1920
frm.cfg
2021

CHANGELOG.md

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
# 0.65.1
1+
# 0.66.2
22

3-
- Added support for modern CSGv3 unions
4-
- Fixed `--clear_temp_cache` command flag
3+
- feat: support for modern _CSGPHS8_ physics meshes
4+
- fix: default remote resource `rbxmtl-studs.dds` not loading
5+
- fix: properly repaired `--clear_temp_cache` command flag
6+
- build: `zstandard` and `dracopy` now come installed in future releases
7+
8+
# 0.66.{0,1}
9+
10+
- feat!: changed method signatures of `server_core.check_user_allowed` and `server_core.retrieve_default_user_code`
11+
- feat: add GameConfig option `server_core.retrieve_membership_type(id_num, user_code)`
12+
- feat: add `/Game/Badge/HasBadge.ashx` and `/assets/award-badge` endpoints
13+
- feat: support for modern _CSGMDL5_ unions
14+
- fix: disable SSL certificate verification to work around PyInstaller incompatiblity #160
15+
- fix: route `/Asset` and `/Asset/` to existing `/v1/asset`
16+
- fix: persistence `target` not existing on route `/persistence/set`
17+
- fix: repaired `--clear_temp_cache` command flag
18+
- fix: `/marketplace/productinfo` to support all-lowercase `assetid` query param
19+
- fix: route `/Login/Negotiate.ashx` to already-existing `/login/negotiate.ashx`
20+
- build: update link to `sqlite-worker` dependency
21+
- test: add unit test for CSGMDL2's hashing algorithm
22+
- test: add unit test to convert CSGMDL5 to CSGMDL2 format
23+
24+
# 0.65.0
25+
26+
- [feat!](https://github.com/Windows81/Roblox-Freedom-Distribution/discussions/139): moved `./Roblox/v348` to `./Roblox/v347`
27+
- [feat!](https://github.com/Windows81/Roblox-Freedom-Distribution/discussions/130): to address DataStore2 behaviour, ordered data stores no longer collide with unordered data stores of the same name

GlobalSettings_13.xml

Lines changed: 0 additions & 217 deletions
This file was deleted.

Source/assets/material.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def transform_to_id_num(asset_id: str) -> int:
1313
def split_asset_str(asset_id: str) -> None | tuple[str, ...]:
1414
asset_sub = asset_id[len(const.ID_PREFIX):]
1515

16-
# Example: `rbxmtl-wood-diffuse.dds`, `rbxmtl-studs.ds`
16+
# Example: `rbxmtl-wood-diffuse.dds`, `rbxmtl-studs.dds`
1717
sub_pieces = asset_sub.lower().split('-')
1818
if len(sub_pieces) > 2:
1919
return None

0 commit comments

Comments
 (0)