All Versions
81
Latest Version
Avg Release Cycle
12 days
Latest Release
1425 days ago
Changelog History
Page 8
Changelog History
Page 8
-
v1.10.0-alpha.1
August 23, 2019 -
v1.10.0-alpha
February 25, 2019 -
v1.9.3 Changes
May 18, 2019- ๐ Bug fix
- graphics: Fixed blinking issue on macOS
- Fixed freezing after 40-ish minutes on Windows
- ๐ Bug fix
-
v1.9.2 Changes
May 06, 2019- ๐ Bug fix
- graphics: Fixed crash when the given sub image's size is 0
- graphics: Fixed Metal issue
- audio: Fixed crash due to index out of range
- ๐ Bug fix
-
v1.9.1 Changes
April 17, 2019- ๐ Bug fix
- Audio crash on Windows
- Wrong rendering
- ๐ Bug fix
-
v1.9.0 Changes
March 04, 2019- ๐ New features
- No Cgo on Windows!
- You can build and run Ebiten games without C compilers on Windows! (Issue 171)
- Metal on macOS
- Now Ebiten uses Metal instead of OpenGL on macOS. (Issue 621)
- Performance improvement
- e.g. Speed improvement by simplifying shaders (Issue 762, Issue 812)
- e.g. Memory usage at Ogg decoding was significantly reduced (Issue 733)
- ๐ New APIs
- Graphics
func (i *Image) SubImage(r image.Rectangle) image.Image
: specifies a part of an image. This replacesDrawImageOptions
'sSourceRect
.func (img *Image) Set(x, y int, clr color.Color)
: sets a pixel at the specified position on an image. Now*ebiten.Image
implements the standard'sdraw.Image
interface.Address
: represents whether the texture is repeated atDrawTriangles
.
- ๐ Deprecated APIs
- Graphics
DrawImageOptions
'sSourceRect
: Use(*Image).SubImage
instead.
- ๐ Bug fix
- Monitor issues
- e.g. The window was sometimes not opened in the current monitor (Issue 829)
- Several mobile issues
- e.g. Strange lines on an Xperia phone (Issue 622)
- e.g. Crash when creating a very small image on old iOS devices (Issue 810)
- Go 1.12 issues
- e.g. OpenAL crashes (Oto Issue 65)
- ๐ New features
-
v1.9.0-rc1
February 25, 2019 -
v1.8.3 Changes
February 17, 2019- ๐ Bug fix
- Crash when moving the window to another upside/downside window on macOS.
- ๐ Bug fix
-
v1.8.2 Changes
February 03, 2019- ๐ Bug fix
- graphics: the screen was not cleared correctly on browsers with
(*Image).Fill
function - mobile: the application was frozen when an error occurred.
- graphics: the screen was not cleared correctly on browsers with
- ๐ Bug fix
-
v1.8.1 Changes
December 24, 2018- ๐ Bug fix
audio.Player
objects could be leaked when they playebiten.SetWindowDecorated
didn't workebiten.SetWindowIcon
beforeRun
didn't workebiten.SetCursorVisible
beforeRun
didn't work
- ๐ Bug fix