Skip to content

Commit

Permalink
Merge branch 'jpv/dev3' of github.com:BeethovensWerkstatt/facsimile-e…
Browse files Browse the repository at this point in the history
…xplorer into jpv/dev3
  • Loading branch information
Jan-Peter Voigt committed Oct 14, 2024
2 parents ab73eef + 5c5537f commit bc1ad9c
Show file tree
Hide file tree
Showing 24 changed files with 4,360 additions and 156 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
documentation/
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ module.exports = {
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
}
},
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ pnpm-debug.log*
*.njsproj
*.sln
*.sw?
*~
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3"

services:
front:
build: nginx-ghcred
Expand Down
2 changes: 0 additions & 2 deletions docker-compose_static.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3"

services:
fx:
build: .
Expand Down
735 changes: 735 additions & 0 deletions documentation/GUI-DFA.html

Large diffs are not rendered by default.

42 changes: 42 additions & 0 deletions documentation/GUI-DFA.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# States of the GUI

```{dot}
digraph {
rankdir=LR;
node [label="A: ----",style=filled,color=blue,fontcolor=white] a;
node [label="B: W---",color=yellow,fontcolor=black] b;
node [label="C: WF--"] c;
node [label="D: WFD-"] d;
node [label="E: WFDA"] e;
node [shape=record];
node [label="menu | 1: select auto trans \n 2: trans wo anno",
color=green] m1;
node [label="menu | 1: select auto trans \n 2: trans wo anno \n 3: add shape to diplo \n 4: adjust function"] m2;
node [label="WZ"color=white] aWZb;
node [label="WZ"color=white] cWZb;
node [label="WZ"color=white] dWZb;
node [label="WZ"color=white] eWZb;
node [label="FX"color=white] aFXm1;
node [label="FX"color=white] bFXm1;
node [label="FX"color=white] eFXm2;
node [label="AT"color=white] cATe;
node [label="\N"];
edge [len=3] a -> aWZb -> b;
edge [] c -> cWZb -> b;
edge [] d -> dWZb -> b;
edge [] e -> eWZb -> b;
edge [] a -> aFXm1 -> m1; b -> bFXm1 -> m1;
edge [label=1] m1 -> c;
edge [label=2] m1 -> d;
edge [] c -> cATe -> e;
edge [] e -> eFXm2 -> m2
edge [label=1] m2 -> c;
edge [label=2] m2 -> d;
edge [label=3] m2 -> e;
edge [label=4] m2 -> e;
}
```

Loading

0 comments on commit bc1ad9c

Please sign in to comment.