Changeset 6ef6b3b7
- Timestamp:
- Sep 29, 2018 5:20:57 PM (2 years ago)
- Branches:
- master
- Children:
- d1b2a4e
- Parents:
- c069f76
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
core/java/src/net/i2p/time/BuildTime.java
rc069f76 r6ef6b3b7 35 35 private static final long YEARS_25 = 25L*365*24*60*60*1000; 36 36 /** update this periodically */ 37 private static final String EARLIEST = "2018-0 6-1212:00:00 UTC";37 private static final String EARLIEST = "2018-09-28 12:00:00 UTC"; 38 38 // fallback if parse fails ticket #1976 39 39 // date -d 201x-xx-xx +%s 40 private static final long EARLIEST_LONG = 15 28776000 * 1000L;40 private static final long EARLIEST_LONG = 1538107200 * 1000L; 41 41 42 42 static { -
installer/resources/checklist.md
rc069f76 r6ef6b3b7 21 21 22 22 - BuildTime: Don't have to do this every release, but update the 23 EARLIEST and EARLIEST_LONG values in ~/mtn/i2p/core/java/src/net/i2p/time/BuildTime.java23 EARLIEST and EARLIEST_LONG values in core/java/src/net/i2p/time/BuildTime.java 24 24 to the current date, more or less. 25 25 -
router/java/src/net/i2p/router/RouterVersion.java
rc069f76 r6ef6b3b7 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 1 0;21 public final static long BUILD = 11; 22 22 23 23 /** for example "-test" */
Note: See TracChangeset
for help on using the changeset viewer.