Releases: Adventuresmith/dart-dice-parser
Releases · Adventuresmith/dart-dice-parser
v7.0.3
7.0.3
🛠️ Bug fixes
- Previously,
4d6 + 3d6 #s #f
would only count success/failures of the 3d6 rolls, since counting
had higher priority than the plus operation. You could workaround that with parens(4d6 + 3d6) #s #f
In 7.0.3 and later, the counting operations now have the lowest priority.
7.0.2
- remove demo code accidentally added
7.0.1
- remove direct dependency on
meta
v7.0.0
7.0.0
⚠️ ⚠️ Breaking changes ⚠️ ⚠️
The roll results have changed significantly. Now, there's a RollSummary object that includes
a tree of results from evaluating the dice expression. See the README for examples of how to
traverse the graph.
📈 Enhancements
- new API for registering roll listeners. see README.md
- analysis cleanup and dep upgrades
🛠️ Bug fixes
- propagate the roll metadata up to the top of the graph