Skip to content

Commit f4f8a31

Browse files
committed
74.1
1 parent 7d671ed commit f4f8a31

6 files changed

Lines changed: 14 additions & 7 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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>

readme.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
JavaForce SDK
22
=============
33

4-
Version 74.0
4+
Version 74.1
55

66
Description
77
===========
@@ -46,7 +46,7 @@ Before checking out the source make sure to configure line endings:
4646
Checkout 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
5151
Next build the native launchers.
5252

@@ -80,7 +80,9 @@ jar : build the projects main jar file
8080
depjars : copy dependant jar files into project folder
8181
run : execute program from command line (with debugging support enabled)
8282
javadoc : 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
8486
executable : 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.
125127
The mvn tool is currently not required.
126128
A pom.xml is supplied for JF but is missing dependancies for now, the minimum is included
127129
to create deployment artifacts.
130+
Use ant task deploy instead of using mvn.
128131

129132
Graal Support
130133
-------------

src/javaforce/JF.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
public 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) {

src/javaforce/utils/Publish.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

versions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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 -->

whatsnew.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
What'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+
37
Nov 27/2024 : JF/74.0
48
- fix more VNC key binding issues
59
- added speex DSP init : echo cancel buffer size param (user request)

0 commit comments

Comments
 (0)