Skip to content

Commit

Permalink
Build 1474, mandatory in a week but crucial bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
toad committed Jun 5, 2016
1 parent 820db4a commit ced0ba2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/freenet/node/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,18 +50,18 @@ public class Version {
public static final String protocolVersion = "1.0";

/** The build number of the current revision */
private static final int buildNumber = 1473;
private static final int buildNumber = 1474;

/** Oldest build of fred we will talk to *before* _cal */
private static final int oldLastGoodBuild = 1466;
private static final int oldLastGoodBuild = 1472;
/** Oldest build of fred we will talk to *after* _cal */
private static final int newLastGoodBuild = 1472;
private static final int newLastGoodBuild = 1474;
static final long transitionTime;

static {
final Calendar _cal = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
// year, month - 1 (or constant), day, hour, minute, second
_cal.set( 2016, Calendar.JUNE, 5, 0, 0, 0 );
_cal.set( 2016, Calendar.JUNE, 12, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}

Expand Down

0 comments on commit ced0ba2

Please sign in to comment.