From cbcea7a5732ff88e32d977c00788f18baa8b38a8 Mon Sep 17 00:00:00 2001 From: Quaternions <krakow20@gmail.com> Date: Mon, 10 Mar 2025 17:16:05 -0700 Subject: [PATCH] include assets with git lfs and cringe license --- .gitattributes | 2 ++ .gitignore | 1 - LICENSE | 23 ----------------------- README.md | 1 + assets/LICENSE | 8 ++++++++ assets/README.md | 1 + assets/bg.mp4 | 3 +++ assets/logo.png | 3 +++ index.html | 32 +++++++++++++++++++++++++++++++- 9 files changed, 49 insertions(+), 25 deletions(-) create mode 100644 .gitattributes delete mode 100644 .gitignore delete mode 100644 LICENSE create mode 100644 README.md create mode 100644 assets/LICENSE create mode 100644 assets/README.md create mode 100644 assets/bg.mp4 create mode 100644 assets/logo.png diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9927080 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +assets/*.mp4 filter=lfs diff=lfs merge=lfs -text +assets/*.png filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore deleted file mode 100644 index d93aea1..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/assets diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 468cd79..0000000 --- a/LICENSE +++ /dev/null @@ -1,23 +0,0 @@ -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. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..8b090b8 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +The file `index.html` is licensed separately from the files in `assets`. diff --git a/assets/LICENSE b/assets/LICENSE new file mode 100644 index 0000000..d770671 --- /dev/null +++ b/assets/LICENSE @@ -0,0 +1,8 @@ +/******************************************************* +* Copyright (C) 2023-2025 Rhys Lloyd <krakow20@gmail.com> +* +* This folder is part of the StrafesNET web services. +* +* StrafesNET can not be copied and/or distributed +* without the express permission of Rhys Lloyd +*******************************************************/ diff --git a/assets/README.md b/assets/README.md new file mode 100644 index 0000000..0e6a9d8 --- /dev/null +++ b/assets/README.md @@ -0,0 +1 @@ +The files in the `assets` folder are excluded from the MIT License, and are instead under a sole proprietor license. diff --git a/assets/bg.mp4 b/assets/bg.mp4 new file mode 100644 index 0000000..e9e3a88 --- /dev/null +++ b/assets/bg.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74ec753d4ac3ccdd4ef7b084456ba9f6cbce2cd147d9fd028174144dda36a54b +size 1951849 diff --git a/assets/logo.png b/assets/logo.png new file mode 100644 index 0000000..8c18d0f --- /dev/null +++ b/assets/logo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f73909afcb8b96b25d2ee3d0fde9577638783c8bcf686d3622d0dd0c3b45b89 +size 15679 diff --git a/index.html b/index.html index 2a4c316..13d7d48 100644 --- a/index.html +++ b/index.html @@ -1,3 +1,33 @@ +<!-- The MIT license applies only to this file --> + +<!-- MIT License + +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. + +--> + <!DOCTYPE html> <html lang="en"> <head> @@ -144,7 +174,7 @@ <!-- Video Background with Blur --> <div class="video-container"> <video autoplay muted loop id="video-background"> - <source src="assets/mh.mp4" type="video/mp4"> + <source src="assets/bg.mp4" type="video/mp4"> Your browser does not support the video tag. </video> </div>