Skip to content

Commit

Permalink
v1.8.1
Browse files Browse the repository at this point in the history
 - Exact code splitting, client part of the library reduced for 35%
 - Atmosphere and NPM packages update
 - Compatibility with [email protected]
 - Fix for #458 - Safari can't handle simultaneous WebSockets
connection, and fails to send large data chunks. It's fixed in this
release with detecting if browser is Safari with `ddp` used as
transport. Note is added to FAQ, Should be fixed in Safari 11. Thanks
to @derwok for bringing it in, and @IDCOLL for original issue
 - Fix resumable uploads, now in 90% upload should survive server
reboot and in 98% connection interruption
 - Better file stream management with file descriptor caching - should
reduce RAM and I/O
  • Loading branch information
dr-dimitru committed Jul 22, 2017
1 parent 839ab21 commit df7a971
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 51 deletions.
46 changes: 16 additions & 30 deletions .npm/package/npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Package.describe({
name: 'ostrio:files',
version: '1.8.0',
version: '1.8.1',
summary: 'File upload via DDP/HTTP to server FS, AWS, GridFS, DropBox, Google Drive or other 3rd party storage',
git: 'https://github.com/VeliovGroup/Meteor-Files',
documentation: 'README.md'
});

Npm.depends({
'fs-extra': '3.0.1',
'fs-extra': '4.0.0',
'request': '2.81.0',
'throttle': '1.0.3',
'file-type': '5.2.0'
Expand All @@ -17,9 +17,9 @@ Package.onUse(function(api) {
api.versionsFrom('1.4');
api.use('webapp', 'server');
api.use(['reactive-var', 'tracker', 'http'], 'client');
api.use(['mongo', 'underscore', 'check', 'random', 'coffeescript', 'ecmascript', 'ostrio:[email protected].1'], ['client', 'server']);
api.use(['mongo', 'underscore', 'check', 'random', 'coffeescript', 'ecmascript', 'ostrio:[email protected].2'], ['client', 'server']);
api.addAssets('worker.min.js', 'client');
api.mainModule('files-server.coffee', 'server');
api.mainModule('files-client.coffee', 'client');
api.mainModule('server.coffee', 'server');
api.mainModule('client.coffee', 'client');
api.export('FilesCollection');
});

0 comments on commit df7a971

Please sign in to comment.