essential-actions

Clone or download

Modified Files

M build.bat
+16 −0
--- 'a/build.bat'
+++ b/build.bat
@@ -197,4 +197,20 @@ cd websiteaction
call mvn clean -Dmaven.test.skip package
move target\websiteaction-*.jar ..\%FOLD%\websiteaction.jar
popd
+if "%quit%" == "true" (EXIT /B 0)
+
+:gitclone
+pushd %CD%
+cd gitclone
+call mvn clean -Dmaven.test.skip package
+move target\gitclone-*.jar ..\%FOLD%\gitclone.jar
+popd
+if "%quit%" == "true" (EXIT /B 0)
+
+:openfile
+pushd %CD%
+cd openfile
+call mvn clean -Dmaven.test.skip package
+move target\openfile-*.jar ..\%FOLD%\openfile.jar
+popd
if "%quit%" == "true" (EXIT /B 0)
\ No newline at end of file
--- 'a/hotkeyaction/README.md'
+++ b/hotkeyaction/README.md
@@ -1,10 +1,10 @@
# Hotkey Action plugin
-![version](https://img.shields.io/badge/Version-2.0.0-green)
+![version](https://img.shields.io/badge/Version-2.0.1-green)
This plugin allows map and execute keyboard shortcuts
-## KeyBoard Mapping Reference to Hotkeyaction
+## Keyboard Mapping Reference to Hotkey Action
The following table shows the relation between our keyboard and what we have to type on the plugin field to fire the hotkeys we want:
--- 'a/hotkeyaction/pom.xml'
+++ b/hotkeyaction/pom.xml
@@ -47,12 +47,6 @@
<dependencies>
<dependency>
<groupId>com.stream-pi</groupId>
- <artifactId>util</artifactId>
- <version>${UtilVersion}</version>
- </dependency>
-
- <dependency>
- <groupId>com.stream-pi</groupId>
<artifactId>action-api</artifactId>
<version>${ActionAPIVersion}</version>
</dependency>
--- 'a/hotkeyaction/src/main/java/com/stream_pi/hotkeyaction/HotkeyAction.java'
+++ b/hotkeyaction/src/main/java/com/stream_pi/hotkeyaction/HotkeyAction.java
@@ -14,8 +14,8 @@ import java.util.ArrayList;
import static javafx.scene.input.KeyCode.*;
-public class HotkeyAction extends NormalAction {
-
+public class HotkeyAction extends NormalAction
+{
public HotkeyAction()
{
setName("Hotkey");
--- 'a/websiteaction/pom.xml'
+++ b/websiteaction/pom.xml
@@ -48,12 +48,6 @@
<dependencies>
<dependency>
<groupId>com.stream-pi</groupId>
- <artifactId>util</artifactId>
- <version>${UtilVersion}</version>
- </dependency>
-
- <dependency>
- <groupId>com.stream-pi</groupId>
<artifactId>action-api</artifactId>
<version>${ActionAPIVersion}</version>
</dependency>