-
-
Notifications
You must be signed in to change notification settings - Fork 169
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 #583 from VeliovGroup/dev
v1.9.8 - Fix: #579 , thanks to @coagmano - Fix: #581 , thanks to @sleepoiKot - Fix: #547 , thanks to @hacknlove - NPM & Atmosphere dependencies update - Overall minor fixes & codebase enhancements - Minimal required Meteor's version is raised up to `v1.6.1` (via `api.versionsFrom`)
- Loading branch information
Showing
8 changed files
with
42 additions
and
31 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -31,7 +31,7 @@ [email protected] | |
[email protected] | ||
[email protected] | ||
ostrio:[email protected] | ||
ostrio:[email protected].7 | ||
ostrio:[email protected].8 | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
|
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package.describe({ | ||
name: 'ostrio:files', | ||
version: '1.9.7', | ||
version: '1.9.8', | ||
summary: 'File upload via DDP/HTTP to server, 3rd party storage support: AWS S3, GridFS, DropBox and others', | ||
git: 'https://github.com/VeliovGroup/Meteor-Files', | ||
documentation: 'README.md' | ||
|
@@ -9,12 +9,12 @@ Package.describe({ | |
Npm.depends({ | ||
'fs-extra': '5.0.0', | ||
'request': '2.83.0', | ||
'file-type': '7.5.0', | ||
'file-type': '7.6.0', | ||
'eventemitter3': '3.0.1' | ||
}); | ||
|
||
Package.onUse(function(api) { | ||
api.versionsFrom('1.4'); | ||
api.versionsFrom('1.6.1'); | ||
api.use('webapp', 'server'); | ||
api.use(['reactive-var', 'tracker', 'http'], 'client'); | ||
api.use(['mongo', 'underscore', 'check', 'random', 'ecmascript', 'ostrio:[email protected]'], ['client', 'server']); | ||
|
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