Skip to content

Commit

Permalink
Merge pull request #20 from fixy/prod
Browse files Browse the repository at this point in the history
Change FDT version for release
  • Loading branch information
fixy authored Oct 14, 2017
2 parents 8b7186b + caa3698 commit 0113c5a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.9.6
Created-By: 1.8.0_66-b17 (Oracle Corporation)
Created-By: 1.8.0_144-b01 (Oracle Corporation)
Main-Class: lia.util.net.copy.FDTMain
Built-Jdk: 1.8.0_66-b17
Built-By: jbalcas
Built-Jdk: 1.8.0_144-b01
Built-By: rsirvins
Built-Arch: amd64
Built-Os: Linux 4.3.0-040300-generic
Release-Date: 2017-04-20
Release-Version: 0.25.0
Built-Os: Linux 4.4.0-91-generic
Release-Date: 2017-10-14
Release-Version: 0.25.1
Implementation-Version: 0.25.1-201704201041
Class-Path:
4 changes: 2 additions & 2 deletions src/lia/util/net/common/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ public class Config {
// all of this are set by the ant script
public static final String FDT_MAJOR_VERSION = "0";
public static final String FDT_MINOR_VERSION = "25";
public static final String FDT_MAINTENANCE_VERSION = "0";
public static final String FDT_MAINTENANCE_VERSION = "1";
public static final String FDT_FULL_VERSION = FDT_MAJOR_VERSION + "." + FDT_MINOR_VERSION + "."
+ FDT_MAINTENANCE_VERSION;
public static final String FDT_RELEASE_DATE = "2017-04-20";
public static final String FDT_RELEASE_DATE = "2017-10-14";
private volatile static Config _thisInstance;
// the size of header packet sent over the wire -
// TODO - this should be dynamic ... or not ( performance resons ?! )
Expand Down
2 changes: 1 addition & 1 deletion src/lia/util/net/copy/FDT.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class FDT {
private static String UPDATE_REPO = "fdt";
public static String UPDATE_URL = "https://api.github.com/repos/" + UPDATE_OWNER + "/" + UPDATE_REPO + "/releases";

public static final String FDT_FULL_VERSION = "0.26.0-201708081850";
public static final String FDT_FULL_VERSION = "0.25.1-201710142245";

/** two weeks between checking for updates */
public static final long UPDATE_PERIOD = 2 * 24 * 3600 * 1000;
Expand Down

0 comments on commit 0113c5a

Please sign in to comment.