-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:VirtualCable/uds-client
- Loading branch information
Showing
7 changed files
with
2,663 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "UDSClient", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/UDSClient.py", | ||
"console": "integratedTerminal", | ||
"args": ["udss://demo.udsenterprise.com/jncq5fvwzmztu0kjtqvaa7vlvcnxdteddlcfhkhr/UDnsXW3UyakVgrmOKdD33WhxEUOEpGVU"], | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Form implementation generated from reading ui file 'UDSLauncherMac.ui' | ||
# | ||
# Created by: PySide6 UI code generator 6.5.0 | ||
# | ||
# WARNING: Any manual changes made to this file will be lost when pyuic6 is | ||
# run again. Do not edit this file unless you know what you are doing. | ||
|
||
|
||
from PySide6 import QtCore, QtGui, QtWidgets | ||
|
||
|
||
class Ui_MacLauncher(object): | ||
def setupUi(self, MacLauncher): | ||
MacLauncher.setObjectName("MacLauncher") | ||
MacLauncher.setWindowModality(QtCore.Qt.WindowModality.NonModal) | ||
MacLauncher.resize(235, 120) | ||
MacLauncher.setCursor(QtGui.QCursor(QtCore.Qt.CursorShape.ArrowCursor)) | ||
icon = QtGui.QIcon() | ||
icon.addPixmap(QtGui.QPixmap(":/images/logo-uds-small"), QtGui.QIcon.Mode.Normal, QtGui.QIcon.State.Off) | ||
MacLauncher.setWindowIcon(icon) | ||
MacLauncher.setWindowOpacity(1.0) | ||
self.centralwidget = QtWidgets.QWidget(parent=MacLauncher) | ||
self.centralwidget.setAutoFillBackground(True) | ||
self.centralwidget.setObjectName("centralwidget") | ||
self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.centralwidget) | ||
self.verticalLayout_2.setContentsMargins(4, 4, 4, 4) | ||
self.verticalLayout_2.setSpacing(4) | ||
self.verticalLayout_2.setObjectName("verticalLayout_2") | ||
self.frame = QtWidgets.QFrame(parent=self.centralwidget) | ||
self.frame.setFrameShape(QtWidgets.QFrame.Shape.StyledPanel) | ||
self.frame.setFrameShadow(QtWidgets.QFrame.Shadow.Raised) | ||
self.frame.setObjectName("frame") | ||
self.verticalLayout = QtWidgets.QVBoxLayout(self.frame) | ||
self.verticalLayout.setObjectName("verticalLayout") | ||
self.topLabel = QtWidgets.QLabel(parent=self.frame) | ||
self.topLabel.setTextFormat(QtCore.Qt.TextFormat.RichText) | ||
self.topLabel.setObjectName("topLabel") | ||
self.verticalLayout.addWidget(self.topLabel) | ||
self.image = QtWidgets.QLabel(parent=self.frame) | ||
self.image.setMinimumSize(QtCore.QSize(0, 32)) | ||
self.image.setAutoFillBackground(True) | ||
self.image.setText("") | ||
self.image.setPixmap(QtGui.QPixmap(":/images/logo-uds-small")) | ||
self.image.setScaledContents(False) | ||
self.image.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter) | ||
self.image.setObjectName("image") | ||
self.verticalLayout.addWidget(self.image) | ||
self.label_2 = QtWidgets.QLabel(parent=self.frame) | ||
self.label_2.setTextFormat(QtCore.Qt.TextFormat.RichText) | ||
self.label_2.setObjectName("label_2") | ||
self.verticalLayout.addWidget(self.label_2) | ||
self.verticalLayout_2.addWidget(self.frame) | ||
MacLauncher.setCentralWidget(self.centralwidget) | ||
|
||
self.retranslateUi(MacLauncher) | ||
QtCore.QMetaObject.connectSlotsByName(MacLauncher) | ||
|
||
def retranslateUi(self, MacLauncher): | ||
_translate = QtCore.QCoreApplication.translate | ||
MacLauncher.setWindowTitle(_translate("MacLauncher", "UDS Launcher")) | ||
self.topLabel.setText(_translate("MacLauncher", "<html><head/><body><p align=\"center\"><span style=\" font-size:12pt; font-weight:600;\">UDS Launcher</span></p></body></html>")) | ||
self.label_2.setText(_translate("MacLauncher", "<html><head/><body><p align=\"center\"><span style=\" font-size:6pt;\">Closing this window will end all UDS tunnels</span></p></body></html>")) |
Oops, something went wrong.