Skip to content

Releases: jice-nospam/doryen-rs

v1.3.0

09 Oct 22:42
Compare
Choose a tag to compare
  • added option to return UpdateEvent::Capture from the update() function to capture in-game screenshots
  • added max_fps to AppOptions to lower the frame rate even below the screen vsync frequency. See lowfps example.
  • switched to unrust 0.2 to run on the latest winit/glutin/wasm_bindgen/web-sys versions
  • upgraded to image 0.23.14 to fix a vulnerability

v1.2.3

07 Jan 23:19
Compare
Choose a tag to compare
  • fixed #22 : mouse coordinates broken when console is resized
  • fixed resizable console not taking hidpi factor into account

v1.2.2

03 Jan 16:46
Compare
Choose a tag to compare
  • fixed #21 : keyboard/mouse events lost when framerate > tickrate

v1.2.1

08 Dec 18:47
Compare
Choose a tag to compare

fixed

  • Console.blit not taking source console alpha value into account
  • fixed #19 : rendering unicode characters >= 0x00FF
  • fixed #10 : console not centered in fullscreen and wrong mouse coordinates

features

  • AppOptions now implements Default
  • added InputApi.keys_released() and InputApi.keys_pressed() that return iterators on key events since last update
  • added text input support through InputApi.text() (see text_input example)
  • added alpha example showcasing framebuffer overdrawing
  • provided default update() and resize() functions. Now Engine must only provide a render method
  • new Image methods : new_empty(), pixel(), put_pixel()
  • added a visual demo showcasing subcell resolution + dynamic lighting in a real time roguelike

v1.2.0

22 Nov 19:15
Compare
Choose a tag to compare

fixed

  • fix #13 Console.print_color with text containing ']'

API breaks

  • added AppOptions.intercept_close_request to intercept clicks on the window close button (native only). See 'exit' example

features

  • added Console.text_color_len()

v1.1.0

08 Dec 18:48
Compare
Choose a tag to compare

fixes

  • fix mouse coordinates on HiDpi screens
  • web : fix #8 black borders on HiDpi screens

API breaks

v1.0.1

08 Dec 18:48
Compare
Choose a tag to compare

fixes

  • fix HiDpi display on Mac
  • fix panic on start when font is too slow to load

v1.0.0

08 Dec 18:49
Compare
Choose a tag to compare

First release