Fri, 07 Jun 2024 10:05:06 +0200
Changed code structure and install script to include the Ui_*.py files in the code repository and do not compile *.ui files at installation time anymore. This is to cope with a backward incompatible change of Qt 6.7.0.
# Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/VcsPlugins/vcsGit/GitOptionsDialog.ui' # # Created by: PyQt6 UI code generator 6.7.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 PyQt6 import QtCore, QtGui, QtWidgets class Ui_GitOptionsDialog(object): def setupUi(self, GitOptionsDialog): GitOptionsDialog.setObjectName("GitOptionsDialog") GitOptionsDialog.resize(565, 78) GitOptionsDialog.setSizeGripEnabled(True) self.verticalLayout = QtWidgets.QVBoxLayout(GitOptionsDialog) self.verticalLayout.setObjectName("verticalLayout") self.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") self.TextLabel5 = QtWidgets.QLabel(parent=GitOptionsDialog) self.TextLabel5.setObjectName("TextLabel5") self.horizontalLayout.addWidget(self.TextLabel5) self.vcsLogEdit = QtWidgets.QLineEdit(parent=GitOptionsDialog) self.vcsLogEdit.setObjectName("vcsLogEdit") self.horizontalLayout.addWidget(self.vcsLogEdit) self.verticalLayout.addLayout(self.horizontalLayout) self.buttonBox = QtWidgets.QDialogButtonBox(parent=GitOptionsDialog) self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) self.buttonBox.setObjectName("buttonBox") self.verticalLayout.addWidget(self.buttonBox) self.TextLabel5.setBuddy(self.vcsLogEdit) self.retranslateUi(GitOptionsDialog) self.buttonBox.accepted.connect(GitOptionsDialog.accept) # type: ignore self.buttonBox.rejected.connect(GitOptionsDialog.reject) # type: ignore QtCore.QMetaObject.connectSlotsByName(GitOptionsDialog) def retranslateUi(self, GitOptionsDialog): _translate = QtCore.QCoreApplication.translate GitOptionsDialog.setWindowTitle(_translate("GitOptionsDialog", "Initial Commit")) GitOptionsDialog.setWhatsThis(_translate("GitOptionsDialog", "<b>Initial Commit Dialog</b>\n" "<p>Enter the message for the initial commit.</p>")) self.TextLabel5.setText(_translate("GitOptionsDialog", "Commit &Message:")) self.vcsLogEdit.setToolTip(_translate("GitOptionsDialog", "Enter the log message for the new project.")) self.vcsLogEdit.setWhatsThis(_translate("GitOptionsDialog", "<b>Log Message</b>\n" "<p>Enter the log message to be used for the new project.</p>")) self.vcsLogEdit.setText(_translate("GitOptionsDialog", "new project started"))