diff --git a/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/FARC/FARCDataFormat.cs b/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/FARC/FARCDataFormat.cs index 8fafc7b2..935d4a5f 100644 --- a/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/FARC/FARCDataFormat.cs +++ b/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/FARC/FARCDataFormat.cs @@ -46,7 +46,16 @@ namespace UniversalEditor.DataFormats.FileSystem.FArC { _dfr = base.MakeReference(); _dfr.Capabilities.Add(typeof(FileSystemObjectModel), DataFormatCapabilities.All); - _dfr.Filters.Add("FArC archive", new byte?[][] { new byte?[] { (byte)'F', (byte)'A', (byte)'r', (byte)'C' }, new byte?[] { (byte)'F', (byte)'A', (byte)'r', (byte)'c' }, new byte?[] { (byte)'F', (byte)'A', (byte)'R', (byte)'C' } }, new string[] { "*.farc" }); + + _dfr.ExportOptions.Add(new CustomOptionBoolean("Encrypted", "&Encrypt the data with the specified key")); + + _dfr.Filters.Add("FArC archive", new byte?[][] + { + new byte?[] { (byte)'F', (byte)'A', (byte)'r', (byte)'C' }, + new byte?[] { (byte)'F', (byte)'A', (byte)'r', (byte)'c' }, + new byte?[] { (byte)'F', (byte)'A', (byte)'R', (byte)'C' } + }, + new string[] { "*.farc" }); } return _dfr; }