Skip to content

Releases: andrewdget/tkVFD

v1.1.0

11 Jan 01:47
Compare
Choose a tag to compare

Improved/fixed how tkinter methods are applied to tkVFD display objects, which now respond the same as any other tkinter canvas object.

Previously tkinter methods had to be applied when either using .control() or .char() as this was when the canvas object was apparent. For example:

disp = tkVFD.seg7(root, height=200)
disp.char('8').pack(side=tk.LEFT)

Now a __getattr__ function has been defined which looks at the tkinter package for all methods not native to tkVFD. Thus tkinter methods can be applied at any time. For example:

disp = tkVFD.seg7(root, height=200)
disp.char('8')
disp.pack(side=tk.LEFT)

v1.0.0

04 Jan 22:10
Compare
Choose a tag to compare

Initial tkVFD release.