This repository has been archived by the owner on Dec 29, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #310 from srevinsaju/main-revert-new
2022.6.1 Release
- Loading branch information
Showing
27 changed files
with
232,877 additions
and
113,927 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
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
File renamed without changes.
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,60 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Form implementation generated from reading ui file 'guiscrcpy/ui/downloader.ui' | ||
# | ||
# Created by: PyQt5 UI code generator 5.15.0 | ||
# | ||
# WARNING: Any manual changes made to this file will be lost when pyuic5 is | ||
# run again. Do not edit this file unless you know what you are doing. | ||
|
||
|
||
from PyQt5 import QtCore, QtGui, QtWidgets | ||
|
||
|
||
class Ui_Initializer(object): | ||
def setupUi(self, Initializer): | ||
Initializer.setObjectName("Initializer") | ||
Initializer.resize(222, 320) | ||
icon = QtGui.QIcon() | ||
icon.addPixmap(QtGui.QPixmap(":/res/ui/guiscrcpy_logo.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) | ||
Initializer.setWindowIcon(icon) | ||
self.widget = QtWidgets.QWidget(Initializer) | ||
self.widget.setGeometry(QtCore.QRect(0, 0, 221, 311)) | ||
self.widget.setObjectName("widget") | ||
self.verticalLayout = QtWidgets.QVBoxLayout(self.widget) | ||
self.verticalLayout.setContentsMargins(0, 0, 0, 0) | ||
self.verticalLayout.setObjectName("verticalLayout") | ||
self.label_2 = QtWidgets.QLabel(self.widget) | ||
self.label_2.setText("") | ||
self.label_2.setTextFormat(QtCore.Qt.PlainText) | ||
self.label_2.setPixmap(QtGui.QPixmap(":/res/ui/guiscrcpy_logo.png")) | ||
self.label_2.setScaledContents(True) | ||
self.label_2.setAlignment(QtCore.Qt.AlignCenter) | ||
self.label_2.setWordWrap(True) | ||
self.label_2.setObjectName("label_2") | ||
self.verticalLayout.addWidget(self.label_2) | ||
self.stat = QtWidgets.QLabel(self.widget) | ||
font = QtGui.QFont() | ||
font.setFamily("Titillium Web") | ||
font.setPointSize(30) | ||
font.setBold(True) | ||
font.setWeight(75) | ||
self.stat.setFont(font) | ||
self.stat.setScaledContents(False) | ||
self.stat.setAlignment(QtCore.Qt.AlignCenter) | ||
self.stat.setObjectName("stat") | ||
self.verticalLayout.addWidget(self.stat) | ||
self.label_3 = QtWidgets.QLabel(self.widget) | ||
self.label_3.setAlignment(QtCore.Qt.AlignCenter) | ||
self.label_3.setObjectName("label_3") | ||
self.verticalLayout.addWidget(self.label_3) | ||
|
||
self.retranslateUi(Initializer) | ||
QtCore.QMetaObject.connectSlotsByName(Initializer) | ||
|
||
def retranslateUi(self, Initializer): | ||
_translate = QtCore.QCoreApplication.translate | ||
Initializer.setWindowTitle(_translate("Initializer", "Initializing")) | ||
self.stat.setText(_translate("Initializer", "guiscrcpy")) | ||
self.label_3.setText(_translate("Initializer", "Initializing")) | ||
from . import rsrc_rc |
Oops, something went wrong.