v15.6
v15.6 ( Build 3119 ) - 2025-09-18
90+ Changes
ADDED - New Virtual Filesystem extension "VFG" (Virtual Folder Group) - Group many folders to one virtual device.
Still Experimental and missing things.
Check forum for more information before using it
ADDED - Linked panel navigation. (Enable for active panel with Alt+L)
ADDED - New AudioTool - MP3 Merger - Allow you to join multiple mp3 files into one big mp3 file
ADDED - MultiScript function for handling Unzip
UnzipToMemory(zipfile), UnZipCount(zipHandle), UnzipGetItemContent(zipHandle,index)
UnzipGetItemSize(zipHandle,index), UnzipFindItem(zipHandle,filename, caseSensative), UnzipClose(zipHandle)
ADDED - Holding CTRL key while pressing the Play Audio button and it will play "sample" of the audio file instead (25% into file for 10s)
ADDED - Updated lots of the documentations.
ADDED - FSSFTP - Added option to skip validation of KeyFile. if you want to try to force use it.
ADDED - Unlock device dialog is shown when trying to access bitlocker encrypted device.
ADDED - Language Editor can now generate a change report based on old language pack file.
ADDED - Added text tool to Convert JSON file to compact / pretty format
ADDED - MultiFileViewer can now show whitespaces
ADDED - Copy file path to clipboard in Images Viewer (In right click popup menu)
FIXED - Improved error handling when you get Access denied error during copy/move when running as administrator
FIXED - Improved 'skip all' handling when copying/moving files files that are in use
FIXED - FSSFTP - Fixed issue so it does not complain about TLS fingerprint for new sites
FIXED - Close TabSession now work even if tabsession is autoloaded
FIXED - AutoScaling options modified a bit to work better in Win11
FIXED - Calling Copy/Delete from Script resulted in dialog showing Not Support operation
FIXED - Change how some logging operations are done in VFG
FIXED - FileOperationPlugin :ContentCopy - failed in some situations.
FIXED - FileOperationPlugin :AutoSort - failed in some situations.
FIXED - Backup of configuration missed some configuration files.
FIXED - Crash Issue after showing result from Picture action like Resize/Rotate/Convert.
FIXED - TabSessionManager will now make sure menu system is loaded before loading the tab session. (Since this should be added to menu system)
FIXED - Better error handling when opening a 7Zip that is using unsupported compression method
FIXED - FileOperations Result dialog for auto handled errors are changed a bit to better show result.
FIXED - Change some dialogs to use Windows Built in TaskDialog instead of Emulated version.
FIXED - 15+ Stability issue
MultiScript Unzip methods
@var $z = UnzipToMemory( "D:\\Test.zip ");
@var $filesInZip = UnzipCount($z);
@var $itemSize = UnzipGetItemSize($z , 0 );
@var $content = UnzipGetItemContent($z , 0 );
@var $exists = UnzipFindItem($z, "File3.txt", 0);
UnzipClose($z);
New / Changes Text Ids (for translators)
Extension : [ Application : MCPictureViewer ]
+ c 250 - New
+ c 251 - New
+ c 252 - New
Extension : [ Application : File Utils ]
+ m 2214 - New
+ m 2215 - New
Extension : [ Application : File Viewer ]
+ d 340 - New
+ t 113 - New
Extension : [ FileSystem : FS-Virtual Folder Group ]
+ d 100 - New
+ d 101 - New
+ d 102 - New
+ d 110 - New
+ d 120 - New
+ d 121 - New
+ d 122 - New
+ d 123 - New
+ d 124 - New
+ d 125 - New
+ d 126 - New
+ d 127 - New
+ d 128 - New
+ d 103 - New
+ d 104 - New
+ d 106 - New
+ d 107 - New
+ d 108 - New
+ d 112 - New
+ d 113 - New
+ d 114 - New
+ d 115 - New
+ d 116 - New
+ d 130 - New
+ d 131 - New
+ d 132 - New
+ d 133 - New
+ d 134 - New
+ d 135 - New
+ d 136 - New
+ d 140 - New
+ d 141 - New
+ d 150 - New
+ d 151 - New
+ d 152 - New
+ d 153 - New
+ d 160 - New
+ d 165 - New
+ d 166 - New
+ d 167 - New
+ d 168 - New
+ d 169 - New
+ d 189 - New
+ d 190 - New
+ d 191 - New
+ d 170 - New
+ d 171 - New
+ d 172 - New
+ d 173 - New
+ d 174 - New
+ d 175 - New
+ d 176 - New
+ d 177 - New
+ d 178 - New
+ d 179 - New
+ d 180 - New
+ d 181 - New
+ d 182 - New
+ d 183 - New
+ d 184 - New
+ d 185 - New
+ d 186 - New
+ d 300 - New
+ d 301 - New
+ d 302 - New
+ d 303 - New
+ d 304 - New
+ d 305 - New
+ d 306 - New
+ d 307 - New
+ d 308 - New
VFG - Virtual Folder Group
With VFG you can configuration can group 2 or more folders into a virtual folder that are accessed by VFG0: to VFG9:
What you see when you brose to the VFG0: is either the content of the folder that you configured as primary or an aggregation of all folders.
If it aggregate the contents it will not show duplicates.. If file 1.txt is located in folder1 and 2.txt is folder2 the VFG0: will show 1.txt and 2.txt
If you copy files FROM the VFG#: it will read the file from the Primary folder if the file is located there. else it will take the next one folder configured.
If you copy a file TO the VFG#: it will write the file to *ALL* locations that are configured as writeable.
If you delete a file it will be deleted from all locations in the group.
To configure it go to
Menu > Configuration > FileSystem Plugin Settings > "FS-Virtual Folder Groups"
Right now the error handling is not 100% correct.
So please report issues, when it fails, what you think is missing and so on. I really need you feedback if this is usable for you and want features around it you need.
If you show the shell context menu on a VFG item. YOu have a VFG submenu where you can see status and also sync file from primary to the other.
BTW.. VFG will also create its own Log Window so you can see exactly what it does.. Show log using Ctrl+L and there will popup a tab for the device when it is used