Releases: littlewhitecloud/TkTerminal
Releases · littlewhitecloud/TkTerminal
Style
What's Changed
Extension
styles by @littlewhitecloud in #45
Styles
tkterminalwidget
also have some styles to use such as Powershell
Command
:
But also, you can create your custom style by using
from tktermwidget import Config, POWERSHELL
styleconfig = Config(usetheme=True, basedon=POWERSHELL)
# if usetheme enable, the window will use sv_ttk theme
# basedon mean you can create your style based on the "basedon" style
styleconfig.mainloop()
After saving it, you can write down this to use the custom theme:
from tkinterwidget import Terminal, CUSTOM
example = Terminal(window, style=CUSTOM) # your custom theme
example.mainloop()
Or use a built in theme:
from tkinterwidget import Terminal, POWERSHELL # use powershell for an example
example = Terminal(window, style=POWERSHELL)
example.mainloop()
Full Changelog: v0.0.4...style
A huge release v0.0.4
What's Changed
- Improve doc by @littlewhitecloud in #30
- A bunch of fix and improvements by @littlewhitecloud and @Moosems in #32
Something new
Styles
Doc
Add chinese readme and more details
Bug fix
fix #19
fix #27
fix #29
fix #33
fix #37
fix #38
fix #40
fix #41
Install package:
pip install tktermwidget --upgrade
Full Changelog: v0.0.3...v0.0.4
Release v0.0.3
Release v0.0.2
Release v0.0.1
Full Changelog: v1.0.0...v0.0.1