Dmitri Shuralyov

Results 869 comments of Dmitri Shuralyov

I have not done that specifically, but it's quite a normal thing to want to be able to do. I imagine it should be doable. I have added support to...

It does not, because my app is a part of an .app bundle. That is a requirement for Notification Center to work. It's also good because it can have an...

``` bash Applications $ tree ./Instant\ Share.app/ ./Instant\ Share.app/ └── Contents ├── Info.plist ├── MacOS │   └── main └── Resources ├── Icon.icns └── [email protected] ``` `main` is the Go binary.

Let me know how it works. Here's a very minimal (only the entries that are required, nothing extra) `Info.plist` file as reference: ``` XML CFBundleIconFile Icon CFBundleExecutable main CFBundleIdentifier YourAppName...

I think it would be _better_ for the Go community if we could manage to unify the forks somewhat. For example, my fork has some useful general trayhost-related additions, but...

I think being (the only person with push rights) willing to accept pull requests is not enough; I think we'd need to get a couple of willing developers to become...

I have a suggestion for how to make this work. It will be a significant amount of work and require time from everyone involved, but I'm interested if others are...

Cool, that could work. Let's work in PRs and merge after getting a LGTM. Here are the two APIs: http://godoc.org/github.com/shurcooL/trayhost http://godoc.org/github.com/overlordtm/trayhost The most important part is `MenuItem`. My fork has:...

I see, thanks for the answer! > `net`-like implementation of WebSockets for both `js` Just checking, are you familiar with https://github.com/gopherjs/websocket? You can use it if you don't wish to...

Can you please describe how one can run the tests? I've never run them myself because I don't know how.