-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'jpv/dev3' of github.com:BeethovensWerkstatt/facsimile-e…
…xplorer into jpv/dev3
- Loading branch information
Showing
24 changed files
with
4,360 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
documentation/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,4 @@ pnpm-debug.log* | |
*.njsproj | ||
*.sln | ||
*.sw? | ||
*~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
version: "3" | ||
|
||
services: | ||
front: | ||
build: nginx-ghcred | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
version: "3" | ||
|
||
services: | ||
fx: | ||
build: . | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
``` | ||
|
Oops, something went wrong.