Skip to content

Commit

Permalink
74.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pquiring committed Dec 9, 2024
1 parent 7d671ed commit f4f8a31
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>io.github.pquiring</groupId>
<artifactId>javaforce</artifactId>
<version>74.0</version>
<version>74.1</version>

<distributionManagement>
<snapshotRepository>
Expand Down
9 changes: 6 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
JavaForce SDK
=============

Version 74.0
Version 74.1

Description
===========
Expand Down Expand Up @@ -46,7 +46,7 @@ Before checking out the source make sure to configure line endings:
Checkout Javaforce and a specific version:
git clone http://github.com/pquiring/javaforce
cd javaforce
git checkout tags/74.0
git checkout tags/74.1
ant
Next build the native launchers.

Expand Down Expand Up @@ -80,7 +80,9 @@ jar : build the projects main jar file
depjars : copy dependant jar files into project folder
run : execute program from command line (with debugging support enabled)
javadoc : build javadoc api files
deploy : build maven deployment artifacts (requires pom.xml)
deploy : build maven deployment artifacts (requires pom.xml) and publish to sonatype
- must define 'maven' property which is groupId
- auth token must be defined in ~/.m2/settings.xml
executable : build native launcher
- a stub launcher for the platform is copied into the project folder and configured to load classpath and start main method
- a project property "apptype" can be defined as:
Expand Down Expand Up @@ -125,6 +127,7 @@ The Maven repo is used to download dependancies using ant tasks.
The mvn tool is currently not required.
A pom.xml is supplied for JF but is missing dependancies for now, the minimum is included
to create deployment artifacts.
Use ant task deploy instead of using mvn.

Graal Support
-------------
Expand Down
2 changes: 1 addition & 1 deletion src/javaforce/JF.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
public class JF {

public static String getVersion() {
return "74.0";
return "74.1";
}

public static void main(String[] args) {
Expand Down
2 changes: 1 addition & 1 deletion src/javaforce/utils/Publish.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class Publish {
public static void main(String[] args) {
new Publish().publish(args);
}
public static boolean debug = true;
public static boolean debug = false;
private void usage() {
System.out.println("Usage : javaforce.utils.Publish central-bundle.zip");
}
Expand Down
2 changes: 1 addition & 1 deletion versions.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<project xmlns:if="ant:if" xmlns:unless="ant:unless">
<!-- Note : any changes should be reflected in lib/package.sh -->
<!-- JavaForce version -->
<property name="javaforce-version" value="74.0"/>
<property name="javaforce-version" value="74.1"/>
<!-- native dependancies versions -->
<property name="glfw-version" value="3.4"/>
<!-- ffmpeg version only used in Windows -->
Expand Down
4 changes: 4 additions & 0 deletions whatsnew.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
What's new...

Dec 9/2024 : JF/74.1
- new : added automated maven deployment : ant deploy
- fix jfMonitor: create VLAN before modifying it

Nov 27/2024 : JF/74.0
- fix more VNC key binding issues
- added speex DSP init : echo cancel buffer size param (user request)
Expand Down

0 comments on commit f4f8a31

Please sign in to comment.