Two new SYMBOL constants. New Demo Program - Desktop Widget Handwritten Digits
This commit is contained in:
parent
e29acb936e
commit
3fc4002401
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
version = __version__ = "4.57.0.5 Unreleased"
|
version = __version__ = "4.57.0.6 Unreleased"
|
||||||
|
|
||||||
_change_log = """
|
_change_log = """
|
||||||
Changelog since 4.57.0 released to PyPI on 13-Feb-2022
|
Changelog since 4.57.0 released to PyPI on 13-Feb-2022
|
||||||
|
@ -14,6 +14,8 @@ _change_log = """
|
||||||
ButtonMenu.update - addition of button_text parameter. Enables changing text displayed on the ButtonMenu. Should have been an original feature.
|
ButtonMenu.update - addition of button_text parameter. Enables changing text displayed on the ButtonMenu. Should have been an original feature.
|
||||||
4.57.0.5
|
4.57.0.5
|
||||||
Open GitHub Issue GUI - Tabs use 2 lines now. Added tab asking where found PSG.
|
Open GitHub Issue GUI - Tabs use 2 lines now. Added tab asking where found PSG.
|
||||||
|
4.57.0.6
|
||||||
|
New symbols SYMBOL_CHECKMARK_SMALL & SYMBOL_X_SMALL
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = version.split()[0] # For PEP 396 and PEP 345
|
__version__ = version.split()[0] # For PEP 396 and PEP 345
|
||||||
|
@ -631,6 +633,8 @@ SYMBOL_LEFT = '◄'
|
||||||
SYMBOL_DOWN = '▼'
|
SYMBOL_DOWN = '▼'
|
||||||
SYMBOL_X = '❎'
|
SYMBOL_X = '❎'
|
||||||
SYMBOL_CHECK = '✅'
|
SYMBOL_CHECK = '✅'
|
||||||
|
SYMBOL_CHECK_SMALL = '✓'
|
||||||
|
SYMBOL_X_SMALL = '✗'
|
||||||
SYMBOL_BALLOT_X = '☒'
|
SYMBOL_BALLOT_X = '☒'
|
||||||
SYMBOL_BALLOT_CHECK = '☑'
|
SYMBOL_BALLOT_CHECK = '☑'
|
||||||
SYMBOL_LEFT_DOUBLE = '«'
|
SYMBOL_LEFT_DOUBLE = '«'
|
||||||
|
|
Loading…
Reference in New Issue