Peter Carroll

Results 24 comments of Peter Carroll
trafficstars

I found a solution. It is a symbol conflict between wails and the github.com/energye/systray library. As a workaround, I renamed AppDelegate to ApDelegate in `github.com/wailsapp/wails/[email protected]/internal/frontend/desktop/darwin/ AppDelegate.h, AppDelegate.m, Application.m` That fixed...

It works for me. As long as I don't refresh the package. Otherwise, I will have to make the change again. My procedure was: - read the log and find...

The renaming technique seems to be working quite reliably. I load my other package that conflicts (it's smaller), and do a global search and replace "AppDelegate" to "ApDelegate". Then I...

Interesting. How would I backport? fork it and snake the changes on my copy? *Peter Carroll* ***@***.*** https://bluefriday.ca On Mon, Oct 16, 2023 at 4:04 PM Lea Anthony ***@***.***> wrote:...

I figured this much out... ``` func renderTemplate(w http.ResponseWriter, templateName string, data map[string]interface{}) { tBox, err := rice.FindBox("../templates") if err != nil { fmt.Println(err) } tLayout, err := tBox.String("layout.gohtml") if...

Were you ever able to resolve this issue?

I think I figured it out using `github.com/hectane/go-acl` ``` import "github.com/hectane/go-acl" func server() error { server, err := npipe.Listen(pipeName) if err != nil { return fmt.Errorf("error creating pipe listener: %w",...

What os and architecture are you using? i.e. `cat /etc/os-release`

Interesting... I had not tested on Debian 12 as 11 was current when I first wrote this... I think I should test. The original target was RaspberryPiOS. The Debian control...

I just uploaded v0.1.3 with the PostUp and PreDown added. The error on Debian 12 is related to some permissions specific to that distro. It should be good now. Please...