From 0da21513f5aae0b0c855cb48f003c0fa4c8dac8c Mon Sep 17 00:00:00 2001 From: daniel-j Date: Thu, 5 Mar 2020 14:52:32 +0100 Subject: [PATCH] more description --- upload.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upload.html b/upload.html index 31ba498..72d90d2 100644 --- a/upload.html +++ b/upload.html @@ -23,7 +23,7 @@

Go this this page on your Kobo/Kindle ereader and you see a unique key. Enter it in this form and upload an ebook and it will appear as a download link on the ereader.

-

If you send an EPUB to to a Kindle it will be converted to MOBI with KindleGen. If you send a MOBI file it will be sent unprocessed. If you send an EPUB and check the Kepubify option it will be converted into a Kobo EPUB using Kepubify.

+

If you send an EPUB to to a Kindle it will be converted to MOBI with KindleGen. If you send a MOBI file it will be sent unprocessed. If you send an EPUB file and tick the Kepubify checkbox it will be converted into a Kobo EPUB using Kepubify. If you send a MOBI file to a Kobo device, it will not be converted.

Your ebook will be stored on the server as long as your Kobo/Kindle is viewing the unique key and is connected to wifi. It will be deleted irrevocably when the key expires about 30 seconds after you close the browser, generate a new key or disable wifi on your ereader.

By using this tool you agree that the ebook you upload is processed on the server and stored for a short time.

@@ -83,7 +83,7 @@ function fileinputChange () { fileinfo.textContent = '' return } - fileinfo.textContent = parseInt(fileinput.files[0].size / 1024, 10) + ' kB' + fileinfo.textContent = Math.ceil(fileinput.files[0].size / 1024) + ' kB' } fileinput.addEventListener('change', fileinputChange, false) fileinputChange()