| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2025-11-28 | 579 Bytes | |
| v0.48.0 source code.tar.gz | 2025-11-28 | 79.8 kB | |
| v0.48.0 source code.zip | 2025-11-28 | 105.1 kB | |
| Totals: 3 Items | 185.5 kB | 0 | |
Features
- Add
@matchfunction for conditional expression evaluation. - Add support for multiple conditions in
@matchfunction. (#137 by @xuelu-kylin).
css
@content: @match(
@i % 15 = 0, FizzBuzz,
@i % 3 = 0, Fizz,
@i % 5 = 0, Buzz,
@i
)
- Enhance
@cellselector to support random keyword. ```css @cell(random) { / same as @random {} / }
@cell(random 3) { / same as @random(3) {} / } ```
Fixes
- Fix rendering and canvas caching in shaders background.
- Fix seed generation again.