essential-actions
Clone or download
Modified Files
--- 'a/obssuite/togglemute/pom.xml'
+++ b/obssuite/togglemute/pom.xml
@@ -6,7 +6,7 @@
<groupId>com.stream-pi</groupId>
<artifactId>obssuite_togglemuteaction</artifactId>
- <version>2.0.0</version>
+ <version>2.0.1</version>
<build>
<plugins>
@@ -39,7 +39,7 @@
<properties>
<ActionAPIVersion>1.0.0-SNAPSHOT</ActionAPIVersion>
<UtilVersion>1.0.0-SNAPSHOT</UtilVersion>
- <OBSSuiteMotherVersion>2.0.0</OBSSuiteMotherVersion>
+ <OBSSuiteMotherVersion>2.0.1</OBSSuiteMotherVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
--- 'a/obssuite/togglemute/src/main/java/togglemute/ToggleMute.java'
+++ b/obssuite/togglemute/src/main/java/togglemute/ToggleMute.java
@@ -20,19 +20,19 @@ public class ToggleMute extends ToggleAc
}
@Override
- public void onToggleOn() throws Exception
+ public void onToggleOn() throws MinorException
{
onClicked(true);
}
@Override
- public void onToggleOff() throws Exception
+ public void onToggleOff() throws MinorException
{
onClicked(false);
}
@Override
- public void initProperties() throws Exception
+ public void initProperties() throws MinorException
{
Property sourceProperty = new Property("source", Type.STRING);
sourceProperty.setDisplayName("Source");