Skip to content

Commit

Permalink
Merge pull request #164 from VeliovGroup/dev
Browse files Browse the repository at this point in the history
v1.6.7
- Compatibility with [email protected]
- Fix #163
- Docs minor update
  • Loading branch information
dr-dimitru authored Jul 26, 2016
2 parents c1d4f4c + caf91ef commit c02577c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
32 changes: 16 additions & 16 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
babel-compiler@6.8.5
[email protected].9_1
babel-compiler@6.9.0
[email protected].10
[email protected]
[email protected]
[email protected]
[email protected]
caching-compiler@1.0.6
caching-compiler@1.1.6
[email protected]
[email protected]
coffeescript@1.1.4
coffeescript@1.2.3
[email protected]
[email protected]
ecmascript@0.4.8
ecmascript-runtime@0.2.12
ecmascript@0.5.7
ecmascript-runtime@0.3.12
[email protected]
[email protected]
[email protected]
http@1.1.8
http@1.2.8
[email protected]
[email protected]
logging@1.0.14
meteor@1.1.16
logging@1.1.14
meteor@1.2.16
[email protected]
modules@0.6.5
modules-runtime@0.6.5
modules@0.7.5
modules-runtime@0.7.5
[email protected]
[email protected]
ostrio:[email protected]
ostrio:[email protected].6
promise@0.7.3
ostrio:[email protected].7
promise@0.8.3
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
templating@1.1.14
templating@1.2.13
[email protected]
tracker@1.0.15
tracker@1.1.0
[email protected]
[email protected]
[email protected]
webapp@1.2.11
webapp@1.3.10
[email protected]
2 changes: 1 addition & 1 deletion docs/toc.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@ Meteor-Files
- [File subversions](https://github.com/VeliovGroup/Meteor-Files/wiki/Create-and-Manage-Subversions) - Create video file with preview and multiple formats

##### Articles:
- [MongoDB with Replica Set & OpLog setup](https://veliovgroup.com/article/2qsjtNf8NSB9XxZDh/mongodb-replica-set-with-oplog) - Find out how to speed-up *reactivity* in you Meteor application
- [MongoDB with Replica Set & OpLog setup](https://veliovgroup.com/article/2qsjtNf8NSB9XxZDh/mongodb-replica-set-with-oplog) - Find out how to speed-up *reactivity* in your Meteor application
4 changes: 2 additions & 2 deletions files.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -2212,5 +2212,5 @@ if Meteor.isClient
###
Export the FilesCollection class
###
`export { FilesCollection }`
Meteor.Files = FilesCollection
Meteor.Files = FilesCollection
`export { FilesCollection }`
6 changes: 3 additions & 3 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
Package.describe({
name: 'ostrio:files',
version: '1.6.6',
version: '1.6.7',
summary: 'Fast and robust file upload package, with support of FS, AWS, GridFS, DropBox or Google Drive',
git: 'https://github.com/VeliovGroup/Meteor-Files',
documentation: 'README.md'
});

Package.onUse(function(api) {
api.versionsFrom('1.3.3.1');
api.versionsFrom('1.4');
api.use('webapp', 'server');
api.use(['templating', 'reactive-var', 'tracker', 'http'], 'client');
api.use(['underscore', 'check', 'random', 'coffeescript', 'ecmascript', 'ostrio:[email protected]'], ['client', 'server']);
api.addFiles('event-emitter.jsx', 'client');
api.addAssets('worker.js', 'client');
api.addFiles('files.coffee', ['server', 'client']);
api.mainModule('files.coffee', ['server', 'client']);
api.export('FilesCollection');
});

Expand Down

0 comments on commit c02577c

Please sign in to comment.