Skip to content
Merged
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
861 changes: 672 additions & 189 deletions automata.js

Large diffs are not rendered by default.

16 changes: 15 additions & 1 deletion changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
07-02-2015 *1.1.0*
------------------

Major changes.

* Session.dispatch and Session.processMessage dissapear in favor of Session.consume
* Session.consume accepts a callback function triggered when the FDA ends executing its message queue.
* All examples are working.
* Added methods newGuardException and newSessionListener to the module object.
* Added documentation for all object variables.
* Added doclet annotations.
* Checked readme.md
* Guards must throw a GuardException and not any exception. This exception can be created by calling module.newGuardException.

04-02-2013 *1.0.7*
------------------

Expand Down Expand Up @@ -26,7 +40,7 @@
transition postGuard: transition.event+"_postGuard"

* Top level FSM now have correct name. The one they're registered with.
* Fixed a bug that didn't passed properly the state on FSM enter to callbacks.
* Fixed a bug that didn't pass properly the state on FSM enter to callbacks.

04-15-2012 *1.0.4*
------------------
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "automata",
"version": "1.0.7",
"version": "1.1.0",
"main": "automata",
"keywords": [
"DFA",
"state machine",
"automata"
],
"author": "hyperandroid <hyperandroid@gmail.com> (http://labs.hyperandroid.com)",
"description": "Automata is a Deterministic Finite State Machine automata framework featuring: a JSON based automata creation, timed transitions, sub-states, guards, FSM registry, etc.",
"description": "Automata is a Deterministic Finite State Machine automata framework featuring: a JSON based automata definition, timed transitions, sub-states, guards, FSM registry, etc.",
"repository": {
"type": "git",
"url": "git://github.com/hyperandroid/Automata.git"
Expand Down
Loading