5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-07 00:02:39 +08:00
This commit is contained in:
Lea Anthony 2025-04-26 12:40:35 +10:00
parent 0c14b208b3
commit 3a72dd6a0d
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405
2 changed files with 43 additions and 40 deletions

View File

@ -4,45 +4,45 @@ This document is for tracking the status of the v3-alpha branch in readiness for
## Examples ## Examples
| Example | Linux | Windows | macOS | | Example | Linux | Windows | macOS |
|--------------------|-------|--------------------------------------------------|-------| |--------------------|-------|--------------------------------------------------|-------------------------------------------------------|
| badge | | ✅ | | | badge | | ✅ | |
| binding | | ✅ | | | binding | | ✅ | |
| cancel-async | | ✅ | | | cancel-async | | ✅ | |
| cancel-chaining | | ✅ | | | cancel-chaining | | ✅ | |
| clipboard | | ✅ | | | clipboard | | ✅ | |
| context-menus | | ✅ | 🚫 panic | | context-menus | | ✅ | 🚫 panic |
| dialogs | | ⚠️ custom icon not working | ⚠️ | | dialogs | | ⚠️ custom icon not working | ⚠️ |
| dialogs-basic | | ⚠️ cancel crashes the app | | | dialogs-basic | | ⚠️ cancel crashes the app | |
| drag-n-drop | | ✅ | | | drag-n-drop | | ✅ | |
| environment | | ✅ | | | environment | | ✅ | |
| events | | ✅ | | | events | | ✅ | |
| file-association | | ✅ | | | file-association | | ✅ | |
| frameless | | ✅ | ⚠️ minimise for 3 not working | | frameless | | ✅ | ⚠️ minimise for 3 not working |
| gin-example | | ✅ | | | gin-example | | ✅ | |
| gin-routing | | ✅ | ⚠️ cant see difference from gin-example (copy/paste?) | | gin-routing | | ✅ | ⚠️ cant see difference from gin-example (copy/paste?) |
| gin-service | | ✅ | ⚠️ half buttons does nothing? ( getuserbyid ) | | gin-service | | ✅ | ⚠️ half buttons does nothing? ( getuserbyid ) |
| html-dnd-api | | 🚫 | | | html-dnd-api | | 🚫 | |
| ignore-mouse | | ✅ | | | ignore-mouse | | ✅ | |
| keybindings | | ✅ | | | keybindings | | ✅ | |
| menu | | ⚠️ Hide/Unhide issue | | | menu | | ⚠️ Hide/Unhide issue | |
| notifications | | ✅ | ⚠️ nothing happens on button click | | notifications | | ✅ | ⚠️ nothing happens on button click |
| panic-handling | | ✅ | | | panic-handling | | ✅ | |
| plain | | ✅ | | | plain | | ✅ | |
| raw-message | | ✅ | | | raw-message | | ✅ | |
| screen | | ✅ | ⚠️ slider bubble drags window | | screen | | ✅ | ⚠️ slider bubble drags window |
| services | | ⚠️ KV needs refreshing after save | ⚠️ update kv doesnt updates view on update value | | services | | ⚠️ KV needs refreshing after save | ⚠️ update kv doesnt updates view on update value |
| show-macos-toolbar | | | | | show-macos-toolbar | | | |
| single-instance | | ✅ | | | single-instance | | ✅ | |
| systray-basic | | ✅ | | | systray-basic | | ✅ | |
| systray-custom | | ✅ | | | systray-custom | | ✅ | |
| systray-menu | | ⚠️ Check systray.Hide/Show | | | systray-menu | | ⚠️ Check systray.Hide/Show | |
| video | | ✅ | | | video | | ✅ | |
| window | | ⚠️ SetPos 0,0 is going to 5,0. GetPos is correct | | | window | | ⚠️ SetPos 0,0 is going to 5,0. GetPos is correct | |
| window-api | | ✅ | | | window-api | | ✅ | |
| window-call | | ✅ | | | window-call | | ✅ | |
| window-menubar | | ✅ | ⚠️ not sure what should happen in osx | | window-menubar | | ✅ | ⚠️ not sure what should happen in osx |
| wml | | ✅ | | | wml | | ✅ | |
## Open Bugs ## Open Bugs

View File

@ -198,7 +198,10 @@ func (m *windowSaveFileDialog) show() (chan string, error) {
}, false) }, false)
go func() { go func() {
defer handlePanic() defer handlePanic()
files <- result.(string) filename, ok := result.(string)
if ok {
files <- filename
}
close(files) close(files)
}() }()
return files, err return files, err