From 68fda13d0afd2d8007229b06f7f58fe2350bbe40 Mon Sep 17 00:00:00 2001 From: DaanSelen Date: Thu, 29 Jan 2026 11:23:04 +0100 Subject: [PATCH] chore: rename application (again) --- .gitea/workflows/cross-compile.yaml | 8 ++++---- go.mod | 2 +- src/main.go | 10 +++++----- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/cross-compile.yaml b/.gitea/workflows/cross-compile.yaml index f8660d3..2ed7ab4 100644 --- a/.gitea/workflows/cross-compile.yaml +++ b/.gitea/workflows/cross-compile.yaml @@ -43,14 +43,14 @@ jobs: export CXX=g++ export GOOS=linux export GOARCH=amd64 - go build -o ./pkcs-generator ./src + go build -o ./runesmith ./src - name: upload the building actifacts uses: actions/upload-artifact@v3 with: name: package-linux64 path: | - ./pkcs-generator + ./runesmith retention-days: 7 overwrite: true @@ -97,13 +97,13 @@ jobs: export CGO_LDFLAGS="-static-libgcc -static-libstdc++" go-winres simply --icon ./src/icon.png --manifest gui mv *.syso ./src - go build -o ./pkcs-generator.exe -ldflags -H=windowsgui ./src + go build -o ./runesmith.exe -ldflags -H=windowsgui ./src - name: upload the building actifacts uses: actions/upload-artifact@v3 with: name: package-win64 path: | - ./pkcs-generator.exe + ./runesmith.exe retention-days: 7 overwrite: true diff --git a/go.mod b/go.mod index 97d8362..17a89dd 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module pkcs-generator +module runesmith go 1.25.5 diff --git a/src/main.go b/src/main.go index 4e8af1a..8d4092e 100644 --- a/src/main.go +++ b/src/main.go @@ -7,7 +7,7 @@ import ( "log" "os" "path/filepath" - certpair "pkcs-generator/src/modules/certpairs" + certpair "runesmith/src/modules/certpairs" "slices" "fyne.io/fyne/v2" @@ -29,10 +29,10 @@ var ( ) func main() { - a := app.NewWithID("nl.systemec.pkcs-generator") + a := app.NewWithID("nl.systemec.runesmith") a.Settings().SetTheme(theme.DefaultTheme()) - w := a.NewWindow("PKCS-Generator") + w := a.NewWindow("RuneSmith") w.Resize(windowSize) var keyPath, certPath, caIssuer string @@ -80,7 +80,7 @@ func main() { }) keyWide := container.NewGridWrap( - fyne.NewSize(400, 50), + fyne.NewSize(300, 50), keyBtn, ) @@ -118,7 +118,7 @@ func main() { }) certWide := container.NewGridWrap( - fyne.NewSize(400, 50), + fyne.NewSize(300, 50), certBtn, )