Skip to content

Releases: wailsapp/wails

v3.0.0-alpha.6

30 Jul 12:11
5a61e10
Compare
Choose a tag to compare
v3.0.0-alpha.6 Pre-release
Pre-release
  • Fix module issues

v3.0.0-alpha.5

30 Jul 12:04
c88f02c
Compare
Choose a tag to compare
v3.0.0-alpha.5 Pre-release
Pre-release

Added

  • [linux] WindowDidMove / WindowDidResize events in #3580
  • [windows] WindowDidResize event in (#3580)
  • [darwin] add Event ApplicationShouldHandleReopen to be able to handle dock icon click by @5aaee9 in #2991
  • [darwin] add getPrimaryScreen/getScreens to impl by @tmclane in #2618
  • [darwin] add option for showing the toolbar in fullscreen mode on macOS by @fbbdev in #3282
  • [linux] add onKeyPress logic to convert linux keypress into an accelerator @Atterpac in#3022
  • [linux] add task run:linux by @marcus-crane in #3146
  • Export SetIcon method by @almas1992 in PR
  • Improve OnShutdown by @almas1992 in PR
  • Restore ToggleMaximise method in Window interface by @fbbdev in #3281
  • Added more information to Environment(). By @leaanthony in aba82cc based on PR by @Mai-Lapyst
  • Expose the WebviewWindow.IsFocused method on the Window interface by @fbbdev in #3295
  • Support multiple space-separated trigger events in the WML system by @fbbdev in #3295
  • Add ESM exports from the bundled JS runtime script by @fbbdev in #3295
  • Add binding generator flag for using the bundled JS runtime script instead of the npm package by @fbbdev in #3334
  • Implement setIcon on linux by @abichinger in #3354
  • Add flag -port to dev command and support environment variable WAILS_VITE_PORT by @abichinger in #3429
  • Add tests for bound method calls by @abichinger in #3431

Fixed

  • Fixed resize event messaging by atterpac in #3606
  • [linux] Fixed theme handling error on NixOS by tmclane in [#3515)(https://github.com//pull/3515)
  • Fixed cross volume project install for windows by atterpac in #3512
  • Fixed react template css to show footer by atterpac in #3477
  • Fixed zombie processes when working in devmode by updating to latest refresh by Atterpac in #3320.
  • Fixed appimage webkit file sourcing by Atterpac in #3306.
  • Fixed Doctor apt package verify by Atterpac in #2972.
  • Fixed application frozen when quit (Darwin) by @5aaee9 in #2982
  • Fixed background colours of examples on Windows by mmghv in #2750.
  • Fixed default context menus by mmghv in #2753.
  • Fixed hex values for arrow keys on Darwin by jaybeecave in #3052.
  • Set drag-n-drop for windows to working. Added by @pylotlight in PR
  • Fixed bug for linux in doctor in the event user doesn't have proper drivers installed. Added by @pylotlight in PR
  • Fix dpi scaling on start up (windows). Changed by @almas1992 in PR
  • Fix replace line in go.mod to use relative paths. Fixes Windows paths with spaces - @leaanthony.
  • Fix MacOS systray click handling when no attached window by thomas-senechal in PR #3207
  • Fix failing Windows build due to unknown option by thomas-senechal in PR #3208
  • Fix crash on windows left clicking the systray icon when not having an attached window tw1nk in PR #3271
  • Fix wrong baseURL when open window twice by @5aaee9 in PR #3273
  • Fix ordering of if branches in WebviewWindow.Restore method by @fbbdev in #3279
  • Correctly compute startURL across multiple GetStartURL invocations when FRONTEND_DEVSERVER_URL is present. #3299
  • Fix the JS type of the Screen struct to match its Go counterpart by @fbbdev in #3295
  • Fix the WML.Reload method to ensure proper cleanup of registered event listeners by @fbbdev in #3295
  • Fix custom context menu closing immediately on linux by @abichinger in #3330
  • Fix the output path and extension of model files produced by the binding generator by @fbbdev in #3334
  • Fix the import paths of model files in JS code produced by the binding generator by @fbbdev in #3334
  • Fix drag-n-drop on some linux distros by @abichinger in #3346
  • Fix missing task for macOS when using wails3 task dev by @hfoxy in #3417
  • Fix registering events causing a nil map assignment by @hfoxy in #3426
  • Fix unmarshaling of bound method parameters by @fbbdev in #3431
  • Fix handling of multiple return values from bound methods by @fbbdev in #3431
  • Fix doctor detection of npm that is not installed with system package manager by @pekim in #3458
  • Fix missing MicrosoftEdgeWebview2Setup.exe. Thanks to @robin-samuel.
  • Fix random crash on linux due to window ID handling by @leaanthony. Based on PR #3466 by @5aaee9.
  • Fix systemTray.setIcon crashing on Linux by @windom in #3636.

Changed

  • Renamed AbsolutePosition() to Position() by mmghv in #3611
  • Update linux webkit dependency to webkit2gtk-4.1 over webkitgtk2-4.0 to support Ubuntu 24.04 LTS by atterpac in #3461
  • The bundled JS runtime script is now an ESM module: script tags importing it must have the type="module" attribute. By @fbbdev in #3295
  • The @wailsio/runtime package does not publish its API on the window.wails object, and does not start the WML system. This has been done to improve encapsulation. The WML system can be started manually if desired by calling the new WML.Enable method. The bundled JS runtime script still performs both operations automatically. By @fbbdev in #3295
  • The Window API module @wailsio/runtime/src/window now exposes the containing window object as a default export. It is not possible anymore to import individual methods through ESM named or namespace import syntax.
  • The JS window API has been updated to match the current Go WebviewWindow API. Some methods have changed name or prototype, specifically: Screen becomes GetScreen; GetZoomLevel/SetZoomLevel become GetZoom/SetZoom; GetZoom, Width and Height now return values directly instead of wrapping them within objects. By @fbbdev in #3295
  • The binding generator now uses calls by ID by default. The -id CLI option has been removed. Use the -names CLI option to switch back to calls by name. By @fbbdev in #3468
  • New binding code layout: output files were previously organised in folders named after their ...
Read more

v2.9.1

17 Jun 20:40
5cd0cac
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.9.0...v2.9.1

v2.9.0

16 Jun 03:19
d96d3b0
Compare
Choose a tag to compare

v2.9.0 - 2024-06-16

Summary

  • Improved drag'n'drop support! More information here.
  • Support for compiling against libwebkit2gtk-4.1: -tags webkit2_41
  • Support generating bindings for structs without fields.
  • Fixes for WindowGetPosition and WindowSetPosition on macOS.
  • Improved documentation.
  • Translations processing fixed.

Added

  • Added Drag & Drop (files or folders) support for Windows and Linux. Added by @lyimmi in PR. Based on the work of @ayatkyo for Windows in PR.
  • Added Drag & Drop (files or folders) support for macOS. Added by @APshenkin in PR.
  • Support for compiling with libwebkit2gtk-4.1 instead of 4.0 to support latest Ubuntu release by atterpac in #3465
  • Extended Routing guide with Svelte example by @stanislav-zeman in #3481
  • Unit test for fix #3476 by gjergj in #3485
  • German Readme Translation by Zeiichenfolge in #3483
  • Added support generating bindings for structs without fields. Added by gjergj in PR

Changed

Fixed

  • Fix Drag & Drop JS runtime. Added by @jakubpeleska, provided by Beam Transfer in PR.
  • Fixed optional type generation where an extra ? would be placed inside the field name instead of outside the name "field?"? vs "field"?. Fixed by @atterpac in #3476
  • Fixed an issue where WindowGetPosition and WindowSetPosition values were inconsistent on MacOS. Fixed by @cenan
  • Fix scoop command usage typo. Fixed by @fieu in #3501
  • Fixed macOS single instance lock reset after some time. Fixed by @APshenkin in PR

v2.8.2

08 May 10:44
daa71ce
Compare
Choose a tag to compare

Breaking Change

  • The -noPackage flag was misnamed and is being renamed to nopackage to match the other flags. Changed by @leaanthony in PR.

Added

  • Added support for proxying assets requests to an external server. Added by @leaanthony in PR

Fixed

  • Fixed an issue with missing icon for Windows. Fixed by @APshenkin

v2.8.1

11 Apr 11:27
2dd964b
Compare
Choose a tag to compare

Added

  • Added docs to help fix NixOs/Wayland font-size css issue. Added by @atterpac in PR
  • Added -m (skip go mod tidy) flag to dev command by @te5se in PR
  • Added mac option DisableZoom to remove zoom button. Added by @wizzymore in PR

Fixed

  • Fixed some typos in comments. Changed by @reallylowest in PR
  • Fixed an issue where the destination file was not properly closed after copying. Changed by @testwill in PR
  • Fixed an issue where xattr calls were not working. Fixed by @leaanthony

Changed

  • Changed Create a project with changing the default name to the project’s name. Changed by @Twacqwq in PR

v2.8.0

08 Feb 21:43
7415585
Compare
Choose a tag to compare

Added

  • Added windows options supports DisablePinchZoom configuration. Added by @tuuzed in PR
  • Add Apple Silicon hardware detection to wails doctor. Changed by @almas1992 in PR
  • Remove quarantine attribute on macOS binaries. Changed by @leaanthony in PR
  • Added documentation for a common GStreamer error on Linux systems. Changed by @mkwsnyder in PR
  • Added documentation on explicity example of importing JS runtime. Changed by @danawoodman in PR
  • Add dock icon right-click exit handling by @almas1992 in PR

Fixed

  • Fixed vue-ts template build error. Fixed by @atterpac in PR
  • Docs for IsZoomControlEnabled and ZoomFactor. Fixed by @leaanthony in PR
  • Fixed -compiler flag for wails build, wails dev and wails generate module. Fixed in PR by @xtrafrancyz
  • Fixed uninitialized SecondInstanceData.WorkingDirectory on linux and windows (#3154).
  • Fixed save file dialog not appending file extension automatically on Windows by @almas1992 in PR
  • Fixed compatibility for wails cli being built with go 1.22 and later. Fixed by @stffabi in PR

v3.0.0-alpha.4

01 Feb 10:36
1ec3b4e
Compare
Choose a tag to compare
v3.0.0-alpha.4 Pre-release
Pre-release
  • wails3 dev and wails3 package for Windows and Mac
  • Refactored runtime to provide @wailsio/runtime and compiled runtime options
  • Updated examples
  • Fixed frameless drag and resize on Windows
  • wails3 tool cp for copying files
  • Fix WML example
  • Refactor asset server
  • Refactored dev tools support
  • Fixed default extension for Save Dialog
  • Support aliases in package imports (bindings)

v3.0.0-alpha.3

11 Dec 07:39
85d68ce
Compare
Choose a tag to compare
v3.0.0-alpha.3 Pre-release
Pre-release

This is not a release, but more of a maintenance tag. Don't expect anything to work. Except maybe some of the examples. And maybe some cli commands might work...

v2.7.1

09 Dec 23:42
ae99d7a
Compare
Choose a tag to compare

Fixed

  • Segfault in wails doctor when GPU device information is not provided. Thanks to @atterpac for the fix (#3108).
  • Fixed building on macOS 11. Updated other build guards. Fixed in #3111 by @leaanthony.

Changed

  • Go 1.20 is now the minimum supported Go version.