diff --git a/.gitignore b/.gitignore index fcd8457..a5d839a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2023 David Mosbach +# +# SPDX-License-Identifier: AGPL-3.0-or-later + /dist-newstyle CHANGELOG.md test.json diff --git a/README.md.license b/README.md.license new file mode 100644 index 0000000..008f9f5 --- /dev/null +++ b/README.md.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2023 David Mosbach + +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/app/Export.hs b/app/Export.hs index b8a51c3..694e9b3 100644 --- a/app/Export.hs +++ b/app/Export.hs @@ -1,3 +1,7 @@ +-- SPDX-FileCopyrightText: 2023 David Mosbach +-- +-- SPDX-License-Identifier: AGPL-3.0-or-later + {-# Language OverloadedStrings #-} module Export where diff --git a/app/Index.hs b/app/Index.hs index 73a7fca..9b02cfb 100644 --- a/app/Index.hs +++ b/app/Index.hs @@ -1,3 +1,7 @@ +-- SPDX-FileCopyrightText: 2023 David Mosbach +-- +-- SPDX-License-Identifier: AGPL-3.0-or-later + {-# Language DuplicateRecordFields, NoFieldSelectors, OverloadedRecordDot, diff --git a/app/Main.hs b/app/Main.hs index 65636e8..9592566 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -1,3 +1,7 @@ +-- SPDX-FileCopyrightText: 2023 David Mosbach +-- +-- SPDX-License-Identifier: AGPL-3.0-or-later + module Main where ----------------Imports---------------- diff --git a/app/Workflow.hs b/app/Workflow.hs index 36ebbb8..84bc538 100644 --- a/app/Workflow.hs +++ b/app/Workflow.hs @@ -1,3 +1,7 @@ +-- SPDX-FileCopyrightText: 2023 David Mosbach +-- +-- SPDX-License-Identifier: AGPL-3.0-or-later + {-# Language DuplicateRecordFields, NoFieldSelectors, OverloadedRecordDot, diff --git a/editor.css b/editor.css index e1e5b21..6e7af56 100644 --- a/editor.css +++ b/editor.css @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2023 David Mosbach + * + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + @font-face { font-family: Inter; src: url(fonts/Inter/Inter-VariableFont_slnt\,wght.ttf); diff --git a/editor.html b/editor.html index 8219720..b2746cb 100644 --- a/editor.html +++ b/editor.html @@ -1,3 +1,9 @@ + + Editor diff --git a/editor.js b/editor.js index 3de5bc7..de7395b 100644 --- a/editor.js +++ b/editor.js @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 David Mosbach +// +// SPDX-License-Identifier: AGPL-3.0-or-later + //Theme var darkMode = false; diff --git a/keyboard.js b/keyboard.js index a6ac4b5..ba6be18 100644 --- a/keyboard.js +++ b/keyboard.js @@ -1,4 +1,6 @@ - +// SPDX-FileCopyrightText: 2023 David Mosbach +// +// SPDX-License-Identifier: AGPL-3.0-or-later document.addEventListener('keydown', e => { console.log(e.ctrlKey, e.key); diff --git a/workflow-visualiser.cabal b/workflow-visualiser.cabal index 8ef928a..7e2aacb 100644 --- a/workflow-visualiser.cabal +++ b/workflow-visualiser.cabal @@ -1,3 +1,7 @@ +-- SPDX-FileCopyrightText: 2023 David Mosbach +-- +-- SPDX-License-Identifier: AGPL-3.0-or-later + cabal-version: 2.4 name: workflow-visualiser version: 0.1.0.0 diff --git a/workflow.js b/workflow.js index 597d0f3..53edfb3 100644 --- a/workflow.js +++ b/workflow.js @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 David Mosbach +// +// SPDX-License-Identifier: AGPL-3.0-or-later + class Role { constructor(json) {