Skip to content

Releases: hajimehoshi/ebiten

v1.6.2

Choose a tag to compare

@hajimehoshi hajimehoshi released this 21 Mar 05:26

v1.6.1

Choose a tag to compare

@hajimehoshi hajimehoshi released this 10 Mar 18:29

v1.6.0

Choose a tag to compare

@hajimehoshi hajimehoshi released this 03 Feb 14:57

Issues for 1.6.0

  • Add new packages
    • audio/mp3 - MP3 decoding
    • text - Text rendering
  • New APIs
    • SetFullscreen - Make the screen fullscreen
    • IsFullscreen
    • SetRunnableInBackground - Make the game run even when the window is not active
    • IsRunnableInBackground
    • InputChars - Detect input text instead of keys
    • GamepadIDs - Get the current gamepad IDs
    • DeviceScaleFactor - Get the device scale factor, that is more than 1 on high-DPI displays
  • Deprecate APIs
    • SetCursorVisibility - Use SetCursorVisible instead
    • (*ColorM).Monochrome - Use ChangeHSV(0, 0, 1) instead
  • Bug fix
  • Speed optimization

v1.5.1

Choose a tag to compare

@hajimehoshi hajimehoshi released this 21 Jul 17:38

v1.5.0

Choose a tag to compare

@hajimehoshi hajimehoshi released this 09 Jun 13:49

Issues for 1.5

  • Support new platforms
    • FreeBSD
    • Safari
  • New API
  • Separate the low level audio part as oto package
  • Optimize speed
  • Fix bugs

v1.4.0-rc1

Choose a tag to compare

@hajimehoshi hajimehoshi released this 02 Sep 17:09
  • Support mobile platforms
    • Android
    • iOS
  • Multiple touches
  • Protection against OpenGL context lost
  • New examples
  • Some bug fixes

v1.3.0

Choose a tag to compare

@hajimehoshi hajimehoshi released this 26 Jun 15:57
  • Fixed some bugs.

v1.3.0-rc1

Choose a tag to compare

@hajimehoshi hajimehoshi released this 26 Jun 15:57
  • Added new platforms
    • Windows
    • Linux
  • Graphics
    • Added CompositeMode to change composite mode (e.g. masking or additive drawing)
  • Audio
    • Moved from exp/audio to audio: No more experimental package!
    • Changed APIs (almost fixed)
    • Added audio/vorbis to decode Ogg/Vorbis stream
    • Added audio/wav to decode Wav stream
  • Others
    • Made most of functions concurrent-safe
  • Bug fix

v1.2.0

Choose a tag to compare

@hajimehoshi hajimehoshi released this 26 Jun 15:55
  • Fixed some bugs.

v1.2.0-rc1

Choose a tag to compare

@hajimehoshi hajimehoshi released this 26 Jun 15:54
  • Added support for gamepads on desktops and browsers
  • Added support for touch events on browsers
  • Added new functions for image rendering:
    • Image.ReplacePixels
    • GeoM.Rotate
    • ColorM.RotateHue
  • Added some experimental packages:
    • exp/audio: Play music and sound
    • exp/gamepad: Useful functions to configure gamepads
    • These packages are experimental and we don't guarantee backward compatibility.
  • Deprecated some APIs:
    • TranslateGeo (Use GeoM's Translate instead)
    • ScaleGeo (Use GoeM's Scale instead)
    • RotateGeo (Use GoeM's Rotate instead)
    • TranslateColor (Use ColorM's Translate instead)
    • ScaleColor (Use ColorM's Scale instead)
    • RotateHue (Use ColorM's RotateHue instead)
  • Fixed some bugs
  • Performance optimization