Changeset 101d069
- Timestamp:
- May 20, 2016 2:43:15 PM (5 years ago)
- Branches:
- master
- Children:
- 3afe04d
- Parents:
- 18b61e7
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/desktopgui/src/net/i2p/desktopgui/InternalTrayManager.java
r18b61e7 r101d069 373 373 PopupMenu awt = trayIcon.getPopupMenu(); 374 374 if (awt != null) { 375 awt.remove(0); 376 awt.insert(status, 0); 375 MenuItem item = awt.getItem(0); 376 String oldStatus = item.getLabel(); 377 if (!status.equals(oldStatus)) 378 item.setLabel(status); 377 379 } 378 380 if (_browserItem != null) -
apps/desktopgui/src/net/i2p/desktopgui/Main.java
r18b61e7 r101d069 64 64 private synchronized void startUp() throws Exception { 65 65 final TrayManager trayManager; 66 boolean useSwing = _appContext.getProperty(PROP_SWING, !SystemVersion.isWindows()); 66 boolean useSwingDefault = !(SystemVersion.isWindows() || SystemVersion.isMac()); 67 boolean useSwing = _appContext.getProperty(PROP_SWING, useSwingDefault); 67 68 if (_context != null) 68 69 trayManager = new InternalTrayManager(_context, this, useSwing); -
apps/routerconsole/java/src/net/i2p/router/web/ConfigServiceHandler.java
r18b61e7 r101d069 203 203 return ! 204 204 (RouterConsoleRunner.DAEMON_USER.equals(System.getProperty("user.name")) || 205 (SystemVersion.isWindows() && _context.hasWrapper() && WrapperManager.isLaunchedAsService())); 205 (SystemVersion.isWindows() && _context.hasWrapper() && WrapperManager.isLaunchedAsService()) || 206 // headless=true is forced in i2prouter script to prevent useless dock icon; 207 // must fix this first 208 SystemVersion.isMac()); 206 209 } 207 210 -
history.txt
r18b61e7 r101d069 1 2016-05-20 zzz 2 * DesktopGui: 3 - Fix systray menu redraw on Mac; 4 - Switch to AWT by default on Mac; 5 - Hide DTG enable on Mac until we fix dock 6 7 2016-05-19 zzz 8 * Config files, eepsite help: Add path information for OS X 9 and Windows as a service. (ticket #1495) 10 11 2016-05-12 zzz 12 * NTP: 13 - Don't put random data in zeroed fields 14 - Increase random data in originate timestamp from 1 byte to 2 bytes 15 - Verify originate timestamp to prevent injection 16 - Verify received packet size 17 * SSU: 18 - If configured with a hostname, bind to all v4/v6 19 addresses found for that hostname. 20 - Fix binding if more than one IP or host was configured. 21 22 2016-05-09 zzz 23 * Console: 24 - Fix escaping of search URLs on /confighome 25 - Fix HTML error on /configui 26 * DesktopGui: Add 9 new translations 27 * i2psnark: Limit cases when we display tracker errors; 28 include host name of tracker when we do 29 30 2016-05-08 zzz 31 * Console: Fix UTF-8 passwords, partial fix for usernames 32 1 33 2016-05-07 zzz 2 34 * Build: -
router/java/src/net/i2p/router/RouterVersion.java
r18b61e7 r101d069 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 1 1;21 public final static long BUILD = 12; 22 22 23 23 /** for example "-test" */
Note: See TracChangeset
for help on using the changeset viewer.