Kevin van Zonneveld пре 7 година
родитељ
комит
e7bffa7482
1 измењених фајлова са 17 додато и 14 уклоњено
  1. 17 14
      website/src/_posts/2018-02-0.24.md

+ 17 - 14
website/src/_posts/2018-02-0.24.md

@@ -94,20 +94,6 @@ But, Uppy is also free as in freedom. And so if you can't help our cause, set `p
 
 <img src="/images/blog/0.24/powered-by-1.png">
 
-## Other Fixes & Improvements
-
-- ⚠️ **breaking** `addFile()`, `onBeforeFileAdded()` and `onBeforeUpload()` are now synchronous and have to return nothing or file objects to proceed, or false to abort; please check out the update docs for details: [onBeforeFileAdded()](https://uppy.io/docs/uppy/#onBeforeFileAdded) and [onBeforeUpload()](https://uppy.io/docs/uppy/#onBeforeUpload).
-- ⚠️ **breaking** Most events now emit the whole `file` object instead of a `fileId`. So you can access `file.name` right away, for example, so you no longer have to fish for the file using its id.
-- ⚠️ **breaking** We’ve added `postcss-safe-important` to our style build step, so now 90% of rules got `!important` declaration added to them. This is done to prevent page styles (especially global ones like from Bootstrap) from leaking into the Uppy widget. There are other solutions we are looking into, like iFrames and WebComponents, this is an experiment. Keep in mind that to override Uppy styles, you now have to also use `!important`.
-- dashboard: ⚠️ **breaking** `maxWidth`, `maxHeight` options have been converted to `width` and `height`, because this makes more sense, `maxWidth` and `maxHeight` are actually `100%`.
-- There is now an option `showLinkToFileUploadResult: false` to disable linking to the upload result in Dashboard UI.
-- We are now using the image time and date as a file name in Instagram, instead of a generic file id.
-- The URL plugin now checks for HTTP(S) protocol, and adds HTTP by default if no protocol is present.
-- It’s now possible to override `<DashboardModal />` React component’s target prop.
-- Provider views now have `showFilter` and `showBreadcrumbs` options, those are `false` for the Instagram plugin, for example.
-- Uppy Server to Client communication has been refactored into `Provider` and `Request` modules. `Request` can be used when a simple request needs to be made to Uppy Server, like in the URL plugin. `Provider` is used for more complex implementations shared between Google Drive and Instagram, for example.
-- We’ve added a Transloadit example to the website, [check it out](https://uppy.io/examples/transloadit/).
-
 ## Docs
 
 - Uppy Server docs now point to a detailed write-up on how to run Uppy Server on Kubernetes (#706 / @kiloreux)
@@ -130,4 +116,21 @@ Other non-security improvements are:
 - We implemented a more standard logger for Uppy Server
 - Added an example project to run Uppy Server on Serverless, [see](https://github.com/transloadit/uppy-server/tree/master/examples/serverless).
 
+## Other Fixes & Improvements
+
+- ⚠️ **breaking** `addFile()`, `onBeforeFileAdded()` and `onBeforeUpload()` are now synchronous and have to return nothing or file objects to proceed, or false to abort; please check out the update docs for details: [onBeforeFileAdded()](https://uppy.io/docs/uppy/#onBeforeFileAdded) and [onBeforeUpload()](https://uppy.io/docs/uppy/#onBeforeUpload).
+- ⚠️ **breaking** Most events now emit the whole `file` object instead of a `fileId`. So you can access `file.name` right away, for example, so you no longer have to fish for the file using its id.
+- ⚠️ **breaking** We’ve added `postcss-safe-important` to our style build step, so now 90% of rules got `!important` declaration added to them. This is done to prevent page styles (especially global ones like from Bootstrap) from leaking into the Uppy widget. There are other solutions we are looking into, like iFrames and WebComponents, this is an experiment. Keep in mind that to override Uppy styles, you now have to also use `!important`.
+- dashboard: ⚠️ **breaking** `maxWidth`, `maxHeight` options have been converted to `width` and `height`, because this makes more sense, `maxWidth` and `maxHeight` are actually `100%`.
+- There is now an option `showLinkToFileUploadResult: false` to disable linking to the upload result in Dashboard UI.
+- We are now using the image time and date as a file name in Instagram, instead of a generic file id.
+- The URL plugin now checks for HTTP(S) protocol, and adds HTTP by default if no protocol is present.
+- It’s now possible to override `<DashboardModal />` React component’s target prop.
+- Provider views now have `showFilter` and `showBreadcrumbs` options, those are `false` for the Instagram plugin, for example.
+- Uppy Server to Client communication has been refactored into `Provider` and `Request` modules. `Request` can be used when a simple request needs to be made to Uppy Server, like in the URL plugin. `Provider` is used for more complex implementations shared between Google Drive and Instagram, for example.
+
+Finally, we’ve added a Transloadit example to the website, [check it out](https://uppy.io/examples/transloadit/).
+
+Have fun,
+
 The Uppy Team