5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-09 01:49:43 +08:00

update windows drag and drop to working (#3039)

* update windows drag and drop to working

* add pr to changelog
This commit is contained in:
Light 2023-11-08 22:36:47 +11:00 committed by GitHub
parent 385b1dbfd4
commit 412c3a5ed1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,7 @@ build,:material-check-bold:,:material-check-bold:," "
clipboard,:material-check-bold:,:material-check-bold:,:material-check-bold:
context menus,:material-check-bold:,:material-check-bold:,:material-check-bold:
dialogs,:material-minus:,:material-check-bold:," "
drag-n-drop,:material-check-bold:,:material-close:," "
drag-n-drop,:material-check-bold:,:material-check-bold:," "
events,:material-check-bold:,:material-check-bold:," "
frameless,:material-check-bold:,:material-check-bold:," "
keybindings,:material-check-bold:,:material-check-bold:," "

1 Mac Windows Linux
4 clipboard :material-check-bold: :material-check-bold: :material-check-bold:
5 context menus :material-check-bold: :material-check-bold: :material-check-bold:
6 dialogs :material-minus: :material-check-bold:
7 drag-n-drop :material-check-bold: :material-close: :material-check-bold:
8 events :material-check-bold: :material-check-bold:
9 frameless :material-check-bold: :material-check-bold:
10 keybindings :material-check-bold: :material-check-bold:

View File

@ -26,6 +26,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- AssetServer requests are now processed concurrently by spawning a goroutine per request. Changed by @stffabi in [PR](https://github.com/wailsapp/wails/pull/2926)
- Now building with `-devtools` flag doesn't enable the default context-menu. Changed by @mmghv in [PR](https://github.com/wailsapp/wails/pull/2923)
- Change Window Level. Changed by @almas1992 in [PR](https://github.com/wailsapp/wails/pull/2944)
- Set drag-n-drop for windows to working. Added by [@pylotlight](https://github.com/pylotlight) in [PR](https://github.com/wailsapp/wails/pull/3039)
#### Fixed
- Fixed typo on docs/reference/options page. Added by [@pylotlight](https://github.com/pylotlight) in [PR](https://github.com/wailsapp/wails/pull/2887)