idk
e15dae5c5f
Turn jump button-links back into regular-looking hyperlinks when resolution indicates we are not on a mobile device
2022-01-10 14:28:40 -05:00
zzz
662ea995c1
javadoc note
2022-01-07 10:48:48 -05:00
zzz
150248d8d7
Plugins: Fix webapp classpath setting when the webapp name does not match the plugin name
2022-01-05 16:50:33 -05:00
zzz
aaa1da4c66
Plugins: console-icon path is relative to consoleLinkURL if specified,
...
otherwise relative to plugin name, as before
2022-01-05 15:08:35 -05:00
zzz
034a5acd37
i2pcontrol: Send translated tunnel status string
2022-01-04 13:09:34 -05:00
idk
7249f21602
redirect output and error from process builder to files within the plugin directory
2022-01-03 14:26:27 -05:00
idk
d1192f74f2
Remove platform-specific workarounds from Java 8+ version of ShellService
2022-01-03 14:18:16 -05:00
zzz
13f910be70
i2ptunnel: Add hooks to get the session from the contoller
2022-01-02 11:23:23 -05:00
zzz
2d42541b79
i2pcontrol: Handle more router states mapping to i2pcontrol states
...
Linkify start/stop webapp on password page
2022-01-02 11:13:15 -05:00
zzz
131da9bdb9
javadoc fixes
2021-12-30 09:59:26 -05:00
zzz
faa1bf117a
i2ptunnel: Add IRC filter support for IRCv3 message tags
...
Required for irc.ilita.i2p
2021-12-28 12:07:07 -05:00
zzz
d0e72aca66
Console: Partial string case-insensitive match for netdb family search
2021-12-28 08:55:29 -05:00
zzz
46ee8be9c6
i2psnark standalone: Add version number to header
2021-12-27 12:40:33 -05:00
zzz
57c997730f
Console: Fix display of ip lookup param with netmask in netdb search
2021-12-27 08:55:49 -05:00
zzz
0826f431ef
i2psnark standalone: Fixes for router startup and shutdown
...
so that torrents stop when the router stops and restart when the router restarts.
- Use BWLimits from the DirMonitor as a periodic test that the router is there
- DirMonitor does not attempt to autostart torrents if BWLimits test fails
- DirMonitor does autostart existing torrents when BWLimits test passes again
- Register disconnect listener with socket manger and stop all torrents on disconnect
- Use stopTorrent(true) on router errors to prevent changing the persisted torrent running status
- Change autostart default to true for standalone
Possibly more todo for corner cases or other start/stop/fail scenarios.
2021-12-27 08:52:56 -05:00
idk
e002d3f558
Move ShellService into net.i2p.router.web
2021-12-23 15:10:24 -05:00
zzz
3d5dd639e3
i2psnark standalone: Use previously translated I2CP connect error
2021-12-23 13:49:18 -05:00
zzz
2bfedfbc74
i2psnark standalone: Translate I2CP connect error
2021-12-23 13:06:58 -05:00
zzz
70131c6b25
i2psnark standalone: Pass ctx to logger
2021-12-23 12:02:19 -05:00
zzz
e946040ddd
i2psnark standalone: Redirect jetty logging to i2p log
2021-12-23 11:54:51 -05:00
zzz
bab37e57fe
i2psnark: Add note for translators
2021-12-23 11:23:00 -05:00
zzz
70e06de846
i2psnark: Translate theme names, translated sort
2021-12-23 11:01:05 -05:00
zzz
11f60a7192
i2psnark standalone: Set launch-i2psnark +x
2021-12-23 09:47:48 -05:00
zzz
6282c365bb
i2psnark standalone: Update readme
2021-12-23 09:12:57 -05:00
zzz
621ea49621
i2psnark standalone: Add da, el, and fa to language menu
2021-12-23 08:16:32 -05:00
zzz
e51738d180
i2psnark standalone: Add jbigi.jar
...
as requested by R4SAS
2021-12-21 06:51:06 -05:00
zzz
937b6120ff
i2psnark standalone: Add notes about changing browser and port
2021-12-18 07:52:30 -05:00
zzz
5029516087
i2ptunnel: Use defined SOCKS constants
2021-12-18 06:21:25 -05:00
zzz
69699638ae
i2psnark: Add avif mime type
2021-12-18 06:19:49 -05:00
zzz
e6c76fa5ae
Console: CSS tweak for update status box
2021-12-18 06:18:49 -05:00
idk
c4cfe420a6
disable any chance of JNDI lookups in log4j.properties file by setting %m{nolookups}. I don't think we're actually vulnerable to CVE-2021-44228 if I'm understanding correctly, by default it doesn't seem like we actually use log4j for much of anything and we don't do much logging of arbitrarily crafted remote inputs, but also it seems like this JNDI lookups thing is way more trouble than it could possibly be worth to us. Maybe it's a good idea to make sure it's turned off by default.
2021-12-10 21:01:37 -05:00
zzz
b1a4a8517e
i2ptunnel: Refactor UDPTunnel, Streamr, and SOCKS UDP for I2CP ports
...
- Add fromPort and toPort to Sink interface (breaking API change)
- Change cache maps from Destination to I2PSocketAddress to include port
- Accept host:port for destination in Streamr Client, use port
as toPort in pinger
- Change to muxed listener in I2PSource, only listen for
specified protocols
- Eliminate thread and queue in I2PSource, process messages inline
in the listener
- Add support for handling both repliable and raw datagrams in
a single I2PSource instance
- Remove verify option from I2PSource and I2PTunnelUDPServerBase,
always verify repliable datagrams
- Add getPort() method to UDPSource
- Add a constructor to UDPSink to pass in an existing DatagramSocket
- Change I2PTunnelUDPClientBase to receive both repliable and raw
- Change SOCKSUDPTunnel reply handling strategy to key on I2CP toPort;
remove ReplyTracker; the tunnel would not have worked before, because
it expected raw replies only but MultiSink required a destination
to look up where to forward the reply.
- Mark SOCKSUDPTunnel as preliminary; note lack of support
for raw replies; untested
- Change Streamr Client Pinger to support fromPort
- Change Streamr Server to remember fromPort in subscriptions
and use it as toPort in data stream
- Move fields to top of classes for sanity
- Cleanups and log tweaks
2021-12-08 13:05:27 -05:00
zzz
22ff40bc84
Build: Add missing @Override annotations (dep-ann lint)
2021-12-07 15:33:41 -05:00
zzz
a59cad0066
Router: Tweak shutdown messages
...
Change one from CRIT to WARN
Translate one of them
Attempt to translate class name in notifications
2021-12-05 07:21:57 -05:00
zzz
cbb6a6db65
DTG: Add menu items to control notifications
...
Fix check for successful configuration save
2021-12-05 06:38:28 -05:00
zzz
730b9790d9
Console: Remove job queue link on /configservice
2021-12-04 16:54:12 -05:00
zzz
ebf6ca5b34
Console: Case-insensitive sort of jobs on /jobs
2021-12-04 16:03:53 -05:00
zzz
0422134a86
SusiMail: Notify new messages on DTG
...
experimental
2021-12-04 12:47:47 -05:00
zzz
1a77352fa7
i2psnark: Notify completed downloads on DTG
...
experimental
2021-12-04 11:59:39 -05:00
zzz
fa0e59435e
DTG: Change icon from white to black on Windows by default
...
Will be set to the opposite of the console theme.
2021-12-04 10:48:11 -05:00
zzz
962cc31f31
DTG: Show all CRIT messages on DTG.
...
Experimental, may add a separate config or disable later.
Show I2P starting message in DTG
2021-12-04 09:50:08 -05:00
zzz
87362fd68b
i2psnark: Edit torrent page cleanup - remove unneeded info
2021-12-04 08:02:37 -05:00
zzz
51f6bef5dc
i2psnark: Respect newlines in torrent comments
2021-12-04 07:38:24 -05:00
zzz
2a900a8c5b
i2psnark: Add torrent edit page
...
Additional UI cleanup to follow
2021-12-03 06:26:14 -05:00
zzz
890a8927a5
DTG: Add notification service to display popup messages
...
unused for now
2021-12-01 08:37:51 -05:00
zzz
537a8bf19b
Console: Linkify router hashes on Sybil analysis
2021-11-30 11:14:51 -05:00
zzz
bd0c696b84
CLI: Allow empty blocklist when signing news feed
2021-11-30 11:11:30 -05:00
zzz
b53707074f
DTG: Add classpath to jar, add early check for support when called by CLI
...
for ease of command-line testing
2021-11-30 10:26:52 -05:00
zzz
6cb8d2eeb7
i2ptunnel: Increase default priority for IRC and standard tunnels
2021-11-30 10:23:14 -05:00
zzz
3895cd1068
Console: NetDB search form improvements
2021-11-30 09:53:44 -05:00