mirror of
https://github.com/wekan/wekan.git
synced 2025-12-19 08:50: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
27
packages/wekan-cfs-power-queue/package.js
Normal file
27
packages/wekan-cfs-power-queue/package.js
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
Package.describe({
|
||||
name: 'wekan-cfs-power-queue',
|
||||
version: '0.9.11',
|
||||
summary: "PowerQueue is a powerful tool for handling async tasks, throtling etc.",
|
||||
git: 'https://github.com/zcfs/Meteor-power-queue.git'
|
||||
});
|
||||
|
||||
Package.onUse(function (api) {
|
||||
api.versionsFrom('1.0');
|
||||
|
||||
api.use(['deps', 'wekan-cfs-reactive-property@0.0.4'], ['client', 'server']);
|
||||
|
||||
// We let the user decide what spinal queue to use - We support both
|
||||
// reactive-list and micro-queue they obey the spinal-queue spec
|
||||
api.use(['wekan-cfs-reactive-list@0.0.9', 'wekan-cfs-micro-queue@0.0.6'], ['client', 'server'], { weak: true });
|
||||
|
||||
api.export && api.export('PowerQueue');
|
||||
api.addFiles(['power-queue.js'], ['client', 'server']);
|
||||
});
|
||||
|
||||
Package.onTest(function (api) {
|
||||
api.use(['wekan-cfs-power-queue', 'wekan-cfs-reactive-list']);
|
||||
api.use('test-helpers', ['server', 'client']);
|
||||
api.use('tinytest');
|
||||
|
||||
api.addFiles('tests.js');
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue