mirror of
https://github.com/wekan/wekan.git
synced 2025-12-21 01:40:13 +01:00
Fixed Non-ASCII attachment filename will crash when downloading.
Thanks to xet7 ! Fixes #2759
This commit is contained in:
parent
843ff8eaaa
commit
c2da477735
277 changed files with 30568 additions and 52 deletions
24
packages/wekan-cfs-filesystem/package.js
Normal file
24
packages/wekan-cfs-filesystem/package.js
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
Package.describe({
|
||||
git: 'https://github.com/zcfs/Meteor-cfs-filesystem.git',
|
||||
name: 'wekan-cfs-filesystem',
|
||||
version: '0.1.2',
|
||||
summary: "Filesystem storage adapter for CollectionFS"
|
||||
});
|
||||
|
||||
Npm.depends({
|
||||
//chokidar: "0.8.2",
|
||||
mkdirp: "0.3.5"
|
||||
});
|
||||
|
||||
Package.onUse(function(api) {
|
||||
api.versionsFrom('1.0');
|
||||
|
||||
api.use(['wekan-cfs-base-package@0.0.30', 'wekan-cfs-storage-adapter@0.2.1']);
|
||||
api.addFiles('filesystem.server.js', 'server');
|
||||
api.addFiles('filesystem.client.js', 'client');
|
||||
});
|
||||
|
||||
Package.onTest(function(api) {
|
||||
api.use(['wekan-cfs-filesystem', 'test-helpers', 'tinytest'], 'server');
|
||||
api.addFiles('tests.js', 'server');
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue