Changeset 302ec77
- Timestamp:
- Nov 22, 2015 4:44:26 PM (5 years ago)
- Branches:
- master
- Children:
- 2400a77
- Parents:
- 1215a70
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/routerconsole/java/src/net/i2p/router/web/RouterConsoleRunner.java
r1215a70 r302ec77 631 631 } 632 632 if (error) { 633 String port = (_listenPort != null) ? _listenPort : ((_sslListenPort != null) ? _sslListenPort : "7657"); 633 634 System.err.println("WARNING: Error starting one or more listeners of the Router Console server.\n" + 634 "If your console is still accessible at http://127.0.0.1:" + _listenPort + "/,\n" +635 "If your console is still accessible at http://127.0.0.1:" + port + "/,\n" + 635 636 "this may be a problem only with binding to the IPV6 address ::1.\n" + 636 637 "If so, you may ignore this error, or remove the\n" + -
history.txt
r1215a70 r302ec77 1 2015-11-22 zzz 2 Prop from i2p.i2p.zzz.test2: 3 * Build: 4 - More release checks 5 - Add systray dependency tracking to build 6 - Remove commons-logging classes from commons-logging.jar (ticket #1679) 7 * Lint: 8 - Replace URL with URI where possible 9 - Don't use DataHelper.fromLong() for 1-byte reads, for efficiency 10 - Don't catch Exception, catch RuntimeException or checked exception. 11 * i2psnark: 12 - Minor details page reformatting 13 - Add skipped length on details page 14 * NewsManager: Make it a ClientApp, not a RouterApp 15 * Profiles: Don't allow creation of our own profile 16 * Router: Revert JobTiming being a clock shift listener, not needed 17 * SSU: 18 - Support extended options 19 - Add support for requesting a relay tag via 20 Session Request extended options (ticket #1465) 21 * Tunnels: 22 - Locking fixes 23 - Don't set stats in our own profile 24 - Minor optimizations 25 * Utils: 26 - Centralize time zone code in DataHelper 27 - Add caching string split() 28 1 29 2015-11-21 zzz 2 30 * Console: Fix escaping of plugin description on /configclients (ticket #1711) -
router/java/src/net/i2p/router/RouterVersion.java
r1215a70 r302ec77 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 1;21 public final static long BUILD = 2; 22 22 23 23 /** for example "-test" */
Note: See TracChangeset
for help on using the changeset viewer.