From fa9dbe929bb9fb445ad68e28f32c224f6278c9ac Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Wed, 10 Aug 2022 15:34:10 +0700 Subject: [PATCH 1/2] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e1e610d344..d7ade6a786 100644 --- a/README.md +++ b/README.md @@ -194,7 +194,8 @@ bundle, so no need to include anything additionally: Having no JavaScript beats having a lot of it, so that’s a fair question! Running an uploading & encoding business for ten years though we found that in cases, the file input leaves some to be desired: * We received complaints about broken uploads and found that resumable uploads are important, especially for big files and to be inclusive towards people on poorer connections (we also launched [tus.io](https://tus.io) to attack that problem). Uppy uploads can survive network outages and browser crashes or accidental navigate-aways. -* Uppy supports editing meta information before uploading (such as cropping of images). +* Uppy supports editing meta information before uploading +* Uppy allows cropping images before uploading * There’s the situation where people are using their mobile devices and want to upload on the go, but they have their picture on Instagram, files in Dropbox or a plain file URL from anywhere on the open web. Uppy allows to pick files from those and push it to the destination without downloading it to your mobile device first. * Accurate upload progress reporting is an issue on many platforms. * Some file validation — size, type, number of files — can be done on the client with Uppy. From e6ec2e50083c76553bd862bfedd29a75c4817af4 Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Wed, 10 Aug 2022 15:35:25 +0700 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d7ade6a786..55fa4238b7 100644 --- a/README.md +++ b/README.md @@ -194,8 +194,8 @@ bundle, so no need to include anything additionally: Having no JavaScript beats having a lot of it, so that’s a fair question! Running an uploading & encoding business for ten years though we found that in cases, the file input leaves some to be desired: * We received complaints about broken uploads and found that resumable uploads are important, especially for big files and to be inclusive towards people on poorer connections (we also launched [tus.io](https://tus.io) to attack that problem). Uppy uploads can survive network outages and browser crashes or accidental navigate-aways. -* Uppy supports editing meta information before uploading -* Uppy allows cropping images before uploading +* Uppy supports editing meta information before uploading. +* Uppy allows cropping images before uploading. * There’s the situation where people are using their mobile devices and want to upload on the go, but they have their picture on Instagram, files in Dropbox or a plain file URL from anywhere on the open web. Uppy allows to pick files from those and push it to the destination without downloading it to your mobile device first. * Accurate upload progress reporting is an issue on many platforms. * Some file validation — size, type, number of files — can be done on the client with Uppy.