Vladimir
Vladimir
# Description Minimal fix for missing `WorkingDirectory` for linux and windows. Fixes #3133 ## Type of change Please delete options that are not relevant. - [x] Bug fix (non-breaking change...
### Description v2.7 instoduced `SingleInstanceLock`, but on linux the `SecondInstanceData.WorkingDirectory` is always empty: https://github.com/wailsapp/wails/blob/dc5f0b6e7bc6d21d3eeb88f65b77423e85256fb7/v2/internal/frontend/desktop/linux/single_instance.go#L55-L57 ### To Reproduce ```go func (a *App) secondInstance(data options.SecondInstanceData) { runtime.LogInfof(a.ctx, "%#v", data) } ``` ```sh...
**What is the current behavior:** `StoreWritable.on()` reports `undefined` returned from the reducer. This doesn't look as intended behavior neither from v23 release notes, nor from documentation. > store: undefined is...
Hello! I'm trying to combine this package with a solution from [this answer](https://stackoverflow.com/a/54747682): > ```go > func isFlagPassed(name string) bool { > found := false > flag.Visit(func(f *flag.Flag) { >...
Unexpected output goes from this code: ``` less // lib.less .mixin(@x) { mixed: @x; } .parent { .mixin(42); parent: 37; } .lorem:extend(.parent) { } .ipsum:extend(.parent) { a: b; } .dolor...
Steps to reproduce: 1. Simple demo: http://react-component.github.io/trigger/examples/simple.html 2. placement = bottom left ; stretch = width / winWidth ; trigger = [ click ] 3. Click test area to trigger...
v2.0.0-beta.3 ```go data, err := client.Move(uidset, to).Wait() ``` The resulting `MoveData.DestUIDs` gets fulfilled only when real MOVE executed. https://github.com/emersion/go-imap/blob/ee36cf4658d87d2230b6bde0b0c2177b6b4eff96/imapclient/client.go#L848-L852 In case of fallback workflow COPY+STORE+EXPUNGE it remains `nil`.
### Description 1. When only `EnableFileDrop: true`, every time D'n'D happens an `OnDomReady` is triggered. ``` INF | drop files: []string{"/abs/path/file.txt"} WTF? main.(*App).onFileDrop .../app.go:125 github.com/wailsapp/wails/v2/pkg/runtime.OnFileDrop.func1 github.com/wailsapp/wails/[email protected]/pkg/runtime/draganddrop.go:30 runtime.goexit $GOROOT/src/runtime/asm_amd64.s:1598 INF |...
Implements #182. A package level option variable added as the simpliest way for static app-level setup: ```go import ( "github.com/emersion/go-message" ) func init() { message.DecodeTextAttachments = false } ``` A...
Hello! When a text attachments are presented in a different charset, this code fragment converts all of such attachments. https://github.com/emersion/go-message/blob/f7e55c42f6e9453abbf0a7434051b3e91c4ea8f8/entity.go#L48-L57 This is fine for `inline` parts, but it's not good...