uppy
Version:
Almost as cute as a Puppy :dog:
639 lines (551 loc) • 47.5 kB
Markdown
Our combined changelog and roadmap. It contains todos as well as dones.
Items can be optionally be tagged tagged by GitHub owner issue if discussion
happened / is needed.
Please add your entries in this format:
- `- [ ] (<plugin name>|website|core|meta|build|test): <Present tense verb> <subject> \(<list of associated owners/gh-issues>\)`.
Following [SemVer spec item 4](http://semver.org/#spec-item-4),
we're `<1.0.0` and allowing ourselves to make breaking changes in minor
and patch levels.
In the current stage we aim to release a new version on the
last Friday of every new month.
## Backlog
Ideas that will be planned and find their way into a release at one point
- [ ] build: investigate Rollup someday, for tree-shaking and smaller dist https://github.com/substack/node-browserify/issues/1379#issuecomment-183383199, https://github.com/nolanlawson/rollupify, https://github.com/nolanlawson/rollup-comparison
- [ ] core: Decouple rendering from Plugins and try to make Uppy work with React (add basic example) to remain aware of possible issues (), look at https://github.com/akiran/react-slick, https://github.com/nosir/cleave.js
- [ ] core: Have base styles, be explicit about fonts, etc
- [ ] core: Make sure Uppy works well in VR
- [ ] test: Human should check http://www.webpagetest.org and https://developers.google.com/web/tools/lighthouse/, use it sometimes to test website and Uppy. Will show response/loading times and other issues
- [ ] test: Human should test with real screen reader to identify accessibility problems
- [ ] test: Make Edge and Safari work via the tunnel so we can test localhost instead of uppy.io, and test the current build, vs the previous deploy that way
- [ ] test: setup an HTML page with all sorts of crazy styles, resets & bootstrap to see what brakes Uppy ()
- [ ] dependencies: es6-promise --> lie https://github.com/calvinmetcalf/lie ?
- [ ] core: accessibility research: https://chrome.google.com/webstore/detail/accessibility-developer-t/fpkknkljclfencbdbgkenhalefipecmb, http://khan.github.io/tota11y/
- [ ] core: see if it’s possible to add webworkers for thumbnail generation (, -bus-stop)
- [ ] website: Would one really connect a own google drive or dropbox for testing purpose? => maybe one can give something like a testing account of google drive and dropbox to try uppy
- [ ] ui: do we want https://github.com/kazzkiq/balloon.css ?
- [ ] core: consider adding presets, see https://github.com/cssinjs/jss-preset-default/blob/master/src/index.js (@arturi)
- [ ] uppy/uppy-server: Transfer files between providers (from instagram to Google drive for example).
- [ ] uppy/uppy-server: review websocket connection and throttling progress events (, )
- [ ] uploaders: consider not showing progress updates from the server after an upload’s been paused (, )
- [ ] image cropping on the client (#151)
- [ ] maybe restrict system file picking dialog too https://github.com/transloadit/uppy/issues/253
- [ ] uppy-server: what happens if access token expires amid an upload/download process.
- [ ] good way to change plugin options at runtime—maybe `this.state.options`?
- [ ] s3: multipart/"resumable" uploads for large files (-bus-stop)
- [ ] uppy-server/s3: make s3 endpoint more configurable (-bus-stop)
- [ ] DnD Bar: drag and drop + statusbar or progressbar ? ()
- [ ] possibility to work on already uploaded / in progress files #112, #113
- [ ] possibility to edit/delete more than one file at once #118, #97
- [ ] optimize problematic filenames #72
- [ ] an uploader plugin to receive files in a callback instead of uploading them
- [ ] consider iframe / more security for Transloadit/Uppy integration widget
- [ ] statusbar: add option to always show
## 1.0 Goals
What we need to do to release Uppy 1.0
- [x] feature: restrictions: by size, number of files, file type
- [x] feature: beta file recovering after closed tab / browser crash
- [ ] feature: improved UI for Provider, Google Drive and Instagram, grid/list views
- [x] feature: finish the direct-to-s3 upload plugin and test it with the flow to then upload to :transloadit: afterwards. This is because this might influence the inner flow of the plugin architecture quite a bit
- [ ] feature: Uppy should work well with React/Redux and React Native
- [ ] feature: preset for Transloadit that mimics jQuery SDK
- [ ] QA: tests for everything
- [ ] QA: test how everything works together: user experience from `npm install` to production build with Webpack, using in React/Redux environment (npm pack)
- [ ] QA: test uppy server. benchmarks / stress test. multiple connections, different setups, large files. add metrics to Librato
- [ ] uppy-server: add uppy-server to main API service to scale it horizontally. for the standalone server, we could write the script to support multiple clusters. Not sure how required or neccessary this may be for Transloadit's API service.
- [ ] QA: test in multiple browsers and mobile devices, fix bugs
- [ ] QA: test with real screen reader to identify accessibility problems
- [ ] ui: refine UI, neat things up (if that’s even a word)
- [ ] refactoring: reduce size where possible, like, socket.io --> websockets (saves 20KB)
- [ ] refactoring: possibly add CSS-in-JS
- [ ] refactoring: possibly switch from Yo-Yo to Preact, because it’s more stable, solves a few issues we are struggling with (onload being weird/hard/modern-browsers-only with bel; no way to pass refs to elements; extra network requests with base64 urls) and mature, “new standard”, larger community
- [ ] refactoring: possibly differentiate UI plugins from logic plugins, so that, say uploading plugins don’t include rendering stuff
- [ ] refactoring: webcam plugin
- [ ] refactoring: clean up code everywhere
- [ ] docs: on using plugins, all options, list of plugins, i18n
- [ ] uppy-server: better error handling, general cleanup (remove unused code. etc)
- [ ] uppy-server: security audit
- [ ] uppy-server: storing tokens in user’s browser only
- [ ] consider iframe / more security for Transloadit/Uppy integration widget and Uppy itself. Page can’t get files from Google Drive if its an iframe; possibility for folder restriction for provider plugins
## 0.21.0
To be released: 2017-10-27
- [ ] webcam: look into simplifying / improving webcam plugin, only showing the tab when webcam is available (, -bus-stop)
- [ ] provider: improve UI, add icons for file types? ()
- [ ] core: css-in-js, while keeping non-random classnames (ideally prefixed) and useful preprocessor features. also see simple https://github.com/codemirror/CodeMirror/blob/master/lib/codemirror.css (@arturi, @goto-bus-stop)
- [ ] core: research !important styles to be immune to any environment/page. Maybe use smth like `postcss-safe-important`. Or increase specificity (with .Uppy) ()
- [ ] test: add https://github.com/pa11y/pa11y for automated accessibility testing (@arturi)
- [ ] test: add tests for `npm install uppy` and running in different browsers, the real world use case ()
- [ ] core: allow setting custom `id` for plugins: https://github.com/transloadit/uppy/pull/328#issuecomment-328242214 (@arturi)
- [ ] core: move `setPluginState` to Plugin class ? (-bus-stop)
- [ ] add `FormEncapsulator`: a plugin that is used in conjunction with any other acquirer, responsible for injecting any result (like from Transloadit plugin) back into the form (jquery-sdk includes the whole Assembly Status JSON in a hidden field i think)
- [ ] dashboard: allow minimizing the Dashboard during upload (Uppy then becomes just a tiny progress indicator) ()
- [ ] goldenretriver: Ability to clear upload history or set expiry date (#324 / )
# next
## 0.20.0
To be released: 2017-09-29.
Theme: React and Retry
- [ ] core: Redux PR (#216, #338 / , -bus-stop, )
- [ ] dashboard: cancel button for any kind of uploads? currently resume/pause only for tus, and cancel for XHR (, -bus-stop)
- [ ] core: retry or show error when upload can’t start / fails (offline, wrong endpoint) — now it just sits there; add error in file progress state, UI, question mark button (#307 / )
- [ ] core: improve and merge the React PR (#170 / -bus-stop, )
- [ ] goldenretriver: add “ghost” files ()
- [ ] uploaders: upload resolution changes, followup to #323 (#347 / -bus-stop)
- [ ] uploaders: issue warning when no uploading plugins are used
- [ ] core: refactor `uppy-base`
- [x] core: fix `replaceTargetContent` and add tests for `Plugin` (#354 / )
## 0.19.1
Released: 2017-09-20.
- [x] goldenretriver: fix restorefiles with id (#351 / )
- [x] goldenretriver: Clean up blobs that are not related to a file in state (#349 / -bus-stop)
- [x] core: set the newState before emiting `core:state-update` (#341 / -shrestha, )
- [x] docs: Document StatusBar plugin (#350 / -bus-stop)
## 0.19.0
Released: 2017-09-15.
Theme: Tests and better APIs
- [x] goldenretriver: allow passing options to `IndexedDbStore` (#339 / sunil-shrestha)
- [x] core: add Uppy instance ID option, namespace serviceWorker action types, add example using multiple Uppy instances with GoldenRetriver (#333 / -bus-stop)
- [x] core: fix `calculateTotalProgress` - NaN (#342 / )
- [x] core: fix and refactor restrictions (#345 / )
- [x] core: Better `generateFileID` (#330 / )
- [x] core: improve `isOnline()` (#319 / )
- [x] core: remove unused bootstrap styles (#329 / )
- [x] core: experiment with yo-yo --> preact and picodom (#297 / )
- [x] dashboard: fix FileItem source icon position and copy ()
- [x] dashboard: expose and document the show/hide/isOpen API ()
- [x] dashboard: allow multiple `triggers` of the same class `.open-uppy` (#328 / )
- [x] plugins: add `aria-hidden` to all SVG icons for accessibility (#4e808ca3d26f06499c58bb77abbf1c3c2b510b4d / )
- [x] core: Handle sync returns and throws in possibly-async function options (#315 / -bus-stop)
- [x] core: switch to Jest tests, add more tests for Core and Utils (#310 / )
- [x] website: Minify bundle for `disc` (#332 / -bus-stop)
- [x] transloadit: remove `this.state` getter (#331 / -bus-stop)
- [x] server: option to define valid upload urls ()
- [x] server: more automated tests ()
## 0.18.1
Released: 2017-09-05.
Note: this version was released as a `` npm tag to unblock some users.
- [x] core: gradually resize image previews #275 (-bus-stop)
- [x] informer: support “explanations”, a (?) button that shows more info on hover / click (#292 / )
- [x] fix webcam video recording (-bus-stop)
- [x] bundle: add missing plugins (s3, statusbar, restoreFiles) to unpkg bundle (#301 / -bus-stop)
- [x] xhrupload: Use error messages from the endpoint (#305 / -bus-stop)
- [x] dashboard: prevent submitting outer form when pressing enter key while editing metadata (#306 / -bus-stop)
- [x] dashboard: save metadata edits when pressing enter key (#308 / )
- [x] transloadit: upload to S3, then import into :tl: assembly using `/add_file?s3url=${url}` (#280 / -bus-stop)
- [x] transloadit: add `alwaysRunAssembly` option to run assemblies when no files are uploaded (#290 / -bus-stop)
- [x] core: use `iteratePlugins` inside `updateAll` (#312 / )
- [x] core: improve error when plugin does not have ID (#309 / )
- [x] tus: Clear stored `uploadUrl` on `uppy.resetProgress()` call (#314 / -bus-stop)
- [x] website: simplify examples and code samples, prevent sidebar subheading links anywhere but in docs ()
- [x] website: group plugin docs together in the sidebar ()
## 0.18.0
Released: 2017-08-15.
Theme: Dogumentation and The Golden Retriver.
- [x] goldenretriver: use Service Woker first, then IndexedDB, add file limits for IndexedDB, figure out what restores from where, add throttling for localStorage state sync (-bus-stop )
- [x] dashboard: flag to hide the upload button, for cases when you want to manually stat the upload ()
- [x] dashboard: place close btn inside the Dashboard, don’t close on click outside, place source icon near the file size ()
- [x] core: informer becomes a core API, `uppy.info('Smile! 📸', 'warning', 5000)` so its more concise with `uppy.log('my msg')` and supports different UI implementations (, #271)
- [x] docs: first stage — on using plugins, all options, list of plugins, i18n, uppy-server (, -bus-stop, )
- [x] provider: file size sorting ()
- [x] provider: show loading screen when checking auth too ()
- [x] uploaders: add direct-to-s3 upload plugin (-bus-stop)
- [x] core: ability to re-upload all files, even `uploadComplete` ones, reset progress ()
- [x] goldenretriver: recover selected or in progress files after a browser crash or closed tab: alpha-version, add LocalStorage, Service Worker and IndexedDB ( -bus-stop #268)
- [x] xhrupload: add XHRUpload a more flexible successor to Multipart, so that S3 plugin can depend on it (-bus-stop #242)
- [x] core: add getFile method (-bus-stop, #263)
- [x] provider: use informer to display errors ()
- [x] provider: flatten instagram carousels #234 ()
- [x] server: add uppy-server url as `i-am` header ()
- [x] server: disable socket channel from restarting an already completed file download ()
- [x] server: make uppy client whitelisting optional. You may use wildcard instead ()
- [x] server: master oauth redirect uri for multiple uppy-server instances
- [x] server: options support for redis session storage on standalone server ()
- [x] server: start uppy-server as binary `uppy-server` ()
- [x] server: store downloaded files based on uuids ()
- [x] server: store upload state on redis ()
- [x] server: use uppy informer for server errors (, #272)
- [x] server: whitelist multiple uppy clients ()
- [x] transloadit: emit an event when an assembly is created (-bus-stop / #244)
- [x] transloadit: function option for file-dependent `params` (-bus-stop / #250)
- [x] tus: Save upload URL early on (-bus-stop #261)
- [x] tus: return immediately if no files are selected (-bus-stop #245)
- [x] uppy-server: add uppy-server metrics to Librato ( )
- [x] webcam: add 1, 2, 3, smile! to webcam, onBeforeSnapshothook (, #187, #248)
- [x] website: live example on the homepage, “try me” button, improve /examples ()
## 0.17.0
Released: 2017-07-02
- [x] core: restrictions — by file type, size, number of files ()
- [x] provider: improve UI: improve overall look, breadcrumbs, more responsive ()
- [x] core: css-in-js demos, try template-css ( -bus-stop #239)
- [x] core: add `uppy.reset()` as discussed in #179 ()
- [x] core: add nanoraf https://github.com/yoshuawuyts/choo/pull/135/files?diff=unified (@goto-bus-stop, @arturi)
- [x] core: file type detection: archives, markdown (possible modules: file-type, identify-filetype) example: http://requirebin.com/?gist=f9bea9602030f1320a227cf7f140c45f, http://stackoverflow.com/a/29672957 (@arturi)
- [x] dashboard: make file icons prettier: https://uppy.io/images/blog/0.16/service-logos.png (@arturi, @nqst / #215)
- [x] fileinput: allow retriving fields/options from form ( #153)
- [x] server: configurable server port ()
- [x] server: support for custom providers ()
- [x] statusbar: also show major errors, add “error” state (-bus-stop)
- [x] statusbar: pre/postprocessing status updates in the StatusBar (-bus-stop, #202)
- [x] statusbar: show status “Upload started...” when the remote upload has begun, but no progress events received yet ()
- [x] statusbar: work towards extracting StatusBar to a separate plugin, bundle that with Dashboard? (-bus-stop, )
- [x] tus/uppy-server: Support metadata in remote tus uploads (@ifedapoolarewaju, @goto-bus-stop / #210)
- [x] uploaders: add direct-to-s3 upload plugin and test it with the flow to then upload to transloadit, stage 1, WIP (-bus-stop)
- [x] uppy/uppy-server: Make a barely working Instagram Plugin (@ifedapoolarewaju / #21)
- [x] uppy/uppy-server: Make a barely working Instagram Plugin (@ifedapoolarewaju / #21)
- [x] uppy/uppy-server: allow google drive/dropbox non-tus (i.e multipart) remote uploads (, / #205)
- [x] uppy/uppy-server: some file types cannot be downloaded/uploaded on google drive (e.g google docs). How to handle that? ()
- [x] uppy: fix google drive uploads on mobile (double click issue) ()
## 0.16.2
Released: 2017-05-31.
- [x] core: update prettier-bytes to fix the IE support issue https://github.com/Flet/prettier-bytes/issues/3 (@arturi)
- [x] core: use URL.createObjectURL instead of resizing thumbnails (, -bus-stop / #199)
- [x] dashboard: Fix ETA when multiple files are being uploaded (-bus-stop, #197)
- [x] transloadit: Fix receiving assembly results that are not related to an input file (, -bus-stop / #201)
- [x] transloadit: Use the `tus_upload_url` to reliably link assembly results with their input files (-bus-stop / #207)
- [x] transloadit: move user-facing strings into locale option (-bus-stop / https://github.com/transloadit/uppy/commit/87a22e7ee37b6fa3754fa34868516a6700306b60)
- [x] webcam: Mute audio in realtime playback (-bus-stop / #196)
## 0.16.1
Released: 2017-05-13
- [x] temporarily downgrade yo-yoify, until shama/yo-yoify#45 is resolved (@arturi / https://github.com/transloadit/uppy/commit/6292b96)
## 0.16.0
Released: 2017-05-12.
Theme: Transloadit integration, getting things in order.
Favorite Uppy Server version: 0.5.0.
- [x] uploaders: make sure uploads retry/resume if started when offline or disconnected, retry when back online / failed https://github.com/transloadit/uppy/pull/135 (@arturi, @ifedapoolarewaju)
- [x] transloadit: add basic (beta) version of Transloadit plugin (-bus-stop, , -kos / #28)
- [x] transloadit: emit an upload event w/ tl data when a file upload is complete (#191 -bus-stop)
- [x] webcam: implement reading audio+video from Webcam (-bus-stop / #175)
- [x] webcam: Make the webcam video fill the available space as much as possible (-bus-stop / #190)
- [x] tus: Merge tus-js-client options with uppy-tus. Hence, enable custom headers support (-bus-stop)
- [x] multipart/tus: Remove Promise.all() calls with unused results (@goto-bus-stop / #121)
- [x] dashboard: fix Dashboard modal close button position (-bus-stop / #171)
- [x] core: pass through errors (-bus-stop / #185)
- [x] core: accept a DOM element in `target:` option (-bus-stop / #169)
- [x] core: Remove the last few potentially buggy uses of `document.querySelector` (-bus-stop)
- [x] dashboard: Fix dashboard width when multiple instances exist (-bus-stop / #184)
- [x] dashboard: add service logo / name to the selected file in file list ()
- [x] server: begin adding automated tests, maybe try https://facebook.github.io/jest (@ifedapoolarewaju)
- [x] server: add image preview / thumbnail for remote files, if its in the API of services ? ()
- [x] server: research parallelizing downloading/uploading remote files: start uploading chunks right away, while still storing the file on disk ()
- [x] server: delete file from local disk after upload is successful ()
- [x] website: try on a Github ribbon http://tholman.com/github-corners/ (@arturi / #150)
- [x] website: different meta description for pages and post ()
- [x] server: well documented README ()
- [x] react: [WIP] High-level React Components (-bus-stop / #170)
- [x] core: add `uppy.close()` for tearing down an Uppy instance (-bus-stop / #182)
- [x] core: replace `babel-preset-es2015-loose` by standard es2015 preset with `loose` option (-bus-stop / #174)
## 0.15.0
Released: 2017-03-02.
Theme: Speeding and cleaning.
Favorite Uppy Server version: 0.4.0.
- [x] build: update dependencies and eslint-plugin-standard, nodemon --> onchange, because simpler and better options ()
- [x] build: fix `Function.caller` issue in `lib` which gets published to NPM package, add babel-plugin-yo-yoify ( #158 #163)
- [x] provider: show error view for things like not being able to connect to uppy server should this be happening when uppy-server is unavailable http://i.imgur.com/cYJakc9.png (@arturi, @ifedapoolarewaju)
- [x] provider: loading indicator while the GoogleDrive / Dropbox files are loading (, )
- [x] provider: logout link/button? (, )
- [x] provider: fix breadcrumbs ()
- [x] server: refactor local/remote uploads in tus, allow for pause/resume with remote upload (, )
- [x] server: throttle progress updates sent through websockets, sometimes it can get overwhelming when uploads are fast ()
- [x] server: pass file size from Google Drive / Dropbox ? ()
- [x] server: return uploaded file urls (from Google Drive / Dropbox) ? ()
- [x] server: research having less permissions, smaller auth expiration time for security ()
- [x] dashboard: basic React component ()
- [x] core: experiment with `nanoraf` and `requestAnimationFrame` ()
- [x] core: add throttling of progress updates ()
- [x] dashobard: fix Missing `file.progress.bytesTotal` property ( #152)
- [x] dashboard: switch to prettier-bytes for more user-friendly progress updates ()
- [x] dashboard: fix `updateDashboardElWidth()` not firing in time, causing container width to be 0 ()
- [x] multipart: treat all 2xx responses as successful, return xhr object in `core:upload-success` ( #156 #154)
- [x] dashboard: throttle StatusBar numbers, so they update only once a second (, )
- [x] dashboard: add titles to pause/resume/cancel in StatusBar ()
- [x] dashboard: precise `circleLength` and `stroke-dasharray/stroke-dashoffset` calculation for progress circles on FileItem ()
- [x] dashboard: don’t show per-file detailed progress by default — too much noise ()
- [x] website: blog post and images cleanup ()
## 0.14.0
Released: January 27, 2017.
Theme: The new 13: Responsive Dashboard, Standalone & Pluggable Server, Dropbox.
Uppy Server version: 0.3.0.
- [x] dashboard: use `isWide` prop/class instead of media queries, so that compact/mobile version can be used in bigger screens too ()
- [x] dashboard: basic “list” view in addition to current “grid” view ()
- [x] dashboard: more icons for file types ()
- [x] dashboard: add totalSize and totalUploadedSize to StatusBar ()
- [x] dashboard: figure out where to place Informer, accounting for StatusBar — over the StatusBar for now ()
- [x] dashboard: add `<progress>` element for progressbar, like here https://overcast.fm/+BtuxMygVg/. Added hidden for now, for semantics/accessibility (@arturi)
- [x] dragdrop: show number of selected files, remove upload btn ()
- [x] build: exclude locales from build ()
- [x] core: i18n for each plugin in options — local instead of global ()
- [x] core: add default pluralization (can be overrinden in plugin options) to Translator ()
- [x] core: use yo-yoify to solve [Function.caller / strict mode issue](https://github.com/shama/bel#note) and make our app faster/smaller by transforming template strings into pure and fast document calls (@arturi)
- [x] server: a pluggable uppy-server (express / koa for now) ()
- [x] server: standalone uppy-server ()
- [x] server: Integrate dropbox plugin ()
- [x] server: smooth authentication: after auth you are back in your app where you left, no page reloads ()
- [x] tus: fix upload progress from uppy-server (, )
- [x] core: basic React component — DnD ()
- [x] core: fix support for both ES6 module import and CommonJS requires with `add-module-exports` babel plugin ()
## 0.13.0
To be released: December 23, 2016.
Theme: The release that wasn't 🎄.
## 0.12.0
Released: November 25, 2016.
Theme: Responsive. Cancel. Feedback. ES6 Server.
Uppy Server version: 0.2.0.
- [x] meta: write 0.12 release blog post ()
- [x] core: figure out import/require for core and plugins — just don’t use spread for plugins ()
- [x] meta: create a demo video, showcasing Uppy Dashboard for the main page, like https://zeit.co/blog/next (@arturi)
- [x] meta: update Readme, update screenshot ()
- [x] server: add pre-commit and lint-staged ()
- [x] server: re-do build setup: building at `deploy` and `prepublish` when typing `npm run release:patch` 0.0.1 -> 0.0.2 ()
- [x] server: re-do build setup: es6 `src` -> es5 `lib` (use plugin packs from Uppy)
- [x] server: re-do build setup: `eslint --fix ./src` via http://standardjs.com (@ifedapoolarewaju)
- [x] server: re-do build setup: `babel-node` or `babel-require` could do realtime transpiling for development (how does that hook in with e.g. `nodemon`?) ()
- [x] server: refacor: remove/reduce file redundancy ()
- [x] server: error handling: 404 and 401 error handler ()
- [x] server: bug fix: failing google drive ()
- [x] webcam: stop using the webcam (green light off) after the picture is taken / tab is hidden ()
- [x] core: allow usage without `new`, start renaming `Core()` to `Uppy()` in examples ()
- [x] core: api — consider Yosh’s feedback and proposals https://gist.github.com/yoshuawuyts/b5e5b3e7aacbee85a3e61b8a626709ab, come up with follow up questions (@arturi)
- [x] dashboard: local mode — no acquire plugins / external services, just DnD — ActionBrowseTagline ()
- [x] dashboard: only show pause/resume when tus is used ()
- [x] dashboard: cancel uploads button for multipart ()
- [x] dashboard: responsive design — stage 1 ()
- [x] meta: write 0.11 release blog post ()
## 0.11.0
Released: November 1, 2016. Releasemaster: Artur.
Theme: StatusBar and API docs.
- [x] core: log method should have an option to throw error in addition to just logging ()
- [x] experimental: PersistentState plugin that saves state to localStorage — useful for development ()
- [x] dashboard: implement new StatusBar with progress and pause/resume buttons https://github.com/transloadit/uppy/issues/96#issuecomment-249401532 ()
- [x] dashboard: attempt to throttle StatusBar, so it doesn’t re-render too often ()
- [x] dashboard: refactor — only load one acquire panel at a time (activeAcquirer or empty), change focus behavior, utilize onload/onunload
- [x] experimental: create a Dashboard UI for Redux refactor ()
- [x] dashboard: make trigger optional — not needed when rendering inline ()
- [x] fileinput: pretty input element #93 ()
- [x] meta: document current Uppy architecture and question about the future (, )
- [x] test: see about adding tests for autoProceed: true ()
- [x] website: and ability to toggle options in Dashboard example: inline/modal, autoProceed, which plugins are enabled #89 ()
- [x] website: finish https upgrade for uppy.io, uppy-server and tus, set up pingdom notifications (, , )
- [x] website: update guide, API docs and main page example to match current actual API ()
- [x] uppy-server: Make uppy server have dynamic controllers ()
## 0.10.0
Released: Septermber 23, 2016. Releasemaster: Artur.
Theme: Getting together.
- [x] core: expose some events/APIs/callbacks to the user: `onFileUploaded`, `onFileSelected`, `onAllUploaded`, `addFile` (or `parseFile`), open modal... (, )
- [x] core: how would Uppy work without the UI, if one wants to Uppy to just add files and upload, while rendering preview and UI by themselves #116 — discussion Part 1 (, )
- [x] core: refactor towards react compatibility as discussed in https://github.com/transloadit/uppy/issues/110 (@hedgerh)
- [x] core: CSS modules? allow bundling of CSS in JS for simple use in NPM? See #120#issuecomment-242455042, try https://github.com/rtsao/csjs — verdict: not yet, try again later (@arturi, @hedgerh)
- [x] core: try Web Workers and FileReaderSync for image resizing again — still slow, probably message payload between webworker and regular thread is huge ()
- [x] core: i18n strings should extend default en_US dictionary — if a certain string in not available in German, English should be displayed ()
- [x] dashboard: refactor to smaller components, pass props down ()
- [x] dashboard: option to render Dashboard inline instead of a modal dialog ()
- [x] dashboard: global circular progress bar, try out different designs for total upload speed and ETA ()
- [x] dashboard: show total upload speed and ETA, for all files ()
- [x] dashboard: copy link to uploaded file button, cross-browser () (http://i.imgur.com/b1Io34n.png) (@arturi)
- [x] dashobard: refreshed design and grand refactor ()
- [x] dashboard: improve file paste the best we can http://stackoverflow.com/a/22940020 (@arturi)
- [x] provider: abstract google drive into provider plugin for reuse ()
- [x] google drive: improve UI ()
- [x] tus: add `resumable` capability flag ()
- [x] tus: start fixing pause/resume issues and race conditions ()
- [x] test: working Uppy example on Require Bin — latest version straight from NPM http://requirebin.com/?gist=54e076cccc929cc567cb0aba38815105 (@arturi @acconut)
- [x] meta: update readme docs, add unpkg CDN links (https://unpkg.com/uppy/dist/uppy.min.css) (@arturi)
- [x] meta: write 0.10 release blog post ()
## 0.9.0
Released: August 26, 2016. Releasemaster: Harry.
Theme: Making Progress, Then Pause & Resume.
- [x] dashboard: informer interface: message when all uploads are "done" ()
- [x] meta: write 0.9 release blog post ()
- [x] webcam: a barely working webcam record & upload ()
- [x] metadata: Uppy + tus empty metadata value issue in Safari https://github.com/tus/tus-js-client/issues/41 --> tus issue — nailed down, passed to @acconut (@arturi, @acconut)
- [x] core: experiment with switching to `virtual-dom` in a separate branch; experiment with rollup again ()
- [x] core: figure out race conditions (animations not completing because file div gets re-added to the dom each time) with `yo-yo`/`morphdom` https://github.com/shama/bel/issues/26#issuecomment-238004130 ()
- [x] core: switch to https://github.com/sethvincent/namespace-emitter — smaller, allows for `on('*')` (@arturi)
- [x] dashboard: add aria-labels and titles everywhere to improve accessibility #114 ()
- [x] dashboard: file name + extension should fit on two lines, truncate in the middle (maybe https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/measureText) (@arturi)
- [x] dashboard: implement a circular progress indicator on top of the fileItem with play/pause ()
- [x] dashboard: refactor to smaller components, as discussed in #110 ()
- [x] dashboard: show upload remaining time and speed, option to disable ()
- [x] google drive: refactor to smaller components, as discussed in #110 ()
- [x] meta: reach out to choo author ()
- [x] meta: write 0.8 release blog post ()
- [x] metadata: add labels to fields in fileCard ()
- [x] metadata: the aftermath — better UI ()
- [x] test: Get IE6 on Win XP to run Uppy and see it fall back to regular form upload #108 ()
- [x] test: refactor tests, add DragDrop back ()
- [x] tus: update uppy to tus-js-client@1.2.1, test on requirebin ()
- [x] tus: add ability to pause/resume all uploads at once ()
- [x] tus: add ability to pause/resume upload ()
## 0.8.0
Released: July 29, 2016. Releasemaster: Artur.
Theme: The Webcam Edition.
- [x] core: fix bug: no meta information from uppy-server files ()
- [x] core: fix bug: uppy-server file is treated as local and directly uploaded ()
- [x] uppy-server: hammering out websockets/oauth (, )
- [x] debugger: introduce MagicLog as a way to debug state changes in Uppy ()
- [x] modifier: A MetaData plugin to supply meta data (like width, tag, filename, user_id) ()
- [x] modifier: pass custom metadata with non-tus-upload. Maybe mimic meta behavior of tus here, too ()
- [x] modifier: pass custom metadata with tus-upload with tus-js-client ()
- [x] webcam: initial version: webcam light goes on ()
- [x] progress: better icons, styles ()
- [x] core: better mime/type detection (via mime + extension) ()
- [x] core: add deep-freeze to getState so that we are sure we are not mutating state accidentally ()
- [x] meta: release “Uppy Begins” post ( )
- [x] meta: better readme on GitHub and NPM ()
- [x] test: add pre-commit & lint-staged ()
- [x] test: add next-update https://www.npmjs.com/package/next-update to check if packages we use can be safely updated (@arturi)
- [x] website: blog polish — add post authors and their gravatars ()
- [x] dashboard: UI revamp, more prototypes, background image, make dashboard nicer ()
- [x] dashboard: try a workflow where import from external service slides over and takes up the whole dashboard screen ()
- [x] modal: merge modal and dashboard ()
## 0.7.0
Released: July 11, 2016.
Theme: Remote Uploads, UI Redesign.
- [x] core: Investigate if there is a way to manage an oauth dialog and not navigate away from Uppy; Put entire(?) state into oauth redirect urls / LocalStorage with an identifier ? ()
- [x] core: Rethink UI: Part I (interface research for better file selection / progress representation) ()
- [x] core: let user cancel uploads in progress ()
- [x] core: resize image file previews (to 100x100px) for performance ()
- [x] server: add tus-js-client when it's node-ready ()
- [x] server: make uppy-server talk to uppy-client in the browser, use websockets. ()
- [x] dashboard: new “workspace” plugin, main area that allows for drag & drop and shows progress/actions on files, inspired by ProgressDrawer
- [x] website: add new logos and blog ()
- [x] drive: Return `cb` after writing all files https://github.com/transloadit/uppy-server/commit/4f1795bc55869fd098a5c81a80edac504fa7324a#commitcomment-17385433 (@hedgerh)
- [x] server: Make Google Drive files to actually upload to the endpoint ()
- [x] build: browsersync does 3 refreshes, can that be one? should be doable via cooldown/debounce? -> get rid of require shortcuts ()
- [x] build: regular + min + gzipped versions of the bundle ()
- [x] build: set up a simple and quick dev workflow — watch:example ()
## 0.6.4
Released: June 03, 2016.
Theme: The aim low release.
- [x] build: minification of the bundle ()
- [x] build: revisit sourcemaps for production. can we have them without a mandatory extra request?
- [x] build: supply Uppy es5 and es6 entry points in npm package ()
- [x] build: switch to https://www.npmjs.com/package/npm-run-all instead of parallelshell (@arturi)
- [x] drive: Make sure uppy-server does not explode on special file types: https://dl.dropboxusercontent.com/s/d4dbxitjt8clo50/2016-05-06%20at%2022.41.png (@hedgerh)
- [x] modal: accessibility. focus on the first input field / button in tab panel ()
- [x] progressdrawer: figure out crazy rerendering of previews by yoyo/bel: https://github.com/shama/bel/issues/26, https://github.com/shama/bel/issues/27 ()
- [x] core: substantial refactor of mount & rendering ()
- [x] core: better state change logs for better debugging ()
- [x] progressdrawer: improve styles, add preview icons for all ()
- [x] server: Start implementing the `SERVER-PLAN.md`, remote files should be added to `state.files` and marked as `remote` ()
- [x] test: Add pass/fail Saucelabs flag to acceptance tests ()
- [x] website: Polish Saucelabs stats (social badge + stats layout) ()
- [x] meta: Create Uppy logos ()
- [x] website: fix examples and cleanup ()
- [x] website: Add Saucelabs badges to uppy.io ()
- [x] website: fix disappearing icons issue, `postcss-inline-svg` ()
## 0.0.5
Released: May 07, 2016.
Theme: Acceptance tests and Google Drive Polish.
- [x] test: Wire saucelabs and travis togeteher, make saucelabs fail fatal to travis builds
- [x] test: Add `addFile`-hack so we can have acceptance tests on Safari as well as Edge ()
- [x] drive: possible UI polish ()
- [x] drive: write files to filesystem correctly ()
- [x] test: Fix 15s timeout image.jpg ()
- [x] test: Sign up for Browserstack.com Live account so we can check ourselves what gives and verify saucelabs isn't to blame () <-- Turns out, Saucelabs already does that for us
- [x] test: Get tests to pass Latest version of Internet Explorer (Windows 10), Safari (OSX), Firefox (Linux), Opera (Windows 10) () <-- IE 10, Chrome, Firefox on Windows and Linux, but not Safari and Microsoft Edge — Selenium issues
- [x] test: Get saucelabs to show what gives (errors, screenshots, anything) ()
- [x] build: sourcemaps for local development () <-- Not adding it in production to save the extra request. For local dev, this was added already via Browserify
- [x] core: Add polyfill for `fetch` ()
- [x] core: Apply plugins when DOM elements aren't static (#25)
- [x] core: figure out the shelf thing https://transloadit.slack.com/archives/uppy/p1460054834000504 https://dl.dropboxusercontent.com/s/ypx6a0a82s65o0z/2016-04-08%20at%2010.38.png (@arturi, @hedgerh)
- [x] core: reduce the monstrous 157.74Kb prebuilt bundle footprint https://dl.dropboxusercontent.com/s/ypx6a0a82s65o0z/2016-04-08%20at%2010.38.png <-- we see no way to optimize at this stage
- [x] drive: add breadcrumb navigation ()
- [x] drive: convert google docs to office format ()
- [x] modal: Avoid duplicating event listeners <-- deprecated by yoyo
- [x] progressbar: make it great again ()
- [x] progressdrawer: figure out why the whole list is replaced with every update (dom diff problems) ()
- [x] test: Let Travis use the Remote WebDriver instead of the Firefox WebDriver (https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-Sauce-Labs), so Saucelabs can run our acceptance tests against a bunch of real browsers. Local acceptance tests keep using Firefox <-- need to add command to Travis (@arturi)
- [x] test: Move failing multipart test back from `v0.0.5` dir, make it pass ()
- [x] tus: Add support tus 1.0 uploading capabilities (#3) <-- works!
- [x] website: Make cycling through taglines pretty (in terms of code and a nice animation or sth) ()
- [x] website: Move the activity feed from http://uppy.io/stats to the Uppy homepage (@arturi)
- [x] website: Polish http://uppy.io/stats and undo its CSS crimes (@arturi)
## 0.0.4
Released: April 13, 2016.
- [x] server: Upgrade to 0.0.4 ()
- [x] drive: Add Google Drive plugin unit test ()
- [x] drive: Add a barely working Google Drive example (without Modal, via e.g. `target: "div#on-my-page"`) ()
- [x] drive: Make sure http://server.uppy.io is targeted on uppy.io; and localhost is targeted elsewhere (also see https://github.com/hughsk/envify) (@kvz)
- [x] test: Setup one modal/dragdrop acceptance test ()
- [x] drive: Make sure http://server.uppy.io is targeted on uppy.io; and localhost is targeted elsewhere (also see https://github.com/hughsk/envify) (@kvz)
- [x] website: Add a http://uppy.io/stats page that inlines disc.html as well as displays the different bundle sizes, and an activity feed (@kvz)
- [x] dragdrop: refactor & improve ()
- [x] website: fix i18n & DragDrop examples ()
- [x] website: Provide simple roadmap in examples (#68, )
- [x] website: Upgrade Hexo ()
- [x] test: Make failing acceptance tests fatal ()
- [x] allow for continuous `acquiring`, even after all plugins have “run” (, )
- [x] build: clean up package.json. We've accumulated duplication and weirdness by hacking just for our current problem without keeping a wider view of what was already there ()
- [x] build: fix browsersync & browserify double reloading issue ()
- [x] build: sourcemaps for examples ()
- [x] complete: `Complete` Plugin of type/stage: `presenter`. "You have successfully uploaded `3 files`". Button: Close modal. ()
- [x] core: allow for continuous `acquiring`, even after all plugins have “run” (, )
- [x] core: come up with a draft standard file format for internal file handling ()
- [x] core: Pluralize collections (locales, just l like plugins) ()
- [x] core: re-think running architecture: allow for `acquiring` while `uploading` ()
- [x] core: Rename `progress` to `progressindicator` ()
- [x] core: Rename `selecter` to `acquirer` ()
- [x] core: Rename `view` to `orchestrator` ()
- [x] core: start on component & event-based state management with `yo-yo` ()
- [x] core: Upgrade from babel5 -> babel6 ()
- [x] dragdrop: Fix 405 Not Allowed, (error) handling when you press Upload with no files (#60, , thx )
- [x] modal: `UppyModal [type=submit] { display: none }`, use Modal's own Proceed button to progress to next stage ()
- [x] modal: covert to component & event-based state management ()
- [x] modal: Make sure modal renders under one dom node — should everything else too? (, )
- [x] modal: refactor and improve ()
- [x] progressdrawer: show link to the uploaded file ()
- [x] progressdrawer: show file type names/icons for non-image files ()
- [x] progressdrawer: show uploaded files, display uploaded/selected count, disable btn when nothing selected ()
- [x] progressdrawer: implement basic version, show upload progress for individual files ()
- [x] progressdrawer: show previews for images ()
- [x] server: Add a deploy target for uppy-server so we can use it in demos (#39, )
- [x] test: Add a passing dummy i18n acceptance test, move failing multipart test to `v0.5.0` dir ()
- [x] test: Add acceptance tests to Travis so they are run on every change ()
- [x] test: Get Firefox acceptance tests up and running both local and on Travis CI. Currently both failing on `StaleElementReferenceError: Element not found in the cache - perhaps the page has changed since it was looked up` https://travis-ci.org/transloadit/uppy/builds/121175389#L478
- [x] test: Get saucelabs account https://saucelabs.com/beta/signup/OSS/None (@hedgerh)
- [x] test: Install chromedriver ()
- [x] test: Switch to using Firefox for acceptable tests as Travis CI supports that (https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI) (@kvz)
- [x] test: Write one actual test (e.g. Multipart) (#2, #23, )
- [x] tus: Resolve promise when all uploads are done or failed, not earlier (currently you get to see '1 file uploaded' and can close the modal while the upload is in progress) ()
- [x] website: Filter taglines ()
- [x] website: utilize browserify index exposers to rid ourselves of `../../../..` in examples ()
## 0.0.3
Released: March 01, 2016.
- [x] core: push out v0.0.3 ()
- [x] build: release-(major|minor|patch): git tag && npm publish ()
- [x] core: Allow users to set DOM elements or other plugins as targets ()
- [x] core: Create a progressbar/spinner/etc plugin (#18, )
- [x] core: Decide on how we ship default styles: separate css file, inline (, , , -kos)
- [x] core: Decide on single-noun terminology (npm, umd, dist, package, cdn, module -> bundler -> bundle), and call it that through-out ()
- [x] core: throw an error when one Plugin is `.use`d twice. We don't support that now, and will result in very confusing behavior ()
- [x] dragdrop: Convert `DragDrop` to adhere to `Dummy`'s format, so it's compatible with the new Modal ()
- [x] drive: Convert `GoogleDrive` to adhere to `Dummy`'s format, so it's compatible with the new Modal ()
- [x] modal: Add barely working Modal plugin that can be used as a target (#53, #50, )
- [x] modal: Improve Modal API (, )
- [x] modal: Make `ProgressBar` work with the new Modal (, )
- [x] modal: Make Modal prettier and accessible using Artur's research ()
- [x] modal: Make the Modal look like Harry's sketchup ()
- [x] modal: Rename FakeModal to Modal, deprecating our old one ()
- [x] modal: use classes instead of IDs and buttons instead of links ()
- [x] server: `package.json` ()
- [x] test: Fix and enable commented out `use plugins` & other core unit test ()
## 0.0.2
Released: February 11, 2016.
- [x] build: Use parallelshell and tweak browserify to work with templates ()
- [x] core: Add basic i18n support via `core.translate()` and locale loading (#47, )
- [x] core: implement a non-blocking `install` method (for Progressbar, for example) (, )
- [x] core: Implement ejs or es6 templating (, )
- [x] core: Improve on `_i18n` support, add tests (#47, )
- [x] core: Integrate eslint in our build procedure and make Travis fail on errors found in our examples, Core and Plugins, such as `> 100` char lines ()
- [x] docs: Fix build-documentation.js crashes, add more docs to Utils and Translator (, )
- [x] dragdrop: Use templates, autoProceed setting, show progress (#50, #18, )
- [x] meta: Implement playground to test things in, templates in this case
- [x] server: Create a (barely) working uppy-server (#39, )
- [x] website: Fix Uppy deploys (postcss-svg problem) (, )
## 0.0.1
Released: December 20, 2015.
- [x] core: Individual progress (#24)
- [x] core: Setup basic Plugin system (#1, #4, #20)
- [x] core: Setup build System (#30, #13, )
- [x] dragdrop: Add basic DragDrop plugin example (#7)
- [x] dropbox: Add basic Dropbox plugin example (#31)
- [x] website: Add CSS Framework (#14)
- [x] website: Create Hexo site that also contains our playground (#5, #34, #12 #22, #44, #35, #15, #37, #40, #43)