Frans de Jonge

Results 1915 comments of Frans de Jonge

You probably have to enable USB debugging. It might be hidden in some developer options settings which doesn't show up unless you tap a few times on the Android version...

@vractal Also see #3073 (to prevent regressions).

While I don't want to invite AI slop, it may be worth noting for someone with more time to refine things that copy pasting "Is it possible to have the...

Important context from Gitter: > Just did a fresh build with applied kobov5 patches. Same issue. ☹️ 'cause otherwise the first question on everyone's mind is if you're actually talking...

It still doesn't support deletion afaik.

0 is obviously correct imho, as succinctly illustrated in https://github.com/koreader/koreader/issues/12223#issuecomment-2254145119

Probably also needs a http://koreader.rocks/doc/modules/util.html#getSafeFilename https://github.com/koreader/koreader/blob/64b0f5e7cf21fcb6fb3bec471a304120f28f5ca2/frontend/apps/cloudstorage/ftp.lua#L25

That was just an indication of what might need to happen to someone who's more familiar with the Ftp functionality I'm afraid.

Something in this general direction might do the trick. See https://w3.impa.br/~diego/software/luasocket/url.html#escape ```diff diff --git a/frontend/apps/cloudstorage/ftpapi.lua b/frontend/apps/cloudstorage/ftpapi.lua index 85cac3326..b5e036c2a 100644 --- a/frontend/apps/cloudstorage/ftpapi.lua +++ b/frontend/apps/cloudstorage/ftpapi.lua @@ -17,7 +17,7 @@ function FtpApi:generateUrl(address, user,...

```lua -- load url module url = require("socket.url") code = url.escape("/#?;") -- code = "%2f%23%3f%3b" ```