From 8ae7213f780ea4cf2270fc54bcac669b9b68143a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Fri, 12 Feb 2021 11:57:55 +0100 Subject: [PATCH] Release --- README.md | 8 ++++---- examples/cdn-example/index.html | 4 ++-- examples/transloadit-textarea/index.html | 2 +- examples/uppy-with-companion/client/index.html | 4 ++-- packages/@uppy/robodog/README.md | 4 ++-- packages/@uppy/robodog/package.json | 2 +- packages/@uppy/transloadit/package.json | 2 +- packages/uppy/package.json | 2 +- website/src/docs/index.md | 10 +++++----- website/src/docs/locales.md | 2 +- website/src/docs/robodog-form.md | 8 ++++---- website/src/docs/robodog.md | 4 ++-- website/src/examples/i18n/app.html | 4 ++-- website/src/examples/markdown-snippets/app.es6 | 2 +- website/src/examples/markdown-snippets/app.html | 2 +- website/themes/uppy/layout/index.ejs | 4 ++-- 16 files changed, 32 insertions(+), 32 deletions(-) diff --git a/README.md b/README.md index e6684b3d2..a144d4b55 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ $ npm install @uppy/core @uppy/dashboard @uppy/tus We recommend installing from npm and then using a module bundler such as [Webpack](https://webpack.js.org/), [Browserify](http://browserify.org/) or [Rollup.js](http://rollupjs.org/). -Add CSS [uppy.min.css](https://releases.transloadit.com/uppy/v1.25.1/uppy.min.css), either to your HTML page's `` or include in JS, if your bundler of choice supports it — transforms and plugins are available for Browserify and Webpack. +Add CSS [uppy.min.css](https://releases.transloadit.com/uppy/v1.25.2/uppy.min.css), either to your HTML page's `` or include in JS, if your bundler of choice supports it — transforms and plugins are available for Browserify and Webpack. Alternatively, you can also use a pre-built bundle from Transloadit's CDN: Edgly. In that case `Uppy` will attach itself to the global `window.Uppy` object. @@ -77,10 +77,10 @@ Alternatively, you can also use a pre-built bundle from Transloadit's CDN: Edgly ```html - + - +
@@ -179,7 +179,7 @@ const Uppy = require('@uppy/core') If you're using Uppy from CDN, `es6-promise` and `whatwg-fetch` are already included in the bundle, so no need to include anything additionally: ```html - + ``` ## FAQ diff --git a/examples/cdn-example/index.html b/examples/cdn-example/index.html index 869625392..67615f14f 100644 --- a/examples/cdn-example/index.html +++ b/examples/cdn-example/index.html @@ -4,11 +4,11 @@ - + - + + + + ``` Then, a global `Robodog` variable will be available. For usage instructions, please see the [main Robodog documentation](https://uppy.io/docs/robodog). diff --git a/packages/@uppy/robodog/package.json b/packages/@uppy/robodog/package.json index d0947112c..60b094726 100644 --- a/packages/@uppy/robodog/package.json +++ b/packages/@uppy/robodog/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/robodog", "description": "Transloadit SDK for browsers based on Uppy", - "version": "1.10.3", + "version": "1.10.4", "license": "MIT", "main": "lib/index.js", "jsnext:main": "src/index.js", diff --git a/packages/@uppy/transloadit/package.json b/packages/@uppy/transloadit/package.json index 51b34f451..88aa985ff 100644 --- a/packages/@uppy/transloadit/package.json +++ b/packages/@uppy/transloadit/package.json @@ -1,7 +1,7 @@ { "name": "@uppy/transloadit", "description": "The Transloadit plugin can be used to upload files to Transloadit for all kinds of processing, such as transcoding video, resizing images, zipping/unzipping, and more", - "version": "1.6.19", + "version": "1.6.20", "license": "MIT", "main": "lib/index.js", "types": "types/index.d.ts", diff --git a/packages/uppy/package.json b/packages/uppy/package.json index 81536fb4f..81e220527 100644 --- a/packages/uppy/package.json +++ b/packages/uppy/package.json @@ -1,7 +1,7 @@ { "name": "uppy", "description": "Extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:", - "version": "1.25.1", + "version": "1.25.2", "license": "MIT", "main": "index.js", "module": "index.mjs", diff --git a/website/src/docs/index.md b/website/src/docs/index.md index 1847a13d5..f7c9b6c78 100644 --- a/website/src/docs/index.md +++ b/website/src/docs/index.md @@ -19,12 +19,12 @@ Here’s the simplest example html page with Uppy (it uses a CDN bundle, while w Uppy - +
- + + ``` 2\. Add CSS to ``: ``` html - + ``` 3\. Initialize at the bottom of the closing `` tag: @@ -174,5 +174,5 @@ const Uppy = require('@uppy/core') If you're using Uppy from CDN, `es6-promise` and `whatwg-fetch` are already included in the bundle, no need to include anything additionally: ```html - + ``` diff --git a/website/src/docs/locales.md b/website/src/docs/locales.md index 459d35c70..d13194b9c 100644 --- a/website/src/docs/locales.md +++ b/website/src/docs/locales.md @@ -33,7 +33,7 @@ const uppy = new Uppy({ Add a ` + + + + + ``` diff --git a/website/src/examples/i18n/app.html b/website/src/examples/i18n/app.html index 29b5e9f27..bcdb7f963 100644 --- a/website/src/examples/i18n/app.html +++ b/website/src/examples/i18n/app.html @@ -1,7 +1,7 @@ - +
@@ -12,7 +12,7 @@ - + +// const robodog = require('@uppy/robodog') const TRANSLOADIT_EXAMPLE_KEY = '35c1aed03f5011e982b6afe82599b6a0' diff --git a/website/src/examples/markdown-snippets/app.html b/website/src/examples/markdown-snippets/app.html index 95e518a12..2070dfa58 100644 --- a/website/src/examples/markdown-snippets/app.html +++ b/website/src/examples/markdown-snippets/app.html @@ -1,6 +1,6 @@ + -->

Create a new snippet

diff --git a/website/themes/uppy/layout/index.ejs b/website/themes/uppy/layout/index.ejs index c22b085e8..1b9603af9 100644 --- a/website/themes/uppy/layout/index.ejs +++ b/website/themes/uppy/layout/index.ejs @@ -167,8 +167,8 @@

© <%- date(Date.now(), 'YYYY') %> Transloadit

- - + +