Added warning about removal of Etrigan support

Added warning about removal of Etrigan GUI support
This commit is contained in:
simonmicro 2022-12-07 12:19:32 +01:00
parent e8c2fb7e50
commit e5a7f77440
No known key found for this signature in database
GPG key ID: 033A4D4CE4E063D6
3 changed files with 6 additions and 6 deletions

View file

@ -556,11 +556,14 @@ def server_main_terminal():
else:
# (with or without GUI) and (with daemon)
# Setup daemon (eventually).
pretty_printer(log_obj = loggersrv.warning, put_text = "{reverse}{yellow}{bold}Etrigan support is deprecated and will be removed in the future!{end}")
server_daemon()
def server_with_gui():
import pykms_GuiBase
pretty_printer(log_obj = loggersrv.warning, put_text = "{reverse}{yellow}{bold}Etrigan GUI support is deprecated and will be removed in the future!{end}")
root = pykms_GuiBase.KmsGui()
root.title(pykms_GuiBase.gui_description + ' (' + pykms_GuiBase.gui_version + ')')
root.mainloop()