ed 
							
						 
					 
					
						
						
						
						
							
						
						
							64ad585318 
							
						 
					 
					
						
						
							
							ie11: file selection hotkeys  
						
						
						
					 
					
						2024-02-14 23:08:32 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f262aee800 
							
						 
					 
					
						
						
							
							change folders to preload music when necessary:  
						
						... 
						
						
						
						on phones especially, hitting the end of a folder while playing music
could permanently stop audio playback, because the browser will
revoke playback privileges unless we have a song ready to go...
there's no time to navigate through folders looking for the next file
the preloader will now start jumping through folders ahead of time 
						
					 
					
						2024-02-14 22:44:33 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d4da386172 
							
						 
					 
					
						
						
							
							add watchdog for sqlite deadlock on db init:  
						
						... 
						
						
						
						some cifs servers cause sqlite to fail in interesting ways; any attempt
to create a table can instantly throw an exception, which results in a
zerobyte database being created. During the next startup, the db would
be determined to be corrupted, and up2k would invoke _backup_db before
deleting and recreating it -- except that sqlite's connection.backup()
will hang indefinitely and deadlock up2k
add a watchdog which fires if it takes longer than 1 minute to open the
database, printing a big warning that the filesystem probably does not
support locking or is otherwise sqlite-incompatible, then writing a
stacktrace of all threads to a textfile in the config directory
(in case this deadlock is due to something completely different),
before finally crashing spectacularly
additionally, delete the database if the creation fails, which should
prevents the deadlock on the next startup, so combine that with a
message hinting at the filesystem incompatibility
the 1-minute limit may sound excessively gracious, but considering what
some of the copyparty instances out there is running on, really isn't
this was reported when connecting to a cifs server running alpine
thx to abex on discord for the detailed bug report! 
						
					 
					
						2024-02-14 20:18:36 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6f8a588c4d 
							
						 
					 
					
						
						
							
							up2k: fix a mostly-harmless race  
						
						... 
						
						
						
						as each chunk is written to the file, httpcli calls
up2k.confirm_chunk to register the chunk as completed, and the reply
indicates whether that was the final outstanding chunk, in which case
httpcli closes the file descriptors since there's nothing more to write
the issue is that the final chunk is registered as completed before the
file descriptors are closed, meaning there could be writes that haven't
finished flushing to disk yet
if the client decides to issue another handshake during this window,
up2k sees that all chunks are complete and calls up2k.finish_upload
even as some threads might still be flushing the final writes to disk
so the conditions to hit this bug were as follows (all must be true):
* multiprocessing is disabled
* there is a reverse-proxy
* a client has several idle connections and reuses one of those
* the server's filesystem is EXTREMELY slow, to the point where
   closing a file takes over 30 seconds
the fix is to stop handshakes from being processed while a file is
being closed, which is unfortunately a small bottleneck in that it
prohibits initiating another upload while one is being finalized, but
the required complexity to handle this better is probably not worth it
(a separate mutex for each upload session or something like that)
this issue is mostly harmless, partially because it is super tricky to
hit (only aware of it happening synthetically), and because there is
usually no harmful consequences; the worst-case is if this were to
happen exactly as the server OS decides to crash, which would make the
file appear to be fully uploaded even though it's missing some data
(all extremely unlikely, but not impossible)
there is no performance impact; if anything it should now accept
new tcp connections slightly faster thanks to more granular locking 
						
					 
					
						2024-02-13 19:24:06 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f7a43a8e46 
							
						 
					 
					
						
						
							
							fix grid layout on first toggle from listview  
						
						
						
					 
					
						2024-02-12 05:40:18 +01:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							02879713a2 
							
						 
					 
					
						
						
							
							tftp: update readme + small py2 fix  
						
						
						
					 
					
						2024-02-12 05:39:54 +01:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							acbb8267e1 
							
						 
					 
					
						
						
							
							tftp: add directory listing  
						
						
						
					 
					
						2024-02-10 23:50:17 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8796c09f56 
							
						 
					 
					
						
						
							
							add --tftp-pr to specify portrange instead of ephemerals  
						
						
						
					 
					
						2024-02-10 21:45:57 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d636316a19 
							
						 
					 
					
						
						
							
							add tftp server  
						
						
						
					 
					
						2024-02-10 18:37:21 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a96d9ac6cb 
							
						 
					 
					
						
						
							
							idp: users can be in multiple groups  
						
						
						
					 
					
						2024-02-08 20:25:32 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							643e222986 
							
						 
					 
					
						
						
							
							Merge branch 'hovudstraum' into idp  
						
						
						
					 
					
						2024-02-08 19:22:00 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ed524d84bb 
							
						 
					 
					
						
						
							
							/np: exclude uploader ip and trim dot-prefix  
						
						
						
					 
					
						2024-02-07 23:02:47 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							136c0fdc2b 
							
						 
					 
					
						
						
							
							detect reverse-proxies stripping URL params:  
						
						... 
						
						
						
						if a reverseproxy decides to strip away URL parameters, show an
appropriate error-toast instead of silently entering a bad state
someone on discord ended up in an infinite page-reload loop
since the js would try to recover by fully navigating to the
requested dir if `?ls` failed, which wouldn't do any good anyways
if the dir in question is the initial dir to display 
						
					 
					
						2024-02-05 19:17:36 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							35165f8472 
							
						 
					 
					
						
						
							
							Merge branch 'hovudstraum' into idp  
						
						
						
					 
					
						2024-02-03 19:14:49 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fabeebd96b 
							
						 
					 
					
						
						
							
							v1.9.31  
						
						
						
					 
					
						2024-02-03 15:33:11 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c354a38b4c 
							
						 
					 
					
						
						
							
							up2k: warn about browser cap on num connections  
						
						
						
					 
					
						2024-02-02 23:46:00 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a17c267d87 
							
						 
					 
					
						
						
							
							bbox: unload pics/vids from DOM;  closes   #71  
						
						... 
						
						
						
						videos unloaded correctly when switching between files, but not when
closing the lightbox while playing a video and then clicking another
now, only media within the preload window (+/- 2 from current file)
is kept loaded into DOM, everything else gets ejected, both on
navigation and when closing the lightbox 
						
					 
					
						2024-02-02 23:16:50 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c1180d6f9c 
							
						 
					 
					
						
						
							
							up2k: include inflight bytes in eta calculation;  
						
						... 
						
						
						
						much more accurate total-ETA when uploading with many connections
and/or uploading huge files to really slow servers
the titlebar % still only does actually confirmed bytes,
partially because that makes sense, partially because
that's what happened by accident 
						
					 
					
						2024-02-02 22:46:24 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d3db6d296f 
							
						 
					 
					
						
						
							
							disable mkdir and new-doc buttons if no name is provided  
						
						... 
						
						
						
						also fixes toast.hide() unintentionally stopping events from bubbling 
						
					 
					
						2024-02-01 21:41:48 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							caf7e93f5e 
							
						 
					 
					
						
						
							
							IdP ( #62 ): add groups + dynamic vols (non-persistent)  
						
						... 
						
						
						
						features which should be good to go:
* user groups
* assigning permissions by group
* dynamically created volumes based on username/groupname
* rebuild vfs when new users/groups appear
but several important features still pending;
* detect dangerous configurations
   * dynamic vol below readable path
* remember volumes created during previous runs
   * helps prevent unintended access
   * correct filesystem-scan on startup 
						
					 
					
						2024-01-30 19:13:42 +01:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							945170e271 
							
						 
					 
					
						
						
							
							fix umod/touching zerobyte files  
						
						
						
					 
					
						2024-01-27 20:26:27 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fade751a3e 
							
						 
					 
					
						
						
							
							v1.9.30  
						
						
						
					 
					
						2024-01-25 22:52:42 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0f386c4b08 
							
						 
					 
					
						
						
							
							also sanitize histpaths in client error messages;  
						
						... 
						
						
						
						previously it only did volume abspaths 
						
					 
					
						2024-01-25 21:40:41 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							14bccbe45f 
							
						 
					 
					
						
						
							
							backports from IdP branch:  
						
						... 
						
						
						
						* allow mounting `/` (the entire filesystem) as a volume
  * not that you should (really, you shouldn't)
* improve `-v` helptext
* change IdP group symbol to @ because % is used for file inclusion
  * not technically necessary but is less confusing in docs 
						
					 
					
						2024-01-25 21:39:30 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							55eb692134 
							
						 
					 
					
						
						
							
							up2k: add option to touch existing files to match local  
						
						
						
					 
					
						2024-01-24 20:36:41 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b32d65207b 
							
						 
					 
					
						
						
							
							fix js-error on older chromes in incognito mode;  
						
						... 
						
						
						
						window.localStorage was null, so trying to read would fail
seen on falkon 23.08.4 with qtwebengine 5.15.12 (fedora39)
might as well be paranoid about the other failure modes too
(sudden exceptions on reads and/or writes) 
						
					 
					
						2024-01-24 02:24:27 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6dbfcddcda 
							
						 
					 
					
						
						
							
							don't print indexing progress to stdout if -q  
						
						
						
					 
					
						2024-01-20 17:26:52 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b4e0a34193 
							
						 
					 
					
						
						
							
							ensure windows-safe filenames during batch rename  
						
						... 
						
						
						
						also handle ctrl-click in the navpane float 
						
					 
					
						2024-01-19 21:41:56 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							01c82b54a7 
							
						 
					 
					
						
						
							
							audio player: add shuffle  
						
						
						
					 
					
						2024-01-18 22:59:47 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4ef3106009 
							
						 
					 
					
						
						
							
							more old-browser support:  
						
						... 
						
						
						
						* polyfill Set() for gridview (ie9, ie10)
* navpane: do full-page nav if history api is ng (ie9)
* show markdown as plaintext if rendering fails (ie*)
* text-editor: hide preview pane if it doesn't work (ie*)
* explicitly hide toasts on close (ie9, ff10) 
						
					 
					
						2024-01-18 22:56:39 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							aa3a971961 
							
						 
					 
					
						
						
							
							windows: safeguard against parallel deletes  
						
						... 
						
						
						
						st_ino is valid for NTFS on python3, good enough 
						
					 
					
						2024-01-17 23:32:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b9d0c8536b 
							
						 
					 
					
						
						
							
							avoid sendfile bugs on 32bit machines:  
						
						... 
						
						
						
						https://github.com/python/cpython/issues/114077  
					
						2024-01-17 20:56:44 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							3313503ea5 
							
						 
					 
					
						
						
							
							retry deleting busy files on windows:  
						
						... 
						
						
						
						some clients (clonezilla-webdav) rapidly create and delete files;
this fails if copyparty is still hashing the file (usually the case)
and the same thing can probably happen due to antivirus etc
add global-option --rm-retry (volflag rm_retry) specifying
for how long (and how quickly) to keep retrying the deletion
default: retry for 5sec on windows, 0sec (disabled) on everything else
because this is only a problem on windows 
						
					 
					
						2024-01-17 20:27:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e7d00bae39 
							
						 
					 
					
						
						
							
							v1.9.29  
						
						
						
					 
					
						2024-01-14 06:29:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5e111ba5ee 
							
						 
					 
					
						
						
							
							only show the unpost hint if unpost is available (-e2d)  
						
						
						
					 
					
						2024-01-14 04:24:32 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							95a599961e 
							
						 
					 
					
						
						
							
							add RAM usage tracking to thumbnailer;  
						
						... 
						
						
						
						prevents server OOM from high RAM usage by FFmpeg when generating
spectrograms and waveforms: https://trac.ffmpeg.org/ticket/10797  
						
					 
					
						2024-01-14 04:15:09 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a55e0d6eb8 
							
						 
					 
					
						
						
							
							add button to bust music player cache,  
						
						... 
						
						
						
						useful on phones when the server was OOM'ing and
butchering the responses (foreshadowing...) 
						
					 
					
						2024-01-13 04:08:40 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2fd2c6b948 
							
						 
					 
					
						
						
							
							ie11 fixes (2024? haha no way dude it's like 2004 right)  
						
						... 
						
						
						
						* fix crash on keyboard input in modals
* text editor works again (but without markdown preview)
* keyboard hotkeys for the few features that actually work 
						
					 
					
						2024-01-13 02:31:50 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7a936ea01e 
							
						 
					 
					
						
						
							
							js: be careful with allocations in crash handler  
						
						
						
					 
					
						2024-01-13 01:22:20 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							226c7c3045 
							
						 
					 
					
						
						
							
							fix confusing behavior when reindexing files:  
						
						... 
						
						
						
						when a file was reindexed (due to a change in size or last-modified
timestamp) the uploader-IP would get removed, but the upload timestamp
was ported over. This was intentional so there was probably a reason...
new behavior is to keep both uploader-IP and upload timestamp if the
file contents are unchanged (determined by comparing warks), and to
discard both uploader-IP and upload timestamp if that is not the case 
						
					 
					
						2024-01-13 00:18:46 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a4239a466b 
							
						 
					 
					
						
						
							
							immediately perform search if a checkbox is toggled  
						
						
						
					 
					
						2024-01-12 00:20:38 +01:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d0eb014c38 
							
						 
					 
					
						
						
							
							improve applefilters + add missing newline in curl 404  
						
						... 
						
						
						
						* webdav: extend applesan regex with more stuff to exclude
* on macos, set applesan as default `--no-idx` to avoid indexing them
   (they didn't show up in search since they're dotfiles, but still) 
						
					 
					
						2024-01-12 00:13:35 +01:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e01ba8552a 
							
						 
					 
					
						
						
							
							warn if a user doesn't have privileges anywhere  
						
						... 
						
						
						
						(since the account system isn't super-inutitive and at least
 one dude figured that -a would default to giving admin rights) 
						
					 
					
						2024-01-11 00:24:34 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							024303592a 
							
						 
					 
					
						
						
							
							improved logging when a client dies mid-POST;  
						
						... 
						
						
						
						igloo irc has an absolute time limit of 2 minutes before it just
disconnects mid-upload and that kinda looked like it had a buggy
multipart generator instead of just being funny
anticipating similar events in the future, also log the
client-selected boundary value to eyeball its yoloness 
						
					 
					
						2024-01-10 23:59:43 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							86419b8f47 
							
						 
					 
					
						
						
							
							suboptimizations and some future safeguards  
						
						
						
					 
					
						2024-01-10 23:20:42 +01:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f1358dbaba 
							
						 
					 
					
						
						
							
							use scandir for volume smoketests during up2k init;  
						
						... 
						
						
						
						gives much faster startup on filesystems that are extremely slow
(TLNote: android sdcardfs) 
						
					 
					
						2024-01-09 21:47:02 +01:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e8a653ca0c 
							
						 
					 
					
						
						
							
							don't block non-up2k uploads during indexing;  
						
						... 
						
						
						
						due to all upload APIs invoking up2k.hash_file to index uploads,
the uploads could block during a rescan for a crazy long time
(past most gateway timeouts); now this is mostly fire-and-forget
"mostly" because this also adds a conditional slowdown to
help the hasher churn through if the queue gets too big
worst case, if the server is restarted before it catches up, this
would rely on filesystem reindexing to eventually index the files
after a restart or on a schedule, meaning uploader info would be
lost on shutdown, but this is usually fine anyways (and this was
also the case until now) 
						
					 
					
						2024-01-08 22:10:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9bc09ce949 
							
						 
					 
					
						
						
							
							accept file POSTs without specifying the act field;  
						
						... 
						
						
						
						primarily to support uploading from Igloo IRC but also generally useful
(not actually tested with Igloo IRC yet because it's a paid feature
so just gonna wait for spiky to wake up and tell me it didn't work) 
						
					 
					
						2024-01-08 19:09:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							dc8e621d7c 
							
						 
					 
					
						
						
							
							increase OOM kill-score for FFmpeg and mtp's;  
						
						... 
						
						
						
						discourage Linux from killing innocent processes
when FFmpeg decides to allocate 1 TiB of RAM 
						
					 
					
						2024-01-07 17:52:10 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							987caec15d 
							
						 
					 
					
						
						
							
							v1.9.28  
						
						
						
					 
					
						2023-12-31 18:49:42 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ab40ff5051 
							
						 
					 
					
						
						
							
							add permission "A" (alias of "rwmda.");  closes   #70  
						
						
						
					 
					
						2023-12-31 18:20:24 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							bed133d3dd 
							
						 
					 
					
						
						
							
							pad log source when logging to file too  
						
						
						
					 
					
						2023-12-31 17:21:02 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							829c8fca96 
							
						 
					 
					
						
						
							
							curl/CLI-friendly 403/404  
						
						
						
					 
					
						2023-12-31 17:20:45 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5b26ab0096 
							
						 
					 
					
						
						
							
							add option to specify default num parallel uploads  
						
						
						
					 
					
						2023-12-28 01:41:17 +01:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							59688bc8d7 
							
						 
					 
					
						
						
							
							* rename hdr-au-usr to idp-h-usr  
						
						... 
						
						
						
						* ensure lowercase idp-h-*, xff-hdr
* more macos support in tooling 
						
					 
					
						2023-12-24 13:46:12 +01:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a18f63895f 
							
						 
					 
					
						
						
							
							fix resource leak on macos  
						
						
						
					 
					
						2023-12-21 00:48:51 +01:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							374c535cfa 
							
						 
					 
					
						
						
							
							fix cors-checker so it behaves like the readme says;  
						
						... 
						
						
						
						any custom header (`pw` in our case) is sufficient validation 
						
					 
					
						2023-12-20 20:03:08 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ac7815a0ae 
							
						 
					 
					
						
						
							
							ensure file can be opened before replying 200 and...  
						
						... 
						
						
						
						* make gen_tree 0.1% faster
* improve filekey warning message
* fix oversight in 0c50ea1757 
						
					 
					
						2023-12-20 01:07:45 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							10bc2d9205 
							
						 
					 
					
						
						
							
							unsuccessful attempt at dirkeys ( #64 )  
						
						
						
					 
					
						2023-12-17 22:30:22 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0c50ea1757 
							
						 
					 
					
						
						
							
							list dotfiles only for specific volumes or users ( #66 ):  
						
						... 
						
						
						
						* permission `.` grants dotfile visibility if user has `r` too
* `-ed` will grant dotfiles to all `r` accounts (same as before)
* volflag `dots` likewise
also drops compatibility for pre-0.12.0 `-v` syntax
(`-v .::red` will no longer translate to `-v .::r,ed`) 
						
					 
					
						2023-12-16 15:38:48 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c057c5e8e8 
							
						 
					 
					
						
						
							
							extend --th-covers with dotfiles;  closes   #67  
						
						
						
					 
					
						2023-12-14 10:53:15 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							46d667716e 
							
						 
					 
					
						
						
							
							support python 3.15  
						
						
						
					 
					
						2023-12-14 10:49:10 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cba2e10d29 
							
						 
					 
					
						
						
							
							cleanup  
						
						
						
					 
					
						2023-12-14 10:47:52 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d15000062d 
							
						 
					 
					
						
						
							
							v1.9.27  
						
						
						
					 
					
						2023-12-08 21:33:12 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6cb3b35a54 
							
						 
					 
					
						
						
							
							fix   #65  (symlinks die when moved)  
						
						
						
					 
					
						2023-12-08 21:28:20 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a360ac29da 
							
						 
					 
					
						
						
							
							v1.9.26  
						
						
						
					 
					
						2023-12-08 01:36:01 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9672b8c9b3 
							
						 
					 
					
						
						
							
							ensure nested symlinks are not broken during deletes;  
						
						... 
						
						
						
						when moving/deleting a file, all symlinked dupes are verified to ensure
this action does not break any symlinks, however it did this by checking
the realpath of each link. This was not good enough, since the deleted
file may be a part of a series of nested symlinks
this situation occurs because the deduper tries to keep relative
symlinks as close as possible, only traversing into parent/sibling
folders as required, which can lead to several levels of nested links 
						
					 
					
						2023-12-08 01:11:03 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e70ecd98ef 
							
						 
					 
					
						
						
							
							don't freak out when deleting a broken symlink,  
						
						... 
						
						
						
						also invoke the hooks with the corret lastmod time 
						
					 
					
						2023-12-08 01:01:10 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5f7ce78d7f 
							
						 
					 
					
						
						
							
							avoid duplicate database entries when replacing files,  
						
						... 
						
						
						
						either from --daw, or by using u2c with --dr 
						
					 
					
						2023-12-08 01:00:01 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							91f010290c 
							
						 
					 
					
						
						
							
							improve --help descriptions  
						
						
						
					 
					
						2023-12-03 02:35:38 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c7770904e6 
							
						 
					 
					
						
						
							
							v1.9.25  
						
						
						
					 
					
						2023-12-01 23:26:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1690889ed8 
							
						 
					 
					
						
						
							
							remember scroll position when leaving the textfile viewer  
						
						
						
					 
					
						2023-12-01 23:15:48 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							842817d9e3 
							
						 
					 
					
						
						
							
							improve handling of malicious clients;  
						
						... 
						
						
						
						* start banning malicious clients according to --ban-422
* reply with a blank 500 to stop firefox from retrying like 20 times
* allow Cc's in a few specific URL params (filenames, dirnames) 
						
					 
					
						2023-12-01 23:08:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5fc04152bd 
							
						 
					 
					
						
						
							
							also handle NumpadEnter  
						
						
						
					 
					
						2023-12-01 21:10:51 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1be85bdb26 
							
						 
					 
					
						
						
							
							fix modal focus even more (now works on phones too)  
						
						
						
					 
					
						2023-12-01 21:02:05 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							900cc463c3 
							
						 
					 
					
						
						
							
							v1.9.24  
						
						
						
					 
					
						2023-12-01 02:10:20 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a7cef91b8b 
							
						 
					 
					
						
						
							
							v1.9.23  
						
						
						
					 
					
						2023-12-01 00:39:49 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e6bcee28d6 
							
						 
					 
					
						
						
							
							v1.9.22  
						
						
						
					 
					
						2023-12-01 00:31:02 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							626b5770a5 
							
						 
					 
					
						
						
							
							add --ftp-ipa  
						
						
						
					 
					
						2023-11-30 23:36:46 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c2f92cacc1 
							
						 
					 
					
						
						
							
							mention the new auth feature  
						
						
						
					 
					
						2023-11-30 23:01:05 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4f8a1f5f6a 
							
						 
					 
					
						
						
							
							allow free text selection in modals by deferring focus  
						
						
						
					 
					
						2023-11-30 22:41:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4a98b73915 
							
						 
					 
					
						
						
							
							fix a bug previouly concealed by window.event;  
						
						... 
						
						
						
						hitting enter would clear out an entire chain of modals,
because the event didn't get consumed like it should,
so let's make double sure that will be the case 
						
					 
					
						2023-11-30 22:40:30 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							00812cb1da 
							
						 
					 
					
						
						
							
							new option --ipa; client IP allowlist:  
						
						... 
						
						
						
						connections from outside the specified list of IP prefixes are rejected
(docker-friendly alternative to -i 127.0.0.1)
also mkdir any missing folders when logging to file 
						
					 
					
						2023-11-30 20:45:43 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5e932a9504 
							
						 
					 
					
						
						
							
							hilight metavars in help text  
						
						
						
					 
					
						2023-11-30 18:19:34 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ccab44daf2 
							
						 
					 
					
						
						
							
							initial support for identity providers ( #62 ):  
						
						... 
						
						
						
						add argument --hdr-au-usr which specifies a HTTP header to read
usernames from; entirely bypasses copyparty's password checks
for http/https clients (ftp/smb are unaffected)
users must exist in the copyparty config, passwords can be whatever
just the first step but already a bit useful on its own,
more to come in a few months 
						
					 
					
						2023-11-30 18:18:47 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8c52b88767 
							
						 
					 
					
						
						
							
							make linters happier  
						
						
						
					 
					
						2023-11-30 17:33:07 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c9fd26255b 
							
						 
					 
					
						
						
							
							support environment variables mostly everywhere,  
						
						... 
						
						
						
						useful for docker/systemd stuff
also makes logfiles flush to disk per line by default;
can be disabled for a small performance gain with --no-logflush 
						
					 
					
						2023-11-30 10:22:52 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b7723ac245 
							
						 
					 
					
						
						
							
							rely on filekeys for album-art over bluetooth;  
						
						... 
						
						
						
						will probably fail when some devices (sup iphone) stream to car stereos
but at least passwords won't end up somewhere unexpected this way
(plus, the js no longer uses the jank url to request waveforms) 
						
					 
					
						2023-11-29 23:20:59 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							35b75c3db1 
							
						 
					 
					
						
						
							
							avoid palemoon bug on dragging a text selection;  
						
						... 
						
						
						
						"permission denied to access property preventDefault" 
						
					 
					
						2023-11-26 20:22:59 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f902779050 
							
						 
					 
					
						
						
							
							avoid potential dom confusion (ie8 is already no-js)  
						
						
						
					 
					
						2023-11-26 20:08:52 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c4ba123779 
							
						 
					 
					
						
						
							
							v1.9.21  
						
						
						
					 
					
						2023-11-25 14:17:58 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b1fffc2246 
							
						 
					 
					
						
						
							
							open textfiles inline in grid-view,  closes   #63 ;  
						
						... 
						
						
						
						also fix the Y hotkey (which converts all links in the list-view into
download links), making that apply to the grid-view as well 
						
					 
					
						2023-11-25 13:09:12 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							eddce00765 
							
						 
					 
					
						
						
							
							v1.9.20  
						
						
						
					 
					
						2023-11-21 23:25:41 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6f4bde2111 
							
						 
					 
					
						
						
							
							fix infinite backspin on "previous track";  
						
						... 
						
						
						
						when playing the first track in a folder and hitting the previous track
button, it would keep switching through the previous folders inifinitely 
						
					 
					
						2023-11-21 23:23:51 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f3035e8869 
							
						 
					 
					
						
						
							
							clear load-more buttons upon navigation (thx icxes)  
						
						
						
					 
					
						2023-11-21 22:53:46 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a9730499c0 
							
						 
					 
					
						
						
							
							don't suggest loading more search results beyond server cap  
						
						
						
					 
					
						2023-11-21 22:38:35 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b66843efe2 
							
						 
					 
					
						
						
							
							reduce cpu priority of ffmpeg, hooks, parsers  
						
						
						
					 
					
						2023-11-21 22:21:33 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9ccc238799 
							
						 
					 
					
						
						
							
							v1.9.19  
						
						
						
					 
					
						2023-11-19 12:29:19 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8526ef9368 
							
						 
					 
					
						
						
							
							srch-dbg: handle jumpvols correctly  
						
						
						
					 
					
						2023-11-19 11:35:13 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							3c36727d07 
							
						 
					 
					
						
						
							
							fix filekeys not appearing in up2k in world-writable vols  
						
						
						
					 
					
						2023-11-19 11:19:08 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ef33ce94cd 
							
						 
					 
					
						
						
							
							filter shadowed files from search results ( #61 ),  
						
						... 
						
						
						
						also adds optimization to stop opening cursors
when max results has already been hit 
						
					 
					
						2023-11-19 11:04:36 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							deef32335e 
							
						 
					 
					
						
						
							
							v1.9.18  
						
						
						
					 
					
						2023-11-18 21:06:55 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fc4b51ad00 
							
						 
					 
					
						
						
							
							make dhash more volatile; probably  fixes   #61 :  
						
						... 
						
						
						
						if any volumes were added or removed since last use,
drop dhash to verify that there are no files to shadow 
						
					 
					
						2023-11-18 20:48:56 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fa762754bf 
							
						 
					 
					
						
						
							
							fix close/more thumbs in search results for pillow 10.x  
						
						
						
					 
					
						2023-11-18 13:57:35 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							29bd8f57c4 
							
						 
					 
					
						
						
							
							fix js error when ctrl-clicking a search result;  closes   #60  
						
						
						
					 
					
						2023-11-18 13:47:00 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ee3333362f 
							
						 
					 
					
						
						
							
							v1.9.17  
						
						
						
					 
					
						2023-11-11 17:38:43 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							bac733113c 
							
						 
					 
					
						
						
							
							up2k-hasher robustness:  
						
						... 
						
						
						
						webdav clients tend to upload and then immediately delete
files to test for write-access and available disk space,
so don't crash and burn when that happens 
						
					 
					
						2023-11-11 16:21:54 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							32ab65d7cb 
							
						 
					 
					
						
						
							
							add cfssl to packaging + improve certgen expiration check  
						
						
						
					 
					
						2023-11-11 15:30:03 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							736aa125a8 
							
						 
					 
					
						
						
							
							fix dumb  
						
						
						
					 
					
						2023-11-11 13:52:06 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							dabdaaee33 
							
						 
					 
					
						
						
							
							v1.9.16  
						
						
						
					 
					
						2023-11-04 21:58:01 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							65e4d67c3e 
							
						 
					 
					
						
						
							
							mkdir with leading slash works as expected  
						
						
						
					 
					
						2023-11-04 22:21:56 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4b720f4150 
							
						 
					 
					
						
						
							
							add more prometheus metrics; breaking changes:  
						
						... 
						
						
						
						* cpp_uptime is now a gauge
* cpp_bans is now cpp_active_bans (and also a gauge)
and other related fixes:
* stop emitting invalid cpp_disk_size/free for offline volumes
* support overriding the spec-mandatory mimetype with ?mime=foo 
						
					 
					
						2023-11-04 20:32:34 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2e85a25614 
							
						 
					 
					
						
						
							
							improve service listing  
						
						
						
					 
					
						2023-11-04 10:23:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							713fffcb8e 
							
						 
					 
					
						
						
							
							also mkdir missing intermediates,  
						
						... 
						
						
						
						unless requester is a webdav client (those expect a 409) 
						
					 
					
						2023-11-03 23:23:49 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8020b11ea0 
							
						 
					 
					
						
						
							
							improve/simplify validation/errorhandling:  
						
						... 
						
						
						
						* some malicious requests are now answered with HTTP 422,
   so that they count against --ban-422
* do not include request headers when replying to invalid requests,
   in case there is a reverse-proxy inserting something interesting 
						
					 
					
						2023-11-03 23:07:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2523d76756 
							
						 
					 
					
						
						
							
							windows: fix symlinks  
						
						
						
					 
					
						2023-11-03 17:16:12 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							95566e8388 
							
						 
					 
					
						
						
							
							cosmetics:  
						
						... 
						
						
						
						* fix toast/tooltip colors on splashpage
* properly warn if --ah-cli or --ah-gen is used without --ah-alg
* support ^D during --ah-cli
* improve flavor texts 
						
					 
					
						2023-11-03 16:52:43 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							76afb62b7b 
							
						 
					 
					
						
						
							
							make each segment of links separately selectable  
						
						
						
					 
					
						2023-10-25 12:21:39 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c07e0110f8 
							
						 
					 
					
						
						
							
							v1.9.15  
						
						
						
					 
					
						2023-10-24 16:43:26 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2808734047 
							
						 
					 
					
						
						
							
							drc: further reduce volume skip between songs  
						
						
						
					 
					
						2023-10-24 16:38:29 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1f75314463 
							
						 
					 
					
						
						
							
							placeholder expansion in readme and logues;  closes   #56  
						
						... 
						
						
						
						also fixes the "scan" volflag which broke in v1.9.14 
						
					 
					
						2023-10-24 16:37:32 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							063fa3efde 
							
						 
					 
					
						
						
							
							drc: fix volume jump on song change  
						
						... 
						
						
						
						(in exchange for a chance of clipping, which should be fine because
all browsers appear to have a limiter on the output anyways) 
						
					 
					
						2023-10-23 09:05:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cea746377e 
							
						 
					 
					
						
						
							
							v1.9.14  
						
						
						
					 
					
						2023-10-21 14:43:11 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							250aa28185 
							
						 
					 
					
						
						
							
							v1.9.13  
						
						
						
					 
					
						2023-10-21 13:14:41 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5280792cd7 
							
						 
					 
					
						
						
							
							list existing tags even if tagscanning is disabled  
						
						
						
					 
					
						2023-10-21 13:09:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2529aa151d 
							
						 
					 
					
						
						
							
							tersen volume listing on startup  
						
						
						
					 
					
						2023-10-21 12:11:49 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fc658e5b9e 
							
						 
					 
					
						
						
							
							utcfromtimestamp was deprecated and nobody told me,  
						
						... 
						
						
						
						not even the deprecationwarning that got silently generated burning
20~30% of all CPU-time without actually displaying it anywhere, nice
python 3.12.0 is now only 5% slower than 3.11.6
also fixes some other, less-performance-fatal deprecations 
						
					 
					
						2023-10-20 23:41:58 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a4bad62b60 
							
						 
					 
					
						
						
							
							add clientside DRC / dynamic range compressor  
						
						
						
					 
					
						2023-10-20 20:51:00 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e1d78d8b23 
							
						 
					 
					
						
						
							
							increase timeout of unfinished uploads from 6 to 24 hours  
						
						... 
						
						
						
						plus make it configurable 
						
					 
					
						2023-10-20 18:31:28 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c7f826dbbe 
							
						 
					 
					
						
						
							
							search by upload time  
						
						
						
					 
					
						2023-10-19 23:57:27 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							801da8079b 
							
						 
					 
					
						
						
							
							only 404-ban accounts with permission [gGh]:  
						
						... 
						
						
						
						never bonk anyone with read-access (able to see directory-listing)
or write-only (not able to retrieve any files at all) due to
either --ban-404 or --ban-url
fixes accidental ban when webdav-uploading files which
match any of the --ban-url patterns (#55 )
also default-enables --ban-404 since it is now generally safe
(even when up2k is in turbo mode), plus make turbo smart enough to
disengage when necessary 
						
					 
					
						2023-10-18 22:14:09 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7d797dba3f 
							
						 
					 
					
						
						
							
							strip filekeys from -txt- links;  
						
						... 
						
						
						
						accessing the syntax hilighter using a filekey is impossible anyways
because the client expects to build its state from the folder listing
and the backend refuses to return a listing given just a filekey 
						
					 
					
						2023-10-18 20:57:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4b5a0787ab 
							
						 
					 
					
						
						
							
							option to show upload timestamps in directory listing;  
						
						... 
						
						
						
						enable with -mte +.ip_at
or volflag mte=+.ip_at
worst-case performance impact: 18% 
						
					 
					
						2023-10-17 17:51:27 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ac40dccc8f 
							
						 
					 
					
						
						
							
							v1.9.12  
						
						
						
					 
					
						2023-10-15 20:06:46 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9ca8154651 
							
						 
					 
					
						
						
							
							prefer the new TTF in pillow 10.1 + pyinstaller 6.1 fixes  
						
						
						
					 
					
						2023-10-15 18:47:34 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							db668ba491 
							
						 
					 
					
						
						
							
							spectrograms are never cropped; share thumbcache  
						
						
						
					 
					
						2023-10-15 11:42:57 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							edbafd94c2 
							
						 
					 
					
						
						
							
							avoid iphone jank:  
						
						... 
						
						
						
						safari can immediately popstate when alt-tabbing back to the browser,
causing the page to load twice in parallel:
2174 log-capture ok
2295 h-repl $location
2498 h-pop $location <==
2551 sha-ok  # from initial load 
						
					 
					
						2023-10-15 11:27:27 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2df76eb6e1 
							
						 
					 
					
						
						
							
							client decides if thumbnails should be cropped or not  
						
						... 
						
						
						
						this carries some intentional side-effects; each thumbnail format will
now be stored in its own subfolder under .hist/th/ making cleanup more
effective (jpeg and webm are dropped separately) 
						
					 
					
						2023-10-15 10:21:25 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9b77c9ce7d 
							
						 
					 
					
						
						
							
							more intuitive upload/filesearch toggle:  
						
						... 
						
						
						
						restore preferred mode after leaving a restricted folder 
						
					 
					
						2023-10-15 09:00:57 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							dc2b67f155 
							
						 
					 
					
						
						
							
							ui-button to use upload-time instead of local last-modified  
						
						
						
					 
					
						2023-10-15 08:46:23 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9f32e9e11d 
							
						 
					 
					
						
						
							
							set default sort order; --sort or volflag "sort"  
						
						
						
					 
					
						2023-10-14 22:17:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7086d2a305 
							
						 
					 
					
						
						
							
							ie9 support  
						
						
						
					 
					
						2023-10-14 10:01:03 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							575615ca2d 
							
						 
					 
					
						
						
							
							slight refactor; 7% faster, 1% more maintainable  
						
						
						
					 
					
						2023-10-14 09:54:49 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e4001550c1 
							
						 
					 
					
						
						
							
							v1.9.11  
						
						
						
					 
					
						2023-10-09 00:36:54 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e9f65be86a 
							
						 
					 
					
						
						
							
							add cachebuster for dynamically loaded js files  
						
						
						
					 
					
						2023-10-09 00:22:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							acc363133f 
							
						 
					 
					
						
						
							
							v1.9.10  
						
						
						
					 
					
						2023-10-08 20:51:49 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8f2d502d4d 
							
						 
					 
					
						
						
							
							configurable printing of failed login attempts  
						
						
						
					 
					
						2023-10-08 20:41:02 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2ae93ad715 
							
						 
					 
					
						
						
							
							clear response headers for each request  
						
						
						
					 
					
						2023-10-08 20:38:51 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e7fff77735 
							
						 
					 
					
						
						
							
							v1.9.9  
						
						
						
					 
					
						2023-10-07 22:29:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							753e3cfbaf 
							
						 
					 
					
						
						
							
							revert  68c6794d (v1.6.2) and fix it better:  
						
						... 
						
						
						
						moving deduplicated files between volumes could drop some links 
						
					 
					
						2023-10-07 22:25:44 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fcc3336760 
							
						 
					 
					
						
						
							
							v1.9.8  
						
						
						
					 
					
						2023-10-06 17:50:35 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0dc3c23b42 
							
						 
					 
					
						
						
							
							add alternative filekey generator;  closes   #52  
						
						
						
					 
					
						2023-10-06 13:41:22 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fae5a36e6f 
							
						 
					 
					
						
						
							
							v1.9.7  
						
						
						
					 
					
						2023-09-30 23:32:51 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fc9b729fc2 
							
						 
					 
					
						
						
							
							fix   #51 :  
						
						... 
						
						
						
						* handle unexpected localstorage values
* handle unsupported --lang values 
						
					 
					
						2023-09-30 22:54:21 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8620ae5bb7 
							
						 
					 
					
						
						
							
							fix column-hiding ux on phones:  
						
						... 
						
						
						
						table header click-handler didn't cover the entire cell so it was
easy to sort the table by accident; also do not exit hiding mode
automatically since you usually want to hide several columns
(so also adjust css to make it obvious you're in hiding mode) 
						
					 
					
						2023-09-28 09:28:26 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cae5ccea62 
							
						 
					 
					
						
						
							
							v1.9.6  
						
						
						
					 
					
						2023-09-23 12:15:24 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							3768cb4723 
							
						 
					 
					
						
						
							
							add chat  
						
						
						
					 
					
						2023-09-23 11:34:32 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0815dce4c1 
							
						 
					 
					
						
						
							
							ensure indexing runs with --ign-ebind-all  
						
						
						
					 
					
						2023-09-22 23:20:57 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a62f744a18 
							
						 
					 
					
						
						
							
							prevent losing an out-of-volume index  
						
						... 
						
						
						
						if the server is started while an external drive is not mounted,
it would drop the database because all the files are missing 
						
					 
					
						2023-09-22 23:05:07 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							163e3fce46 
							
						 
					 
					
						
						
							
							improve reverse-proxy support when containerized:  
						
						... 
						
						
						
						the x-forwarded-for header would get rejected since the reverse-proxy
is not asking from 127.0.0.1 or ::1, so make this allowlist configurable 
						
					 
					
						2023-09-22 22:39:20 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e76a50cb9d 
							
						 
					 
					
						
						
							
							add indexer benchmark + bump default num cores from 4 to 5  
						
						... 
						
						
						
						and make the mtag deps build better on fedora 
						
					 
					
						2023-09-22 20:40:52 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							72fc76ef48 
							
						 
					 
					
						
						
							
							golf / normalize window.location  
						
						
						
					 
					
						2023-09-20 22:07:40 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c47047c30d 
							
						 
					 
					
						
						
							
							configurable real-ip header from reverse proxy  
						
						
						
					 
					
						2023-09-20 21:56:39 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							3b8f66c0d5 
							
						 
					 
					
						
						
							
							fix a client crash when uploading from glitchy net  
						
						... 
						
						
						
						prevent reattempting chunks / handshakes after an upload has completed
since that is both pointless and crashy
bugreport ocr'ed from deepfried pic (thx kipu):
stack: exec_handshake -> xhr.onload -> tasked -> exec_upload -> do_send
529226 crash: t.fobj is null; firefox 117, win64
529083 zombie handshake onerror, some.flac
529081 chunkpit onerror,, 1, another.flac
528933 retrying stuck handshake
498842 ^
464213 zombie handshake onload, some.flac
464208 ^
462858 ignoring dupe-segment error, some.flac
462766 ^
462751 ^
462667 ^
462403 ^
462316 ^
461321 zombie handshake onload, some.flac
461302 ^
461152 ^
461114 ^
461110 ^
460769 ^
459954 ^
459492 ignoring dupe-segment error, some.flac 
						
					 
					
						2023-09-20 21:25:59 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							aa96a1acdc 
							
						 
					 
					
						
						
							
							misc optimizations / cleanup:  
						
						... 
						
						
						
						* slightly faster startup / shutdown
* forgot a jinja2 golf
* waste 4KiB changing prismjs back to gz since brotli is https-gated ;_;
* broke support for firefox<52 (non-var functions must be toplevel
   or immediately within another function), now even firefox 10 /
   centos 6 is somewhat supported again 
						
					 
					
						2023-09-17 13:02:18 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							91cafc2511 
							
						 
					 
					
						
						
							
							faster startup on windows by asking for ffmpeg.exe explicitly  
						
						... 
						
						
						
						rather than just "ffmpeg" which makes windows try to open each of
ffmpeg.BAT,CMD,COM,EXE,JS,JSE,MSC,VBE,VBS,WSF,WSH one by one
(ffmpeg.js? hello??) 
						
					 
					
						2023-09-13 23:32:19 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							23ca00bba8 
							
						 
					 
					
						
						
							
							support jython and graalpy  
						
						
						
					 
					
						2023-09-13 23:24:56 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a996a09bba 
							
						 
					 
					
						
						
							
							v1.9.5  
						
						
						
					 
					
						2023-09-09 13:36:56 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							18c763ac08 
							
						 
					 
					
						
						
							
							smb: upgrade to impacket 0.11, full user account support,  
						
						... 
						
						
						
						permissions are now per-account instead of coalescing
also stops windows from freaking out if there's an offline volume 
						
					 
					
						2023-09-09 12:46:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							3d9fb753ba 
							
						 
					 
					
						
						
							
							stuff  
						
						
						
					 
					
						2023-09-08 21:42:05 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							714fd1811a 
							
						 
					 
					
						
						
							
							add option to generate pax-format tar archives  
						
						... 
						
						
						
						and forgot to commit the nix module 
						
					 
					
						2023-09-08 21:13:23 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4364581705 
							
						 
					 
					
						
						
							
							fix accidental 422-ban when uploading lots of dupes  
						
						
						
					 
					
						2023-09-08 19:49:29 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ba02c9cc12 
							
						 
					 
					
						
						
							
							readme fix + make hacker theme more hacker  
						
						
						
					 
					
						2023-09-08 19:35:12 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							11eefaf968 
							
						 
					 
					
						
						
							
							create / edit non-markdown textfiles (if user has delete-access)  
						
						... 
						
						
						
						also enables the ansi escape code parser if the text looks like ansi 
						
					 
					
						2023-09-08 18:47:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5a968f9e47 
							
						 
					 
					
						
						
							
							add permission 'h': folders redirect to index.html;  
						
						... 
						
						
						
						safest way to make copyparty like a general-purpose webserver where
index.html is returned as expected yet directory listing is entirely
disabled / unavailable 
						
					 
					
						2023-09-07 23:30:01 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6420c4bd03 
							
						 
					 
					
						
						
							
							up to 2.6x faster download-as-zip  
						
						... 
						
						
						
						when there's lots of files, and especially small ones
and also reduces cpu load by at least 15% 
						
					 
					
						2023-09-05 22:57:03 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0f9877201b 
							
						 
					 
					
						
						
							
							support cache directives in --css-browser, --js-browser;  
						
						... 
						
						
						
						for example --css-browser=/the.css?cache=600 (seconds)
or --js-browser=/.res/the.js?cache=i (7 days) 
						
					 
					
						2023-09-03 19:50:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9ba2dec9b2 
							
						 
					 
					
						
						
							
							lightbox: fix ccw rotation hotkey  
						
						
						
					 
					
						2023-09-03 19:23:29 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cadaeeeace 
							
						 
					 
					
						
						
							
							v1.9.4  
						
						
						
					 
					
						2023-09-02 00:18:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							767696185b 
							
						 
					 
					
						
						
							
							add ?tar=gz, ?tar=bz2, ?tar=xz with optional level;  
						
						... 
						
						
						
						defaults are ?tar=gz:3, ?tar=bz2:9, ?tar=xz:1 
						
					 
					
						2023-09-01 23:44:10 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c1efd227b7 
							
						 
					 
					
						
						
							
							fix inconsistent use of symlink mtimes in database;  
						
						... 
						
						
						
						on upload, dupes are by default handled by symlinking to the existing
copy on disk, writing the uploader's local mtime into the symlink mtime,
which is also what gets indexed in the db
this worked as intended, however during an -e2dsa rescan on startup the
symlink destination timestamps would be used instead, causing a reindex
and the resulting loss of uploader metadata (ip, timestamp)
will now always use the symlink's mtime;
worst-case 1% slower startup (no dhash)
this change will cause a reindex of incorrectly indexed files, however
as this has already happened at least once due to the bug being fixed,
there will be no additional loss of metadata 
						
					 
					
						2023-09-01 20:29:55 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a50d0563c3 
							
						 
					 
					
						
						
							
							instantly perform search when URL contains a raw query  
						
						
						
					 
					
						2023-09-01 20:16:19 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							700111ffeb 
							
						 
					 
					
						
						
							
							v1.9.3  
						
						
						
					 
					
						2023-08-31 22:11:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b8adeb824a 
							
						 
					 
					
						
						
							
							misc http correctness;  
						
						... 
						
						
						
						some of this looks shady af but appears to have been harmless
(decent amount of testing came out ok)
* some location normalization happened before unquoting; however vfs
   handled this correctly so the outcome was just confusing messages
* some url parameters were double-decoded (unpost filter, move
   destinations), causing some operations to fail unexpectedly
* invalid cache-control headers could be generated,
   but not in a maliciously-beneficial way
   (there are safeguards stripping newlines and control-characters)
also adds an exception-message cleanup step to strip away the
filesystem path that copyparty's python files are located at,
in case that could be interesting knowledge 
						
					 
					
						2023-08-31 21:51:58 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							30cc9defcb 
							
						 
					 
					
						
						
							
							cosmetics:  
						
						... 
						
						
						
						* in case someone gets a confusing access-related error message,
  include more context in serverlogs (exact path)
* fix js console spam in search results
* same markdown line-height in viewer and browser 
						
					 
					
						2023-08-31 21:27:14 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							61875bd773 
							
						 
					 
					
						
						
							
							slightly reduce flickering during page load on chrome  
						
						
						
					 
					
						2023-08-31 20:02:33 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							30905c6f5d 
							
						 
					 
					
						
						
							
							add convenient debugs in case the fight is not over  
						
						
						
					 
					
						2023-08-31 20:00:14 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9986136dfb 
							
						 
					 
					
						
						
							
							apple/ios/iphone: maybe fix background album playback  
						
						... 
						
						
						
						good news: apple finally added support for samplerates other than
44100 for AudioContext, meaning it would now have been possible to
set non-100% volume for audio files including opus files
bad news: apple broke AudioContext in a way that makes it bug out
mediaSessions, causing lockscreen controls to become mostly useless
bad news: apple broke AudioContext additionally where it randomly
causes playback issues, blocking playback of audio files, even if
the AudioContext is sitting idle doing nothing (which is a
requirement for reliable upload speeds on other platforms)
disable AudioContext on iOS 
						
					 
					
						2023-08-31 19:57:05 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1c0d978979 
							
						 
					 
					
						
						
							
							ios/iphone: autoreplace smart-quotes with sane quotes,  
						
						... 
						
						
						
						as the iphone keyboard is not able to produce ' or " 
						
					 
					
						2023-08-31 19:29:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0a0364e9f8 
							
						 
					 
					
						
						
							
							FTPd: fix py3.12 support; workaround until next release:  
						
						... 
						
						
						
						run sfx twice with PYTHONPATH=/tmp/pe-copyparty.$(id -u)/copyparty/vend 
						
					 
					
						2023-08-28 00:25:33 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ac21fa7782 
							
						 
					 
					
						
						
							
							v1.9.2  
						
						
						
					 
					
						2023-08-26 21:16:30 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c1c8dc5e82 
							
						 
					 
					
						
						
							
							ok lets try that again  
						
						
						
					 
					
						2023-08-26 19:07:23 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5a38311481 
							
						 
					 
					
						
						
							
							mark offline volumes in directory tree sidebar  
						
						
						
					 
					
						2023-08-26 19:00:46 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9f8edb7f32 
							
						 
					 
					
						
						
							
							make markdown slightly safer without the nohtml volflag  
						
						... 
						
						
						
						by running dompurify after marked.parse if plugins are not enabled;
adds no protection against the more practical approach of just
putting a malicious <script> in an html file and uploading that,
but one footgun less is one less footgun 
						
					 
					
						2023-08-26 17:37:02 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c5a6ac8417 
							
						 
					 
					
						
						
							
							persist dotfile preference as cookie for initial listing  
						
						
						
					 
					
						2023-08-26 15:50:57 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							50e01d6904 
							
						 
					 
					
						
						
							
							add more autoban triggers:  
						
						... 
						
						
						
						* --ban-url: URLs which 404 and also match --sus-urls (bot-scan)
* --ban-403: trying to access volumes that dont exist or require auth
* --ban-422: invalid POST messages, fuzzing and such
* --nonsus-urls: regex of 404s which  shouldn't trigger --ban-404
in may situations it makes sense to handle this logic inside copyparty,
since stuff like cloudflare and running copyparty on another physical
box than the nginx frontend is on becomes fairly clunky 
						
					 
					
						2023-08-26 13:52:24 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9b46291a20 
							
						 
					 
					
						
						
							
							add option to force-disable turbo,  
						
						... 
						
						
						
						making it safer to enable --ban-404
(u2c can still get banned inadvertently) 
						
					 
					
						2023-08-26 13:19:38 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f7ceae5a5f 
							
						 
					 
					
						
						
							
							add filetable range-select with shift-pgup/pgdn,  
						
						... 
						
						
						
						and retain file selection cursor when lazyloading more files 
						
					 
					
						2023-08-25 19:34:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c9492d16ba 
							
						 
					 
					
						
						
							
							fix textfile navigation hotkeys (broke in  5d13ebb4)  
						
						
						
					 
					
						2023-08-25 18:41:45 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9fb9ada3aa 
							
						 
					 
					
						
						
							
							dont whine about inaccessible root on rootless configs,  
						
						... 
						
						
						
						and make it easier for on403 to invoke the homepage-redirect 
						
					 
					
						2023-08-25 18:33:15 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							db0abbfdda 
							
						 
					 
					
						
						
							
							typo  
						
						
						
					 
					
						2023-08-21 00:05:39 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4444f0f6ff 
							
						 
					 
					
						
						
							
							v1.9.1  
						
						
						
					 
					
						2023-08-20 23:38:42 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cafe53c055 
							
						 
					 
					
						
						
							
							v1.9.0  
						
						
						
					 
					
						2023-08-20 22:02:40 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7673beef72 
							
						 
					 
					
						
						
							
							actually impl --mc-hop (and improve --zm-spam)  
						
						
						
					 
					
						2023-08-20 21:27:28 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b28bfe64c0 
							
						 
					 
					
						
						
							
							explain apple bullshit  
						
						
						
					 
					
						2023-08-20 22:09:00 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							135ece3fbd 
							
						 
					 
					
						
						
							
							immediately allow uploading an interrupted and  
						
						... 
						
						
						
						deleted incomplete upload to another location 
						
					 
					
						2023-08-20 19:16:35 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							bd3640d256 
							
						 
					 
					
						
						
							
							change to openmetrics  
						
						
						
					 
					
						2023-08-20 18:50:14 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fc0405c8f3 
							
						 
					 
					
						
						
							
							add prometheus metrics;  closes   #49  
						
						
						
					 
					
						2023-08-20 17:58:06 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8341041857 
							
						 
					 
					
						
						
							
							mdns: option to ignore spec to avoid issues on  
						
						... 
						
						
						
						networks where clients have multiple IPs of which some are subnets that
the copyparty server is not 
						
					 
					
						2023-08-19 21:45:26 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1b7634932d 
							
						 
					 
					
						
						
							
							tar/zip-download: add opus transcoding filter  
						
						
						
					 
					
						2023-08-19 19:40:46 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							48a3898aa6 
							
						 
					 
					
						
						
							
							suggest enabling the database on startup  
						
						
						
					 
					
						2023-08-16 19:57:19 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5d13ebb4ac 
							
						 
					 
					
						
						
							
							avoid firefox-android quirk(?):  
						
						... 
						
						
						
						when repeatedly tapping the next-folder button, occasionally it will
reload the entire page instead of ajax'ing the directory contents.
Navigation happens by simulating a click in the directory sidebar,
so the incorrect behavior matches what would happen if the link to the
folder didn't have its onclick-handler attached, so should probably
double-check if there's some way for that to happen
Issue observed fairly easily in firefox on android, regardless if
copyparty is running locally or on a server in a different country.
Unable to reproduce with android-chrome or desktop-firefox
Could also be due to an addon (dark-reader, noscript, ublock-origin)
anyways, avoiding this by doing the navigation more explicitly 
						
					 
					
						2023-08-16 19:56:47 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							015b87ee99 
							
						 
					 
					
						
						
							
							performance / cosmetic:  
						
						... 
						
						
						
						* js: use .call instead of .bind when possible
* when running without e2d, the message on startup regarding
  unfinished uploads didn't show the correct filesystem path 
						
					 
					
						2023-08-16 19:32:43 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0a48acf6be 
							
						 
					 
					
						
						
							
							limit each column of the files table to screen width  
						
						
						
					 
					
						2023-08-16 03:55:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2b6a3afd38 
							
						 
					 
					
						
						
							
							fix iOS randomly increasing fontsize of some things:  
						
						... 
						
						
						
						* links which are wider than the display width
* probably input fields too 
						
					 
					
						2023-08-16 03:47:19 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							18aa82fb2f 
							
						 
					 
					
						
						
							
							make browser resizing smoother / less expensive  
						
						
						
					 
					
						2023-08-15 16:55:19 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f5407b2997 
							
						 
					 
					
						
						
							
							docker: persist autogenerated seeds, disable certgen, and  
						
						... 
						
						
						
						mention how to run the containers with selinux enabled
* assumes that a /cfg docker volume is provided 
						
					 
					
						2023-08-15 15:07:33 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							474d5a155b 
							
						 
					 
					
						
						
							
							android's got hella strict filename rules  
						
						
						
					 
					
						2023-08-15 06:46:57 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4f80e44ff7 
							
						 
					 
					
						
						
							
							option to exactly specify browser title prefix  
						
						
						
					 
					
						2023-08-15 03:17:01 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							406e413594 
							
						 
					 
					
						
						
							
							hint at additional context in exceptions  
						
						
						
					 
					
						2023-08-15 01:42:13 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							bee26e853b 
							
						 
					 
					
						
						
							
							show server hostname in html titles:  
						
						... 
						
						
						
						* --doctitle defines most titles, prefixed with "--name: " by default
* the file browser is only prefixed with the --name itself
* --nth ("no-title-hostname") removes it
* also removed by --nih ("no-info-hostname") 
						
					 
					
						2023-08-14 23:50:13 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							04a1f7040e 
							
						 
					 
					
						
						
							
							adjustable timestamp resolution in log messages  
						
						
						
					 
					
						2023-08-14 17:22:22 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f9d5bb3b29 
							
						 
					 
					
						
						
							
							support upload by dragdrop from other browser windows,  
						
						... 
						
						
						
						hello from LO484 https://ocv.me/stuff/aircode.jpg  
						
					 
					
						2023-07-28 21:43:40 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							999ee2e7bc 
							
						 
					 
					
						
						
							
							v1.8.8  
						
						
						
					 
					
						2023-07-25 15:50:48 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1ff7f968e8 
							
						 
					 
					
						
						
							
							fix tls-cert regeneration on windows  
						
						
						
					 
					
						2023-07-25 15:27:27 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							3966266207 
							
						 
					 
					
						
						
							
							remember ?edit and trailing-slash during login redirect  
						
						
						
					 
					
						2023-07-25 15:14:47 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d03e96a392 
							
						 
					 
					
						
						
							
							html5 strips the first leading LF in textareas; stop it  
						
						
						
					 
					
						2023-07-25 14:16:54 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4c843c6df9 
							
						 
					 
					
						
						
							
							fix md-editor lastmod cmp when browsercache is belligerent  
						
						
						
					 
					
						2023-07-25 14:06:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0896c5295c 
							
						 
					 
					
						
						
							
							range-select fixes:  
						
						... 
						
						
						
						* dont crash when shiftclicking between folders
* remember origin when lazyloading more files 
						
					 
					
						2023-07-25 14:06:31 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d0aa20e17c 
							
						 
					 
					
						
						
							
							v1.8.7  
						
						
						
					 
					
						2023-07-23 15:43:38 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1a658dedb7 
							
						 
					 
					
						
						
							
							fix infinite playback spin on servers with one single file  
						
						
						
					 
					
						2023-07-23 14:52:42 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8d376b854c 
							
						 
					 
					
						
						
							
							this is the wrong way around  
						
						
						
					 
					
						2023-07-23 14:10:23 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							490c16b01d 
							
						 
					 
					
						
						
							
							be even stricter with ?hc  
						
						
						
					 
					
						2023-07-23 13:23:52 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2437a4e864 
							
						 
					 
					
						
						
							
							the CVE-2023-37474 fix was overly strict; loosen  
						
						
						
					 
					
						2023-07-23 11:31:11 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							007d948cb9 
							
						 
					 
					
						
						
							
							fix GHSA-f54q-j679-p9hh: reflected-XSS in cookie-setters;  
						
						... 
						
						
						
						it was possible to set cookie values which contained newlines,
thus terminating the http header and bleeding into the body.
We now disallow control-characters in queries,
but still allow them in paths, as copyparty supports
filenames containing newlines and other mojibake.
The changes in `set_k304` are not necessary in fixing the vulnerability,
but makes the behavior more correct. 
						
					 
					
						2023-07-23 10:55:08 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9eaa9904e0 
							
						 
					 
					
						
						
							
							v1.8.6  
						
						
						
					 
					
						2023-07-21 00:36:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0778da6c4d 
							
						 
					 
					
						
						
							
							fix GHSA-cw7j-v52w-fp5r: reflected-XSS through /?hc  
						
						
						
					 
					
						2023-07-21 00:35:43 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1441ccee4f 
							
						 
					 
					
						
						
							
							v1.8.4  
						
						
						
					 
					
						2023-07-18 07:46:22 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							3dcc386b6f 
							
						 
					 
					
						
						
							
							v1.8.3  
						
						
						
					 
					
						2023-07-16 22:00:04 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5aa54d1217 
							
						 
					 
					
						
						
							
							shift/ctrl-click improvements:  
						
						... 
						
						
						
						* always enable shift-click selection in list-view
* shift-clicking thumbnails opens in new window by default as expected
* enable shift-select in grid-view when multiselect is on
* invert select when the same shift-select is made repeatedly 
						
					 
					
						2023-07-16 18:15:56 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							88b876027c 
							
						 
					 
					
						
						
							
							option to range-select files with shift-click;  closes   #47  
						
						... 
						
						
						
						also restores the browser-default behavior of
opening links in a new tab with CTRL / new window with SHIFT 
						
					 
					
						2023-07-16 14:05:09 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f2f5e266b4 
							
						 
					 
					
						
						
							
							support listing uploader IPs in d2t volumes  
						
						
						
					 
					
						2023-07-15 18:50:35 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e17bf8f325 
							
						 
					 
					
						
						
							
							require the new admin permission for the admin-panel  
						
						
						
					 
					
						2023-07-15 18:39:41 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							85a637af09 
							
						 
					 
					
						
						
							
							v1.8.2  
						
						
						
					 
					
						2023-07-14 15:58:39 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							043e3c7dd6 
							
						 
					 
					
						
						
							
							fix traversal vulnerability GHSA-pxfv-7rr3-2qjg:  
						
						... 
						
						
						
						the /.cpr endpoint allowed full access to server filesystem,
unless mitigated by prisonparty 
						
					 
					
						2023-07-14 15:55:49 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8f59afb159 
							
						 
					 
					
						
						
							
							fix another race (unpost):  
						
						... 
						
						
						
						unposting could collide with most other database-related activities,
causing one or the other to fail.
luckily the unprotected query performed by the unpost API happens to be
very cheap, so also the most likely to fail, and would succeed upon a
manual reattempt from the UI.
even in the worst case scenario, there would be no unrecoverable damage
as the next rescan would auto-repair any resulting inconsistencies. 
						
					 
					
						2023-07-14 15:21:14 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							77f1e51444 
							
						 
					 
					
						
						
							
							fix unlikely race (e2tsr):  
						
						... 
						
						
						
						if someone with admin rights refreshes the homepage exactly as the
directory indexer decides to `_drop_caches`, the indexer thread would
die and the up2k instance would become inoperable...
luckily the probability of hitting this by chance is absolutely minimal,
and the worst case scenario is having to restart copyparty if this
happens immediately after startup; there is no risk of database damage 
						
					 
					
						2023-07-14 15:20:25 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							22fc4bb938 
							
						 
					 
					
						
						
							
							add event-hook for banning users  
						
						
						
					 
					
						2023-07-13 22:29:32 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							50c7bba6ea 
							
						 
					 
					
						
						
							
							volflag "nohtml" to never return html or rendered markdown from potentially unsafe volumes  
						
						
						
					 
					
						2023-07-13 21:57:52 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							551d99b71b 
							
						 
					 
					
						
						
							
							add permission "a" to show uploader IPs ( #45 )  
						
						
						
					 
					
						2023-07-12 21:36:55 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b54b7213a7 
							
						 
					 
					
						
						
							
							more thumbnailer configs available as volflags:  
						
						... 
						
						
						
						--th-convt = convt
--th-no-crop = nocrop
--th-size = thsize 
						
					 
					
						2023-07-11 22:15:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a10cad54fc 
							
						 
					 
					
						
						
							
							v1.8.1  
						
						
						
					 
					
						2023-07-07 22:20:01 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8568b7702a 
							
						 
					 
					
						
						
							
							add pillow10 support + improve text rendering  
						
						
						
					 
					
						2023-07-07 22:13:04 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5d8cb34885 
							
						 
					 
					
						
						
							
							404/403 can be handled with plugins  
						
						
						
					 
					
						2023-07-07 21:33:40 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8d248333e8 
							
						 
					 
					
						
						
							
							dont disable quickedit when hashing passwords interactively  
						
						
						
					 
					
						2023-07-07 18:29:30 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							99e2ef7f33 
							
						 
					 
					
						
						
							
							ux: fix tabs clipping in fedora-ff, hackertheme up2k flags  
						
						
						
					 
					
						2023-07-07 18:24:58 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a0c1239246 
							
						 
					 
					
						
						
							
							v1.8.0  
						
						
						
					 
					
						2023-06-26 00:05:12 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b8e851c332 
							
						 
					 
					
						
						
							
							cloudflare update + cosmetics:  
						
						... 
						
						
						
						* toastb padding fixes scrollbar on norwegian 403 in firefox
* fix text aspect ratio in seekbaron compact toggle
* crashpage had link overlaps on homepage 
						
					 
					
						2023-06-25 23:09:29 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							baaf2eb24d 
							
						 
					 
					
						
						
							
							include mdns names in tls cert  
						
						
						
					 
					
						2023-06-25 22:06:35 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e197895c10 
							
						 
					 
					
						
						
							
							support hashed passwords;  closes   #39  
						
						
						
					 
					
						2023-06-25 21:50:33 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cb75efa05d 
							
						 
					 
					
						
						
							
							md-editor: index file and trigger upload hooks  
						
						
						
					 
					
						2023-06-20 18:11:35 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8b0cf2c982 
							
						 
					 
					
						
						
							
							volflags to limit volume size / num files;  closes   #40  
						
						
						
					 
					
						2023-06-19 00:42:45 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							10caafa34c 
							
						 
					 
					
						
						
							
							v1.7.6  
						
						
						
					 
					
						2023-06-11 08:14:45 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							22cc22225a 
							
						 
					 
					
						
						
							
							v1.7.5  
						
						
						
					 
					
						2023-06-11 01:32:56 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a00ff2b086 
							
						 
					 
					
						
						
							
							v1.7.4  
						
						
						
					 
					
						2023-06-11 00:07:38 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e4acddc23b 
							
						 
					 
					
						
						
							
							v1.7.3  
						
						
						
					 
					
						2023-06-11 00:03:03 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2b2d8e4e02 
							
						 
					 
					
						
						
							
							tls / gencert fixes  
						
						
						
					 
					
						2023-06-10 23:34:34 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5501d49032 
							
						 
					 
					
						
						
							
							prefer urandom for fk-salt unless cert.pem exists  
						
						
						
					 
					
						2023-06-10 22:47:39 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fa54b2eec4 
							
						 
					 
					
						
						
							
							generate tls certs  
						
						
						
					 
					
						2023-06-10 22:46:24 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							93a723d588 
							
						 
					 
					
						
						
							
							add --ansi to systemd, fix grid controls bg,  
						
						... 
						
						
						
						mention folder thumbs dependency on -e2d,
improve make-sfx warnings,
update changelog 
						
					 
					
						2023-06-06 22:04:39 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8ebe1fb5e8 
							
						 
					 
					
						
						
							
							mention cfssl.sh in the default-certificate warning,  
						
						... 
						
						
						
						and improve documentation inside cfssl.sh 
						
					 
					
						2023-06-06 21:41:19 +00:00 
						 
				 
			
				
					
						
							
							
								clach04 
							
						 
					 
					
						
						
						
						
							
						
						
							2acdf685b1 
							
						 
					 
					
						
						
							
							Fix issue  #33  - no color output expected when redirecting stdout  
						
						
						
					 
					
						2023-06-05 01:58:49 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							03be26fafc 
							
						 
					 
					
						
						
							
							improve check for type-hint support  
						
						
						
					 
					
						2023-06-04 22:59:25 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c355f9bd91 
							
						 
					 
					
						
						
							
							catch common environment issues ( #32 ):  
						
						... 
						
						
						
						* error-message which explains how to run on py2 / older py3
   when trying to run from source
* check compatibility between jinja2 and cpython on startup
* verify that webdeps are present on startup
* verify that webdeps are present when building sfx
* make-sfx.sh grabs the strip-hints dependency 
						
					 
					
						2023-06-04 13:13:36 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9c28ba417e 
							
						 
					 
					
						
						
							
							option to regex-exclude files in browser listings  
						
						
						
					 
					
						2023-06-02 21:54:25 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							705b58c741 
							
						 
					 
					
						
						
							
							support the NO_COLOR environment variable  
						
						... 
						
						
						
						https://no-color.org/  and more importantly
https://youtu.be/biW5UVGkPMA?t=150  
					
						2023-06-02 20:22:57 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							510302d667 
							
						 
					 
					
						
						
							
							support ftps-only;  closes   #30  
						
						
						
					 
					
						2023-06-02 19:02:50 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							025a537413 
							
						 
					 
					
						
						
							
							add option to show thumbs by default;  closes   #31  
						
						
						
					 
					
						2023-06-02 18:41:21 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							60a1ff0fc0 
							
						 
					 
					
						
						
							
							macos: mute select() noise on wake from suspend  
						
						
						
					 
					
						2023-05-19 16:37:52 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4ccfeeb2cd 
							
						 
					 
					
						
						
							
							v1.7.2  
						
						
						
					 
					
						2023-05-13 00:00:07 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2cca6e0922 
							
						 
					 
					
						
						
							
							warn when sharing certain system locations  
						
						
						
					 
					
						2023-05-12 21:38:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							db51f1b063 
							
						 
					 
					
						
						
							
							cfg: allow trailing colon on category headers  
						
						
						
					 
					
						2023-05-12 21:01:34 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d979c47f50 
							
						 
					 
					
						
						
							
							optimize clearTimeout + always shrink upload panes after completion + fix GET alignment  
						
						
						
					 
					
						2023-05-12 20:46:45 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e64b87b99b 
							
						 
					 
					
						
						
							
							dont hardlink symlinks (they could be relative)  
						
						
						
					 
					
						2023-05-12 20:41:09 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							deca082623 
							
						 
					 
					
						
						
							
							v1.7.1  
						
						
						
					 
					
						2023-05-07 18:34:39 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0ea8bb7c83 
							
						 
					 
					
						
						
							
							forgot the u2c symlink + sfx listing  
						
						
						
					 
					
						2023-05-07 15:45:20 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							572aa4b26c 
							
						 
					 
					
						
						
							
							rename up2k.py (client) to u2c.py  
						
						
						
					 
					
						2023-05-07 15:35:56 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b1359f039f 
							
						 
					 
					
						
						
							
							linter cleanup  
						
						
						
					 
					
						2023-05-07 14:38:30 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							867d8ee49e 
							
						 
					 
					
						
						
							
							replace setup.py with pyproject.toml + misc cleanup  
						
						
						
					 
					
						2023-05-07 14:37:57 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							04c86e8a89 
							
						 
					 
					
						
						
							
							webdav: support write-only folders + force auth option  
						
						
						
					 
					
						2023-05-06 20:33:29 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							bc0cb43ef9 
							
						 
					 
					
						
						
							
							include usernames in request logs  
						
						
						
					 
					
						2023-05-06 20:17:56 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							769454fdce 
							
						 
					 
					
						
						
							
							ftpd: only log invalid passwords  
						
						
						
					 
					
						2023-05-06 19:16:52 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4ee81af8f6 
							
						 
					 
					
						
						
							
							support ';' in passwords  
						
						
						
					 
					
						2023-05-06 18:54:55 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8b0e66122f 
							
						 
					 
					
						
						
							
							smoother playback cursor on short songs + optimize  
						
						
						
					 
					
						2023-05-06 16:31:04 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b6fd555038 
							
						 
					 
					
						
						
							
							panic if two accounts have the same password  
						
						
						
					 
					
						2023-05-05 20:24:24 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1e22222c60 
							
						 
					 
					
						
						
							
							v1.7.0  
						
						
						
					 
					
						2023-04-29 21:14:38 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							544e0549bc 
							
						 
					 
					
						
						
							
							make xvol and xdev apply at runtime ( closes   #24 ):  
						
						... 
						
						
						
						* when accessing files inside an xdev volume, verify that the file
   exists on the same device/filesystem as the volume root
* when accessing files inside an xvol volume, verify that the file
   exists within any volume where the user has read access 
						
					 
					
						2023-04-29 21:10:02 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							83178d0836 
							
						 
					 
					
						
						
							
							preserve empty folders ( closes   #23 ):  
						
						... 
						
						
						
						* when deleting files, do not cascade upwards through empty folders
* when moving folders, also move any empty folders inside
the only remaining action which autoremoves empty folders is
files getting deleted as they expire volume lifetimes
also prevents accidentally moving parent folders into subfolders
(even though that actually worked surprisingly well) 
						
					 
					
						2023-04-29 11:30:43 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							138f5bc989 
							
						 
					 
					
						
						
							
							warn about android powersave settings on music interruption + fix eq on folder change  
						
						
						
					 
					
						2023-04-29 09:31:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e4759f86ef 
							
						 
					 
					
						
						
							
							ftpd correctness:  
						
						... 
						
						
						
						* winscp mkdir failed because the folder-not-found error got repeated
* rmdir fails after all files in the folder have poofed; that's OK
* add --ftp4 as a precaution 
						
					 
					
						2023-04-28 20:50:45 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d71416437a 
							
						 
					 
					
						
						
							
							show file selection summary  
						
						
						
					 
					
						2023-04-27 19:33:52 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d3ccd3f174 
							
						 
					 
					
						
						
							
							v1.6.15  
						
						
						
					 
					
						2023-04-26 23:00:55 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cb6de0387d 
							
						 
					 
					
						
						
							
							a bit faster  
						
						
						
					 
					
						2023-04-26 19:56:27 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							abff40519d 
							
						 
					 
					
						
						
							
							eyecandy: restore playback indicator on folder hop  
						
						
						
					 
					
						2023-04-26 19:09:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							55c74ad164 
							
						 
					 
					
						
						
							
							30% faster folder listings (wtf...)  
						
						
						
					 
					
						2023-04-26 18:55:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							673b4f7e23 
							
						 
					 
					
						
						
							
							option to show symlink's lastmod instead of deref;  
						
						... 
						
						
						
						mainly motivated by u2cli's folder syncing in turbo mode
which would un-turbo on most dupes due to wrong lastmod
disabled by default for regular http listings
(to avoid confusion in most regular usecases),
enable per-request with urlparam lt
enabled by default for single-level webdav listings
(because rclone hits the same issue as u2cli),
can be disabled with arg --dav-rt or volflag davrt
impossible to enable for recursive webdav listings 
						
					 
					
						2023-04-26 18:54:21 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							33442026b8 
							
						 
					 
					
						
						
							
							try to discourage android from stopping playback...  
						
						... 
						
						
						
						...when continuing into the next folder
accidentally introduces a neat bonus feature where the music
no longer stops while you go looking for stuff to play next 
						
					 
					
						2023-04-26 18:33:30 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							03193de6d0 
							
						 
					 
					
						
						
							
							socket read/write timeout  
						
						
						
					 
					
						2023-04-24 20:04:22 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d88889d3fc 
							
						 
					 
					
						
						
							
							v1.6.14  
						
						
						
					 
					
						2023-04-24 06:09:44 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cacca663b3 
							
						 
					 
					
						
						
							
							v1.6.13  
						
						
						
					 
					
						2023-04-23 23:05:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d5109be559 
							
						 
					 
					
						
						
							
							ftp: track login state isolated from pyftpdlib;  
						
						... 
						
						
						
						for convenience, the password can be provided as the username
but that confuses pyftpd a little so let's do this 
						
					 
					
						2023-04-23 21:06:19 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d999f06bb9 
							
						 
					 
					
						
						
							
							volflags can be -unset  
						
						
						
					 
					
						2023-04-23 21:05:29 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a1a8a8c7b5 
							
						 
					 
					
						
						
							
							configurable tls-certificate location  
						
						
						
					 
					
						2023-04-23 20:56:55 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fdd6f3b4a6 
							
						 
					 
					
						
						
							
							tar/zip: use volume name as toplevel fallback  
						
						
						
					 
					
						2023-04-23 20:55:34 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							42099baeff 
							
						 
					 
					
						
						
							
							v1.6.12  
						
						
						
					 
					
						2023-04-20 21:41:47 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6acf436573 
							
						 
					 
					
						
						
							
							u2idx pool instead of per-socket;  
						
						... 
						
						
						
						prevents running out of FDs thanks to thousands of sqlite3 sessions
and neatly sidesteps what could possibly be a race in python's
sqlite3 bindings where it sometimes forgets to close the fd 
						
					 
					
						2023-04-20 20:36:13 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f217e1ce71 
							
						 
					 
					
						
						
							
							correctly ignore multirange requests  
						
						
						
					 
					
						2023-04-20 19:14:38 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8f5f8a3cda 
							
						 
					 
					
						
						
							
							expand userhomes everywhere:  
						
						... 
						
						
						
						* -c
* -lo
* --hist
* hist volflag
* --ssl-log 
						
					 
					
						2023-04-14 18:55:19 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c8938fc033 
							
						 
					 
					
						
						
							
							fix ipv4 location header on dualstack  
						
						
						
					 
					
						2023-04-14 14:06:44 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d6a0a738ce 
							
						 
					 
					
						
						
							
							add windows example + update docs + some cosmetics  
						
						
						
					 
					
						2023-04-12 22:06:44 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f5fe3678ee 
							
						 
					 
					
						
						
							
							more safari-on-touchbar-macbook workarounds:  
						
						... 
						
						
						
						* safari invokes pause on the mediasession
   whenever any Audio loads a new src (preload)
* ...and on some(?) seeks 
						
					 
					
						2023-04-07 23:04:01 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f2a7925387 
							
						 
					 
					
						
						
							
							avoid safari bugs on touchbar macbooks:  
						
						... 
						
						
						
						* songs would play backwards
* playback started immediately on folder change 
						
					 
					
						2023-04-07 12:38:37 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f0000d9861 
							
						 
					 
					
						
						
							
							v1.6.11  
						
						
						
					 
					
						2023-04-01 21:12:54 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4e67516719 
							
						 
					 
					
						
						
							
							last.fm web-scrobbler support  
						
						
						
					 
					
						2023-04-01 21:02:03 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							852499e296 
							
						 
					 
					
						
						
							
							dont panic in case of extension-injected css  
						
						
						
					 
					
						2023-04-01 16:08:45 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2a37e81bd8 
							
						 
					 
					
						
						
							
							add rclone optimization,  closes   #21  
						
						
						
					 
					
						2023-04-01 10:21:21 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							854ba0ec06 
							
						 
					 
					
						
						
							
							add audio filter plugin thing  
						
						
						
					 
					
						2023-03-31 20:20:28 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							209b49d771 
							
						 
					 
					
						
						
							
							remind sqlite we have indexes  
						
						
						
					 
					
						2023-03-30 21:45:58 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							949baae539 
							
						 
					 
					
						
						
							
							integrate markdown thumbs with image gallery  
						
						
						
					 
					
						2023-03-30 21:21:21 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							592b7d6315 
							
						 
					 
					
						
						
							
							gdi js  
						
						
						
					 
					
						2023-03-26 02:06:49 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0880bf55a1 
							
						 
					 
					
						
						
							
							markdown thumbnails  
						
						
						
					 
					
						2023-03-26 01:53:41 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e2bc573e61 
							
						 
					 
					
						
						
							
							webdav correctness:  
						
						... 
						
						
						
						* generally respond without body
   (rclone likes this)
* don't connection:close on most mkcol errors 
						
					 
					
						2023-03-23 23:25:00 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c01cad091e 
							
						 
					 
					
						
						
							
							v1.6.10  
						
						
						
					 
					
						2023-03-20 21:56:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							eb349f339c 
							
						 
					 
					
						
						
							
							update foldersync / rclone docs  
						
						
						
					 
					
						2023-03-20 21:54:08 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							24d8caaf3e 
							
						 
					 
					
						
						
							
							switch rclone to owncloud mode so it sends lastmod  
						
						
						
					 
					
						2023-03-20 21:45:52 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5ac2c20959 
							
						 
					 
					
						
						
							
							basic support for rclone sync  
						
						
						
					 
					
						2023-03-20 21:17:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							bb72e6bf30 
							
						 
					 
					
						
						
							
							support propfind of files (not just dirs)  
						
						
						
					 
					
						2023-03-20 20:58:51 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d8142e866a 
							
						 
					 
					
						
						
							
							accept last-modified from owncloud webdav extension  
						
						
						
					 
					
						2023-03-20 20:28:26 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							749616d09d 
							
						 
					 
					
						
						
							
							help iOS understand short audio files  
						
						
						
					 
					
						2023-03-19 20:03:35 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ca04a00662 
							
						 
					 
					
						
						
							
							v1.6.9  
						
						
						
					 
					
						2023-03-16 21:06:18 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8a09601be8 
							
						 
					 
					
						
						
							
							url-param ?v disables index.html  
						
						
						
					 
					
						2023-03-16 20:52:43 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1fe0d4693e 
							
						 
					 
					
						
						
							
							fix logues bleeding into navpane  
						
						
						
					 
					
						2023-03-16 20:23:01 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							bba8a3c6bc 
							
						 
					 
					
						
						
							
							fix truncated search results  
						
						
						
					 
					
						2023-03-16 20:12:13 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e3d7f0c7d5 
							
						 
					 
					
						
						
							
							add tooltip delay to android too  
						
						
						
					 
					
						2023-03-16 19:48:44 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							be7bb71bbc 
							
						 
					 
					
						
						
							
							add option to show index.html instead of listing  
						
						
						
					 
					
						2023-03-16 19:41:33 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e0c4829ec6 
							
						 
					 
					
						
						
							
							verify covers against db instead of fs  
						
						
						
					 
					
						2023-03-15 19:48:43 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b0cc396bca 
							
						 
					 
					
						
						
							
							v1.6.8  
						
						
						
					 
					
						2023-03-12 16:10:07 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2be2e9a0d8 
							
						 
					 
					
						
						
							
							index folder thumbs in db  
						
						
						
					 
					
						2023-03-11 11:43:29 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c269b0dd91 
							
						 
					 
					
						
						
							
							show an error (instead of crashing) if a pic is 404  
						
						
						
					 
					
						2023-03-09 22:37:12 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8c3211263a 
							
						 
					 
					
						
						
							
							keep scanning folders for more music to play  
						
						
						
					 
					
						2023-03-09 22:26:41 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c7c6e48b1a 
							
						 
					 
					
						
						
							
							didn't compress numbered logfiles  
						
						
						
					 
					
						2023-03-09 21:59:59 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							974ca773be 
							
						 
					 
					
						
						
							
							just to be extra sure  
						
						
						
					 
					
						2023-03-09 21:49:29 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9270c2df19 
							
						 
					 
					
						
						
							
							evict basic-browser from crawlers  
						
						
						
					 
					
						2023-03-09 21:35:07 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c39c93725f 
							
						 
					 
					
						
						
							
							v1.6.7  
						
						
						
					 
					
						2023-03-05 20:18:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d00f0b9fa7 
							
						 
					 
					
						
						
							
							ftp: support filezilla mkdir  
						
						
						
					 
					
						2023-03-05 20:18:02 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							01cfc70982 
							
						 
					 
					
						
						
							
							add example for webdav automount  
						
						
						
					 
					
						2023-03-05 19:52:45 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e6aec189bd 
							
						 
					 
					
						
						
							
							fix flickering toast on upload finish  
						
						
						
					 
					
						2023-03-05 19:49:54 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c98fff1647 
							
						 
					 
					
						
						
							
							fix chunkpost-handshake race (affects --no-dedup only);  
						
						... 
						
						
						
						a handshake arriving in the middle of the final chunk could cause
dupes to become empty -- worst case leading to loss of data 
						
					 
					
						2023-03-05 19:45:50 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0009e31bd3 
							
						 
					 
					
						
						
							
							heavy webworker load can park the main thread of a  
						
						... 
						
						
						
						background chrome tab for 10sec; piggyback some pokes off postmessage 
						
					 
					
						2023-03-02 22:35:32 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							db95e880b2 
							
						 
					 
					
						
						
							
							thats not how it works  
						
						
						
					 
					
						2023-02-28 22:19:06 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ecdec75b4e 
							
						 
					 
					
						
						
							
							v1.6.6  
						
						
						
					 
					
						2023-02-26 20:30:17 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5cb2e33353 
							
						 
					 
					
						
						
							
							update readmes + fix typo  
						
						
						
					 
					
						2023-02-26 19:22:54 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							43ff2e531a 
							
						 
					 
					
						
						
							
							add deadline for filling data into a reserved filename  
						
						
						
					 
					
						2023-02-26 19:13:35 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1c2c9db8f0 
							
						 
					 
					
						
						
							
							retain upload time (but not ip) on file reindex  
						
						
						
					 
					
						2023-02-26 19:09:24 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7ea183baef 
							
						 
					 
					
						
						
							
							let http thread handle upload verification plugins  
						
						
						
					 
					
						2023-02-26 19:07:49 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ab87fac6d8 
							
						 
					 
					
						
						
							
							db got the wrong lastmod when linking dupes  
						
						
						
					 
					
						2023-02-26 18:52:04 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1e3b7eee3b 
							
						 
					 
					
						
						
							
							dont rmdir volume top on cleanup  
						
						
						
					 
					
						2023-02-26 18:28:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4de028fc3b 
							
						 
					 
					
						
						
							
							let controlpanel rescan button override lack of e2dsa  
						
						
						
					 
					
						2023-02-26 18:27:10 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							604e5dfaaf 
							
						 
					 
					
						
						
							
							improve error handling / messages  
						
						
						
					 
					
						2023-02-26 18:26:13 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							05e0c2ec9e 
							
						 
					 
					
						
						
							
							add xiu (batching hook; runs on idle after uploads) +  
						
						... 
						
						
						
						bunch of tweaks/fixes for hooks 
						
					 
					
						2023-02-26 18:23:32 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							76bd005bdc 
							
						 
					 
					
						
						
							
							cgen fixes  
						
						
						
					 
					
						2023-02-21 19:42:08 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5effaed352 
							
						 
					 
					
						
						
							
							add reminder that SSDP launches IE by default  
						
						
						
					 
					
						2023-02-21 19:38:35 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6deaf5c268 
							
						 
					 
					
						
						
							
							add jitter simlation  
						
						
						
					 
					
						2023-02-20 21:34:30 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							14ad5916fc 
							
						 
					 
					
						
						
							
							freebsd: fancy console listing for fetch  
						
						
						
					 
					
						2023-02-19 22:14:21 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1a46738649 
							
						 
					 
					
						
						
							
							raise edgecases (broken envs on windows)  
						
						
						
					 
					
						2023-02-19 22:13:33 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							292ce75cc2 
							
						 
					 
					
						
						
							
							return to previous url after login  
						
						
						
					 
					
						2023-02-19 19:58:15 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							96d6bcf26e 
							
						 
					 
					
						
						
							
							if non-TLS, show warning in the login form  
						
						
						
					 
					
						2023-02-17 22:49:03 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							49e8df25ac 
							
						 
					 
					
						
						
							
							ie11: support back button  
						
						
						
					 
					
						2023-02-17 22:21:13 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6a05850f21 
							
						 
					 
					
						
						
							
							also undupe search hits from overlapping volumes  
						
						
						
					 
					
						2023-02-17 20:48:57 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6eba9feffe 
							
						 
					 
					
						
						
							
							condense uploads listing on view change  
						
						
						
					 
					
						2023-02-14 21:58:15 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8adfcf5950 
							
						 
					 
					
						
						
							
							win10-based copyparty64.exe  
						
						
						
					 
					
						2023-02-14 21:50:14 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							dc2e2cbd4b 
							
						 
					 
					
						
						
							
							v1.6.5  
						
						
						
					 
					
						2023-02-12 14:11:45 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5c12dac30f 
							
						 
					 
					
						
						
							
							most ffmpeg builds dont support compressed modules  
						
						
						
					 
					
						2023-02-12 14:02:43 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							641929191e 
							
						 
					 
					
						
						
							
							fix reading smb shares on windows  
						
						
						
					 
					
						2023-02-12 13:59:34 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cdec42c1ae 
							
						 
					 
					
						
						
							
							v1.6.4  
						
						
						
					 
					
						2023-02-11 18:02:05 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c48f469e39 
							
						 
					 
					
						
						
							
							park all clients waiting for a transcode  
						
						
						
					 
					
						2023-02-11 17:23:29 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							44909cc7b8 
							
						 
					 
					
						
						
							
							print ffmpeg download url on windows  
						
						
						
					 
					
						2023-02-11 17:22:24 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8f61e1568c 
							
						 
					 
					
						
						
							
							transcode chiptunes to opus;  
						
						... 
						
						
						
						* new audio/MPT formats: apac bonk dfpwm ilbc it itgz itr itz mo3 mod mptm mt2 okt s3gz s3m s3r s3z xm xmgz xmr xmz xpk
* new image/PIL formats: blp dcx emf eps fits flc fli fpx im j2k j2p psd spi wmf 
						
					 
					
						2023-02-11 11:17:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							dbdb9574b1 
							
						 
					 
					
						
						
							
							doc-browser: fix md scaling + download hotkey  
						
						
						
					 
					
						2023-02-10 21:33:48 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							853ae6386c 
							
						 
					 
					
						
						
							
							config load summary + safer windows defaults  
						
						
						
					 
					
						2023-02-10 21:32:42 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a4b56c74c7 
							
						 
					 
					
						
						
							
							support long filepaths on win7 + misc windows fixes  
						
						
						
					 
					
						2023-02-10 18:37:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d7f1951e44 
							
						 
					 
					
						
						
							
							fix --cgen for 'g' perms  
						
						
						
					 
					
						2023-02-08 22:38:21 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7e2ff9825e 
							
						 
					 
					
						
						
							
							ensure -e2tsr takes effect by ignoring dhash  
						
						
						
					 
					
						2023-02-08 22:33:02 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9b423396ec 
							
						 
					 
					
						
						
							
							better description for anonymous permissions  
						
						
						
					 
					
						2023-02-07 20:12:45 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							781146b2fb 
							
						 
					 
					
						
						
							
							describe all database volflags in --help-flags  
						
						
						
					 
					
						2023-02-07 20:07:06 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							84937d1ce0 
							
						 
					 
					
						
						
							
							add v2 config syntax ( #20 )  
						
						
						
					 
					
						2023-02-07 19:54:08 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							98cce66aa4 
							
						 
					 
					
						
						
							
							cgen: update set of multivalue keys  
						
						
						
					 
					
						2023-02-06 07:26:23 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							043c2d4858 
							
						 
					 
					
						
						
							
							cgen: fix permissions listing  
						
						
						
					 
					
						2023-02-06 07:23:35 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							99cc434779 
							
						 
					 
					
						
						
							
							add config explainer + generator ( #20 )  
						
						
						
					 
					
						2023-02-05 22:09:17 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							87d835ae37 
							
						 
					 
					
						
						
							
							dont allow multiple volumes at the same fs-path  
						
						
						
					 
					
						2023-02-05 21:16:36 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4ad6e45216 
							
						 
					 
					
						
						
							
							only load *.conf files when including a folder  
						
						
						
					 
					
						2023-02-05 00:01:10 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b0db14d8b0 
							
						 
					 
					
						
						
							
							indicate forced-randomized filenames  
						
						
						
					 
					
						2023-02-04 15:18:09 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2b644fa81b 
							
						 
					 
					
						
						
							
							don't alias randomized filenames  
						
						
						
					 
					
						2023-02-04 13:41:43 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							190ccee820 
							
						 
					 
					
						
						
							
							add optional version number on controlpanel  
						
						
						
					 
					
						2023-02-04 13:41:34 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4de61defc9 
							
						 
					 
					
						
						
							
							add a link exporter to the unpost ui too  
						
						
						
					 
					
						2023-02-02 22:57:59 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0aa88590d0 
							
						 
					 
					
						
						
							
							should generalize this somehow  
						
						
						
					 
					
						2023-02-02 22:35:13 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							405f3ee5fe 
							
						 
					 
					
						
						
							
							adjustable toast position  
						
						
						
					 
					
						2023-02-02 22:28:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							bc339f774a 
							
						 
					 
					
						
						
							
							button to show/copy links for all recent uploads  
						
						
						
					 
					
						2023-02-02 22:27:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e67b695b23 
							
						 
					 
					
						
						
							
							show filekeys in recent-uploads ui  
						
						
						
					 
					
						2023-02-02 21:22:51 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a918c285bf 
							
						 
					 
					
						
						
							
							up2k-ui: button to randomize upload filenames  
						
						
						
					 
					
						2023-02-01 22:26:18 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1e20eafbe0 
							
						 
					 
					
						
						
							
							volflag to randomize all upload filenames  
						
						
						
					 
					
						2023-02-01 21:58:01 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							39399934ee 
							
						 
					 
					
						
						
							
							v1.6.3  
						
						
						
					 
					
						2023-01-31 21:03:43 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b47635150a 
							
						 
					 
					
						
						
							
							shove #files aside while prologue sandbox is loading  
						
						
						
					 
					
						2023-01-31 21:02:58 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7a98dc669e 
							
						 
					 
					
						
						
							
							block alerts in sandbox by default + add translation  
						
						
						
					 
					
						2023-01-31 19:16:28 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							712a578e6c 
							
						 
					 
					
						
						
							
							indicate when a readme/logue was hidden  
						
						
						
					 
					
						2023-01-31 19:01:24 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d8dfc4ccb2 
							
						 
					 
					
						
						
							
							support davfs2 LOCK (uploads) + misc windows support + logue filtering  
						
						
						
					 
					
						2023-01-31 18:53:38 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e413007eb0 
							
						 
					 
					
						
						
							
							hide dotfiles from search results by default  
						
						
						
					 
					
						2023-01-31 18:13:33 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6d1d3e48d8 
							
						 
					 
					
						
						
							
							sandbox height didnt account for scrollbars  
						
						
						
					 
					
						2023-01-31 17:54:04 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							04966164ce 
							
						 
					 
					
						
						
							
							more iframe-resize-concealing tricks  
						
						
						
					 
					
						2023-01-31 17:43:21 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8b62aa7cc7 
							
						 
					 
					
						
						
							
							unlink files before replacing them  
						
						... 
						
						
						
						to avoid hardlink-related surprises 
						
					 
					
						2023-01-31 17:17:18 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8c54c2226f 
							
						 
					 
					
						
						
							
							cover up most of the layout jank  
						
						
						
					 
					
						2023-01-30 22:52:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f74ac1f18b 
							
						 
					 
					
						
						
							
							fix sandbox lag by helping the iframe cache js  
						
						
						
					 
					
						2023-01-30 22:36:05 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							25931e62fd 
							
						 
					 
					
						
						
							
							and nofollow the basic-browser link too  
						
						
						
					 
					
						2023-01-29 22:15:22 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							707a940399 
							
						 
					 
					
						
						
							
							add nofollow to zip links  
						
						
						
					 
					
						2023-01-29 22:10:03 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							87ef50d384 
							
						 
					 
					
						
						
							
							doc  
						
						
						
					 
					
						2023-01-29 21:23:48 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							dcadf2b11c 
							
						 
					 
					
						
						
							
							v1.6.2  
						
						
						
					 
					
						2023-01-29 18:42:21 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							37a690a4c3 
							
						 
					 
					
						
						
							
							fix cookie + rproxy oversights  
						
						
						
					 
					
						2023-01-29 18:34:48 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							aecae552a4 
							
						 
					 
					
						
						
							
							v1.6.1  
						
						
						
					 
					
						2023-01-29 04:41:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							eaa6b3d0be 
							
						 
					 
					
						
						
							
							mute some startup noise  
						
						
						
					 
					
						2023-01-29 04:33:28 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c2ace91e52 
							
						 
					 
					
						
						
							
							v1.6.0  
						
						
						
					 
					
						2023-01-29 02:55:44 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0bac87c36f 
							
						 
					 
					
						
						
							
							make loss of hotkeys more obvious  
						
						
						
					 
					
						2023-01-29 01:40:02 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e650d05939 
							
						 
					 
					
						
						
							
							shovel across most of the env too  
						
						
						
					 
					
						2023-01-29 01:19:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							85a96e4446 
							
						 
					 
					
						
						
							
							add custom text selection colors because chrome is broken on fedora  
						
						
						
					 
					
						2023-01-29 01:03:10 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2569005139 
							
						 
					 
					
						
						
							
							support sandboxed markdown plugins  
						
						
						
					 
					
						2023-01-29 00:57:08 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c50cb66aef 
							
						 
					 
					
						
						
							
							sandboxed other-origin iframes dont cache css  
						
						
						
					 
					
						2023-01-28 23:40:25 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d4c5fca15b 
							
						 
					 
					
						
						
							
							sandbox readme.md / prologue / epilogue  
						
						
						
					 
					
						2023-01-28 21:24:40 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							75cea4f684 
							
						 
					 
					
						
						
							
							misc  
						
						
						
					 
					
						2023-01-28 13:35:49 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							68c6794d33 
							
						 
					 
					
						
						
							
							rewrite other symlinks after the actual move;  
						
						... 
						
						
						
						fixes volumes where symlinking is disabled 
						
					 
					
						2023-01-28 01:14:29 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							82f98dd54d 
							
						 
					 
					
						
						
							
							delete/move is now POST  
						
						
						
					 
					
						2023-01-28 01:02:50 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							741d781c18 
							
						 
					 
					
						
						
							
							add cors controls + improve preflight + pw header  
						
						
						
					 
					
						2023-01-28 00:59:04 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5366bf22bb 
							
						 
					 
					
						
						
							
							describe detected network changes  
						
						
						
					 
					
						2023-01-27 23:56:54 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9bd5738e6f 
							
						 
					 
					
						
						
							
							shorter fallback hostname  
						
						
						
					 
					
						2023-01-27 22:19:25 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							bab4aa4c0a 
							
						 
					 
					
						
						
							
							mkdir fix  
						
						
						
					 
					
						2023-01-27 22:16:10 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e965b9b9e2 
							
						 
					 
					
						
						
							
							mkdir missing volumes on startup  
						
						
						
					 
					
						2023-01-27 21:52:28 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							31101427d3 
							
						 
					 
					
						
						
							
							support downloading blockdev contents  
						
						
						
					 
					
						2023-01-27 21:09:57 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a083dc36ba 
							
						 
					 
					
						
						
							
							dont get confused by dangling symlinks at target  
						
						
						
					 
					
						2023-01-27 20:27:00 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9b7b9262aa 
							
						 
					 
					
						
						
							
							promote dedup control to volflags  
						
						
						
					 
					
						2023-01-25 21:46:15 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							660011fa6e 
							
						 
					 
					
						
						
							
							md-editor: make hotkey ^e more global  
						
						
						
					 
					
						2023-01-25 20:58:28 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ead31b6823 
							
						 
					 
					
						
						
							
							add eventhook sanchecks  
						
						
						
					 
					
						2023-01-25 20:51:02 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4310580cd4 
							
						 
					 
					
						
						
							
							separate http/https logins (breaks ie4 / win3.11 login)  
						
						
						
					 
					
						2023-01-24 21:23:57 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b005acbfda 
							
						 
					 
					
						
						
							
							enable text selection between breadcrumbs + update vs  
						
						
						
					 
					
						2023-01-23 22:44:29 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f8e3e87a52 
							
						 
					 
					
						
						
							
							add event hooks  
						
						
						
					 
					
						2023-01-22 23:35:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							70f1642d0d 
							
						 
					 
					
						
						
							
							allow tar/zip download of hidden folders  
						
						
						
					 
					
						2023-01-21 20:56:44 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							3fc7561da4 
							
						 
					 
					
						
						
							
							macos  
						
						
						
					 
					
						2023-01-21 10:36:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9065226c3d 
							
						 
					 
					
						
						
							
							oh great its in lts too  
						
						
						
					 
					
						2023-01-21 10:19:04 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							664665b86b 
							
						 
					 
					
						
						
							
							fix some location-rproxy bugs  
						
						
						
					 
					
						2023-01-19 22:26:24 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f4f362b7a4 
							
						 
					 
					
						
						
							
							add --freebind  
						
						
						
					 
					
						2023-01-18 21:55:36 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							577d23f460 
							
						 
					 
					
						
						
							
							zeroconf: detect network change and reannounce  
						
						
						
					 
					
						2023-01-18 21:27:27 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							504e168486 
							
						 
					 
					
						
						
							
							compensate avg.speed for single-chunk uploads  
						
						
						
					 
					
						2023-01-18 19:53:19 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f2f9640371 
							
						 
					 
					
						
						
							
							workaround firefox layout bug:  
						
						... 
						
						
						
						three-line toasts get a scrollbar even if it doesn't need one
and the width is not adjusted correctly when that happens 
						
					 
					
						2023-01-18 19:45:04 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b0e755d410 
							
						 
					 
					
						
						
							
							give curl colored (yet sortable) plaintext listings  
						
						
						
					 
					
						2023-01-17 23:22:43 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cfd24604d5 
							
						 
					 
					
						
						
							
							ux tweaks  
						
						
						
					 
					
						2023-01-17 23:21:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5bb9f56247 
							
						 
					 
					
						
						
							
							linux 6.1 fixed the 6.0 bugs; remove workarounds  
						
						
						
					 
					
						2023-01-16 20:44:57 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							18942ed066 
							
						 
					 
					
						
						
							
							location-based rproxy fixes  
						
						
						
					 
					
						2023-01-16 20:09:45 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							85321a6f31 
							
						 
					 
					
						
						
							
							stale tree is better than no tree  
						
						
						
					 
					
						2023-01-15 20:54:03 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							baf641396d 
							
						 
					 
					
						
						
							
							add optional powered-by footnode  
						
						
						
					 
					
						2023-01-15 20:52:38 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							17c91e7014 
							
						 
					 
					
						
						
							
							override bogus mimetypes  
						
						
						
					 
					
						2023-01-14 15:10:32 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							010770684d 
							
						 
					 
					
						
						
							
							workaround another linux kernel bug  
						
						
						
					 
					
						2023-01-14 08:16:15 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b4c503657b 
							
						 
					 
					
						
						
							
							ignore loss of stdout  
						
						
						
					 
					
						2023-01-14 07:35:44 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							71bd306268 
							
						 
					 
					
						
						
							
							fix unpost filters with slashes  
						
						
						
					 
					
						2023-01-13 17:56:32 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							dacca18863 
							
						 
					 
					
						
						
							
							v1.5.6  
						
						
						
					 
					
						2023-01-12 05:15:30 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							53d92cc0a6 
							
						 
					 
					
						
						
							
							faster upload of small files on high-latency nets  
						
						
						
					 
					
						2023-01-12 02:53:22 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							434823f6f0 
							
						 
					 
					
						
						
							
							ui: allow changing num.threads in search-only  
						
						
						
					 
					
						2023-01-11 16:14:02 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2cb1f50370 
							
						 
					 
					
						
						
							
							fix dualstack on lo  
						
						
						
					 
					
						2023-01-11 16:10:07 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							03f53f6392 
							
						 
					 
					
						
						
							
							gallery: fix js error on digit-keypress viewing pics  
						
						
						
					 
					
						2023-01-11 16:08:15 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a70ecd7af0 
							
						 
					 
					
						
						
							
							v1.5.5  
						
						
						
					 
					
						2022-12-30 07:54:34 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8b81e58205 
							
						 
					 
					
						
						
							
							mdns fixes  
						
						
						
					 
					
						2022-12-30 07:47:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4500c04edf 
							
						 
					 
					
						
						
							
							v1.5.4  
						
						
						
					 
					
						2022-12-29 04:44:15 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6222ddd720 
							
						 
					 
					
						
						
							
							fix ssdp on dualstack  
						
						
						
					 
					
						2022-12-22 16:50:46 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8a7135cf41 
							
						 
					 
					
						
						
							
							support fat32 time precision, avoiding rescans  
						
						... 
						
						
						
						posted from warzaw airport otw to japan 
						
					 
					
						2022-12-20 22:19:32 +01:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							343d38b693 
							
						 
					 
					
						
						
							
							extend image-viewer with modern formats  
						
						
						
					 
					
						2022-12-15 22:38:33 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6cf53d7364 
							
						 
					 
					
						
						
							
							try next thumbnailer if one fails;  
						
						... 
						
						
						
						libvips assumes imagemagick was built with avif 
						
					 
					
						2022-12-15 22:34:51 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b070d44de7 
							
						 
					 
					
						
						
							
							libvips logging + raise codec errors  
						
						
						
					 
					
						2022-12-15 22:22:04 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							79aa40fdea 
							
						 
					 
					
						
						
							
							cosmetic fixes  
						
						
						
					 
					
						2022-12-14 23:12:51 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							dcaff2785f 
							
						 
					 
					
						
						
							
							v1.5.3  
						
						
						
					 
					
						2022-12-13 19:56:34 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							497f5b4307 
							
						 
					 
					
						
						
							
							add hotkey to enable download mode  
						
						
						
					 
					
						2022-12-13 19:50:20 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							be32ad0da6 
							
						 
					 
					
						
						
							
							add sfx tester  
						
						
						
					 
					
						2022-12-13 19:05:10 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8ee2bf810b 
							
						 
					 
					
						
						
							
							stop battleplan from indirectly crashing the browser  
						
						
						
					 
					
						2022-12-13 18:58:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fbc2424e8f 
							
						 
					 
					
						
						
							
							v1.5.2  
						
						
						
					 
					
						2022-12-12 22:59:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							94cd13e8b8 
							
						 
					 
					
						
						
							
							reorder help categories  
						
						
						
					 
					
						2022-12-12 22:18:17 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							447ed5ab37 
							
						 
					 
					
						
						
							
							windows fixes  
						
						
						
					 
					
						2022-12-12 21:59:50 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7fd1d6a4e8 
							
						 
					 
					
						
						
							
							rename --webroot to --rp-loc and fix related bugs  
						
						
						
					 
					
						2022-12-11 21:09:50 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							3895575bc2 
							
						 
					 
					
						
						
							
							add sliding window for upload eta  
						
						
						
					 
					
						2022-12-11 19:46:39 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							bc7af1d1c8 
							
						 
					 
					
						
						
							
							u2cli: add basic folder sync  
						
						
						
					 
					
						2022-12-11 17:41:10 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							19cd96e392 
							
						 
					 
					
						
						
							
							cleanup + optimizations  
						
						
						
					 
					
						2022-12-11 14:16:51 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							db194ab519 
							
						 
					 
					
						
						
							
							support location-based rproxy  
						
						
						
					 
					
						2022-12-10 23:43:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							02ad4bfab2 
							
						 
					 
					
						
						
							
							ensure consistency between db tables  
						
						
						
					 
					
						2022-12-10 22:13:21 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							56b73dcc8a 
							
						 
					 
					
						
						
							
							up2k: add option to replace existing file  
						
						
						
					 
					
						2022-12-10 19:22:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7704b9c8a2 
							
						 
					 
					
						
						
							
							sqlite durability profiles  
						
						
						
					 
					
						2022-12-10 10:01:33 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							999b7ae919 
							
						 
					 
					
						
						
							
							safer to merge wal on startup instead  
						
						
						
					 
					
						2022-12-09 19:58:13 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							252b5a88b1 
							
						 
					 
					
						
						
							
							use linklocal on NICs without routable IPs  
						
						
						
					 
					
						2022-12-09 19:11:26 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							01e2681a07 
							
						 
					 
					
						
						
							
							davfs2 requires realm  
						
						
						
					 
					
						2022-12-09 17:59:24 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							aa32f30202 
							
						 
					 
					
						
						
							
							zeroconf: dont cache until resolved  
						
						
						
					 
					
						2022-12-08 18:05:45 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							195eb53995 
							
						 
					 
					
						
						
							
							merge wal on shutdown  
						
						
						
					 
					
						2022-12-07 23:09:40 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							06fa78f54a 
							
						 
					 
					
						
						
							
							windows: set .hist folder hidden  
						
						
						
					 
					
						2022-12-07 22:56:30 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7a57c9dbf1 
							
						 
					 
					
						
						
							
							translation  
						
						
						
					 
					
						2022-12-07 22:47:33 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							bb657bfa85 
							
						 
					 
					
						
						
							
							more intuitive batch-unpost ordering  
						
						
						
					 
					
						2022-12-07 22:30:48 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							87181726b0 
							
						 
					 
					
						
						
							
							sfx: fix multiprocessing on windows  
						
						
						
					 
					
						2022-12-07 22:21:28 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f1477a1c14 
							
						 
					 
					
						
						
							
							block other copyparties from sniping tcp ports  
						
						
						
					 
					
						2022-12-07 21:50:52 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fbed322d3b 
							
						 
					 
					
						
						
							
							option to skip database syncs entirely  
						
						
						
					 
					
						2022-12-07 21:35:04 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9b0f519e4e 
							
						 
					 
					
						
						
							
							switch to wal for ~2x faster uploads  
						
						
						
					 
					
						2022-12-07 20:52:17 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6cd6dadd06 
							
						 
					 
					
						
						
							
							optional linklocal ipv6 support (firefox/ie11 only)  
						
						
						
					 
					
						2022-12-05 20:45:21 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9a28afcb48 
							
						 
					 
					
						
						
							
							custom mediaplayer-toggle cursor  
						
						
						
					 
					
						2022-12-05 19:46:48 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							45b701801d 
							
						 
					 
					
						
						
							
							fix ssdp xml escaping + target url  
						
						
						
					 
					
						2022-12-05 19:13:47 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							062246fb12 
							
						 
					 
					
						
						
							
							allow specifying zeroconf filters by subnet  
						
						
						
					 
					
						2022-12-05 17:56:39 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							416ebfdd68 
							
						 
					 
					
						
						
							
							right, windows nic names have whitespace  
						
						
						
					 
					
						2022-12-05 17:35:12 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							731eb92f33 
							
						 
					 
					
						
						
							
							fix exception opening the connect page on phones  
						
						
						
					 
					
						2022-12-04 17:18:14 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							dbe2aec79c 
							
						 
					 
					
						
						
							
							v1.5.1  
						
						
						
					 
					
						2022-12-03 20:48:52 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cd9cafe3a1 
							
						 
					 
					
						
						
							
							v1.5.0  
						
						
						
					 
					
						2022-12-03 20:45:49 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							067cc23346 
							
						 
					 
					
						
						
							
							docs + cleanup  
						
						
						
					 
					
						2022-12-03 18:58:56 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c573a780e9 
							
						 
					 
					
						
						
							
							some failsafes  
						
						
						
					 
					
						2022-12-03 16:37:14 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8ef4a0aa71 
							
						 
					 
					
						
						
							
							fix testrunner + packaging  
						
						
						
					 
					
						2022-12-03 15:07:47 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							89ba12065c 
							
						 
					 
					
						
						
							
							ssdp: add ie8 compat  
						
						
						
					 
					
						2022-12-03 13:59:46 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							99efc290df 
							
						 
					 
					
						
						
							
							fix mdns on windows  
						
						
						
					 
					
						2022-12-03 13:31:00 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2fbdc0a85e 
							
						 
					 
					
						
						
							
							misc fixes / cleanup  
						
						
						
					 
					
						2022-12-02 23:42:46 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							008d9b1834 
							
						 
					 
					
						
						
							
							add textbox placeholders  
						
						
						
					 
					
						2022-12-02 18:33:04 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7c76d08958 
							
						 
					 
					
						
						
							
							drop one of the slowloris detectors  
						
						
						
					 
					
						2022-12-02 17:53:23 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							89c9f45fd0 
							
						 
					 
					
						
						
							
							add option for cross-volume dedupe  
						
						
						
					 
					
						2022-12-02 17:25:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f107497a94 
							
						 
					 
					
						
						
							
							a bit better  
						
						
						
					 
					
						2022-12-01 22:18:17 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b5dcf30e53 
							
						 
					 
					
						
						
							
							w/a firefox sometimes loading stale documents  
						
						... 
						
						
						
						never been able to reproduce it intentionally but this should work 
						
					 
					
						2022-12-01 21:52:40 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0cef062084 
							
						 
					 
					
						
						
							
							misc cleanup  
						
						
						
					 
					
						2022-12-01 21:44:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5c30148be4 
							
						 
					 
					
						
						
							
							also scroll to playing track when resizing window  
						
						
						
					 
					
						2022-11-29 22:16:14 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							3a800585bc 
							
						 
					 
					
						
						
							
							u2cli: server is allowed to reject dupes  
						
						
						
					 
					
						2022-11-29 22:09:32 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							29c212a60e 
							
						 
					 
					
						
						
							
							macos bigsur breaks on symlinks in ftp listings  
						
						
						
					 
					
						2022-11-28 22:10:05 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2997baa7cb 
							
						 
					 
					
						
						
							
							better recovery from i/o errors  
						
						
						
					 
					
						2022-11-28 22:06:31 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e357aa546c 
							
						 
					 
					
						
						
							
							add browserchrome color hint  
						
						
						
					 
					
						2022-11-28 21:19:42 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d3fe19c5aa 
							
						 
					 
					
						
						
							
							misc fixes  
						
						
						
					 
					
						2022-11-28 20:25:32 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							bd24bf9bae 
							
						 
					 
					
						
						
							
							option to follow playing song  
						
						
						
					 
					
						2022-11-28 20:24:47 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ee141544aa 
							
						 
					 
					
						
						
							
							option for compact mediaplayer  
						
						
						
					 
					
						2022-11-28 20:10:10 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							db6f6e6a23 
							
						 
					 
					
						
						
							
							option to hide scrollbars  
						
						
						
					 
					
						2022-11-28 19:47:14 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c7d950dd5e 
							
						 
					 
					
						
						
							
							ux tweaks + devdocs  
						
						
						
					 
					
						2022-11-27 22:07:28 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6a96c62fde 
							
						 
					 
					
						
						
							
							ok windows is just gonna have to make do  
						
						
						
					 
					
						2022-11-27 22:05:38 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7622601a77 
							
						 
					 
					
						
						
							
							forgot to actually enable the new landing page  
						
						
						
					 
					
						2022-11-27 00:01:28 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cfd41fcf41 
							
						 
					 
					
						
						
							
							zeroconf: add network filtering options  
						
						
						
					 
					
						2022-11-26 22:37:12 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c1315a3b39 
							
						 
					 
					
						
						
							
							webdav: misc fixes  
						
						
						
					 
					
						2022-11-26 20:06:48 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							53b32f97e8 
							
						 
					 
					
						
						
							
							ftp: support touch+write, windows-login, verbosity  
						
						
						
					 
					
						2022-11-26 20:03:17 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6c962ec7d3 
							
						 
					 
					
						
						
							
							rename copyparty-fuse to partyfuse  
						
						
						
					 
					
						2022-11-26 20:01:20 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f0e78a6826 
							
						 
					 
					
						
						
							
							add landing page with mounting instructions  
						
						
						
					 
					
						2022-11-26 19:47:27 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e53531a9fb 
							
						 
					 
					
						
						
							
							ssdp: get rid of ipv6 + fix http port selection  
						
						
						
					 
					
						2022-11-23 22:44:17 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5cd9d11329 
							
						 
					 
					
						
						
							
							add ssdp responder  
						
						
						
					 
					
						2022-11-22 21:40:12 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5a3e504ec4 
							
						 
					 
					
						
						
							
							uninvent a square wheel  
						
						
						
					 
					
						2022-11-22 19:12:41 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d6e09c3880 
							
						 
					 
					
						
						
							
							ux: dedicated column-hiding mode on phones  
						
						
						
					 
					
						2022-11-21 20:44:58 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							04f44c3c7c 
							
						 
					 
					
						
						
							
							add global option for rejecting dupe uploads  
						
						
						
					 
					
						2022-11-21 10:58:15 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ec587423e8 
							
						 
					 
					
						
						
							
							show/hide tagsearch ui based on folder flags  
						
						
						
					 
					
						2022-11-20 23:30:01 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f57b31146d 
							
						 
					 
					
						
						
							
							improve parent-folder button on phones  
						
						
						
					 
					
						2022-11-20 22:37:55 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							35175fd685 
							
						 
					 
					
						
						
							
							mdns: support primitive clients (android, rfc-6.7)  
						
						
						
					 
					
						2022-11-20 20:31:11 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d326ba9723 
							
						 
					 
					
						
						
							
							ftp: ban password-bruteforcing IPs  
						
						
						
					 
					
						2022-11-20 11:06:07 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ab655a56af 
							
						 
					 
					
						
						
							
							add buttons for prev/next folder  
						
						
						
					 
					
						2022-11-19 22:19:38 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d1eb113ea8 
							
						 
					 
					
						
						
							
							add button+hotkey to download all selected files  
						
						
						
					 
					
						2022-11-19 21:57:25 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							74effa9b8d 
							
						 
					 
					
						
						
							
							audioplayer: time at mousecursor while scrubbing  
						
						
						
					 
					
						2022-11-19 20:00:50 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8709d4dba0 
							
						 
					 
					
						
						
							
							macos smb: avoid hang on shutdown  
						
						
						
					 
					
						2022-11-17 21:17:54 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4ad4657774 
							
						 
					 
					
						
						
							
							mdns: support running on macos  
						
						
						
					 
					
						2022-11-17 20:18:24 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5abe0c955c 
							
						 
					 
					
						
						
							
							this spec is confusing  
						
						
						
					 
					
						2022-11-17 09:08:58 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0cedaf4fa9 
							
						 
					 
					
						
						
							
							isort  
						
						
						
					 
					
						2022-11-15 22:41:35 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0aa7d12704 
							
						 
					 
					
						
						
							
							add option to disable .hist/up2k.snap  
						
						
						
					 
					
						2022-11-15 22:16:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a234aa1f7e 
							
						 
					 
					
						
						
							
							cleaner shutdown of smbd, mdns  
						
						
						
					 
					
						2022-11-15 21:55:02 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9f68287846 
							
						 
					 
					
						
						
							
							workaround impacket glob bug  
						
						
						
					 
					
						2022-11-15 21:29:02 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cd2513ec16 
							
						 
					 
					
						
						
							
							logging fixes  
						
						
						
					 
					
						2022-11-15 21:28:27 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							91d132c2b4 
							
						 
					 
					
						
						
							
							add basic-ui hint for firefox 8 and older  
						
						
						
					 
					
						2022-11-15 20:17:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							97ff0ebd06 
							
						 
					 
					
						
						
							
							xz-compress logs only if -lo ends with .xz  
						
						
						
					 
					
						2022-11-15 20:16:41 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8829f56d4c 
							
						 
					 
					
						
						
							
							mdns ipv6 fixes; now works on ie11/safari, not linux:  
						
						... 
						
						
						
						* subscribe/announce on LL only
* add NSEC records if 4/6-only 
						
					 
					
						2022-11-15 06:39:53 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							37c1cab726 
							
						 
					 
					
						
						
							
							dnslib tweaks for mdns / py3  
						
						
						
					 
					
						2022-11-13 20:06:39 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b3eb117e87 
							
						 
					 
					
						
						
							
							add mdns zeroconf announcer  
						
						
						
					 
					
						2022-11-13 20:05:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fc0a941508 
							
						 
					 
					
						
						
							
							support old linux consoles  
						
						
						
					 
					
						2022-11-06 16:58:00 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c72753c5da 
							
						 
					 
					
						
						
							
							add native ipv6 support  
						
						
						
					 
					
						2022-11-06 16:48:05 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e442cb677a 
							
						 
					 
					
						
						
							
							improve ftp/smb logging  
						
						
						
					 
					
						2022-11-06 13:30:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							450121eac9 
							
						 
					 
					
						
						
							
							ftpd: kde tries to cwd into images  
						
						
						
					 
					
						2022-11-05 13:24:00 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b2ab8f971e 
							
						 
					 
					
						
						
							
							add config-file preprocessor (%include)  
						
						
						
					 
					
						2022-11-04 23:48:14 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							357e7333cc 
							
						 
					 
					
						
						
							
							cleanup  
						
						
						
					 
					
						2022-11-04 20:27:16 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8bb4f02601 
							
						 
					 
					
						
						
							
							add textlabel on volume slider  
						
						
						
					 
					
						2022-11-04 20:04:39 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4213efc7a6 
							
						 
					 
					
						
						
							
							optimize more  
						
						
						
					 
					
						2022-11-04 19:33:48 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							67a744c3e8 
							
						 
					 
					
						
						
							
							audioplayer: optimize ui for week-long audio files  
						
						
						
					 
					
						2022-11-03 23:20:58 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							98818e7d63 
							
						 
					 
					
						
						
							
							smb: workaround impacket response size limit  
						
						
						
					 
					
						2022-11-03 23:17:24 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8650ce1295 
							
						 
					 
					
						
						
							
							smb: too many clients get confused by blank password  
						
						
						
					 
					
						2022-11-03 23:08:04 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9638267b4c 
							
						 
					 
					
						
						
							
							up2k-ui: survive hitting inaccessible subfolders  
						
						
						
					 
					
						2022-11-02 22:02:46 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							304e053155 
							
						 
					 
					
						
						
							
							improve default-gateway / external-IP detection  
						
						
						
					 
					
						2022-11-02 21:43:20 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							89d1f52235 
							
						 
					 
					
						
						
							
							cursory slowloris / buggy-webdav-client detector  
						
						
						
					 
					
						2022-11-01 22:18:20 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							3312c6f5bd 
							
						 
					 
					
						
						
							
							autoclose connection-flooding clients  
						
						
						
					 
					
						2022-10-31 22:42:47 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d4ba644d07 
							
						 
					 
					
						
						
							
							autodefault -nc based on OS limits  
						
						
						
					 
					
						2022-10-31 19:37:37 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cebac523dc 
							
						 
					 
					
						
						
							
							fix url anchors into markdown docs  
						
						
						
					 
					
						2022-10-30 18:03:40 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c2f4090318 
							
						 
					 
					
						
						
							
							webdav: mute some macos spam  
						
						
						
					 
					
						2022-10-30 17:45:28 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							62499f9b71 
							
						 
					 
					
						
						
							
							webdav: more sensible overwrite logic  
						
						
						
					 
					
						2022-10-30 17:13:06 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							89cf7608f9 
							
						 
					 
					
						
						
							
							webdav: help windows deal with read-only volumes  
						
						
						
					 
					
						2022-10-30 17:11:43 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							dd26b8f183 
							
						 
					 
					
						
						
							
							webdav: bump chunksize from 2048 to 32760 byte  
						
						
						
					 
					
						2022-10-30 16:53:15 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							79303dac6d 
							
						 
					 
					
						
						
							
							webdav: default-disable recursive listing  
						
						
						
					 
					
						2022-10-30 16:47:20 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4203fc161b 
							
						 
					 
					
						
						
							
							misc  
						
						
						
					 
					
						2022-10-30 16:31:04 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f8a31cc24f 
							
						 
					 
					
						
						
							
							chrome can play some mkv files  
						
						
						
					 
					
						2022-10-30 16:12:47 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fc5bfe81a0 
							
						 
					 
					
						
						
							
							add hotkey '?' for hotkeys listing  
						
						
						
					 
					
						2022-10-30 16:05:14 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							aae14de796 
							
						 
					 
					
						
						
							
							mouse3 docs in the navpane  
						
						
						
					 
					
						2022-10-30 13:13:58 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							54e1c8d261 
							
						 
					 
					
						
						
							
							remove 697 GiB upload filesize limit  
						
						
						
					 
					
						2022-10-30 12:51:20 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a0cc4ca4b7 
							
						 
					 
					
						
						
							
							up2k-cli: enable mt if chrome 107 or later  
						
						
						
					 
					
						2022-10-29 22:57:59 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2701108c5b 
							
						 
					 
					
						
						
							
							up2k-ui: suggest potato to avoid firefox-bug 1790500  
						
						
						
					 
					
						2022-10-29 22:46:13 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							73bd2df2c6 
							
						 
					 
					
						
						
							
							more metadata-parser debug options  
						
						
						
					 
					
						2022-10-29 21:59:59 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							edad3246e0 
							
						 
					 
					
						
						
							
							make pylance happier  
						
						
						
					 
					
						2022-10-29 20:40:25 +00:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							3411b0993f 
							
						 
					 
					
						
						
							
							fix msg-to-log  
						
						
						
					 
					
						2022-10-26 02:35:32 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							69f78b86af 
							
						 
					 
					
						
						
							
							cleanup  
						
						
						
					 
					
						2022-10-25 01:23:41 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5f60c509c6 
							
						 
					 
					
						
						
							
							smb: add better-than-nothing permission checks  
						
						
						
					 
					
						2022-10-24 21:16:57 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4b2b4ed52d 
							
						 
					 
					
						
						
							
							smb: fix file rename  
						
						
						
					 
					
						2022-10-24 16:08:02 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f14369e038 
							
						 
					 
					
						
						
							
							webdav: mkdir semantics  
						
						
						
					 
					
						2022-10-24 14:09:09 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ff04b72f62 
							
						 
					 
					
						
						
							
							smb: add mkdir/copy/rename/delete  
						
						
						
					 
					
						2022-10-24 14:08:32 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4535a81617 
							
						 
					 
					
						
						
							
							smb: add up2k-indexing on write  
						
						
						
					 
					
						2022-10-24 13:44:19 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cce57b700b 
							
						 
					 
					
						
						
							
							fix range-request on empty files  
						
						
						
					 
					
						2022-10-24 03:26:32 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5b6194d131 
							
						 
					 
					
						
						
							
							stop win10-webdav from flooding the server  
						
						
						
					 
					
						2022-10-24 02:33:23 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2701238cea 
							
						 
					 
					
						
						
							
							reply raw markdown unless ?v  
						
						
						
					 
					
						2022-10-24 02:10:07 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							835f8a20e6 
							
						 
					 
					
						
						
							
							default-enable webdav  
						
						
						
					 
					
						2022-10-23 23:37:32 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f3a501db30 
							
						 
					 
					
						
						
							
							add SMB/CIFS server  
						
						
						
					 
					
						2022-10-23 23:08:00 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4bcd30da6b 
							
						 
					 
					
						
						
							
							cleaner daemon instancing  
						
						
						
					 
					
						2022-10-23 12:05:44 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							947dbb6f8a 
							
						 
					 
					
						
						
							
							webdav mimetypes based on file extensions (for gnome)  
						
						
						
					 
					
						2022-10-22 02:08:19 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1c2fedd2bf 
							
						 
					 
					
						
						
							
							let webdav replace empty files when sufficiently safe  
						
						
						
					 
					
						2022-10-22 01:31:18 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							32e826efbc 
							
						 
					 
					
						
						
							
							catch and discard macos metadata files  
						
						
						
					 
					
						2022-10-22 01:15:54 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							138b932c6a 
							
						 
					 
					
						
						
							
							add webdav move/delete  
						
						
						
					 
					
						2022-10-22 00:04:51 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							20eeacaac3 
							
						 
					 
					
						
						
							
							add webdav write support + fix http 200/201  
						
						
						
					 
					
						2022-10-21 18:47:48 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							81d896be9f 
							
						 
					 
					
						
						
							
							webdav notes  
						
						
						
					 
					
						2022-10-19 15:52:19 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c003dfab03 
							
						 
					 
					
						
						
							
							unbold ansi grays  
						
						
						
					 
					
						2022-10-19 15:30:17 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							20c6b82bec 
							
						 
					 
					
						
						
							
							replace magic numbers with errno.*  
						
						
						
					 
					
						2022-10-19 15:21:48 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							046b494b53 
							
						 
					 
					
						
						
							
							winpe support + windows webdav stuff  
						
						
						
					 
					
						2022-10-19 00:06:48 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fe57321853 
							
						 
					 
					
						
						
							
							correct 401/403 usage for webdav  
						
						
						
					 
					
						2022-10-18 20:29:06 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8510804e57 
							
						 
					 
					
						
						
							
							initial webdav support  
						
						
						
					 
					
						2022-10-18 19:36:52 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							acd32abac5 
							
						 
					 
					
						
						
							
							v1.4.6  
						
						
						
					 
					
						2022-10-13 21:37:05 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1027378bda 
							
						 
					 
					
						
						
							
							language + cleanup  
						
						
						
					 
					
						2022-10-13 20:43:30 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e979d30659 
							
						 
					 
					
						
						
							
							audioplayer: transcode wav to opus  
						
						
						
					 
					
						2022-10-13 20:26:43 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							cecac64b68 
							
						 
					 
					
						
						
							
							v1.4.5  
						
						
						
					 
					
						2022-10-09 11:19:40 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7dabdade2a 
							
						 
					 
					
						
						
							
							v1.4.4  
						
						
						
					 
					
						2022-10-09 01:08:31 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e788f098e2 
							
						 
					 
					
						
						
							
							dont fallback to icons for waveforms  
						
						
						
					 
					
						2022-10-09 00:38:56 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							69406d4344 
							
						 
					 
					
						
						
							
							readme + better window title  
						
						
						
					 
					
						2022-10-09 00:04:02 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d16dd26c65 
							
						 
					 
					
						
						
							
							misc  
						
						
						
					 
					
						2022-10-08 21:09:04 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							12219c1bea 
							
						 
					 
					
						
						
							
							more fun with symlinks  
						
						
						
					 
					
						2022-10-08 21:08:51 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							118bdcc26e 
							
						 
					 
					
						
						
							
							120x faster folder moves/renames  
						
						
						
					 
					
						2022-10-08 19:11:03 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							78fa96f0f4 
							
						 
					 
					
						
						
							
							add unpost sanchk  
						
						
						
					 
					
						2022-10-08 18:23:41 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c7deb63a04 
							
						 
					 
					
						
						
							
							actually thats just an android-firefox bug  
						
						
						
					 
					
						2022-10-08 17:52:29 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4f811eb9e9 
							
						 
					 
					
						
						
							
							hmac cache limit + android ux:  
						
						... 
						
						
						
						onscroll doesnt trigger so files dont load in 
						
					 
					
						2022-10-08 17:46:04 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0b265bd673 
							
						 
					 
					
						
						
							
							naming is hard  
						
						
						
					 
					
						2022-10-08 16:34:04 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7c01505750 
							
						 
					 
					
						
						
							
							phone ux  
						
						
						
					 
					
						2022-10-08 14:11:25 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ae28dfd020 
							
						 
					 
					
						
						
							
							tweaks  
						
						
						
					 
					
						2022-10-08 02:05:15 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2a5a4e785f 
							
						 
					 
					
						
						
							
							include filekeys in unpost list  
						
						
						
					 
					
						2022-10-08 01:18:27 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d8bddede6a 
							
						 
					 
					
						
						
							
							new permission G returns filekey on write-only uploads  
						
						
						
					 
					
						2022-10-08 01:17:41 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b8a93e74bf 
							
						 
					 
					
						
						
							
							fix default upload expiration + ux  
						
						
						
					 
					
						2022-10-07 21:38:01 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e60ec94d35 
							
						 
					 
					
						
						
							
							draw qr-code as ansi colors  
						
						
						
					 
					
						2022-10-07 01:04:23 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							84af5fd0a3 
							
						 
					 
					
						
						
							
							scale qr-code to fit console size  
						
						
						
					 
					
						2022-10-07 00:59:44 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							dbb3edec77 
							
						 
					 
					
						
						
							
							print qr-code on startup  
						
						
						
					 
					
						2022-10-07 00:47:26 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d284b46a3e 
							
						 
					 
					
						
						
							
							rice  
						
						
						
					 
					
						2022-10-06 23:40:06 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9fcb4d222b 
							
						 
					 
					
						
						
							
							reserve names to avoid ie11 pollution  
						
						
						
					 
					
						2022-10-06 01:33:34 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d0bb1ad141 
							
						 
					 
					
						
						
							
							v1.4.3  
						
						
						
					 
					
						2022-09-26 22:37:54 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b299aaed93 
							
						 
					 
					
						
						
							
							fix some cases of deleted files not being forgotten  
						
						
						
					 
					
						2022-09-26 22:19:46 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							abb3224cc5 
							
						 
					 
					
						
						
							
							option to save a copy of corrupted uploads  
						
						
						
					 
					
						2022-09-26 22:01:49 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1c66d06702 
							
						 
					 
					
						
						
							
							cleanup versionchecks  
						
						
						
					 
					
						2022-09-25 21:31:47 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e00e80ae39 
							
						 
					 
					
						
						
							
							v1.4.2  
						
						
						
					 
					
						2022-09-25 14:36:10 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							4f4f106c48 
							
						 
					 
					
						
						
							
							add ability to forget uploads by deleting the files  
						
						
						
					 
					
						2022-09-25 14:24:01 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a286cc9d55 
							
						 
					 
					
						
						
							
							fix printing big unicode messages  
						
						
						
					 
					
						2022-09-25 14:04:35 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							53bb1c719b 
							
						 
					 
					
						
						
							
							fix huge-filename trunc on ubuntu-20.04 zfs  
						
						
						
					 
					
						2022-09-25 14:00:11 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							aaaa80e4b8 
							
						 
					 
					
						
						
							
							v1.4.1  
						
						
						
					 
					
						2022-09-24 14:45:50 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e70e926a40 
							
						 
					 
					
						
						
							
							support up2k uploads from old browsertabs  
						
						
						
					 
					
						2022-09-24 14:35:51 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							24de360325 
							
						 
					 
					
						
						
							
							v1.4.0  
						
						
						
					 
					
						2022-09-23 22:53:51 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e0039bc1e6 
							
						 
					 
					
						
						
							
							syntax-hl: elixir, glsl, matlab, moonscript, nim, zig  
						
						
						
					 
					
						2022-09-23 22:32:40 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ae5c4a0109 
							
						 
					 
					
						
						
							
							update webdeps + isort + readme  
						
						
						
					 
					
						2022-09-23 22:32:04 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1d367a0da0 
							
						 
					 
					
						
						
							
							cleanup  
						
						
						
					 
					
						2022-09-23 20:37:37 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d285f7ee4a 
							
						 
					 
					
						
						
							
							macos-safari support  
						
						
						
					 
					
						2022-09-23 19:36:07 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							37c84021a2 
							
						 
					 
					
						
						
							
							up2k: folder-upload without drag/drop  
						
						
						
					 
					
						2022-09-22 21:58:04 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8ee9de4291 
							
						 
					 
					
						
						
							
							up2k: add separate sfx toggle  
						
						
						
					 
					
						2022-09-22 20:12:25 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							249b63453b 
							
						 
					 
					
						
						
							
							good api  
						
						
						
					 
					
						2022-09-22 19:20:33 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1c0017d763 
							
						 
					 
					
						
						
							
							up2k: upload-complete notification  
						
						
						
					 
					
						2022-09-21 23:39:36 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							df51e23639 
							
						 
					 
					
						
						
							
							playing next folder makes no sense in search results  
						
						
						
					 
					
						2022-09-21 22:30:31 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							32e71a43b8 
							
						 
					 
					
						
						
							
							reinvent fail2ban  
						
						
						
					 
					
						2022-09-21 22:27:20 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							47a1e6ddfa 
							
						 
					 
					
						
						
							
							avoid windows funk  
						
						
						
					 
					
						2022-09-21 08:25:44 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f1e0c44bdd 
							
						 
					 
					
						
						
							
							better autocorrect for poor ffmpeg builds  
						
						
						
					 
					
						2022-09-20 23:25:35 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							75a58b435d 
							
						 
					 
					
						
						
							
							reject anon ftp if anon has no read/write  
						
						
						
					 
					
						2022-09-20 21:40:21 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f5474d34ac 
							
						 
					 
					
						
						
							
							embed licenses  
						
						
						
					 
					
						2022-09-20 20:11:38 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c962d2544f 
							
						 
					 
					
						
						
							
							ux  
						
						
						
					 
					
						2022-09-20 20:07:02 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0b87a4a810 
							
						 
					 
					
						
						
							
							allow setting lifetimes from up2k ui  
						
						
						
					 
					
						2022-09-19 23:49:07 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1882afb8b6 
							
						 
					 
					
						
						
							
							whoops  
						
						
						
					 
					
						2022-09-19 02:10:14 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2270c8737a 
							
						 
					 
					
						
						
							
							and audio seekpoints got floored to ints  
						
						
						
					 
					
						2022-09-19 01:30:59 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d6794955a4 
							
						 
					 
					
						
						
							
							playback position covered up the waveform  
						
						
						
					 
					
						2022-09-19 01:23:40 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f5520f45ef 
							
						 
					 
					
						
						
							
							add pyinstaller  
						
						
						
					 
					
						2022-09-19 00:59:54 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							9401b5ae13 
							
						 
					 
					
						
						
							
							add filetype detection for nameless uploads  
						
						
						
					 
					
						2022-09-18 17:30:57 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							df64a62a03 
							
						 
					 
					
						
						
							
							patch popen on windows-python <3.8  
						
						
						
					 
					
						2022-09-18 15:09:41 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							09cea66aa8 
							
						 
					 
					
						
						
							
							add ability to set lifetime per-file during upload  
						
						
						
					 
					
						2022-09-18 13:12:38 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							13cc33e0a5 
							
						 
					 
					
						
						
							
							support random filenames in bup too  
						
						
						
					 
					
						2022-09-18 01:03:38 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							ab36c8c9de 
							
						 
					 
					
						
						
							
							fix tests  
						
						
						
					 
					
						2022-09-18 00:16:40 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							f85d4ce82f 
							
						 
					 
					
						
						
							
							support alpine's ffmpeg  
						
						
						
					 
					
						2022-09-17 23:56:32 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6bec4c28ba 
							
						 
					 
					
						
						
							
							add waveform seekbar  
						
						
						
					 
					
						2022-09-17 23:40:37 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fad1449259 
							
						 
					 
					
						
						
							
							drop the redundant request for folders on navigation  
						
						
						
					 
					
						2022-09-17 21:39:44 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							86b3b57137 
							
						 
					 
					
						
						
							
							smaller optimizations  
						
						
						
					 
					
						2022-09-17 20:39:08 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b235037dd3 
							
						 
					 
					
						
						
							
							5x faster rendering of huge tagsets  
						
						
						
					 
					
						2022-09-17 20:17:24 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							3108139d51 
							
						 
					 
					
						
						
							
							30% faster tags listing  
						
						
						
					 
					
						2022-09-17 19:36:42 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							2ae99ecfa0 
							
						 
					 
					
						
						
							
							new upload modifiers:  
						
						... 
						
						
						
						* terse upload responser
* randomize filenames 
						
					 
					
						2022-09-17 14:48:53 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e8ab53c270 
							
						 
					 
					
						
						
							
							fix read-only search positioning  
						
						
						
					 
					
						2022-09-17 13:45:41 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5e9bc1127d 
							
						 
					 
					
						
						
							
							fix windows symlink creation  
						
						
						
					 
					
						2022-09-17 13:27:54 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							415e61c3c9 
							
						 
					 
					
						
						
							
							prevent blanks from skipping ahead in the queue  
						
						
						
					 
					
						2022-09-16 23:51:55 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0dbeb010cf 
							
						 
					 
					
						
						
							
							fix symlinked filekeys  
						
						
						
					 
					
						2022-09-16 21:41:17 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							17c465bed7 
							
						 
					 
					
						
						
							
							lazyload big folders;  closes   #11  
						
						
						
					 
					
						2022-09-15 23:43:40 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							add04478e5 
							
						 
					 
					
						
						
							
							multiprocessing: fix listening-socket config  
						
						
						
					 
					
						2022-09-15 22:25:11 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							6db72d7166 
							
						 
					 
					
						
						
							
							optimizations / cleanup  
						
						
						
					 
					
						2022-09-15 01:18:19 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							868103a9c5 
							
						 
					 
					
						
						
							
							more flexible --stackmon  
						
						
						
					 
					
						2022-09-14 02:06:34 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0f37718671 
							
						 
					 
					
						
						
							
							improve error messages  
						
						
						
					 
					
						2022-09-14 01:56:16 +02:00 
						 
				 
			
				
					
						
							
							
								icxes 
							
						 
					 
					
						
						
						
						
							
						
						
							fa1445df86 
							
						 
					 
					
						
						
							
							align grid items to left if there's not enough to fill a row  
						
						
						
					 
					
						2022-09-12 00:58:54 +02:00 
						 
				 
			
				
					
						
							
							
								icxes 
							
						 
					 
					
						
						
						
						
							
						
						
							a783e7071e 
							
						 
					 
					
						
						
							
							add small margin to grid  
						
						
						
					 
					
						2022-09-12 00:58:54 +02:00 
						 
				 
			
				
					
						
							
							
								icxes 
							
						 
					 
					
						
						
						
						
							
						
						
							a9919df5af 
							
						 
					 
					
						
						
							
							change justify-content depending on whether sidebar is open  
						
						
						
					 
					
						2022-09-12 00:58:54 +02:00 
						 
				 
			
				
					
						
							
							
								icxes 
							
						 
					 
					
						
						
						
						
							
						
						
							b0af31ac35 
							
						 
					 
					
						
						
							
							fix indentation?  
						
						
						
					 
					
						2022-09-12 00:58:54 +02:00 
						 
				 
			
				
					
						
							
							
								icxes 
							
						 
					 
					
						
						
						
						
							
						
						
							c4c964a685 
							
						 
					 
					
						
						
							
							simplify style and make gaps equal size  
						
						
						
					 
					
						2022-09-12 00:58:54 +02:00 
						 
				 
			
				
					
						
							
							
								icxes 
							
						 
					 
					
						
						
						
						
							
						
						
							348ec71398 
							
						 
					 
					
						
						
							
							make grid items scale properly at different zoom levels  
						
						
						
					 
					
						2022-09-12 00:58:54 +02:00 
						 
				 
			
				
					
						
							
							
								exci 
							
						 
					 
					
						
						
						
						
							
						
						
							a257ccc8b3 
							
						 
					 
					
						
						
							
							try using grids for the.. grids  
						
						
						
					 
					
						2022-09-12 00:58:54 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fcc4296040 
							
						 
					 
					
						
						
							
							mention the upcoming bugfix in chrome  
						
						
						
					 
					
						2022-09-11 22:31:36 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1684d05d49 
							
						 
					 
					
						
						
							
							dont crash chrome with too many unique SVGs  
						
						
						
					 
					
						2022-09-11 11:47:26 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0006f933a2 
							
						 
					 
					
						
						
							
							hmac uploader-ip when avoiding filename collisions  
						
						
						
					 
					
						2022-09-11 08:27:45 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0484f97c9c 
							
						 
					 
					
						
						
							
							stop writing upload-summary textfiles,  
						
						... 
						
						
						
						can be reenabled with --write-uplog 
						
					 
					
						2022-09-10 22:07:10 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e430b2567a 
							
						 
					 
					
						
						
							
							add pyoxidizer (windows-only)  
						
						
						
					 
					
						2022-09-10 17:33:04 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fbc8ee15da 
							
						 
					 
					
						
						
							
							make firefox stop complaining  
						
						
						
					 
					
						2022-09-08 19:22:51 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							68a9c05947 
							
						 
					 
					
						
						
							
							load eq ui early  
						
						
						
					 
					
						2022-09-08 18:47:30 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							0a81aba899 
							
						 
					 
					
						
						
							
							fix wrong ETA after failed handshakes +  
						
						... 
						
						
						
						tooltip-hint positioning on bottom-most elements 
						
					 
					
						2022-09-07 23:34:43 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d2ae822e15 
							
						 
					 
					
						
						
							
							more socket cleanup fiddling  
						
						
						
					 
					
						2022-09-07 23:06:12 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							fac4b08526 
							
						 
					 
					
						
						
							
							firefox may forget FDs during upload; warn about it  
						
						
						
					 
					
						2022-09-07 23:03:48 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							3a7b43c663 
							
						 
					 
					
						
						
							
							dodge firefox race (thx exci)  
						
						
						
					 
					
						2022-09-07 21:27:36 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8fcb2d1554 
							
						 
					 
					
						
						
							
							defer actx until needed (audioplayer, uploads) and  
						
						... 
						
						
						
						try to be less reliant on the actx speedhack for upload performance 
						
					 
					
						2022-09-07 21:08:09 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							590c763659 
							
						 
					 
					
						
						
							
							add unforgetti beam  
						
						
						
					 
					
						2022-09-07 08:09:32 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							11d1267f8c 
							
						 
					 
					
						
						
							
							option to keep files in index when deleted  
						
						
						
					 
					
						2022-09-07 01:07:21 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8f5bae95ce 
							
						 
					 
					
						
						
							
							fix visual glitches in upload ui  
						
						
						
					 
					
						2022-09-07 00:38:19 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							e6b12ef14c 
							
						 
					 
					
						
						
							
							hide warnings when they are remedied  
						
						
						
					 
					
						2022-09-07 00:29:26 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b65674618b 
							
						 
					 
					
						
						
							
							fix ui bug on upload-queues >= 1 TiB large  
						
						
						
					 
					
						2022-09-06 23:24:58 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							635ab25013 
							
						 
					 
					
						
						
							
							up2k.js: defer worker startup until needed  
						
						
						
					 
					
						2022-09-05 00:55:52 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							995cd10df8 
							
						 
					 
					
						
						
							
							bump timeouts for zfs / bursty filesystems  
						
						
						
					 
					
						2022-09-04 21:21:54 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							50f3820a6d 
							
						 
					 
					
						
						
							
							downgrade severity of some transient errors  
						
						
						
					 
					
						2022-09-04 12:53:49 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							788db47b95 
							
						 
					 
					
						
						
							
							option to let mtp's keep stdout/stderr  
						
						
						
					 
					
						2022-09-04 01:42:28 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							799cf27c5d 
							
						 
					 
					
						
						
							
							restore .bin-suffix for nameless PUT/POSTs  
						
						... 
						
						
						
						disappeared in v1.0.11 
						
					 
					
						2022-09-03 19:59:59 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							c930d8f773 
							
						 
					 
					
						
						
							
							add mtp debug mode  
						
						
						
					 
					
						2022-09-03 19:58:10 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							bc6234e032 
							
						 
					 
					
						
						
							
							parallel socket shutdown  
						
						
						
					 
					
						2022-08-31 08:38:34 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							558bfa4e1e 
							
						 
					 
					
						
						
							
							siocoutq-based shutdown  
						
						
						
					 
					
						2022-08-31 01:16:09 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							5d19f23372 
							
						 
					 
					
						
						
							
							accurate num.cores detection  
						
						
						
					 
					
						2022-08-29 19:24:48 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							27f08cdbfa 
							
						 
					 
					
						
						
							
							better isNaN + fade + fix preload seek:  
						
						... 
						
						
						
						* use Number.isFinite or shim it, rejecting strings
* fade-in/out was too quick on volumes < 100%
* fades (especially -out) was too slow on chrome
* seek to start if playing into the previously played file
* and let π raise if it wants to 
						
					 
					
						2022-08-29 19:23:23 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							49470c05fa 
							
						 
					 
					
						
						
							
							well that was dumb  
						
						
						
					 
					
						2022-08-23 00:03:04 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							500e3157b9 
							
						 
					 
					
						
						
							
							v1.3.16  
						
						
						
					 
					
						2022-08-18 19:24:06 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							eba86b1d23 
							
						 
					 
					
						
						
							
							default-disable mt on https-desktop-chrome  
						
						
						
					 
					
						2022-08-18 19:01:33 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							b69a563fc2 
							
						 
					 
					
						
						
							
							gc massage  
						
						
						
					 
					
						2022-08-18 18:03:33 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							a900c36395 
							
						 
					 
					
						
						
							
							v1.3.15  
						
						
						
					 
					
						2022-08-18 01:02:19 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							1d9b324d3e 
							
						 
					 
					
						
						
							
							explain w/a wasm leaks in workers (chrome bug)  
						
						
						
					 
					
						2022-08-18 01:02:06 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							539e7b8efe 
							
						 
					 
					
						
						
							
							help chrome gc by reusing one filereader  
						
						
						
					 
					
						2022-08-18 00:05:32 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7000123a8b 
							
						 
					 
					
						
						
							
							v1.3.14  
						
						
						
					 
					
						2022-08-15 20:25:31 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							d48a7d2398 
							
						 
					 
					
						
						
							
							provide tagparsers with uploader info  
						
						
						
					 
					
						2022-08-15 20:23:17 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							389a00ce59 
							
						 
					 
					
						
						
							
							v1.3.13  
						
						
						
					 
					
						2022-08-15 19:11:21 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							7a460de3c2 
							
						 
					 
					
						
						
							
							windows db fix  
						
						
						
					 
					
						2022-08-15 18:01:28 +02:00 
						 
				 
			
				
					
						
							
							
								ed 
							
						 
					 
					
						
						
						
						
							
						
						
							8ea1f4a751 
							
						 
					 
					
						
						
							
							idx multimedia format/container type  
						
						
						
					 
					
						2022-08-15 17:56:13 +02:00