Skip to content

Commit

Permalink
Merge branch 'main' into feature/shootout/all-inline
Browse files Browse the repository at this point in the history
  • Loading branch information
machinshin committed Sep 2, 2022
2 parents 1f69c53 + a307163 commit cf1cb12
Show file tree
Hide file tree
Showing 21 changed files with 230 additions and 135 deletions.
32 changes: 31 additions & 1 deletion CHANGELOG.long.md
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

1030 merges; 5 releases
1032 merges; 5 releases



Expand All @@ -18,6 +18,36 @@ Published tags:



 

 

## [Untagged] - 9/1/2022 6:08:10 PM

Commit [1f69c53f4d3851f205896c446c65e9ecdbf26bbc](https://github.com/StoneCypher/jssm/commit/1f69c53f4d3851f205896c446c65e9ecdbf26bbc)

Author: `Vat Raghavan <machinshin@gmail.com>`

* all example links are inline-d




&nbsp;

&nbsp;

## [Untagged] - 9/1/2022 6:04:35 PM

Commit [a307163e979abf8af53e4936f972c017f91198ba](https://github.com/StoneCypher/jssm/commit/a307163e979abf8af53e4936f972c017f91198ba)

Author: `John Haugeland <stonecypher@gmail.com>`

* add spurious single type return to theme getter to agree with the setter type, fixes StoneCypher/fsl#1189




&nbsp;

&nbsp;
Expand Down
64 changes: 32 additions & 32 deletions CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

1030 merges; 5 releases; Changlogging the last 10 commits; Full changelog at [CHANGELOG.long.md](CHANGELOG.long.md)
1032 merges; 5 releases; Changlogging the last 10 commits; Full changelog at [CHANGELOG.long.md](CHANGELOG.long.md)



Expand All @@ -18,6 +18,36 @@ Published tags:



&nbsp;

&nbsp;

## [Untagged] - 9/1/2022 6:08:10 PM

Commit [1f69c53f4d3851f205896c446c65e9ecdbf26bbc](https://github.com/StoneCypher/jssm/commit/1f69c53f4d3851f205896c446c65e9ecdbf26bbc)

Author: `Vat Raghavan <machinshin@gmail.com>`

* all example links are inline-d




&nbsp;

&nbsp;

## [Untagged] - 9/1/2022 6:04:35 PM

Commit [a307163e979abf8af53e4936f972c017f91198ba](https://github.com/StoneCypher/jssm/commit/a307163e979abf8af53e4936f972c017f91198ba)

Author: `John Haugeland <stonecypher@gmail.com>`

* add spurious single type return to theme getter to agree with the setter type, fixes StoneCypher/fsl#1189




&nbsp;

&nbsp;
Expand Down Expand Up @@ -142,34 +172,4 @@ Author: `Vat Raghavan <machinshin@gmail.com>`

Merges [9e18022, 7e48176]

* WIP on feature/new-readme: 9e18022 more-readable README




&nbsp;

&nbsp;

## [Untagged] - 9/1/2022 4:37:55 PM

Commit [7e481765d45ab7950adabfc11d98b866baa71ec5](https://github.com/StoneCypher/jssm/commit/7e481765d45ab7950adabfc11d98b866baa71ec5)

Author: `Vat Raghavan <machinshin@gmail.com>`

* index on feature/new-readme: 9e18022 more-readable README




&nbsp;

&nbsp;

## [Untagged] - 9/1/2022 4:17:04 PM

Commit [da69e65ee5a1567825b011d3e17655c2dbd6261d](https://github.com/StoneCypher/jssm/commit/da69e65ee5a1567825b011d3e17655c2dbd6261d)

Author: `John Haugeland <stonecypher@gmail.com>`

* re-enable stoch testing, fixes StoneCypher/fsl#1187; replace .replaceAll with .replace, fixes StoneCypher/fsl#1188
* WIP on feature/new-readme: 9e18022 more-readable README
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -18,7 +18,7 @@ Please edit the file it's derived from, instead: `./src/md/readme_base.md`
* Generated for version 5.82.5 at 9/1/2022, 6:07:12 PM
* Generated for version 5.82.5 at 9/1/2022, 6:40:00 PM
-->
# jssm
Expand Down
2 changes: 1 addition & 1 deletion dist/es6/jssm.d.ts
Expand Up @@ -626,7 +626,7 @@ declare class Machine<mDT> {
list_named_transitions(): Map<StateType, number>;
list_actions(): Array<StateType>;
all_themes(): FslTheme[];
get themes(): FslTheme[];
get themes(): FslTheme | FslTheme[];
set themes(to: FslTheme | FslTheme[]);
flow(): FslDirection;
get_transition_by_state_names(from: StateType, to: StateType): number;
Expand Down
3 changes: 3 additions & 0 deletions dist/es6/jssm.js
Expand Up @@ -1393,6 +1393,9 @@ class Machine {
all_themes() {
return [...theme_mapping.keys()]; // constructor sets this to "default" otherwise
}
// This will always return an array of FSL themes; the reason we spuriously
// add the single type is that the setter and getter need matching accept/return
// types, and the setter can take both as a convenience
get themes() {
return this._themes; // constructor sets this to "default" otherwise
}
Expand Down
3 changes: 3 additions & 0 deletions dist/jssm.es5.cjs.nonmin.js
Expand Up @@ -20616,6 +20616,9 @@ class Machine {
all_themes() {
return [...theme_mapping.keys()]; // constructor sets this to "default" otherwise
}
// This will always return an array of FSL themes; the reason we spuriously
// add the single type is that the setter and getter need matching accept/return
// types, and the setter can take both as a convenience
get themes() {
return this._themes; // constructor sets this to "default" otherwise
}
Expand Down
3 changes: 3 additions & 0 deletions dist/jssm.es5.iife.nonmin.js
Expand Up @@ -20615,6 +20615,9 @@ var jssm = (function (exports) {
all_themes() {
return [...theme_mapping.keys()]; // constructor sets this to "default" otherwise
}
// This will always return an array of FSL themes; the reason we spuriously
// add the single type is that the setter and getter need matching accept/return
// types, and the setter can take both as a convenience
get themes() {
return this._themes; // constructor sets this to "default" otherwise
}
Expand Down
78 changes: 39 additions & 39 deletions docs/docs/classes/jssm.Machine.html

Large diffs are not rendered by default.

0 comments on commit cf1cb12

Please sign in to comment.