File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77
88 <groupId >io.github.pquiring</groupId >
99 <artifactId >javaforce</artifactId >
10- <version >74.0 </version >
10+ <version >74.1 </version >
1111
1212 <distributionManagement >
1313 <snapshotRepository >
Original file line number Diff line number Diff line change 11JavaForce SDK
22=============
33
4- Version 74.0
4+ Version 74.1
55
66Description
77===========
@@ -46,7 +46,7 @@ Before checking out the source make sure to configure line endings:
4646Checkout Javaforce and a specific version:
4747 git clone http://github.com/pquiring/javaforce
4848 cd javaforce
49- git checkout tags/74.0
49+ git checkout tags/74.1
5050 ant
5151Next build the native launchers.
5252
@@ -80,7 +80,9 @@ jar : build the projects main jar file
8080depjars : copy dependant jar files into project folder
8181run : execute program from command line (with debugging support enabled)
8282javadoc : build javadoc api files
83- deploy : build maven deployment artifacts (requires pom.xml)
83+ deploy : build maven deployment artifacts (requires pom.xml) and publish to sonatype
84+ - must define 'maven' property which is groupId
85+ - auth token must be defined in ~/.m2/settings.xml
8486executable : build native launcher
8587 - a stub launcher for the platform is copied into the project folder and configured to load classpath and start main method
8688 - a project property "apptype" can be defined as:
@@ -125,6 +127,7 @@ The Maven repo is used to download dependancies using ant tasks.
125127The mvn tool is currently not required.
126128A pom.xml is supplied for JF but is missing dependancies for now, the minimum is included
127129to create deployment artifacts.
130+ Use ant task deploy instead of using mvn.
128131
129132Graal Support
130133-------------
Original file line number Diff line number Diff line change 2121public class JF {
2222
2323 public static String getVersion () {
24- return "74.0 " ;
24+ return "74.1 " ;
2525 }
2626
2727 public static void main (String [] args ) {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public class Publish {
1717 public static void main (String [] args ) {
1818 new Publish ().publish (args );
1919 }
20- public static boolean debug = true ;
20+ public static boolean debug = false ;
2121 private void usage () {
2222 System .out .println ("Usage : javaforce.utils.Publish central-bundle.zip" );
2323 }
Original file line number Diff line number Diff line change 11<project xmlns : if =" ant:if" xmlns : unless =" ant:unless" >
22 <!-- Note : any changes should be reflected in lib/package.sh -->
33 <!-- JavaForce version -->
4- <property name =" javaforce-version" value =" 74.0 " />
4+ <property name =" javaforce-version" value =" 74.1 " />
55 <!-- native dependancies versions -->
66 <property name =" glfw-version" value =" 3.4" />
77 <!-- ffmpeg version only used in Windows -->
Original file line number Diff line number Diff line change 11What's new...
22
3+ Dec 9/2024 : JF/74.1
4+ - new : added automated maven deployment : ant deploy
5+ - fix jfMonitor: create VLAN before modifying it
6+
37Nov 27/2024 : JF/74.0
48 - fix more VNC key binding issues
59 - added speex DSP init : echo cancel buffer size param (user request)
You can’t perform that action at this time.
0 commit comments