Custom Scripts -> Plugins
Some checks failed
Build Porymap / build-linux (, 5.14.2) (push) Has been cancelled
Build Porymap / build-linux (, 6.8.*) (push) Has been cancelled
Build Porymap / build-linux (minimal, 5.14.2) (push) Has been cancelled
Build Porymap / build-macos (macos-15-intel) (push) Has been cancelled
Build Porymap / build-macos (macos-latest) (push) Has been cancelled
Build Porymap / build-static-windows (push) Has been cancelled

This commit is contained in:
GriffinR
2026-02-24 18:34:33 -05:00
parent 6d94be2396
commit ce090b27ef
31 changed files with 578 additions and 577 deletions

View File

@@ -2919,7 +2919,7 @@
<addaction name="actionProject_Settings"/>
<addaction name="actionPreferences"/>
<addaction name="actionShortcuts"/>
<addaction name="actionCustom_Scripts"/>
<addaction name="actionPlugins"/>
</widget>
<addaction name="menuFile"/>
<addaction name="menuEdit"/>
@@ -3161,9 +3161,9 @@
<string>Project Settings...</string>
</property>
</action>
<action name="actionCustom_Scripts">
<action name="actionPlugins">
<property name="text">
<string>Custom Scripts...</string>
<string>Plugins...</string>
</property>
</action>
<action name="actionCheck_for_Updates">

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CustomScriptsEditor</class>
<widget class="QMainWindow" name="CustomScriptsEditor">
<class>PluginEditor</class>
<widget class="QMainWindow" name="PluginEditor">
<property name="geometry">
<rect>
<x>0</x>
@@ -11,7 +11,7 @@
</rect>
</property>
<property name="windowTitle">
<string>Custom Scripts Editor</string>
<string>Plugin Editor</string>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QVBoxLayout" name="verticalLayout">
@@ -58,12 +58,12 @@
<number>6</number>
</property>
<item>
<widget class="QPushButton" name="button_CreateNewScript">
<widget class="QPushButton" name="button_CreateNewPlugin">
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Create a new Porymap script file with a default template&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Create a new Porymap plugin script file with a default template&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="text">
<string>Create New Script...</string>
<string>Create New Plugin...</string>
</property>
<property name="icon">
<iconset resource="../resources/images.qrc">
@@ -72,12 +72,12 @@
</widget>
</item>
<item>
<widget class="QPushButton" name="button_LoadScript">
<widget class="QPushButton" name="button_LoadPlugin">
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add an existing script file to the list below&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add an existing plugin script file to the list below&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="text">
<string>Load Script...</string>
<string>Load Plugin...</string>
</property>
<property name="icon">
<iconset resource="../resources/images.qrc">
@@ -86,12 +86,12 @@
</widget>
</item>
<item>
<widget class="QPushButton" name="button_RefreshScripts">
<widget class="QPushButton" name="button_RefreshPlugins">
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refresh all loaded scripts to account for any recent edits&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refresh all loaded plugins to account for any recent edits&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="text">
<string>Refresh Scripts</string>
<string>Refresh Plugins</string>
</property>
<property name="icon">
<iconset resource="../resources/images.qrc">
@@ -142,7 +142,7 @@
<item>
<widget class="QLabel" name="label_ListHeader">
<property name="text">
<string>Scripts</string>
<string>Plugins</string>
</property>
</widget>
</item>

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CustomScriptsListItem</class>
<widget class="QFrame" name="CustomScriptsListItem">
<class>PluginListItem</class>
<widget class="QFrame" name="PluginListItem">
<property name="geometry">
<rect>
<x>0</x>
@@ -26,7 +26,7 @@
<item>
<widget class="QCheckBox" name="checkBox_Enable">
<property name="toolTip">
<string>If unchecked this script will be ignored</string>
<string>If unchecked this plugin will be ignored</string>
</property>
<property name="text">
<string/>
@@ -49,7 +49,7 @@
<item>
<widget class="QToolButton" name="b_Choose">
<property name="toolTip">
<string>Choose a new filepath for this script</string>
<string>Choose a new filepath for this plugin</string>
</property>
<property name="text">
<string>...</string>
@@ -63,7 +63,7 @@
<item>
<widget class="QToolButton" name="b_Edit">
<property name="toolTip">
<string>Open this script file</string>
<string>Open this plugin's script file</string>
</property>
<property name="text">
<string>...</string>
@@ -77,7 +77,7 @@
<item>
<widget class="QToolButton" name="b_Delete">
<property name="toolTip">
<string>Remove this script</string>
<string>Remove this plugin</string>
</property>
<property name="text">
<string>...</string>