Skip to content
Closed
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
7 changes: 2 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
### Mods Updated

- mediatransport: 1.1.1+1.20.1
- Hexic: 1.4.6

## `2.5.1` - 2025-11-13

### Changed

- Added a length limit of 512 characters for pattern angle signatures.
- Added a length limit of 512 characters for pattern angle signatures, and disabled Hexic's Suffering pattern.

### Fixed

- Fixed older versions of the Book of Hexxy being overwritten by redirect loops.

### Removed

- Removed Hexic due to GPL license, and because malicious code was included in the mod.

### Mods Updated

- Hexal: 0.3.1
Expand Down
7 changes: 7 additions & 0 deletions data/src/HexBug/data/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,13 @@ def _style_text(text: FormatTree, mod: ModInfo, plain: bool = False):
repo=repo,
commit=commit,
)
case "example.com" if mod_id == "hexic": # :/
_, author, repo, commit = asset_url.parts
source = CodebergSourceInfo(
author=CodebergUserInfo(author),
repo=repo,
commit=commit,
)
case _:
raise ValueError(
f"Unhandled asset url host for {mod_id}: {asset_url}"
Expand Down
5 changes: 4 additions & 1 deletion data/src/HexBug/data/static_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,10 @@
}

# append the mod's name to the pattern's name
DISAMBIGUATED_PATTERNS: set[ResourceLocation] = set()
DISAMBIGUATED_PATTERNS: set[ResourceLocation] = {
ResourceLocation("moreiotas", "matrix/make"),
ResourceLocation("hexstruction", "transformations"),
}

DISABLED_PAGES: set[str] = set()

Expand Down
4 changes: 2 additions & 2 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading