Skip to content

Commit

Permalink
Update changeog for v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jtackaberry committed Oct 9, 2023
1 parent 4398fb4 commit 12bb4d0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Change Log

## 1.4.0 - 2023-10-09

#### Minor Enhancements

* Improved logic for generating debug box overlay colors when setting `rtk.debug` to true. Previously `math.random()` was used with a fixed seed, which significantly weakened random number generation for other uses.
* The `rtk.Window.onclose()` event handler is now invoked on all script exit conditions if the window is open
* Minor documentation improvements


#### Bug Fixes

* Fixed a crash caused by setting `rtk.Window.w` or `rtk.Window.h` attributes to nil (which denotes autosizing) within an event handler ([#20](https://github.com/jtackaberry/rtk/issues/20))
* Fixed a crash when calling `rtk.Image:blur()` before the image has been loaded
* Fixed stack overflow caused by passing a recursive table (i.e. a table which contains either a direct or indirect value of itself) to `table.tostring()`
* Fixed `halign` / `valign` parameters for `rtk.Window:open()` sometimes not being respected
* Ensured `rtk.Entry.caret` reflects the correct position before firing `rtk.Entry.onchange` ([#19](https://github.com/jtackaberry/rtk/issues/19))


## 1.3.0 - 2022-11-20

#### New Features
Expand Down

0 comments on commit 12bb4d0

Please sign in to comment.