From a0389563cd667e563881fe7b36ae26d8c0374569 Mon Sep 17 00:00:00 2001 From: Minteck Date: Mon, 14 Feb 2022 14:32:15 +0100 Subject: Update copyright --- .idea/copyright/MIT.xml | 6 ++++++ .idea/copyright/profiles_settings.xml | 7 +++++++ htdocs/public/assets/css/fonts.css | 25 +++++++++++++++++++++++++ htdocs/public/assets/css/main.css | 25 +++++++++++++++++++++++++ htdocs/public/assets/css/rainbow.css | 25 +++++++++++++++++++++++++ htdocs/public/assets/icons/about.svg | 25 +++++++++++++++++++++++++ htdocs/public/assets/icons/contact.svg | 25 +++++++++++++++++++++++++ htdocs/public/assets/icons/project.svg | 25 +++++++++++++++++++++++++ htdocs/public/assets/icons/projects.svg | 25 +++++++++++++++++++++++++ htdocs/public/assets/logo.svg | 27 ++++++++++++++++++++++++++- index.js | 25 +++++++++++++++++++++++++ server/check.js | 25 +++++++++++++++++++++++++ server/commands.js | 25 +++++++++++++++++++++++++ server/core.js | 25 +++++++++++++++++++++++++ server/http.js | 25 +++++++++++++++++++++++++ server/log.js | 25 +++++++++++++++++++++++++ server/version.js | 25 +++++++++++++++++++++++++ 17 files changed, 389 insertions(+), 1 deletion(-) create mode 100644 .idea/copyright/MIT.xml create mode 100644 .idea/copyright/profiles_settings.xml diff --git a/.idea/copyright/MIT.xml b/.idea/copyright/MIT.xml new file mode 100644 index 0000000..8993a3a --- /dev/null +++ b/.idea/copyright/MIT.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..c1e2ebc --- /dev/null +++ b/.idea/copyright/profiles_settings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/htdocs/public/assets/css/fonts.css b/htdocs/public/assets/css/fonts.css index a7fc4d5..55f5bc3 100644 --- a/htdocs/public/assets/css/fonts.css +++ b/htdocs/public/assets/css/fonts.css @@ -1,3 +1,28 @@ +/* + * MIT License + * + * Copyright (c) 2022- Minteck + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * + */ + @font-face { font-family: 'Raleway'; src: url('/assets/fonts/new/regular.ttf'); diff --git a/htdocs/public/assets/css/main.css b/htdocs/public/assets/css/main.css index 68fca27..7875b31 100644 --- a/htdocs/public/assets/css/main.css +++ b/htdocs/public/assets/css/main.css @@ -1,3 +1,28 @@ +/* + * MIT License + * + * Copyright (c) 2022- Minteck + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * + */ + html, body { height: 100%; width: 100%; diff --git a/htdocs/public/assets/css/rainbow.css b/htdocs/public/assets/css/rainbow.css index d9ec266..cbbdd96 100644 --- a/htdocs/public/assets/css/rainbow.css +++ b/htdocs/public/assets/css/rainbow.css @@ -1,3 +1,28 @@ +/* + * MIT License + * + * Copyright (c) 2022- Minteck + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * + */ + :root { --rainbow-1: rgba(0, 116, 10, 1); --rainbow-2: rgba(97, 116, 0, 1); diff --git a/htdocs/public/assets/icons/about.svg b/htdocs/public/assets/icons/about.svg index 6241d20..e6fbd6a 100644 --- a/htdocs/public/assets/icons/about.svg +++ b/htdocs/public/assets/icons/about.svg @@ -1,3 +1,28 @@ + + diff --git a/htdocs/public/assets/icons/contact.svg b/htdocs/public/assets/icons/contact.svg index c8f7569..5ea90f8 100644 --- a/htdocs/public/assets/icons/contact.svg +++ b/htdocs/public/assets/icons/contact.svg @@ -1,3 +1,28 @@ + + diff --git a/htdocs/public/assets/icons/project.svg b/htdocs/public/assets/icons/project.svg index a5f25a4..b1e687c 100644 --- a/htdocs/public/assets/icons/project.svg +++ b/htdocs/public/assets/icons/project.svg @@ -1,3 +1,28 @@ + + diff --git a/htdocs/public/assets/icons/projects.svg b/htdocs/public/assets/icons/projects.svg index b8a0057..29c6cea 100644 --- a/htdocs/public/assets/icons/projects.svg +++ b/htdocs/public/assets/icons/projects.svg @@ -1,3 +1,28 @@ + + diff --git a/htdocs/public/assets/logo.svg b/htdocs/public/assets/logo.svg index d6af8a6..7307585 100644 --- a/htdocs/public/assets/logo.svg +++ b/htdocs/public/assets/logo.svg @@ -1,6 +1,31 @@ + + -