Skip to content

Commit

Permalink
Prepares for 2.5.2; only updates README and package metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebebak committed Feb 15, 2019
1 parent 6e13f10 commit 37334f7
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 5 deletions.
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Check out [the full table of RDU's props](https://react-dropzone-uploader.js.org


## UMD Build
This library is available as an ES Module at <https://unpkg.com/react-dropzone-uploader@2.5.1/dist/react-dropzone-uploader.umd.js>.
This library is available as an ES Module at <https://unpkg.com/react-dropzone-uploader@2.5.2/dist/react-dropzone-uploader.umd.js>.

If you want to include it in your page, you need to include the dependencies and CSS as well.

Expand All @@ -90,8 +90,8 @@ If you want to include it in your page, you need to include the dependencies and
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.4.2/umd/react-dom.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prop-types/15.6.2/prop-types.min.js"></script>

<script src="https://unpkg.com/react-dropzone-uploader@2.5.1/dist/react-dropzone-uploader.umd.js"></script>
<link rel"stylesheet" href="https://unpkg.com/react-dropzone-uploader@2.5.1/dist/styles.css"></script>
<script src="https://unpkg.com/react-dropzone-uploader@2.5.2/dist/react-dropzone-uploader.umd.js"></script>
<link rel"stylesheet" href="https://unpkg.com/react-dropzone-uploader@2.5.2/dist/styles.css"></script>
~~~


Expand All @@ -101,5 +101,18 @@ There are a number of places RDU could be improved; [see here](https://github.co
For example, RDU has solid core functionality, but has a minimalist look and feel. It would be more beginner-friendly with a larger variety of built-in components.


### Running Dev
Clone the project, install dependencies, and run the dev server.

~~~sh
git clone git://github.com/fortana-co/react-dropzone-uploader.git
cd react-dropzone-uploader
npm install # or `yarn install`
npm run dev
~~~

This runs code in `examples/src/index.js`, which has many examples that use `Dropzone`. The library source code is in the `/src` directory.


## Thanks
Thanks to `react-dropzone`, `react-select`, and `redux-form` for inspiration.
13 changes: 13 additions & 0 deletions docs/why-rdu.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,3 +163,16 @@ Possible improvements to RDU are tracked as [GitHub issues with the "__help want
For example, I know nothing about writing tests for React components, and I know RDU would benefit from having them. I'd also like to add TypeScript annotations, and better support for older browsers.

I would be super happy to give contributors complete control of implementing these features.


### Running Dev
Clone the project, install dependencies, and run the dev server.

~~~sh
git clone git://github.com/fortana-co/react-dropzone-uploader.git
cd react-dropzone-uploader
npm install # or `yarn install`
npm run dev
~~~

This runs code in `examples/src/index.js`, which has many examples that use `Dropzone`. The library source code is in the `/src` directory.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-dropzone-uploader",
"version": "2.5.1",
"version": "2.5.2",
"author": "Kyle Bebak <kylebebak@gmail.com>",
"description": "React file dropzone and uploader: fully customizable, progress indicators, upload cancellation and restart, zero deps",
"main": "./dist/react-dropzone-uploader.js",
Expand All @@ -18,7 +18,7 @@
],
"repository": {
"type": "git",
"url": "git://github.com/fortana/react-dropzone-uploader.git"
"url": "git://github.com/fortana-co/react-dropzone-uploader.git"
},
"license": "MIT",
"peerDependencies": {
Expand Down

0 comments on commit 37334f7

Please sign in to comment.