Skip to content

Commit 251652e

Browse files
committed
Updated changelog.
1 parent 179ef89 commit 251652e

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
InputField
33

4+
v3.3.1 (2022-08-18)
5+
- Changed: scroll() now returns how much was actually scrolled.
6+
- Changed: wheelmoved() now only returns true if any scrolling actually happened.
7+
- Fixed "font filtering blocks newlines in multi-line fields".
8+
- Fixed "undo/redo counts as editing text even when nothing happened".
9+
410
v3.3 (2022-03-15)
511
- Added: Event method wheelmoved() (which can do horizontal scrolling).
612
- Added: Triple-click-and-drag to select lines.

InputField.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--[[============================================================
22
--=
3-
--= InputField v3.3-dev - text input handling library for LÖVE (0.10.2+)
3+
--= InputField v3.3.1 - text input handling library for LÖVE (0.10.2+)
44
--= - Written by Marcus 'ReFreezed' Thunström
55
--= - MIT License (See the bottom of this file)
66
--= - https://github.com/ReFreezed/InputField
@@ -134,7 +134,7 @@
134134
--============================================================]]
135135

136136
local InputField = {
137-
_VERSION = "InputField 3.3.0-dev",
137+
_VERSION = "InputField 3.3.1",
138138
}
139139

140140

0 commit comments

Comments
 (0)