Forráskód Böngészése

Iterate on the 0.23 release post

Kevin van Zonneveld 7 éve
szülő
commit
2b15b72d41
1 módosított fájl, 21 hozzáadás és 21 törlés
  1. 21 21
      website/src/_posts/2018-02-0.23.md

+ 21 - 21
website/src/_posts/2018-02-0.23.md

@@ -25,7 +25,7 @@ Thumbnail generation has been refactored to a separate `ThumbnailGenerator` plug
 
 `ThumbnailGenerator` is still bundled with our most feature complete `Dashboard` plugin though, so you don’t have to change anything if you were using that.
 
-We’ve also fixed previews in Safari and tweaked the code slightly after reading [Image resize in browsers is broken](https://blog.uploadcare.com/image-resize-in-browsers-is-broken-e38eed08df01) post.
+We’ve also fixed previews in Safari and tweaked the code slightly after reading the excellent [Image resize in browsers is broken](https://blog.uploadcare.com/image-resize-in-browsers-is-broken-e38eed08df01) post by Uploadcare 👌.
 
 ## Processing results
 
@@ -51,7 +51,7 @@ uppy.upload().then((result) => {
 })
 ```
 
-You can still use events like [`transloadit:result`](https://uppy.io/docs/transloadit/#transloadit-result), its just easier when things are in the same place. Plugins can use new `uppy.addResultData()` API to add data to the `result`, like so:
+You can still use events like [`transloadit:result`](https://uppy.io/docs/transloadit/#transloadit-result), its just easier when things are in the same place. Plugins can use the new `uppy.addResultData()` API to add data to the `result`, like so:
 
 ```js
 uppy.addResultData(uploadID, { transloadit: assemblies })
@@ -59,38 +59,34 @@ uppy.addResultData(uploadID, { transloadit: assemblies })
 
 ## Webcam
 
-Webcam plugin now mirrors image previews by default, so when you are making a selfie and wave with your right hand, you see that right hand in the Webcam preview, just like in the mirror. This option can be disabled via `uppy.use(Webcam, { mirror: false }`. Note that the resulting image will not be mirrored, so your hand will actually be waving on the left. This mimics the behaviour of smarphone selfie cameras.
+The Webcam plugin now mirrors image previews by default, so when you are making a selfie and wave with your right hand, you see that right hand in the Webcam preview, just like in the mirror. This option can be disabled via `uppy.use(Webcam, { mirror: false }`. Note that the resulting image will not be mirrored, so your hand will actually be waving on the left. This mimics the behaviour of smarphone selfie cameras.
 
 We’ve also added an option to select which camera will be used to capture pictures or video: [facingMode](https://uppy.io/docs/webcam/#facingMode-39-user-39), set to `user` (front camera) by default.
 
 ## Server
 
-- You can now specify a config path when starting the standalone Uppy Server like so `uppy-server --config /path/to/uppyconf.json`. The config file is expected to be a json file with the same schema as the [Uppy Server options](https://uppy.io/docs/server/#Options).
+- You can now specify a config path when starting the standalone Uppy Server like so `uppy-server --config /path/to/uppyconf.json`. The config file is expected to be a JSON file with the same schema as the [Uppy Server options](https://uppy.io/docs/server/#Options).
 - A periodic cleanup job has been added to Uppy Server, to delete stale upload files from the specified `filePath`. Even though we'd rarely expect uploaded files to go undeleted immediately, there could be cases where an error occurs during an upload, and so Uppy Server leaves the file undeleted to give room for upload retries. With the cleanup job in place, we can ensure that this file would eventually be deleted after the file upload is done.
-- Responses from Multipart uploads are now relayed to Uppy Client as they are received from the upload server. With this in place, you can now handle responses from local and remote XHRUpload in nearly the same way.
+- Responses from Multipart uploads are now relayed to Uppy Client as they are received from the target server. With this in place, you can now handle responses from local and remote XHRUpload in nearly the same way.
 
-## Improvements
+## Other Improvements and Additions
 
-- New option to hide ProgressBar and StatusBar after upload finish (#485 / @wilkoklak)
-- Chaining API has been improved, you can now use `.on` and `.off` anywhere: `uppy.use(Dashboard).use(Tus).on('complete', handleComplete).run()`.
-- We now pass response from Uppy Server upload’s endpoint.
-- Transloadit plugin now has a new `transloadit:assembly-executing` event and assembly results to to the `complete` callback (#547, #527 / @goto-bus-stop).
-- We’ve added `bundle` option to `XHRUpload` plugin send multiple files in one request (#442 / @goto-bus-stop)
+- Added new option to hide ProgressBar and StatusBar after upload finish (#485 / @wilkoklak)
+- Chaining API has been improved, you can now use `.on` and `.off` anywhere: `uppy.use(Dashboard).use(Tus).on('complete', handleComplete).run()`
+- The Transloadit plugin now has a new `transloadit:assembly-executing` event and passes Assembly results to the `complete` callback (#547, #527 / @goto-bus-stop)
+- We’ve added a `bundle` option to the `XHRUpload` plugin to send multiple files in one request (#442 / @goto-bus-stop)
+- Uppy releases are now hosted on Edgly CDN by Transloadit
+- A Third-party extension for integrating the Ngrx Angular state management library with Uppy has been released, [uppy-store-ngrx](https://github.com/rimlin/uppy-store-ngrx/) by @rimlin
 
-## Fixes
+## Other Fixes
 
-- Fixed blank preview thumbnails for images in Safari; use slightly different stap scaling (#458, #584 / @arturi)
+- Fixed blank preview thumbnails for images in Safari; use slightly different step scaling (#458, #584 / @arturi)
 - We now log in console and show an Informer message, not error in console, when file cannot be added due to restrictions (#604, #492 / @goto-bus-stop).
-- Unused files have been removed from published package (#586 / @goto-bus-stop)
+- Unused files have been removed from published package, saving many many precious megabytes :) (#586 / @goto-bus-stop)
 - Use empty input value so same file can be selected multiple times (@arturi / #534)
 - Fix modal and page scroll (#564 / @arturi)
 - Refactor provider views (#554 / @arturi)
-- Lots of documentation fixes, thanks to all our contributers!
-
-## Misc
-
-- Third-party extension for integrating Ngrx Angular state management library with Uppy has been released, [uppy-store-ngrx](https://github.com/rimlin/uppy-store-ngrx/) by @rimlin.
-- Uppy releases are now hosted on Edgly CDN by Transloadit.
+- Lots of documentation fixes, thanks to all our contributors!
 
 ## Press
 
@@ -109,8 +105,12 @@ On how to set up Uppy with [Shrine](http://shrinerb.com/), a file attachment too
 > There are many popular JavaScript file upload libraries out there – jQuery-File-Upload, Dropzone.js, FineUploader etc. – but the one you should use with Shrine is definitely Uppy 🐶. Uppy is a modular library that knows how to upload files to a custom endpoint on your app, to Amazon S3, or even to a resumable endpoint, providing progress bars, drag & drop functionality, image previews, file validations etc, all while making as few assumptions as possible.
 
 **Featured [in Javascript Daily](https://twitter.com/JavaScriptDaily/status/950348390268919809)**
+> Uppy: A Powerful, Modular JavaScript File Uploader
+<cite>— JavaScript Daily</cite>
 
-**[Trending on GitHub](https://twitter.com/uppy_io/status/946485101541683201) accross all languages**
+**[#1 Trending on GitHub](https://twitter.com/uppy_io/status/946485101541683201) accross all languages**
+> Today our open source efforts are outpacing those of MSFT GOOG FB combined :D
+<cite>— kvz, transloadit</cite>
 
 **[#2 Product of the Week](https://www.producthunt.com/posts/uppy-io) on ProductHunt**
 > You literally solved my biggest problem, thank you for developing such a great project.