-
Notifications
You must be signed in to change notification settings - Fork 4
/
changelog.txt
35 lines (26 loc) · 1.37 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
ofxSimpleGuiToo changelog
v1.3
--------------------
- page::saveToXML() pushed the <controls> tag so control::saveToXML() didn't need to check that tag,
whereas page::loadFromXML() didn't push the <controls> tag so control::loadFromXML() did.
Wasn't consistent so now all controls can assume that we are already inside the <controls> tag.
- fixed keyboard support (any control which the mouse is hovering over, now receives the events:
keyPressed(int key), keyReleased(int key), onKeyUp(), onKeyDown(), onKeyLeft(), onKeyRight(), onKeyEnter()
v1.2
--------------------
- lots of thing, can't remember. whoops.
v1.1 07/04/2009
--------------------
- changed license to revised BSD (a lot more more permissive than GPL)
v1.0
--------------------
- initial version
- changes from original ofxSimpleGui
- added pages (tabs), controls are added to pages
- when controls reach bottom of page (customizable using page.height property) controls flow to the right
- ability to customize spacing / sizes / colors etc. using a configuration class
- everything on a grid
- addFrame has been renamed to addContent and manages any class type which extends ofBaseDraws
- saved in xml using 'keys', so you can add/remove/rename/reorder controls and still load values correctly
- option to backup save
- all controls inherit from ofxMSAInteractiveObject (for simpler event management)