essential-actions

Clone or download

Updated motheraction password textfield as password field

Modified Files

--- 'a/obssuite/mother/pom.xml'
+++ b/obssuite/mother/pom.xml
@@ -6,7 +6,7 @@
<groupId>com.stream-pi</groupId>
<artifactId>obssuite_motheraction</artifactId>
- <version>1.0.0</version>
+ <version>1.1.0</version>
<build>
<plugins>
--- 'a/obssuite/mother/src/main/java/mother/Mother.java'
+++ b/obssuite/mother/src/main/java/mother/Mother.java
@@ -1,5 +1,6 @@
package mother;
+import com.stream_pi.action_api.actionproperty.property.ControlType;
import com.stream_pi.action_api.actionproperty.property.Property;
import com.stream_pi.action_api.actionproperty.property.Type;
import com.stream_pi.action_api.externalplugin.NormalAction;
@@ -21,7 +22,7 @@ public class Mother extends NormalAction
setVisibilityInPluginsPane(false);
setAuthor("rnayabed");
setHelpLink("https://github.com/Stream-Pi/EssentialActions");
- setVersion(new Version(1,0,0));
+ setVersion(new Version(1,1,0));
connectDisconnectButton = new Button("Connect");
@@ -39,6 +40,7 @@ public class Mother extends NormalAction
urlProperty.setCanBeBlank(false);
Property passwordProperty = new Property("pass", Type.STRING);
+ passwordProperty.setControlType(ControlType.TEXT_FIELD_MASKED);
passwordProperty.setDisplayName("Password");
Property connectOnStartupProperty = new Property("connect_on_startup", Type.BOOLEAN);