Merge pull request #3 from bec-project/chore/update-1.1.2

Update repo with template version v1.1.2
This commit is contained in:
2025-07-10 09:28:09 +01:00
committed by GitHub
3 changed files with 17 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
# It is needed to track the repo template version, and editing may break things. # It is needed to track the repo template version, and editing may break things.
# This file will be overwritten by copier on template updates. # This file will be overwritten by copier on template updates.
_commit: v1.1.1 _commit: v1.1.2
_src_path: https://github.com/bec-project/plugin_copier_template.git _src_path: https://github.com/bec-project/plugin_copier_template.git
make_commit: true make_commit: true
project_name: bec_testing_plugin project_name: bec_testing_plugin

View File

@@ -1,8 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>Examplewidgetplugin</class> <class>examplewidgetplugin</class>
<widget class="QWidget" name="examplewidgetplugin"> <widget class="QWidget" name="examplewidgetplugin">
</widget> <property name="geometry">
<resources /> <rect>
<connections /> <x>0</x>
</ui> <y>0</y>
<width>150</width>
<height>150</height>
</rect>
</property>
</widget>
<resources/>
<connections/>
</ui>

View File

@@ -17,10 +17,11 @@ from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
QPalette, QPixmap, QRadialGradient, QTransform) QPalette, QPixmap, QRadialGradient, QTransform)
from PySide6.QtWidgets import (QApplication, QSizePolicy, QWidget) from PySide6.QtWidgets import (QApplication, QSizePolicy, QWidget)
class Ui_Examplewidgetplugin(object): class Ui_examplewidgetplugin(object):
def setupUi(self, examplewidgetplugin): def setupUi(self, examplewidgetplugin):
if not examplewidgetplugin.objectName(): if not examplewidgetplugin.objectName():
examplewidgetplugin.setObjectName(u"examplewidgetplugin") examplewidgetplugin.setObjectName(u"examplewidgetplugin")
examplewidgetplugin.resize(150, 150)
self.retranslateUi(examplewidgetplugin) self.retranslateUi(examplewidgetplugin)