essential-actions

Clone or download

Modified Files

--- 'a/obssuite/togglerecording/.gitignore'
+++ b/obssuite/togglerecording/.gitignore
@@ -1,6 +1,7 @@
.idea/
target/
+*.iml
.classpath
.factorypath
.project
--- 'a/obssuite/togglerecording/pom.xml'
+++ b/obssuite/togglerecording/pom.xml
@@ -6,7 +6,7 @@
<groupId>com.stream-pi</groupId>
<artifactId>obssuite_togglerecordingaction</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/togglerecording/src/main/java/togglerecording/ToggleRecording.java'
+++ b/obssuite/togglerecording/src/main/java/togglerecording/ToggleRecording.java
@@ -20,19 +20,19 @@ public class ToggleRecording extends Tog
}
@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 autoConnectProperty = new Property("auto_connect", Type.BOOLEAN);
autoConnectProperty.setDefaultValueBoolean(true);