forked from yogiben/meteor-autoform-file
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from VeliovGroup/meteor-1.9
π¦ v2.3.0 (Meteor 1.9) - βοΈ This release focused on compatibility with `[email protected].*` and `node@12.*.*`; - π€ Compatibility with `[email protected].*`; - π€ Compatibility with `node@12.*.*`; - π¨βπ¬ [Demo autoform-gridfs app](https://github.com/VeliovGroup/files-gridfs-autoform-example) is updated and tested agains latest meteor/node.js releases; __Minor__: - π₯ Package version `v2.3.0` and newer is compatible __only__ with `[email protected].*` and newer, due to changes in `[email protected]` and `node@12` __Fixed__: - π Fix issues from #57: *Default insertConfig chunksize and streams are NaN*, thanks to @jankapunkt; __Updated__: - π¦ __Remove__ `underscore` Atmosphere dependency for good; - π¦ Update `ostrio:files` Atmosphere dependency to `v1.14.0`, *was `v1.13.0`*
- Loading branch information
Showing
3 changed files
with
20 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
# Autoform File | ||
|
||
<a href="https://www.patreon.com/bePatron?u=20396046"> | ||
<img src="https://c5.patreon.com/external/logo/[email protected]" width="160"> | ||
<img src="https://c5.patreon.com/external/logo/[email protected]" height="38"> | ||
</a> | ||
|
||
<a href="https://ostr.io/info/built-by-developers-for-developers"> | ||
<img src="https://ostr.io/apple-touch-icon-60x60.png" height="38"> | ||
</a> | ||
|
||
```shell | ||
# meteor@>=1.9 | ||
meteor add ostrio:autoform-files | ||
|
||
# meteor@<1.9 | ||
meteor add ostrio:[email protected] | ||
``` | ||
|
||
## Description | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,22 +2,21 @@ Package.describe({ | |
name: 'ostrio:autoform-files', | ||
summary: 'File upload for AutoForm using ostrio:files', | ||
description: 'File upload for AutoForm using ostrio:files', | ||
version: '2.2.1', | ||
version: '2.3.0', | ||
git: 'https://github.com/VeliovGroup/meteor-autoform-file.git' | ||
}); | ||
|
||
Package.onUse((api) => { | ||
api.versionsFrom('METEOR@1.6.1'); | ||
api.versionsFrom('METEOR@1.9'); | ||
|
||
api.use([ | ||
'check', | ||
'ecmascript', | ||
'underscore', | ||
'mongo', | ||
'reactive-var', | ||
'[email protected]', | ||
'aldeed:[email protected]', | ||
'ostrio:files@1.13.0' | ||
'ostrio:files@1.14.0' | ||
], 'client'); | ||
|
||
api.addFiles([ | ||
|