Skip to content

Commit

Permalink
Merge pull request #113 from a-schild/dev-3.0-changes
Browse files Browse the repository at this point in the history
Dev 3.0 changes
  • Loading branch information
a-schild committed Aug 24, 2020
2 parents 37c2837 + 0d8fe6e commit 6af9c20
Show file tree
Hide file tree
Showing 115 changed files with 7,492 additions and 6,601 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# JAVE2

## Changelog
- **3.0.0**
- Reworked base classes to handle the executable (Thanks to Michael Ressler)
- Reworked the API to have a fluent and more flexible api (Thanks to Michael Ressler)
- Added more supporting methods/classes to video processing/transformations
- **2.8.0**
- Added -ss option to ScreenExtractor for faster processing
- Add loopAttribute to EncodingAttributes, thanks to chrysophylax
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ It includes all binaries for the supported platforms
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-all-deps</artifactId>
<version>2.7.3</version>
<version>3.0.0</version>
</dependency>
```

Expand All @@ -60,7 +60,7 @@ Generally if you want to use for one platform or more what you have to do is add
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-core</artifactId>
<version>2.7.3</version>
<version>3.0.0</version>
</dependency>
```

Expand All @@ -71,7 +71,7 @@ and then the specific jar(s) for your platform(s) :
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-nativebin-linux64</artifactId>
<version>2.7.3</version>
<version>3.0.0</version>
</dependency>
```

Expand All @@ -80,7 +80,7 @@ and then the specific jar(s) for your platform(s) :
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-nativebin-linux-arm64</artifactId>
<version>2.7.3</version>
<version>3.0.0</version>
</dependency>
```

Expand All @@ -89,7 +89,7 @@ and then the specific jar(s) for your platform(s) :
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-nativebin-win64</artifactId>
<version>2.7.3</version>
<version>3.0.0</version>
</dependency>
```

Expand All @@ -98,7 +98,7 @@ and then the specific jar(s) for your platform(s) :
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-nativebin-osx64</artifactId>
<version>2.7.3</version>
<version>3.0.0</version>
</dependency>
```

Expand All @@ -107,13 +107,13 @@ and then the specific jar(s) for your platform(s) :
It includes all binaries for the supported platforms

``` XML
compile group: 'ws.schild', name: 'jave-all-deps', version: '2.7.3'
compile group: 'ws.schild', name: 'jave-all-deps', version: '3.0.0'
```

### For one platform only (Linux 64Bit in this case)
``` XML
compile group: 'ws.schild', name: 'jave-core', version: '2.7.3'
compile group: 'ws.schild', name: 'jave-nativebin-linux64', version: '2.7.3'
compile group: 'ws.schild', name: 'jave-core', version: '3.0.0'
compile group: 'ws.schild', name: 'jave-nativebin-linux64', version: '3.0.0'
```

### Main Components of Jave2
Expand Down
16 changes: 8 additions & 8 deletions jave-all-deps/nbactions.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-Deploy</actionName>
<displayName>Deploy</displayName>
<goals>
<goal>deploy</goal>
</goals>
</action>
</actions>
<action>
<actionName>CUSTOM-Deploy</actionName>
<displayName>Deploy</displayName>
<goals>
<goal>deploy</goal>
</goals>
</action>
</actions>
Loading

0 comments on commit 6af9c20

Please sign in to comment.