Skip to content

Commit

Permalink
JF/18.5.0
Browse files Browse the repository at this point in the history
 - jfBackup/0.6
  • Loading branch information
pquiring committed Dec 13, 2019
1 parent 1816b55 commit 475ac96
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<property name="src" location="src"/>
<property name="build" location="classes"/>
<property name="home" value="."/>
<property name="version" value="18.4.0"/>
<property name="version" value="18.5.0"/>
<property name="noelf" value="true"/>

<property name="debian.depends" value="default-jre-headless, libjsch-java, libjzlib-java, libjcifs-java, libv4l-0, desktop-file-utils"/>
Expand Down
2 changes: 1 addition & 1 deletion projects/jfbackup/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<property name="home" location="../.."/>
<property name="classpath" location="javaforce.jar"/>
<property name="jre" location="${home}/jre_base"/>
<property name="version" value="0.5"/>
<property name="version" value="0.6"/>
<property name="classpath" value="${home}/jars/javaforce.jar"/>

<import file="../../base.xml"/>
Expand Down
4 changes: 2 additions & 2 deletions projects/jfbackup/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ Source Code : https://github.com/pquiring/javaforce/tree/master/projects/jfbacku
Author : Peter Quiring
eMail : pquiring at gmail dot com

Version : 0.5
Date : 12/?/2019
Version : 0.6
Date : 12/13/2019
2 changes: 1 addition & 1 deletion projects/jfbackup/src/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public class Config implements Serializable {
public static final long serialVersionUID = 1;

public static final String AppVersion = "0.5";
public static final String AppVersion = "0.6";

public static final String APIVersion = "V003";
public static final int APIVersionMin = 2;
Expand Down
4 changes: 4 additions & 0 deletions projects/jfbackup/whatsnew.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Dec 13/2019 : 0.6 released
- fix : restore job was not closing files (would eventually get closed by gc)
- everytime I find a bug 2 mins after a release - beta testers wanted

Dec 13/2019 : 0.5 released
- greatly improved performance
- successfully backed up a 250GB remote volume in under 9 hrs
Expand Down
2 changes: 1 addition & 1 deletion projects/jfbackup/wix64.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" xmlns:fire="http://schemas.microsoft.com/wix/FirewallExtension">
<Product Id="*" UpgradeCode="{F6321886-AC06-4620-8CE5-FD9039DC42AE}" Version="0.5" Language="1033" Name="jfBackup" Manufacturer="Peter Quiring">
<Product Id="*" UpgradeCode="{F6321886-AC06-4620-8CE5-FD9039DC42AE}" Version="0.6" Language="1033" Name="jfBackup" Manufacturer="Peter Quiring">
<Package InstallerVersion="300" Compressed="yes" InstallScope="perMachine" Platform="x64"/>
<Media Id="1" Cabinet="files.cab" EmbedCab="yes" />
<UIRef Id="WixUI_Minimal" />
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
JavaForce SDK
=============

Version 18.4.0
Version 18.5.0

What is it?
===========
Expand Down
2 changes: 1 addition & 1 deletion src/javaforce/JF.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
public class JF {

public static String getVersion() {
return "18.4.0";
return "18.5.0";
}

public static void sleep(int milli) {
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 13/2019 : JF 18.5.0 released
- jfBackup/0.6
- fix : close file after restore (gc would have got it eventually)

Dec 13/2019 : JF 18.4.0 released
- jfBackup/0.5
- greatly improved performance
Expand Down

0 comments on commit 475ac96

Please sign in to comment.