Set the use of ssh tunnel to default value for new settings

This commit is contained in:
2023-01-09 20:01:01 +01:00
parent 1e8200cc55
commit 2039f6cfe2
2 changed files with 6 additions and 6 deletions

View File

@@ -20,14 +20,13 @@ setup(
"zeroconf" "zeroconf"
], ],
entry_points={ entry_points={
'console_scripts': [
'revpicommander = revpicommander.revpicommander:main',
],
'gui_scripts': [ 'gui_scripts': [
'RevPiCommander = revpicommander.revpicommander:main', 'revpicommander-gui = revpicommander.revpicommander:main',
], ],
}, },
platforms=["all"],
url="https://revpimodio.org/revpipyplc/", url="https://revpimodio.org/revpipyplc/",
license="GPLv3", license="GPLv3",
author="Sven Sager", author="Sven Sager",
@@ -40,6 +39,7 @@ setup(
"of RevPiPyLoad and do IO checks on your local machine. Developing your\n" "of RevPiPyLoad and do IO checks on your local machine. Developing your\n"
"control program is very easy with the developer, upload and debug it\n" "control program is very easy with the developer, upload and debug it\n"
"over the network.", "over the network.",
keywords=["revpi", "revolution pi", "revpimodio", "plc"],
classifiers=[ classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
], ],

View File

@@ -58,7 +58,7 @@ class RevPiSettings:
self.port = 55123 self.port = 55123
self.timeout = 5 self.timeout = 5
self.ssh_use_tunnel = False self.ssh_use_tunnel = True
self.ssh_port = 22 self.ssh_port = 22
self.ssh_user = "pi" self.ssh_user = "pi"
@@ -92,7 +92,7 @@ class RevPiSettings:
self.port = self._settings.value("port", 55123, type=int) self.port = self._settings.value("port", 55123, type=int)
self.timeout = self._settings.value("timeout", 5, type=int) self.timeout = self._settings.value("timeout", 5, type=int)
self.ssh_use_tunnel = self._settings.value("ssh_use_tunnel", False, type=bool) self.ssh_use_tunnel = self._settings.value("ssh_use_tunnel", True, type=bool)
self.ssh_port = self._settings.value("ssh_port", 22, type=int) self.ssh_port = self._settings.value("ssh_port", 22, type=int)
self.ssh_user = self._settings.value("ssh_user", "pi", type=str) self.ssh_user = self._settings.value("ssh_user", "pi", type=str)