Skip to content

Commit bd50224

Browse files
committed
JF/81.0
1 parent 5f1a305 commit bd50224

6 files changed

Lines changed: 16 additions & 8 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>80.0</version>
10+
<version>81.0</version>
1111

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

readme.txt

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

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

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 "80.0";
24+
return "81.0";
2525
}
2626

2727
public static void main(String[] args) {

src/javaforce/vm/VirtualMachine.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ public boolean check_write_access() {
7979
FileInputStream fis = new FileInputStream(file);
8080
byte[] verify = fis.readAllBytes();
8181
fis.close();
82-
if (verify.length != data.length) {
83-
throw new Exception("check_write_access:verify.length != data.length");
82+
if (verify == null || verify.length != data.length) {
83+
throw new Exception("check_write_access:failed");
8484
}
8585
for(int a=0;a<data.length;a++) {
8686
if (verify[a] != data[a]) {
87-
throw new Exception("check_write_access:verify != data");
87+
throw new Exception("check_write_access:failed");
8888
}
8989
}
9090
file.delete();

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=80.0
4+
javaforce-version=81.0
55

66
#Java JDK version
77
java-version=17

whatsnew.txt

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

3+
Feb 25/2025 : JF/81.0
4+
- cleanup linux packages
5+
- RFB : fix HexTile encoding
6+
- jfVNC/0.7
7+
- jfRemote/0.8
8+
- jfKVM/2.5
9+
- check write access to storage before staring VM
10+
311
Feb 20/2025 : JF/80.0
412
- following NetBeans lead batik has been replaced with jsvg for SVG support
513
- reduces # of deps

0 commit comments

Comments
 (0)