diff --git a/directory/plugins/rootbuilder.json b/directory/plugins/rootbuilder.json index 5494444..1c659be 100644 --- a/directory/plugins/rootbuilder.json +++ b/directory/plugins/rootbuilder.json @@ -20,8 +20,8 @@ "DataPath": [ "data/rootbuilder" ] }, { - "Version": "4.3.2b", - "Released": "2021-12-24", + "Version": "4.3.3b", + "Released": "2022-01-02", "MinSupport": "2.4.0", "MaxSupport": "2.5.0.0-qt6dev4", "MinWorking": "2.4.0", @@ -34,9 +34,10 @@ "(4.3.1) Removed 'always on top' flag.", "(4.3.1) Fixed issues with MO 2.5.0 support.", "(4.3.1) Improved error handling.", - "(4.3.2) Fixed a bug where autobuild would sometimes stop working after launching certain apps with redirect." + "(4.3.2) Fixed a bug where autobuild would sometimes stop working after launching certain apps with redirect.", + "(4.3.3) Added experimental root mod installer plugin. Disabled by default." ], - "DownloadUrl": "https://github.com/Kezyma/ModOrganizer-Plugins/releases/download/rootbuilder/rootbuilder.4.3.1.zip", + "DownloadUrl": "https://github.com/Kezyma/ModOrganizer-Plugins/releases/download/rootbuilder/rootbuilder.4.3.3.zip", "PluginPath": [ "rootbuilder" ], "LocalePath": [], "DataPath": [ "data/rootbuilder" ] diff --git a/src/rootbuilder/plugins/tst.py b/src/rootbuilder/plugins/tst.py deleted file mode 100644 index e45a220..0000000 --- a/src/rootbuilder/plugins/tst.py +++ /dev/null @@ -1,58 +0,0 @@ -# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file 'src/rootbuilder/plugins/simpleinstalldialog.ui' -# -# Created by: PyQt5 UI code generator 5.15.6 -# -# 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_SimpleInstallDialog(object): - def setupUi(self, SimpleInstallDialog): - SimpleInstallDialog.setObjectName("SimpleInstallDialog") - SimpleInstallDialog.resize(400, 83) - self.verticalLayout = QtWidgets.QVBoxLayout(SimpleInstallDialog) - self.verticalLayout.setObjectName("verticalLayout") - self.horizontalLayout = QtWidgets.QHBoxLayout() - self.horizontalLayout.setObjectName("horizontalLayout") - self.label = QtWidgets.QLabel(SimpleInstallDialog) - self.label.setObjectName("label") - self.horizontalLayout.addWidget(self.label) - self.nameCombo = QtWidgets.QComboBox(SimpleInstallDialog) - self.nameCombo.setEditable(True) - self.nameCombo.setObjectName("nameCombo") - self.horizontalLayout.addWidget(self.nameCombo) - self.horizontalLayout.setStretch(1, 1) - self.verticalLayout.addLayout(self.horizontalLayout) - self.horizontalLayout_2 = QtWidgets.QHBoxLayout() - self.horizontalLayout_2.setObjectName("horizontalLayout_2") - self.manualBtn = QtWidgets.QPushButton(SimpleInstallDialog) - self.manualBtn.setObjectName("manualBtn") - self.horizontalLayout_2.addWidget(self.manualBtn) - spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.horizontalLayout_2.addItem(spacerItem) - self.okBtn = QtWidgets.QPushButton(SimpleInstallDialog) - self.okBtn.setDefault(True) - self.okBtn.setObjectName("okBtn") - self.horizontalLayout_2.addWidget(self.okBtn) - self.cancelBtn = QtWidgets.QPushButton(SimpleInstallDialog) - self.cancelBtn.setObjectName("cancelBtn") - self.horizontalLayout_2.addWidget(self.cancelBtn) - self.verticalLayout.addLayout(self.horizontalLayout_2) - - self.retranslateUi(SimpleInstallDialog) - QtCore.QMetaObject.connectSlotsByName(SimpleInstallDialog) - - def retranslateUi(self, SimpleInstallDialog): - _translate = QtCore.QCoreApplication.translate - SimpleInstallDialog.setWindowTitle(_translate("SimpleInstallDialog", "Quick Install")) - self.label.setText(_translate("SimpleInstallDialog", "Name")) - self.manualBtn.setToolTip(_translate("SimpleInstallDialog", "Opens a Dialog that allows custom modifications.")) - self.manualBtn.setWhatsThis(_translate("SimpleInstallDialog", "Opens a Dialog that allows custom modifications.")) - self.manualBtn.setText(_translate("SimpleInstallDialog", "Manual")) - self.okBtn.setText(_translate("SimpleInstallDialog", "OK")) - self.cancelBtn.setText(_translate("SimpleInstallDialog", "Cancel")) diff --git a/src/rootbuilder/rootbuilder_plugin.py b/src/rootbuilder/rootbuilder_plugin.py index 72dcd96..9518979 100644 --- a/src/rootbuilder/rootbuilder_plugin.py +++ b/src/rootbuilder/rootbuilder_plugin.py @@ -9,7 +9,7 @@ class RootBuilderPlugin(SharedPlugin): def __init__(self): - super().__init__("RootBuilder", "Root Builder", mobase.VersionInfo(4, 3, 2, mobase.ReleaseType.BETA)) + super().__init__("RootBuilder", "Root Builder", mobase.VersionInfo(4, 3, 3, mobase.ReleaseType.BETA)) def init(self, organiser=mobase.IOrganizer): self.rootBuilder = RootBuilder(organiser)