Add support for `bdAttachmentStore_mimeTypes` in config.php Update S3 regions list Improve `ContentDisposition` logic Fix bug insert thumbnail show up for non-image upload Fix bug running Move job from cli Fix bug templater being initialized too soon
This version includes support for XenForo 2.1. It also makes it easier to use the same storage (s3, ftp, etc.) for all files in /data. Just add this into config.php: PHP: $config['fsAdapters']['data'] = function () { return \Xfrocks\AttachmentStore\Fs::getAdapterDefault();};$config['externalDataUrl'] = function ($externalPath, $canonical) { return 'https://s3.amazonaws.com/bucket/' . $externalPath;};