commit bcb2c22c5dda7a4a68a873957d7968022a147ad8 Author: beefhavers <> Date: Tue Feb 11 21:11:50 2025 -0500 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..026b325 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +BL_proxy/ +*.blend1 diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..93b027d --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,59 @@ +pipeline { + agent any + + environment { + JENKINSONGITEA=credentials('d0e86441-2157-405f-8539-a9a9010c6ecf') + JENKINSONMATRIXTOKEN=credentials('17d18fd7-29eb-4957-9532-ce42aaa9b4ec') + MATRIX_ROOMID="//todo" + GITEA_PROJECT="https://gitea.arg.rip/beefhavers/morrowind" + } + stages { + stage('meta: avatar'){ + when { changeset "meta/avatar.png"} + steps { + script{ + env.avatar=sh(returnStdout: true, script: "base64 meta/avatar.png"); + //to gitea + sh(returnStdout: true, script: """ + curl -X 'POST' \ + 'https://gitea.arg.rip/api/v1/repos/beefhavers/morrowind/avatar' \ + -H 'accept: application/json' \ + -H 'Authorization: token ${env.JENKINSONGITEA}' \ + -H 'Content-Type: application/json' \ + -d '{ + "image": "${env.avatar}" + }' + """) + + //to matrix + env.avatarMXC=sh(returnStdout: true, script: """ + curl 'https://matrix.server/_matrix/media/v3/upload?filename=morrowind-avatar.png' \ + -X 'POST' \ + -H 'authorization: Bearer ${env.JENKINSONMATRIXTOKEN}' \ + -H 'Content-Type: image/png' \ + --compressed \ + --data-binary @meta/avatar.png \ + | jq .content_uri + """).trim + + sh(returnStdout: true, script: """ + curl -X 'PUT' \ + 'https://greyn.club:8448/_matrix/client/v3/rooms/${env.MATRIX_ROOMID}/state/m.room.avatar' \ + -H 'accept: application/json' \ + -H 'authorization: Bearer ${env.JENKINSONMATRIXTOKEN}' \ + -H 'Content-Type: application/json' \ + -d '{ + "url": "${env.avatarMXC}" + }' + """) + } + } + } + stage('credits'){ + when { changeset "script artifacts/credits.txt"} + steps { + sh "/home/adam/iHateThis.sh morrowind" + } + } + } +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..28cf902 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# morrowind + +morrowind is the greatest game ever. The ending of the words is almsivi. \ No newline at end of file diff --git a/Sounds/VO/.gitignore b/Sounds/VO/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/cards/note0.png b/cards/note0.png new file mode 100644 index 0000000..8ed5e65 Binary files /dev/null and b/cards/note0.png differ diff --git a/cards/tc0.png b/cards/tc0.png new file mode 100644 index 0000000..3be09f3 Binary files /dev/null and b/cards/tc0.png differ diff --git a/credits/.gitignore b/credits/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/meta/.gitignore b/meta/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/script artifacts/credits.txt b/script artifacts/credits.txt new file mode 100644 index 0000000..e69de29 diff --git a/script artifacts/pronunciation guide.txt b/script artifacts/pronunciation guide.txt new file mode 100644 index 0000000..e69de29 diff --git a/script artifacts/script.md b/script artifacts/script.md new file mode 100644 index 0000000..011dc2a --- /dev/null +++ b/script artifacts/script.md @@ -0,0 +1,7 @@ +# morrowind + +incitement + +## section + +text \ No newline at end of file diff --git a/video.blend b/video.blend new file mode 100644 index 0000000..b55fd98 Binary files /dev/null and b/video.blend differ diff --git a/videos/.gitignore b/videos/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/videos/a roll/.gitignore b/videos/a roll/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/videos/stock footage/.gitignore b/videos/stock footage/.gitignore new file mode 100644 index 0000000..e69de29