Skip to content

Commit 7988663

Browse files
committed
JF/111.0
1 parent 4119dad commit 7988663

7 files changed

Lines changed: 23 additions & 9 deletions

File tree

native/common/jf_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#define JF_ABI_VERSION "110.0"
1+
#define JF_ABI_VERSION "111.0"

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>110.0</version>
10+
<version>111.0</version>
1111

1212
<scm>
1313
<url>https://github.com/pquiring/javaforce</url>

readme.txt

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

4-
Version 110.0
4+
Version 111.0
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/110.0
49+
git checkout tags/111.0
5050
ant
5151
Next build the native loaders.
5252

@@ -66,7 +66,7 @@ Pre-built packages are hosted on sourceforge.net which can be installed through
6666

6767
Native ABI Compatibility
6868
------------------------
69-
This version of JavaForce is compatible with native loaders/library since 110.0
69+
This version of JavaForce is compatible with native loaders/library since 111.0
7070

7171
JavaForce Ant tasks:
7272
--------------------

src/javaforce/JF.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ public class JF {
2828

2929
/** Returns JavaForce version as a String. */
3030
public static String getVersion() {
31-
return "110.0";
31+
return "111.0";
3232
}
3333

3434
/** Returns JavaForce min native version as a String. */
3535
public static String getMinNativeVersion() {
36-
return "110.0";
36+
return "111.0";
3737
}
3838

3939
/** Console app that displays JavaForce version. */

versions.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#JavaForce version properties
22

33
#JavaForce version
4-
javaforce-version=110.0
4+
javaforce-version=111.0
55

66
#Java JDK version (version that is targeted in compiling)
77
java-version=25

whatsnew.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
What's new...
22

3+
Jun 10/2026 : JF/111.0
4+
- new : WebUI : added WebUIServlet
5+
- allows embedding WebUI apps into a common server
6+
- after several attempts this is finally complete
7+
- currently only KVM is implemented but more services
8+
will be upgraded in the near future
9+
- new : MQTTForward
10+
- improve keep alive logic
11+
- new : jfAdmin/0.1
12+
- WebUI common interface for WebUIServlets
13+
- new : jfKVM/10.1
14+
- added WebUIServlet interface to integrate with jfAdmin
15+
- new : jfMonitor/0.26, jfTermServer/0.6, jfMQTT/0.13
16+
317
Jun 1/2026 : JF/110.0
418
- new : ffmpeg support upgraded to 8.x [removed libpostproc]
519
- min version now 7.1

wix64.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui">
2-
<Package UpgradeCode="{52E091EA-4753-4970-B56C-DA6EEEDC26DC}" Version="110.0" Language="1033" Name="JavaForce" Manufacturer="Peter Quiring" InstallerVersion="300">
2+
<Package UpgradeCode="{52E091EA-4753-4970-B56C-DA6EEEDC26DC}" Version="111.0" Language="1033" Name="JavaForce" Manufacturer="Peter Quiring" InstallerVersion="300">
33
<Media Id="1" Cabinet="files.cab" EmbedCab="yes" />
44
<UIRef Id="WixUI_Minimal" />
55
<MajorUpgrade DowngradeErrorMessage="A later version of [ProductName] is already installed. Setup will now exit." />

0 commit comments

Comments
 (0)