stendler
88c9017fdc
[v3,linux] fix: enable to run natively in wayland ( #3614 )
...
fix: enable to run natively in wayland
Incorporated from this v2 change:
https://github.com/wailsapp/wails/pull/1811
2024-08-25 21:39:22 +10:00
Windom
46dbbb3b84
[v3] Make Windows window class configurable ( #3682 )
2024-08-20 18:20:44 +10:00
Oleg Gulevskyy
b756bce67f
Set MacOS window levels (NSWindow
) ( #3674 )
...
* set nswindow levels via mac options
* add changelog description
* update changelog to conform with others
2024-08-20 18:06:45 +10:00
bruxaodev
1ed6966cbe
Fix: Ensure Window Frame is Applied on First Call in setFrameless Function ( #3691 )
...
* fix: force update window frame
* Update changelog.md
2024-08-20 18:01:31 +10:00
bruxaodev
fbcce0b20c
[windows] Add support for click-through overlay window ( #3667 )
...
* [windows] Add support for click-through overlay window
* update changelog
* setIgnoreMouseEvents - exemple
* fix - remove unused import
* Add macOS+Linux support. Update example.
* Fix SetIgnoreMouseEvents before window created.
---------
Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
2024-08-18 20:50:22 +10:00
Lea O'Anthony
96b97b25bf
Fix syso generation bug
2024-08-16 21:09:40 +10:00
Atterpac
cfab21bc81
fix syso icon generation ( #3675 )
...
update changelog.md
2024-08-10 07:26:37 +10:00
Lea O'Anthony
d405bd48f0
Fix tests for Windows
2024-08-05 05:22:00 +10:00
Lea Anthony
1cba1416a1
Fix tests
2024-08-04 21:28:15 +10:00
Lea Anthony
cd3b561623
Fix errors with raising errors!
2024-08-04 19:19:40 +10:00
Lea O'Anthony
170039c1d1
Update docs
2024-07-31 21:04:07 +10:00
Lea O'Anthony
38f68f77a0
Doc test
2024-07-31 19:37:56 +10:00
Lea O'Anthony
84aa7a879c
Update doc deps
2024-07-31 08:53:47 +10:00
Lea O'Anthony
87f51ddbda
Improve installation and what's new guides
2024-07-31 08:41:15 +10:00
Lea O'Anthony
011c9e66fb
Update installation guide
2024-07-31 08:06:18 +10:00
Lea O'Anthony
5a61e1007f
Fix module dependencies
2024-07-30 22:10:44 +10:00
Lea O'Anthony
c88f02c5a5
Add build info tool
2024-07-30 22:03:01 +10:00
Lea Anthony
212f5c7270
Clean up footer
2024-07-30 07:57:25 +10:00
Atterpac
7941f00c35
https flag for dev mode ( #3603 )
2024-07-29 20:46:44 +10:00
Lea Anthony
ed450c1268
Add code rabbit for alpha
2024-07-29 20:46:15 +10:00
Atterpac
76da9e55c9
Add fatalHandler() stubs to fix non-windows builds ( #3642 )
2024-07-29 19:32:15 +10:00
Lea Anthony
086c7ae32d
Add error handler. Use latest go-webview2.
2024-07-28 20:49:08 +10:00
Lea Anthony
d61bb9c79b
[Windows] Handle menu accelerators
2024-07-27 16:04:26 +10:00
Miklos Gabor
6c7cd651da
Fix systemTray.setIcon crashing on Linux ( #3636 )
2024-07-25 12:34:10 -05:00
Lea Anthony
f94ecaba84
Fix random crash on linux
2024-07-20 08:40:52 +10:00
Atterpac
f0cec1cf37
[V3-Linux] fix resize and update @wailsio runtime ( #3617 )
2024-07-16 15:44:46 -05:00
Lea Anthony
d7e103de59
Fix nsis install
2024-07-16 06:25:05 +10:00
Lea Anthony
65b983dcb6
Merge remote-tracking branch 'origin/v3-alpha' into v3-alpha
2024-07-16 06:00:50 +10:00
Mohamed Gharib
d5e289880f
[v3] Rename AbsolutePosition()
to Position()
( #3611 )
2024-07-15 19:27:21 +10:00
Mohamed Gharib
e51a481219
[v3] Restore max size example ( #3612 )
2024-07-15 19:24:51 +10:00
Atterpac
62b795d472
fix resize messaging ( #3606 )
...
changelog.md
2024-07-14 16:47:18 +10:00
Lea Anthony
8a7057b3b0
Merge branch 'refs/heads/master' into v3-alpha
...
# Conflicts:
# .github/workflows/build-and-test.yml
# .github/workflows/pr.yml
# v2/go.mod
# website/src/pages/changelog.mdx
2024-07-10 09:17:59 +10:00
Lea Anthony
33a0c9e634
Fixed icon warning on Windows
2024-07-03 07:51:10 +10:00
Atterpac
5fcebd0274
fix windows file dialog panic when directory doesnt exist ( #3582 )
2024-07-02 18:49:19 +10:00
DeltaLaboratory
749c433ca6
feat: disable spinner in ci or non terminal ( #3574 )
...
* added nospinner flag to disable spinner in ci environment
Signed-off-by: delta <delta@deltalab.dev>
* deduplicated result message
Signed-off-by: delta <delta@deltalab.dev>
* removed flag and added terminal check
Signed-off-by: delta <delta@deltalab.dev>
* added changelog entry
Signed-off-by: delta <delta@deltalab.dev>
---------
Signed-off-by: delta <delta@deltalab.dev>
2024-07-02 18:35:39 +10:00
github-actions[bot]
9b01922a10
chore: update sponsors.svg ( #3583 )
...
Co-authored-by: leaanthony <leaanthony@users.noreply.github.com>
2024-07-02 18:33:15 +10:00
Travis McLane
cfe2424f4d
WindowDidMove / WindowDidResize events for Linux and Windows
...
* [linux] emit system specific event for theme change
Code was incorrectly emitting the `events.Common.ThemeChanged` event
instead of the OS Specific `events.Linux.SystemThemeChanged` event.
It is the reponsibility of the code in events_common_linux.go to map
it to the common variety.
* [linux] implement WindowDidMove
* [linux] implement debounce for WindowDidMove
* [example] listen for events.Common.WindowDidMove
* [windows] move WindowDidMove mapper outside of DnD guard
* WindowDidResize implementation
* windows: WindowDidResize
* chore: changelog update
* events.Common.WindowDidMove and events.Common.WindowDidResize
2024-06-30 16:11:45 -05:00
Lea Anthony
ed88987308
Added a new menu item to create window that listens to movement event.
2024-06-28 21:25:13 +10:00
github-actions[bot]
41b75975e8
chore: update sponsors.svg ( #3575 )
...
Co-authored-by: leaanthony <leaanthony@users.noreply.github.com>
2024-06-28 17:17:50 +10:00
初十
78fbcbcf5f
Update templates.mdx ( #3573 )
...
add vue template
2024-06-28 08:14:11 +10:00
Lea Anthony
86e43c92b3
[Windows] Check systray menu before destroying it
2024-06-26 21:05:46 +10:00
Lea Anthony
ae3b92f1ef
Add README.md to templates
2024-06-24 21:48:58 +10:00
Lea Anthony
932f1e9161
Remove unused command
2024-06-24 21:28:26 +10:00
Lea Anthony
b0ac644e9b
Update docs text
2024-06-24 21:27:30 +10:00
Lea Anthony
25cccc32db
Add docs and sponsor subcommands
2024-06-24 20:50:17 +10:00
github-actions[bot]
a4428022ec
docs: sync translations ( #3543 )
...
* docs: sync translations
* Fix build
---------
Co-authored-by: leaanthony <leaanthony@users.noreply.github.com>
Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
2024-06-22 14:07:04 +10:00
github-actions[bot]
e09f9b171e
chore: update sponsors.svg ( #3556 )
...
Co-authored-by: leaanthony <leaanthony@users.noreply.github.com>
2024-06-22 13:43:27 +10:00
C15U
5d532181d8
Add wails-template-nuxt ( #3560 )
2024-06-22 13:41:56 +10:00
github-actions[bot]
1d212f1f25
chore: update sponsors.svg ( #3554 )
...
Co-authored-by: leaanthony <leaanthony@users.noreply.github.com>
2024-06-21 08:23:28 +10:00
Anderson Lizarazo Tellez
517d8d7897
Documentation: Specify how to handle the Fixed WebView Runtime. ( #3444 )
...
* Update `windows.mdx`
Specify to the user that the WebView dependency must be extracted before being used.
* Update no versioned `windows.mdx`
* Update `changelog.mdx`
2024-06-20 05:40:36 +10:00