diff --git a/plugins/UiFileManager/media/js/FileList.coffee b/plugins/UiFileManager/media/js/FileList.coffee index 2e38c2ae..e5abc9b9 100644 --- a/plugins/UiFileManager/media/js/FileList.coffee +++ b/plugins/UiFileManager/media/js/FileList.coffee @@ -1,4 +1,4 @@ -BINARY_EXTENSIONS = ["png", "gif", "jpg", "pdf", "doc", "msgpack", "zip", "rar", "gz", "tar", "exe"] +BINARY_EXTENSIONS = ["png", "gif", "jpg", "pdf", "doc", "msgpack", "zip", "rar", "gz", "tar", "exe", "wav", "ogg", "ogm", "oga", "ogv", "mp3"] class FileList extends Class constructor: (@site, @inner_path, @is_owner=false) -> diff --git a/plugins/UiFileManager/media/js/all.js b/plugins/UiFileManager/media/js/all.js index e8f866ff..8827abef 100644 --- a/plugins/UiFileManager/media/js/all.js +++ b/plugins/UiFileManager/media/js/all.js @@ -2187,7 +2187,6 @@ }).call(this); - /* ---- FileItemList.coffee ---- */ @@ -2483,7 +2482,7 @@ hasProp = {}.hasOwnProperty, indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; }; - BINARY_EXTENSIONS = ["png", "gif", "jpg", "pdf", "doc", "msgpack", "zip", "rar", "gz", "tar", "exe"]; + BINARY_EXTENSIONS = ["png", "gif", "jpg", "pdf", "doc", "msgpack", "zip", "rar", "gz", "tar", "exe", "wav", "ogg", "ogm", "oga", "ogv", "mp3"]; FileList = (function(superClass) { extend(FileList, superClass); @@ -2906,6 +2905,7 @@ }).call(this); + /* ---- UiFileManager.coffee ---- */ diff --git a/src/Config.py b/src/Config.py index 41c914f2..b214de85 100644 --- a/src/Config.py +++ b/src/Config.py @@ -14,7 +14,7 @@ class Config(object): def __init__(self, argv): self.version = "0.7.2" - self.rev = 4538 + self.rev = 4539 self.argv = argv self.action = None self.test_parser = None