Skip to content

Commit

Permalink
Merge branch 'release/v2.3.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Williams committed Mar 24, 2023
2 parents fc2c70b + fc47502 commit 018a2e1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Expand Up @@ -3,12 +3,18 @@
This file lists the main changes with each version of the Fyne toolkit.
More detailed release notes can be found on the [releases page](https://github.com/fyne-io/fyne/releases).

## 2.3.3 - 24 March 2023

### Fixed

* Linux, Windows and BSD builds could fail if gles was missing

## 2.3.2 - 20 March 2023

### Fixed

* Fyne does not run perfectly on ARM-based MacOS platforms (#3639)
* Panic on closing window in form submit on Мac M2 (#3397)
* Fyne does not run perfectly on ARM-based MacOS platforms (#3639) *
* Panic on closing window in form submit on Мac M2 (#3397) *
* Wobbling slider effect for very small steps (#3648)
* Fix memory leak in test canvas refresh
* Optimise text texture memory by switching to single channel
Expand All @@ -27,6 +33,9 @@ More detailed release notes can be found on the [releases page](https://github.c
* Mobile simulator not compiling on Apple M1/2
* Cropped letters in certain cases with the new v2.3.0 theme (#3500)

Many thanks indeed to [Dymium](https://dymium.io) for sponsoring an Apple
M2 device which allowed us to complete the marked (*) issues.


## 2.3.1 - 13 February 2023

Expand Down
@@ -1,5 +1,8 @@
//go:build !darwin && !js && !wasm
// +build !darwin,!js,!wasm
//go:build !darwin && !js && !wasm && (android || ios || mobile)
// +build !darwin
// +build !js
// +build !wasm
// +build android ios mobile

package gl

Expand Down

0 comments on commit 018a2e1

Please sign in to comment.