Skip to content

Commit 6af9c20

Browse files
authored
Merge pull request #113 from a-schild/dev-3.0-changes
Dev 3.0 changes
2 parents 37c2837 + 0d8fe6e commit 6af9c20

File tree

115 files changed

+7492
-6601
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+7492
-6601
lines changed

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# JAVE2
22

33
## Changelog
4+
- **3.0.0**
5+
- Reworked base classes to handle the executable (Thanks to Michael Ressler)
6+
- Reworked the API to have a fluent and more flexible api (Thanks to Michael Ressler)
7+
- Added more supporting methods/classes to video processing/transformations
48
- **2.8.0**
59
- Added -ss option to ScreenExtractor for faster processing
610
- Add loopAttribute to EncodingAttributes, thanks to chrysophylax

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ It includes all binaries for the supported platforms
4646
<dependency>
4747
<groupId>ws.schild</groupId>
4848
<artifactId>jave-all-deps</artifactId>
49-
<version>2.7.3</version>
49+
<version>3.0.0</version>
5050
</dependency>
5151
```
5252

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

@@ -71,7 +71,7 @@ and then the specific jar(s) for your platform(s) :
7171
<dependency>
7272
<groupId>ws.schild</groupId>
7373
<artifactId>jave-nativebin-linux64</artifactId>
74-
<version>2.7.3</version>
74+
<version>3.0.0</version>
7575
</dependency>
7676
```
7777

@@ -80,7 +80,7 @@ and then the specific jar(s) for your platform(s) :
8080
<dependency>
8181
<groupId>ws.schild</groupId>
8282
<artifactId>jave-nativebin-linux-arm64</artifactId>
83-
<version>2.7.3</version>
83+
<version>3.0.0</version>
8484
</dependency>
8585
```
8686

@@ -89,7 +89,7 @@ and then the specific jar(s) for your platform(s) :
8989
<dependency>
9090
<groupId>ws.schild</groupId>
9191
<artifactId>jave-nativebin-win64</artifactId>
92-
<version>2.7.3</version>
92+
<version>3.0.0</version>
9393
</dependency>
9494
```
9595

@@ -98,7 +98,7 @@ and then the specific jar(s) for your platform(s) :
9898
<dependency>
9999
<groupId>ws.schild</groupId>
100100
<artifactId>jave-nativebin-osx64</artifactId>
101-
<version>2.7.3</version>
101+
<version>3.0.0</version>
102102
</dependency>
103103
```
104104

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

109109
``` XML
110-
compile group: 'ws.schild', name: 'jave-all-deps', version: '2.7.3'
110+
compile group: 'ws.schild', name: 'jave-all-deps', version: '3.0.0'
111111
```
112112

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

119119
### Main Components of Jave2

jave-all-deps/nbactions.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<actions>
3-
<action>
4-
<actionName>CUSTOM-Deploy</actionName>
5-
<displayName>Deploy</displayName>
6-
<goals>
7-
<goal>deploy</goal>
8-
</goals>
9-
</action>
10-
</actions>
3+
<action>
4+
<actionName>CUSTOM-Deploy</actionName>
5+
<displayName>Deploy</displayName>
6+
<goals>
7+
<goal>deploy</goal>
8+
</goals>
9+
</action>
10+
</actions>

0 commit comments

Comments
 (0)