-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathChangelog.txt
66 lines (48 loc) · 2.08 KB
/
Changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
------------------------------ v1.2.0 ------------------------------
FEATURES:
- Added the new PasswordBox control.
This control behaves like a TextBox, but the text is masked with
the character specified in the "PasswordChar" property.
The password can be obtained through the "Password" property.
IMPROVEMENTS:
- Improved the overall drawing performance.
BUGFIXES:
- Fixed a bug, that caused a TextBox to raise the TextChanged event
in the constructor.
------------------------------ v1.1.2 ------------------------------
BUGFIXES:
- Fixed a fatal bug in the GraphicBuffer that caused a wrong drawing
of colors.
------------------------------ v1.1.1 ------------------------------
CHANGES:
- TextBox: The IsFocused property is now set to false before the
TextSubmitted event is fired.
- TextBox: The setter of the IsFocused property is now private.
- Menu: The setter of the IsFocused property is now private.
- Menu: The Focus and Defocus methods arent' virtual anymore.
BUGFIXES:
- TextBox: The TextChanged event is now also raised when the Text
property is set directly.
- TextBox: Fixed a bug, that caused the Console.CursorVisible
property to always be true after the TextSubmitted event is fired.
- Menu: Fixed the defocusing of the menu after the enter key is
pressed.
------------------------------ v1.1.0 ------------------------------
FEATURES:
- Added the new TextBox control.
- Each control now implements the Invalidate method, which causes
a redraw of the control.
CHANGES:
- The TextField is marked as obsolete. It is replaced by the new
TextBox control.
BUGFIXES:
- Label: Fixed a bug, which caused a cut-off in the text.
- Screen: Fixed a bug, whih caused it to be redrawn twice.
------------------------------ v1.0.1 ------------------------------
BUGFIXES:
- Label: Fixed a bug, which caused the label not to draw a word, if
it had the same length as the label's length.
------------------------------ v1.0.0 ------------------------------
- Release of the final version.
------------------------------ v0.0.0 ------------------------------
- Initial release.