essential-actions

Clone or download

Refactored to use new groupid

Modified Files

--- 'a/obssuite/setcurrentprofile/OBSSuite-SetCurrentProfileAction.iml'
+++ b/obssuite/setcurrentprofile/OBSSuite-SetCurrentProfileAction.iml
@@ -9,8 +9,28 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="library" name="Maven: com.stream_pi:util:1.0.0" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:actionapi:1.0.0" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:obssuite_motheraction:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:util:1.0.0-SNAPSHOT" level="project" />
+ <orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-fontawesome5-pack:11.5.0" level="project" />
+ <orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-core:11.5.0" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-controls:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-controls:linux:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-base:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-base:linux:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-javafx:11.5.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:action-api:1.0.0-SNAPSHOT" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:obssuite_motheraction:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: net.twasi:obs-websocket-java:1.2.0" level="project" />
+ <orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-api:1.7.30" level="project" />
+ <orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-simple:1.7.30" level="project" />
+ <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-client:9.4.35.v20201120" level="project" />
+ <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-client:9.4.35.v20201120" level="project" />
+ <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-http:9.4.35.v20201120" level="project" />
+ <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-util:9.4.35.v20201120" level="project" />
+ <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-io:9.4.35.v20201120" level="project" />
+ <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-common:9.4.35.v20201120" level="project" />
+ <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-api:9.4.35.v20201120" level="project" />
+ <orderEntry type="library" name="Maven: com.google.code.gson:gson:2.8.6" level="project" />
</component>
</module>
\ No newline at end of file
--- 'a/obssuite/setcurrentprofile/pom.xml'
+++ b/obssuite/setcurrentprofile/pom.xml
@@ -37,8 +37,8 @@
</build>
<properties>
- <ActionAPIVersion>1.0.0</ActionAPIVersion>
- <UtilVersion>1.0.0</UtilVersion>
+ <ActionAPIVersion>1.0.0-SNAPSHOT</ActionAPIVersion>
+ <UtilVersion>1.0.0-SNAPSHOT</UtilVersion>
<OBSSuiteMotherVersion>1.0.0</OBSSuiteMotherVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -48,19 +48,19 @@
<dependencies>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>util</artifactId>
<version>${UtilVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
- <artifactId>actionapi</artifactId>
+ <groupId>com.stream-pi</groupId>
+ <artifactId>action-api</artifactId>
<version>${ActionAPIVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_motheraction</artifactId>
<version>${OBSSuiteMotherVersion}</version>
</dependency>
--- 'a/obssuite/setcurrentprofile/src/main/java/module-info.java'
+++ b/obssuite/setcurrentprofile/src/main/java/module-info.java
@@ -1,9 +1,9 @@
module com.stream_pi.obssuite.setcurrentprofileaction
{
- requires com.stream_pi.actionapi;
+ requires com.stream_pi.action_api;
requires com.stream_pi.util;
requires com.stream_pi.obssuite.motheraction;
- provides com.stream_pi.actionapi.normalaction.NormalAction with setcurrentprofile.SetCurrentProfile;
+ provides com.stream_pi.action_api.normalaction.NormalAction with setcurrentprofile.SetCurrentProfile;
}
--- 'a/obssuite/setcurrentprofile/src/main/java/setcurrentprofile/SetCurrentProfile.java'
+++ b/obssuite/setcurrentprofile/src/main/java/setcurrentprofile/SetCurrentProfile.java
@@ -1,8 +1,8 @@
package setcurrentprofile;
-import com.stream_pi.actionapi.actionproperty.property.Property;
-import com.stream_pi.actionapi.actionproperty.property.Type;
-import com.stream_pi.actionapi.normalaction.NormalAction;
+import com.stream_pi.action_api.actionproperty.property.Property;
+import com.stream_pi.action_api.actionproperty.property.Type;
+import com.stream_pi.action_api.normalaction.NormalAction;
import com.stream_pi.util.alert.StreamPiAlert;
import com.stream_pi.util.alert.StreamPiAlertType;
import com.stream_pi.util.version.Version;
--- 'a/obssuite/setcurrentscene/OBSSuite-SetCurrentSceneAction.iml'
+++ b/obssuite/setcurrentscene/OBSSuite-SetCurrentSceneAction.iml
@@ -9,18 +9,18 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="library" name="Maven: com.stream_pi:util:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:util:1.0.0-SNAPSHOT" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-fontawesome5-pack:11.5.0" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-core:11.5.0" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:linux:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:linux:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-javafx:11.5.0" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:actionapi:1.0.0" level="project" />
- <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:15" level="project" />
- <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:15" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:obssuite_motheraction:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:action-api:1.0.0-SNAPSHOT" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:obssuite_motheraction:1.0.0" level="project" />
<orderEntry type="library" name="Maven: net.twasi:obs-websocket-java:1.2.0" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-api:1.7.30" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-simple:1.7.30" level="project" />
--- 'a/obssuite/setcurrentscene/pom.xml'
+++ b/obssuite/setcurrentscene/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_setcurrentsceneaction</artifactId>
<version>1.0.0</version>
@@ -37,8 +37,8 @@
</build>
<properties>
- <ActionAPIVersion>1.0.0</ActionAPIVersion>
- <UtilVersion>1.0.0</UtilVersion>
+ <ActionAPIVersion>1.0.0-SNAPSHOT</ActionAPIVersion>
+ <UtilVersion>1.0.0-SNAPSHOT</UtilVersion>
<OBSSuiteMotherVersion>1.0.0</OBSSuiteMotherVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
@@ -48,19 +48,19 @@
<dependencies>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>util</artifactId>
<version>${UtilVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
- <artifactId>actionapi</artifactId>
+ <groupId>com.stream-pi</groupId>
+ <artifactId>action-api</artifactId>
<version>${ActionAPIVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_motheraction</artifactId>
<version>${OBSSuiteMotherVersion}</version>
</dependency>
--- 'a/obssuite/setcurrentscene/src/main/java/module-info.java'
+++ b/obssuite/setcurrentscene/src/main/java/module-info.java
@@ -1,10 +1,10 @@
module com.stream_pi.obssuite.setcurrentsceneaction
{
- requires com.stream_pi.actionapi;
+ requires com.stream_pi.action_api;
requires com.stream_pi.util;
requires obs.websocket.java;
requires com.stream_pi.obssuite.motheraction;
- provides com.stream_pi.actionapi.normalaction.NormalAction with setcurrentscene.SetCurrentScene;
+ provides com.stream_pi.action_api.normalaction.NormalAction with setcurrentscene.SetCurrentScene;
}
--- 'a/obssuite/setcurrentscene/src/main/java/setcurrentscene/SetCurrentScene.java'
+++ b/obssuite/setcurrentscene/src/main/java/setcurrentscene/SetCurrentScene.java
@@ -1,8 +1,8 @@
package setcurrentscene;
-import com.stream_pi.actionapi.actionproperty.property.Property;
-import com.stream_pi.actionapi.actionproperty.property.Type;
-import com.stream_pi.actionapi.normalaction.NormalAction;
+import com.stream_pi.action_api.actionproperty.property.Property;
+import com.stream_pi.action_api.actionproperty.property.Type;
+import com.stream_pi.action_api.normalaction.NormalAction;
import com.stream_pi.util.alert.StreamPiAlert;
import com.stream_pi.util.alert.StreamPiAlertType;
import com.stream_pi.util.version.Version;
--- 'a/obssuite/setcurrenttransition/pom.xml'
+++ b/obssuite/setcurrenttransition/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_setcurrenttransitionaction</artifactId>
<version>1.0.0</version>
@@ -37,8 +37,8 @@
</build>
<properties>
- <ActionAPIVersion>1.0.0</ActionAPIVersion>
- <UtilVersion>1.0.0</UtilVersion>
+ <ActionAPIVersion>1.0.0-SNAPSHOT</ActionAPIVersion>
+ <UtilVersion>1.0.0-SNAPSHOT</UtilVersion>
<OBSSuiteMotherVersion>1.0.0</OBSSuiteMotherVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -49,19 +49,19 @@
<dependencies>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>util</artifactId>
<version>${UtilVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
- <artifactId>actionapi</artifactId>
+ <groupId>com.stream-pi</groupId>
+ <artifactId>action-api</artifactId>
<version>${ActionAPIVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_motheraction</artifactId>
<version>${OBSSuiteMotherVersion}</version>
</dependency>
--- 'a/obssuite/setcurrenttransition/src/main/java/module-info.java'
+++ b/obssuite/setcurrenttransition/src/main/java/module-info.java
@@ -1,10 +1,10 @@
module com.stream_pi.obssuite.setcurrenttransition
{
- requires com.stream_pi.actionapi;
+ requires com.stream_pi.action_api;
requires com.stream_pi.util;
requires obs.websocket.java;
requires com.stream_pi.obssuite.motheraction;
- provides com.stream_pi.actionapi.normalaction.NormalAction with setcurrenttransition.SetCurrentTransition;
+ provides com.stream_pi.action_api.normalaction.NormalAction with setcurrenttransition.SetCurrentTransition;
}
--- 'a/obssuite/setcurrenttransition/src/main/java/setcurrenttransition/SetCurrentTransition.java'
+++ b/obssuite/setcurrenttransition/src/main/java/setcurrenttransition/SetCurrentTransition.java
@@ -1,8 +1,8 @@
package setcurrenttransition;
-import com.stream_pi.actionapi.actionproperty.property.Property;
-import com.stream_pi.actionapi.actionproperty.property.Type;
-import com.stream_pi.actionapi.normalaction.NormalAction;
+import com.stream_pi.action_api.actionproperty.property.Property;
+import com.stream_pi.action_api.actionproperty.property.Type;
+import com.stream_pi.action_api.normalaction.NormalAction;
import com.stream_pi.util.alert.StreamPiAlert;
import com.stream_pi.util.alert.StreamPiAlertType;
import com.stream_pi.util.version.Version;
--- 'a/obssuite/setmute/OBSSuite-SetMuteAction.iml'
+++ b/obssuite/setmute/OBSSuite-SetMuteAction.iml
@@ -9,18 +9,18 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="library" name="Maven: com.stream_pi:util:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:util:1.0.0-SNAPSHOT" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-fontawesome5-pack:11.5.0" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-core:11.5.0" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:linux:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:linux:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-javafx:11.5.0" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:actionapi:1.0.0" level="project" />
- <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:15" level="project" />
- <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:15" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:obssuite_motheraction:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:action-api:1.0.0-SNAPSHOT" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:obssuite_motheraction:1.0.0" level="project" />
<orderEntry type="library" name="Maven: net.twasi:obs-websocket-java:1.2.0" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-api:1.7.30" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-simple:1.7.30" level="project" />
--- 'a/obssuite/setmute/pom.xml'
+++ b/obssuite/setmute/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_setmuteaction</artifactId>
<version>1.0.0</version>
@@ -37,8 +37,8 @@
</build>
<properties>
- <ActionAPIVersion>1.0.0</ActionAPIVersion>
- <UtilVersion>1.0.0</UtilVersion>
+ <ActionAPIVersion>1.0.0-SNAPSHOT</ActionAPIVersion>
+ <UtilVersion>1.0.0-SNAPSHOT</UtilVersion>
<OBSSuiteMotherVersion>1.0.0</OBSSuiteMotherVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -49,19 +49,19 @@
<dependencies>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>util</artifactId>
<version>${UtilVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
- <artifactId>actionapi</artifactId>
+ <groupId>com.stream-pi</groupId>
+ <artifactId>action-api</artifactId>
<version>${ActionAPIVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_motheraction</artifactId>
<version>${OBSSuiteMotherVersion}</version>
</dependency>
--- 'a/obssuite/setmute/src/main/java/module-info.java'
+++ b/obssuite/setmute/src/main/java/module-info.java
@@ -1,10 +1,10 @@
module com.stream_pi.obssuite.setmuteaction
{
- requires com.stream_pi.actionapi;
+ requires com.stream_pi.action_api;
requires com.stream_pi.util;
requires obs.websocket.java;
requires com.stream_pi.obssuite.motheraction;
- provides com.stream_pi.actionapi.normalaction.NormalAction with setmute.SetMute;
+ provides com.stream_pi.action_api.normalaction.NormalAction with setmute.SetMute;
}
--- 'a/obssuite/setmute/src/main/java/setmute/SetMute.java'
+++ b/obssuite/setmute/src/main/java/setmute/SetMute.java
@@ -1,8 +1,8 @@
package setmute;
-import com.stream_pi.actionapi.actionproperty.property.Property;
-import com.stream_pi.actionapi.actionproperty.property.Type;
-import com.stream_pi.actionapi.normalaction.NormalAction;
+import com.stream_pi.action_api.actionproperty.property.Property;
+import com.stream_pi.action_api.actionproperty.property.Type;
+import com.stream_pi.action_api.normalaction.NormalAction;
import com.stream_pi.util.alert.StreamPiAlert;
import com.stream_pi.util.alert.StreamPiAlertType;
import com.stream_pi.util.version.Version;
--- 'a/obssuite/setpreviewscene/OBSSuite-SetPreviewSceneAction.iml'
+++ b/obssuite/setpreviewscene/OBSSuite-SetPreviewSceneAction.iml
@@ -9,18 +9,18 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="library" name="Maven: com.stream_pi:util:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:util:1.0.0-SNAPSHOT" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-fontawesome5-pack:11.5.0" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-core:11.5.0" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:linux:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:linux:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-javafx:11.5.0" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:actionapi:1.0.0" level="project" />
- <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:15" level="project" />
- <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:15" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:obssuite_motheraction:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:action-api:1.0.0-SNAPSHOT" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:obssuite_motheraction:1.0.0" level="project" />
<orderEntry type="library" name="Maven: net.twasi:obs-websocket-java:1.2.0" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-api:1.7.30" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-simple:1.7.30" level="project" />
--- 'a/obssuite/setpreviewscene/pom.xml'
+++ b/obssuite/setpreviewscene/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_setpreviewsceneaction</artifactId>
<version>1.0.0</version>
@@ -37,8 +37,8 @@
</build>
<properties>
- <ActionAPIVersion>1.0.0</ActionAPIVersion>
- <UtilVersion>1.0.0</UtilVersion>
+ <ActionAPIVersion>1.0.0-SNAPSHOT</ActionAPIVersion>
+ <UtilVersion>1.0.0-SNAPSHOT</UtilVersion>
<OBSSuiteMotherVersion>1.0.0</OBSSuiteMotherVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -49,19 +49,19 @@
<dependencies>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>util</artifactId>
<version>${UtilVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
- <artifactId>actionapi</artifactId>
+ <groupId>com.stream-pi</groupId>
+ <artifactId>action-api</artifactId>
<version>${ActionAPIVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_motheraction</artifactId>
<version>${OBSSuiteMotherVersion}</version>
</dependency>
--- 'a/obssuite/setpreviewscene/src/main/java/module-info.java'
+++ b/obssuite/setpreviewscene/src/main/java/module-info.java
@@ -1,10 +1,10 @@
module com.stream_pi.obssuite.setpreviewsceneaction
{
- requires com.stream_pi.actionapi;
+ requires com.stream_pi.action_api;
requires com.stream_pi.util;
requires obs.websocket.java;
requires com.stream_pi.obssuite.motheraction;
- provides com.stream_pi.actionapi.normalaction.NormalAction with setpreviewscene.SetPreviewScene;
+ provides com.stream_pi.action_api.normalaction.NormalAction with setpreviewscene.SetPreviewScene;
}
--- 'a/obssuite/setpreviewscene/src/main/java/setpreviewscene/SetPreviewScene.java'
+++ b/obssuite/setpreviewscene/src/main/java/setpreviewscene/SetPreviewScene.java
@@ -1,8 +1,8 @@
package setpreviewscene;
-import com.stream_pi.actionapi.actionproperty.property.Property;
-import com.stream_pi.actionapi.actionproperty.property.Type;
-import com.stream_pi.actionapi.normalaction.NormalAction;
+import com.stream_pi.action_api.actionproperty.property.Property;
+import com.stream_pi.action_api.actionproperty.property.Type;
+import com.stream_pi.action_api.normalaction.NormalAction;
import com.stream_pi.util.alert.StreamPiAlert;
import com.stream_pi.util.alert.StreamPiAlertType;
import com.stream_pi.util.version.Version;
--- 'a/obssuite/setrecording/OBSSuite-SetRecordingAction.iml'
+++ b/obssuite/setrecording/OBSSuite-SetRecordingAction.iml
@@ -9,18 +9,18 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="library" name="Maven: com.stream_pi:util:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:util:1.0.0-SNAPSHOT" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-fontawesome5-pack:11.5.0" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-core:11.5.0" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:linux:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:linux:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-javafx:11.5.0" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:actionapi:1.0.0" level="project" />
- <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:15" level="project" />
- <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:15" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:obssuite_motheraction:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:action-api:1.0.0-SNAPSHOT" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:obssuite_motheraction:1.0.0" level="project" />
<orderEntry type="library" name="Maven: net.twasi:obs-websocket-java:1.2.0" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-api:1.7.30" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-simple:1.7.30" level="project" />
--- 'a/obssuite/setrecording/pom.xml'
+++ b/obssuite/setrecording/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_setrecordingaction</artifactId>
<version>1.0.0</version>
@@ -37,8 +37,8 @@
</build>
<properties>
- <ActionAPIVersion>1.0.0</ActionAPIVersion>
- <UtilVersion>1.0.0</UtilVersion>
+ <ActionAPIVersion>1.0.0-SNAPSHOT</ActionAPIVersion>
+ <UtilVersion>1.0.0-SNAPSHOT</UtilVersion>
<OBSSuiteMotherVersion>1.0.0</OBSSuiteMotherVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -49,19 +49,19 @@
<dependencies>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>util</artifactId>
<version>${UtilVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
- <artifactId>actionapi</artifactId>
+ <groupId>com.stream-pi</groupId>
+ <artifactId>action-api</artifactId>
<version>${ActionAPIVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_motheraction</artifactId>
<version>${OBSSuiteMotherVersion}</version>
</dependency>
--- 'a/obssuite/setrecording/src/main/java/module-info.java'
+++ b/obssuite/setrecording/src/main/java/module-info.java
@@ -1,10 +1,10 @@
module com.stream_pi.obssuite.setrecordingaction
{
- requires com.stream_pi.actionapi;
+ requires com.stream_pi.action_api;
requires com.stream_pi.util;
requires obs.websocket.java;
requires com.stream_pi.obssuite.motheraction;
- provides com.stream_pi.actionapi.normalaction.NormalAction with setrecording.SetRecording;
+ provides com.stream_pi.action_api.normalaction.NormalAction with setrecording.SetRecording;
}
--- 'a/obssuite/setrecording/src/main/java/setrecording/SetRecording.java'
+++ b/obssuite/setrecording/src/main/java/setrecording/SetRecording.java
@@ -2,9 +2,9 @@ package setrecording;
import java.util.ArrayList;
-import com.stream_pi.actionapi.actionproperty.property.Property;
-import com.stream_pi.actionapi.actionproperty.property.Type;
-import com.stream_pi.actionapi.normalaction.NormalAction;
+import com.stream_pi.action_api.actionproperty.property.Property;
+import com.stream_pi.action_api.actionproperty.property.Type;
+import com.stream_pi.action_api.normalaction.NormalAction;
import com.stream_pi.util.alert.StreamPiAlert;
import com.stream_pi.util.alert.StreamPiAlertType;
import com.stream_pi.util.version.Version;
--- 'a/obssuite/setreplaybuffer/OBSSuite-SetReplayBufferAction.iml'
+++ b/obssuite/setreplaybuffer/OBSSuite-SetReplayBufferAction.iml
@@ -9,18 +9,18 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="library" name="Maven: com.stream_pi:util:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:util:1.0.0-SNAPSHOT" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-fontawesome5-pack:11.5.0" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-core:11.5.0" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:linux:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:linux:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-javafx:11.5.0" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:actionapi:1.0.0" level="project" />
- <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:15" level="project" />
- <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:15" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:obssuite_motheraction:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:action-api:1.0.0-SNAPSHOT" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:obssuite_motheraction:1.0.0" level="project" />
<orderEntry type="library" name="Maven: net.twasi:obs-websocket-java:1.2.0" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-api:1.7.30" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-simple:1.7.30" level="project" />
--- 'a/obssuite/setreplaybuffer/pom.xml'
+++ b/obssuite/setreplaybuffer/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_setreplaybufferaction</artifactId>
<version>1.0.0</version>
@@ -37,8 +37,8 @@
</build>
<properties>
- <ActionAPIVersion>1.0.0</ActionAPIVersion>
- <UtilVersion>1.0.0</UtilVersion>
+ <ActionAPIVersion>1.0.0-SNAPSHOT</ActionAPIVersion>
+ <UtilVersion>1.0.0-SNAPSHOT</UtilVersion>
<OBSSuiteMotherVersion>1.0.0</OBSSuiteMotherVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -49,19 +49,19 @@
<dependencies>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>util</artifactId>
<version>${UtilVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
- <artifactId>actionapi</artifactId>
+ <groupId>com.stream-pi</groupId>
+ <artifactId>action-api</artifactId>
<version>${ActionAPIVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_motheraction</artifactId>
<version>${OBSSuiteMotherVersion}</version>
</dependency>
--- 'a/obssuite/setreplaybuffer/src/main/java/module-info.java'
+++ b/obssuite/setreplaybuffer/src/main/java/module-info.java
@@ -1,10 +1,10 @@
module com.stream_pi.obssuite.setreplaybufferaction
{
- requires com.stream_pi.actionapi;
+ requires com.stream_pi.action_api;
requires com.stream_pi.util;
requires obs.websocket.java;
requires com.stream_pi.obssuite.motheraction;
- provides com.stream_pi.actionapi.normalaction.NormalAction with setreplaybuffer.SetReplayBuffer;
+ provides com.stream_pi.action_api.normalaction.NormalAction with setreplaybuffer.SetReplayBuffer;
}
--- 'a/obssuite/setreplaybuffer/src/main/java/setreplaybuffer/SetReplayBuffer.java'
+++ b/obssuite/setreplaybuffer/src/main/java/setreplaybuffer/SetReplayBuffer.java
@@ -2,9 +2,9 @@ package setreplaybuffer;
import java.util.ArrayList;
-import com.stream_pi.actionapi.actionproperty.property.Property;
-import com.stream_pi.actionapi.actionproperty.property.Type;
-import com.stream_pi.actionapi.normalaction.NormalAction;
+import com.stream_pi.action_api.actionproperty.property.Property;
+import com.stream_pi.action_api.actionproperty.property.Type;
+import com.stream_pi.action_api.normalaction.NormalAction;
import com.stream_pi.util.alert.StreamPiAlert;
import com.stream_pi.util.alert.StreamPiAlertType;
import com.stream_pi.util.version.Version;
--- 'a/obssuite/setstreaming/OBSSuite-SetStreamingAction.iml'
+++ b/obssuite/setstreaming/OBSSuite-SetStreamingAction.iml
@@ -9,18 +9,18 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="library" name="Maven: com.stream_pi:util:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:util:1.0.0-SNAPSHOT" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-fontawesome5-pack:11.5.0" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-core:11.5.0" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:linux:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:linux:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-javafx:11.5.0" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:actionapi:1.0.0" level="project" />
- <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:15" level="project" />
- <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:15" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:obssuite_motheraction:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:action-api:1.0.0-SNAPSHOT" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:obssuite_motheraction:1.0.0" level="project" />
<orderEntry type="library" name="Maven: net.twasi:obs-websocket-java:1.2.0" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-api:1.7.30" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-simple:1.7.30" level="project" />
--- 'a/obssuite/setstreaming/pom.xml'
+++ b/obssuite/setstreaming/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_setstreamingaction</artifactId>
<version>1.0.0</version>
@@ -37,8 +37,8 @@
</build>
<properties>
- <ActionAPIVersion>1.0.0</ActionAPIVersion>
- <UtilVersion>1.0.0</UtilVersion>
+ <ActionAPIVersion>1.0.0-SNAPSHOT</ActionAPIVersion>
+ <UtilVersion>1.0.0-SNAPSHOT</UtilVersion>
<OBSSuiteMotherVersion>1.0.0</OBSSuiteMotherVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -49,19 +49,19 @@
<dependencies>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>util</artifactId>
<version>${UtilVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
- <artifactId>actionapi</artifactId>
+ <groupId>com.stream-pi</groupId>
+ <artifactId>action-api</artifactId>
<version>${ActionAPIVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_motheraction</artifactId>
<version>${OBSSuiteMotherVersion}</version>
</dependency>
--- 'a/obssuite/setstreaming/src/main/java/module-info.java'
+++ b/obssuite/setstreaming/src/main/java/module-info.java
@@ -1,10 +1,10 @@
module com.stream_pi.obssuite.setstreamingaction
{
- requires com.stream_pi.actionapi;
+ requires com.stream_pi.action_api;
requires com.stream_pi.util;
requires obs.websocket.java;
requires com.stream_pi.obssuite.motheraction;
- provides com.stream_pi.actionapi.normalaction.NormalAction with setstreaming.SetStreaming;
+ provides com.stream_pi.action_api.normalaction.NormalAction with setstreaming.SetStreaming;
}
--- 'a/obssuite/setstreaming/src/main/java/setstreaming/SetStreaming.java'
+++ b/obssuite/setstreaming/src/main/java/setstreaming/SetStreaming.java
@@ -2,9 +2,9 @@ package setstreaming;
import java.util.ArrayList;
-import com.stream_pi.actionapi.actionproperty.property.Property;
-import com.stream_pi.actionapi.actionproperty.property.Type;
-import com.stream_pi.actionapi.normalaction.NormalAction;
+import com.stream_pi.action_api.actionproperty.property.Property;
+import com.stream_pi.action_api.actionproperty.property.Type;
+import com.stream_pi.action_api.normalaction.NormalAction;
import com.stream_pi.util.alert.StreamPiAlert;
import com.stream_pi.util.alert.StreamPiAlertType;
import com.stream_pi.util.version.Version;
--- 'a/obssuite/setstudiomode/OBSSuite-SetStudioModeAction.iml'
+++ b/obssuite/setstudiomode/OBSSuite-SetStudioModeAction.iml
@@ -9,18 +9,18 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
- <orderEntry type="library" name="Maven: com.stream_pi:util:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:util:1.0.0-SNAPSHOT" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-fontawesome5-pack:11.5.0" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-core:11.5.0" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-controls:linux:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:16-ea+6" level="project" />
+ <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:linux:16-ea+6" level="project" />
<orderEntry type="library" name="Maven: org.kordamp.ikonli:ikonli-javafx:11.5.0" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:actionapi:1.0.0" level="project" />
- <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:15" level="project" />
- <orderEntry type="library" name="Maven: org.openjfx:javafx-graphics:linux:15" level="project" />
- <orderEntry type="library" name="Maven: com.stream_pi:obssuite_motheraction:1.0.0" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:action-api:1.0.0-SNAPSHOT" level="project" />
+ <orderEntry type="library" name="Maven: com.stream-pi:obssuite_motheraction:1.0.0" level="project" />
<orderEntry type="library" name="Maven: net.twasi:obs-websocket-java:1.2.0" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-api:1.7.30" level="project" />
<orderEntry type="library" scope="RUNTIME" name="Maven: org.slf4j:slf4j-simple:1.7.30" level="project" />
--- 'a/obssuite/setstudiomode/pom.xml'
+++ b/obssuite/setstudiomode/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_setstudiomodeaction</artifactId>
<version>1.0.0</version>
@@ -37,8 +37,8 @@
</build>
<properties>
- <ActionAPIVersion>1.0.0</ActionAPIVersion>
- <UtilVersion>1.0.0</UtilVersion>
+ <ActionAPIVersion>1.0.0-SNAPSHOT</ActionAPIVersion>
+ <UtilVersion>1.0.0-SNAPSHOT</UtilVersion>
<OBSSuiteMotherVersion>1.0.0</OBSSuiteMotherVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -49,19 +49,19 @@
<dependencies>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>util</artifactId>
<version>${UtilVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
- <artifactId>actionapi</artifactId>
+ <groupId>com.stream-pi</groupId>
+ <artifactId>action-api</artifactId>
<version>${ActionAPIVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_motheraction</artifactId>
<version>${OBSSuiteMotherVersion}</version>
</dependency>
--- 'a/obssuite/setstudiomode/src/main/java/SetStudioMode/SetStudioMode.java'
+++ b/obssuite/setstudiomode/src/main/java/SetStudioMode/SetStudioMode.java
@@ -1,8 +1,8 @@
package SetStudioMode;
-import com.stream_pi.actionapi.actionproperty.property.Property;
-import com.stream_pi.actionapi.actionproperty.property.Type;
-import com.stream_pi.actionapi.normalaction.NormalAction;
+import com.stream_pi.action_api.actionproperty.property.Property;
+import com.stream_pi.action_api.actionproperty.property.Type;
+import com.stream_pi.action_api.normalaction.NormalAction;
import com.stream_pi.util.alert.StreamPiAlert;
import com.stream_pi.util.alert.StreamPiAlertType;
import com.stream_pi.util.version.Version;
--- 'a/obssuite/setstudiomode/src/main/java/module-info.java'
+++ b/obssuite/setstudiomode/src/main/java/module-info.java
@@ -1,10 +1,10 @@
module com.stream_pi.obssuite.setstudiomodeaction
{
- requires com.stream_pi.actionapi;
+ requires com.stream_pi.action_api;
requires com.stream_pi.util;
requires obs.websocket.java;
requires com.stream_pi.obssuite.motheraction;
- provides com.stream_pi.actionapi.normalaction.NormalAction with SetStudioMode.SetStudioMode;
+ provides com.stream_pi.action_api.normalaction.NormalAction with SetStudioMode.SetStudioMode;
}
--- 'a/obssuite/setvolume/pom.xml'
+++ b/obssuite/setvolume/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_setvolumeaction</artifactId>
<version>1.0.0</version>
@@ -37,8 +37,8 @@
</build>
<properties>
- <ActionAPIVersion>1.0.0</ActionAPIVersion>
- <UtilVersion>1.0.0</UtilVersion>
+ <ActionAPIVersion>1.0.0-SNAPSHOT</ActionAPIVersion>
+ <UtilVersion>1.0.0-SNAPSHOT</UtilVersion>
<OBSSuiteMotherVersion>1.0.0</OBSSuiteMotherVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -49,19 +49,19 @@
<dependencies>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>util</artifactId>
<version>${UtilVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
- <artifactId>actionapi</artifactId>
+ <groupId>com.stream-pi</groupId>
+ <artifactId>action-api</artifactId>
<version>${ActionAPIVersion}</version>
</dependency>
<dependency>
- <groupId>com.stream_pi</groupId>
+ <groupId>com.stream-pi</groupId>
<artifactId>obssuite_motheraction</artifactId>
<version>${OBSSuiteMotherVersion}</version>
</dependency>
--- 'a/obssuite/setvolume/src/main/java/module-info.java'
+++ b/obssuite/setvolume/src/main/java/module-info.java
@@ -1,10 +1,10 @@
module com.stream_pi.obssuite.setvolumeaction
{
- requires com.stream_pi.actionapi;
+ requires com.stream_pi.action_api;
requires com.stream_pi.util;
requires obs.websocket.java;
requires com.stream_pi.obssuite.motheraction;
- provides com.stream_pi.actionapi.normalaction.NormalAction with setvolume.SetVolume;
+ provides com.stream_pi.action_api.normalaction.NormalAction with setvolume.SetVolume;
}
--- 'a/obssuite/setvolume/src/main/java/setvolume/SetVolume.java'
+++ b/obssuite/setvolume/src/main/java/setvolume/SetVolume.java
@@ -1,8 +1,8 @@
package setvolume;
-import com.stream_pi.actionapi.actionproperty.property.Property;
-import com.stream_pi.actionapi.actionproperty.property.Type;
-import com.stream_pi.actionapi.normalaction.NormalAction;
+import com.stream_pi.action_api.actionproperty.property.Property;
+import com.stream_pi.action_api.actionproperty.property.Type;
+import com.stream_pi.action_api.normalaction.NormalAction;
import com.stream_pi.util.alert.StreamPiAlert;
import com.stream_pi.util.alert.StreamPiAlertType;
import com.stream_pi.util.version.Version;