Skip to content

Releases: littlewhitecloud/TkTerminal

Style

30 Jun 04:45
152851a
Compare
Choose a tag to compare

What's Changed

Styles

tkterminalwidget also have some styles to use such as Powershell Command:
image
image
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()

image

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

27 Jun 06:23
bde10a3
Compare
Choose a tag to compare

What's Changed

Something new

Styles

image

Doc

Add chinese readme and more details
image

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

11 Jun 03:01
3d8e002
Compare
Choose a tag to compare

Fixed:

#26 #28 #25

What's Changed

Full Changelog: v0.0.2...v0.0.3

Release v0.0.2

28 May 05:34
3b6c4e7
Compare
Choose a tag to compare

What's Changed

Install

pip install tktermwidget==0.0.2

Full Changelog: v0.0.1...v0.0.2

Release v0.0.1

28 May 04:32
2fdb789
Compare
Choose a tag to compare