summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkj_sh604 <43.splash@gmail.com>2025-12-21 00:48:23 -0500
committerkj_sh604 <43.splash@gmail.com>2025-12-21 00:48:23 -0500
commit974faff38c246ec68df6e1a7ccb9b71c8570dfe0 (patch)
tree8bb30cb547fa067e8ea1ac2d20ddeca02259e53e
parent556166a0beec3a19064d23a60ea28389c4b61206 (diff)
refactor: multiple fixes
-rw-r--r--README.md4
-rw-r--r--src/main.go5
2 files changed, 6 insertions, 3 deletions
diff --git a/README.md b/README.md
index 97635df..e48d9dd 100644
--- a/README.md
+++ b/README.md
@@ -19,6 +19,7 @@ a color picker inspired by agave, but only with the features I actually used
- go 1.21 or higher
- gtk3 development libraries
+- `gotk3` go bindings
- `xcolor`
## installation
@@ -37,7 +38,8 @@ see `archlinux/README.md` for more details.
```sh
cd src
go mod download
-go build -o ../kjagave main.go
+go mod download github.com/gotk3/gotk3
+go build -o kjagave main.go
```
## running
diff --git a/src/main.go b/src/main.go
index a13ffef..2b0c84a 100644
--- a/src/main.go
+++ b/src/main.go
@@ -342,8 +342,9 @@ func (app *App) onAboutClicked() {
dialog.SetProgramName(appTitle)
dialog.SetVersion(appVersion)
dialog.SetComments("a color picker inspired by agave, but only with the features kj_sh604 actually used")
- dialog.SetAuthors([]string{"kjagave 2025", "kj_sh604"})
- dialog.SetLicense("0BSD")
+ dialog.SetAuthors([]string{"kj_sh604"})
+ dialog.SetLicense("BSD Zero Clause License (0-clause BSD)")
+ dialog.SetLogoIconName("applications-graphics")
dialog.Run()
dialog.Destroy()
}