fixed
Some checks failed
Build software / prepare (push) Failing after 4m4s

This commit is contained in:
2024-07-06 12:08:08 +02:00
parent cf4ce9823f
commit 665ff82548
18 changed files with 134 additions and 130 deletions

2
.gitea/workflows/build.yaml Executable file → Normal file
View File

@@ -31,7 +31,7 @@ jobs:
- name: Building ${{ github.repository }}
run: |
source ~/.profile
$GOBIN/go/bin/wails build
$GOPATH/bin/wails build
- run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."

0
Taskfile.yml Executable file → Normal file
View File

0
frontend/src/App.svelte Executable file → Normal file
View File

0
frontend/src/components/Animation.svelte Executable file → Normal file
View File

0
frontend/src/components/Devices.svelte Executable file → Normal file
View File

0
frontend/src/components/GeneralConsole.svelte Executable file → Normal file
View File

0
frontend/src/components/NavigationBar.svelte Executable file → Normal file
View File

0
frontend/src/components/Preparation.svelte Executable file → Normal file
View File

0
frontend/src/components/RoundIconButton.svelte Executable file → Normal file
View File

0
frontend/src/components/Settings.svelte Executable file → Normal file
View File

0
frontend/src/components/Show.svelte Executable file → Normal file
View File

0
frontend/src/components/Toggle.svelte Executable file → Normal file
View File

0
frontend/src/lang/en.json Executable file → Normal file
View File

0
frontend/src/stores.js Executable file → Normal file
View File

0
frontend/src/style.css Executable file → Normal file
View File

4
go.mod Executable file → Normal file
View File

@@ -1,6 +1,8 @@
module changeme
go 1.20
go 1.21
toolchain go1.21.4
require github.com/wailsapp/wails/v2 v2.9.1

2
go.sum Executable file → Normal file
View File

@@ -49,6 +49,7 @@ github.com/samber/lo v1.38.1/go.mod h1:+m/ZKRl6ClXCE2Lgf3MsQlWfh4bn1bz6CXEOxnEXn
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
github.com/tkrajina/go-reflector v0.5.6 h1:hKQ0gyocG7vgMD2M3dRlYN6WBBOmdoOzJ6njQSepKdE=
github.com/tkrajina/go-reflector v0.5.6/go.mod h1:ECbqLgccecY5kPmPmXg1MrHW585yMcDkVl6IvJe64T4=
github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
@@ -90,3 +91,4 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0
main.go Executable file → Normal file
View File