Sat, 26 Apr 2025 12:34:32 +0200
MicroPython
- Added a configuration option to disable the support for the no longer produced Pimoroni Pico Wireless Pack.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>AddEntryPointDialog</class> <widget class="QDialog" name="AddEntryPointDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>500</width> <height>214</height> </rect> </property> <property name="windowTitle"> <string>Add Entry Point</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QLabel" name="label_3"> <property name="text"> <string>Script Type:</string> </property> </widget> </item> <item> <widget class="QComboBox" name="typeComboBox"> <property name="toolTip"> <string>Select the script type</string> </property> </widget> </item> <item> <widget class="QLabel" name="label"> <property name="text"> <string>Name:</string> </property> </widget> </item> <item> <widget class="QLineEdit" name="nameEdit"> <property name="toolTip"> <string>Enter a name for the entry point</string> </property> <property name="clearButtonEnabled"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QLabel" name="label_2"> <property name="text"> <string>Script Function:</string> </property> </widget> </item> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QLineEdit" name="scriptEdit"> <property name="toolTip"> <string>Enter the script and function</string> </property> <property name="clearButtonEnabled"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QToolButton" name="scriptButton"> <property name="toolTip"> <string>Press to select the script via a file selection dialog</string> </property> </widget> </item> </layout> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> </property> </widget> </item> </layout> </widget> <tabstops> <tabstop>typeComboBox</tabstop> <tabstop>nameEdit</tabstop> <tabstop>scriptEdit</tabstop> <tabstop>scriptButton</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>AddEntryPointDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>248</x> <y>254</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>AddEntryPointDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>316</x> <y>260</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>