Sun, 14 Jan 2018 12:03:34 +0100
Fixed a bug in the plug-in repository dialog causing the cleanup function to fail, if the download directory contains a file without version info seperated by '-'.
<ui version="4.0" > <class>PluginInfoDialog</class> <widget class="QDialog" name="PluginInfoDialog" > <property name="geometry" > <rect> <x>0</x> <y>0</y> <width>800</width> <height>600</height> </rect> </property> <property name="windowTitle" > <string>Loaded Plugins</string> </property> <property name="sizeGripEnabled" > <bool>true</bool> </property> <layout class="QVBoxLayout" > <item> <widget class="QLabel" name="label" > <property name="text" > <string>Double-Click an entry to show detailed info. Plugins with an error are shown in red.</string> </property> <property name="wordWrap" > <bool>true</bool> </property> </widget> </item> <item> <widget class="QTreeWidget" name="pluginList" > <property name="whatsThis" > <string><b>Plugin List</b><p>This lists all loaded plugins. Double-clicking an entry shows more detailed information in a separate dialog.</p></string> </property> <property name="rootIsDecorated" > <bool>false</bool> </property> <property name="itemsExpandable" > <bool>false</bool> </property> <property name="sortingEnabled" > <bool>true</bool> </property> <property name="allColumnsShowFocus" > <bool>true</bool> </property> <column> <property name="text" > <string>Module</string> </property> </column> <column> <property name="text" > <string>Name</string> </property> </column> <column> <property name="text" > <string>Version</string> </property> </column> <column> <property name="text" > <string>Autoactivate</string> </property> </column> <column> <property name="text" > <string>Active</string> </property> </column> <column> <property name="text" > <string>Description</string> </property> </column> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox" > <property name="orientation" > <enum>Qt::Horizontal</enum> </property> <property name="standardButtons" > <set>QDialogButtonBox::Close</set> </property> </widget> </item> </layout> </widget> <tabstops> <tabstop>pluginList</tabstop> <tabstop>buttonBox</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>PluginInfoDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel" > <x>308</x> <y>454</y> </hint> <hint type="destinationlabel" > <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>PluginInfoDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel" > <x>376</x> <y>460</y> </hint> <hint type="destinationlabel" > <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>