Add tests for thumbnail:* events.
Show build output
Try adding a non image file?
fixes
Add -b flags to local acceptance tests
fix hanging thumbnail test
Add a corrupt image
revoke
Require passing integration tests
extended debugging?
Try more browser versions
it helps to pick a browser that's available
sort stuff in .travis.yml and add whitespace for easier navigation
[REVERT BEFORE MERGE] only run acceptance tests on this pr
make sure lerna publishes stuff to local
do git tag version during integration test
update lerna
fix install / bootstrap execution order
?
--no-ci
dont do npm ls because it errors with lerna
set a git branch name
blehbleh
ughhhhhhhhhhhh
onerror?
no onerror i guess
onerror 2
Revert "onerror 2"
This reverts commit 64d88551fa1cd337b27e25d16a604dd781a15b43.
onerror 3
more debug data
disable browsers that work
fix syntax for older browsers
thumbnails suite
check different edge versions
abc
use addeventlistener for error, which is different from onerror
no clue
skip thumb test in edge or whatever
Re enable other browsers.
re enable tasks
fix edge skip
this one was intentionally disabled
Remove debug leftovers
edge → supportschoosefile
:ready → :all-generated
> I think we need to do: require('resize-observer-polyfill').default || require('resize-observer-polyfill'), to support both the transpiled version of its ES module format and its CommonJS format. A bit like we did here (although for a different related reason): 4684a3e1f3/packages/%40uppy/form/src/index.js (L3-L5)
in case we need to manually close Dashboard panels, we now have a `this.parent` propety on Plugins, which means we can do `this.uppy.getPlugin(this.parent)` instead of `this.uppy.getPlugin('Dashboard')` — no need to know plugin id, see https://github.com/transloadit/uppy/issues/1057
I believe this was removed because we were doing `addFile` right away when it was selected in `Providers`, which is not the case now, so safe to close Dashboard panels when a file is added.
Called when plugin is mounted, whether in DOM or into another plugin. Needed because sometimes plugins are mounted separately/after `install`, so this.el and this.parent might not be available in `install`. This is the case with @uppy/react plugins, for example.
Shows up in the informer and in the console when trying to upload a file
from a remote source. Kinda sucks that you have to actually do it, but
this is the easiest place to implement it…else we have to look at other
plugins' private options and hope that users are adding the plugins in
an order that makes that possible.
* Some uppy server -> companion renames
* Fix typos
* Implement most of @goto-bus-stop's feedback
* Nuke Create React App readme
* An Companion -> A Companion
* Companion server -> instance
There is not much benefit to this (except saving a few HTTP requests)
but if we do this we'll see if anyone's firewalls are blocking WS or
something. Then one day in the future we can switch to plain WebSockets
instead of socket.io to shed 20KB once the Transloadit backend supports
it.
Previously, cancelling an upload would not reset all upload-related
objects used by the S3 Multipart plugin. With this patch, cancellation
behaves similarly to files being removed (they are conceptually similar).
If we can't determine the file type, use the generic
'application/octet-stream' type. This way `file.type` will always be
defined and uploaders don't have to worry about it being `null` or
whatever.