File Details
murilloeconomy-1.0.3.jar
- R
- Feb 24, 2026
- 295.02 KB
- 6
- 1.21.10
- Fabric
File Name
murilloeconomy-1.0.3.jar
Supported Versions
- 1.21.10
Curse Maven Snippet
## v1.0.3 - ServerShop Search Upgrade
### Added
- Advanced ServerShop search pipeline with normalization (lowercase + accent removal), tokenization, scoring, and ranked sorting.
- Prefix token matching (`pei coz ass` -> `peixe cozido assado`).
- Substring matching via KMP-based search.
- Real fuzzy matching via Levenshtein distance (Wagner-Fischer with max distance <= 2).
- N-gram matching (bigrams) to improve typo tolerance.
- Acronym/initialism matching (`PCA` -> `peixe cozido assado`).
- Ordered token matching (`pei ass` matches while preserving order intent).
- Aho-Corasick matcher for multi-token matching in linear scan over item text.
- Search suggestions/history UI in ServerShop (YouTube-like recent searches, clickable).
- Persistent client-side ServerShop search history store in `config/murilloeconomy/server_shop_search_history.json`.
- History management controls in suggestions (remove entry with `x`).
### Improved
- Relevance ranking with weighted match scores:
- Exact: 100
- Prefix: 80
- Ordered tokens: 75
- Acronym: 70
- Substring: 60
- N-gram: 50
- Fuzzy: 40
- Search text is preserved between ServerShop screen openings.
- Increased visible recent-search suggestions to 5 entries.