7608 Commits

Author SHA1 Message Date
zzz
9b9f96dcc1 Merge branch 'susimail-search-xhr' into 'master'
Susimail: XHR search

See merge request i2p-hackers/i2p.i2p!196
2024-05-21 12:26:41 +00:00
zzz
e19eca1d94 Susimail: XHR search 2024-05-21 12:26:41 +00:00
zzz
050a52a2ea i2psnark: Fix NPE when attempting to create torrent with too many files
as reported by mrt
improve error message
2024-05-19 10:29:39 -04:00
zzz
0c19e28a4a Console: Disable browser caching of graphs 2024-05-18 13:15:48 -04:00
zzz
b71b4a952e Build: Fix buildTest after distclean 2024-05-18 10:49:39 -04:00
zzz
a685374fef Merge branch 'js-scope' into 'master'
Console: Fix js global scope variables

See merge request i2p-hackers/i2p.i2p!195
2024-05-18 11:51:30 +00:00
zzz
2d81e843aa Console: Fix js global scope variables 2024-05-18 11:51:30 +00:00
zzz
aedb7cd19a Console: Tweak graph title placement 2024-05-17 13:30:47 -04:00
zzz
abc3162db5 Pull translations from Transifex 2024-05-14 13:40:59 -04:00
zzz
ed065474b3 i2ptunnel: Fix keepalive bug causing truncation of chunked output 2024-05-14 13:08:34 -04:00
zzz
e9c0cdbf27 fix comment 2024-05-12 11:21:26 -04:00
zzz
4fa1965b11 rrd4j: Hide axis ticks
as recommended by drzed
2024-05-12 10:43:08 -04:00
zzz
4e9ac43b55 rrd4j: Change unit scale from 'k' to 'K'
which is not correct by the SI standard,
but it matches the rest of the console and common practice.
Also fix rrd4j bug that used micro in one place and u in the other.
2024-05-12 10:12:21 -04:00
zzz
177fbad865 Console: Update rrd4j to 3.9.1 preview
from rrd4j github head.
Includes our ImageWorker contribution which should speed up rendering.
2024-05-12 09:58:42 -04:00
zzz
603bca476a i2ptunnel: Fix custom options form width (light theme) 2024-05-08 06:56:14 -04:00
eyedeekay
aa947e7922 2.5.1: update translations 2024-05-06 15:29:01 -04:00
zzz
44f313449a Pull translations from transifex 2024-05-05 08:57:50 -04:00
zzz
c94c49482f Console: Error page CSS tweak (dark) 2024-05-04 07:22:25 -04:00
zzz
fbce5a5eaa Console: Trim inputs on search form 2024-05-04 07:17:15 -04:00
zzz
6874488d63 i2psnark: CSS fixes (vanilla) 2024-05-04 07:14:11 -04:00
zzz
d123aeab0c Susimail: Search fixes
- Fix sorting and pagination within search results
- Bypass XSS filter and escape as necessary
2024-04-26 08:35:57 -04:00
zzz
daee078dcf Susimail: Add search 2024-04-22 21:19:46 -04:00
zzz
78ee4ac3cd Addressbook: Use standard time formatting for log
and set file permissions
2024-04-22 20:45:49 -04:00
zzz
33d56f5f2e Build: Update to Tomcat 9.0.88 2024-04-17 07:45:40 -04:00
zzz
d4a36675be Susimail: Don't show multipart/related CID images as attachments also 2024-04-15 10:25:33 -04:00
zzz
8cf1ebf05d Susimail: Improve validateAddress()
causing some addresses to not be displayed

- Better regex for domain
- Use compiled pattern for matching
- Allow multiple matches for e.g. "foo@example.com" <foo@example.com>
2024-04-13 13:25:24 -04:00
zzz
8919e38582 Susimail: Don't show attachment flag for multipart/related emails 2024-04-13 12:38:39 -04:00
zzz
c0d6c944c3 Susimail: Add missing div ids for DnD
Were inadvertently not included in MR 172
2024-04-13 12:20:57 -04:00
zzz
42e856d597 Susimail: Increase compose form width (dark theme) 2024-04-13 11:22:42 -04:00
zzz
f91e6829ad Susimail: Don't show attachment flag for HTML emails 2024-04-13 10:59:19 -04:00
zzz
d5b627adc1 Susimail: Include sender name when replying
Consolidate sender string generation code
Add sender name to default config
2024-04-13 10:40:31 -04:00
zzz
ddb7568ed6 Susimail: Reply-all improvements
- Only show reply-all button if more than one recipient
- Dedup recipients
- Don't put To: recipients in Cc: line
- Don't put ourselves in To: or Cc: lines
2024-04-13 09:54:25 -04:00
zzz
0b56bd9f41 Console: Hide update download button in test mode 2024-04-13 09:12:57 -04:00
zzz
7f70126c60 javadoc fix 2024-04-11 08:46:20 -04:00
zzz
2ab0e52829 Build: Update i2psnark-standalone manifest 2024-04-11 08:05:34 -04:00
zzz
06302c0f31 Susimail: Fix loading mail bodies in non-inbox/drafts folders 2024-04-05 16:37:00 -04:00
zzz
64aa641f9c Pull translations from Transifex 2024-04-05 12:46:11 -04:00
zzz
2775e2eabf Susimail: Fix truncation of quoted-printable attachments 2024-04-05 11:36:50 -04:00
zzz
385ad4cb54 Susimail: Fix forwarding html-only email 2024-04-04 15:27:01 -04:00
zzz
d9c67ecc2e Susimail: Fix forwarding email with attachments lacking specified encoding
MailPart.encoding is now always non-null.
2024-04-04 14:48:08 -04:00
zzz
3a18721c52 Susimail: Fix 413 error forwarding email with attachments
Was actually an ISE in FileBuffer via getOutputStream().flush(), but XSSFilter converted it to a 413
Add logging in XSSFilter to make it easier to find next time
Javadoc fix
2024-04-04 13:59:09 -04:00
zzz
1bc4464444 Susimail: Fix initialization of textarea height 2024-04-04 12:34:12 -04:00
zzz
50ec9d34a1 Susimail: Only parse mail headers once
Double-parsing caused to: line to be duped as cc:
2024-04-04 11:43:10 -04:00
zzz
a7fc9c6b93 poupdate-source 2024-03-27 09:10:49 -04:00
zzz
97fe2bbed9 i2psnark: Add more known opentrackers
as requested
2024-03-25 10:41:47 -04:00
zzz
5545e712ad Susimail: Add partial Kurdish translation 2024-03-24 10:12:52 -04:00
zzz
663ec385c7 Console readme, i2prouter: Add Czech translation 2024-03-24 09:48:48 -04:00
zzz
9c1b926a09 i2psnark: Preserve private=0 in torrent files 2024-03-23 11:53:47 +00:00
zzz
b6aab62e2a streaming: Add Japanese translation 2024-03-20 09:29:56 -04:00
zzz
d908109be5 Susimail: Add partial Solvenian and Estonian translations 2024-03-20 08:55:31 -04:00