Recent Posts

Pages: 1 [2] 3 4 5 6 ... 10
11
Beta Releases / Re: v14.0 BETA
« Last post by User_99 on April 13, 2024, 18:27:19 »
Thx for the new beta!

Nice feature for "File Operation Error Handing"

Miss some strings for translation. Still wip, or do I miss something?
12
Support and Feedback / Delete zip (after begin scanned) bug?
« Last post by veds on April 12, 2024, 23:16:14 »
Press enter on a zip file with many files in it.
Press enter on ".." to go one level up again.
Press del on that single zip file.

It takes very long to delete that single zip file and the cpu is high.

v14.0 build 2999 (x64)
13
Beta Releases / Copy to zip: skip all doesn't work.
« Last post by veds on April 12, 2024, 22:35:34 »
Select some files and copy them to a zip.
Select the same files and copy them to the same zip file.
A dialog appears with the question whether you want to overwrite the existing file in the destination folder.
Press "skip all".
Instead of skipping all existing files in the destination folder mc will ask the same question for the next file.


v14.0 build 2999 (x64)
14
Support and Feedback / Hotkey to compare folders-advanced
« Last post by Cagu on April 09, 2024, 10:50:03 »
Hello,
I'm new here and am currently familiarizing myself with Multi Commander.
First of all, thanks to the developer for this great program.
I often use:  Compare Folders - Advanced - Date: disabled, File size: larger or smaller, File content: disabled.

Unfortunately, these settings have to be clicked again each time.
Is there a way to somehow save this as the default settings?

It would be even better if you had a keyboard shortcut for this.

I found this old thread here: https://forum.multicommander.com/forum/index.php?topic=4352.0

But that didn't get me anywhere because I'm quite a computer dummy.
Maybe someone here has a solution to this problem?

Thanks in advance.
Greetings

15
Any idea about what to do now?

Look like the Service accepting the crashreport might not have returned the crashid. I will fix that.. I rebuild that service a while ago so that might have broken.

What kind of copy was it ?
Did it copy anything ? or crash before it started ?  Was it normal from and to devices ? Or was it over network or something else not "common"
Like a said.. Copy / Paste and Drag and Drop are different.. Copy / Paste is handled by Windows and MC have very lite control over that.

16
Support and Feedback / Re: Crashed when moving files on the same panel
« Last post by killo on April 04, 2024, 08:22:59 »
Any idea about what to do now?
17
Ok, i have anothe crash, now moving from one panel to the other using the mouse, but in the report screen don't show any ID.

 I add the windows of the crash report and the windows crash report.
Strange. Normally after it been sent it shows a crashid it got in the report system.
18
Support and Feedback / Re: Crashed when moving files on the same panel
« Last post by killo on April 03, 2024, 20:30:56 »
Ok, i have anothe crash, now moving from one panel to the other using the mouse, but in the report screen don't show any ID.

 I add the windows of the crash report and the windows crash report.
19
Thank you for adding this feature —it's a lifesaver ! Also PDF Previews are working —comes in real handy ! Audio previewing via user defined commands is super useful !
20
Beta Releases / v14.0 BETA
« Last post by Mathias (Author) on April 02, 2024, 13:24:58 »
Biggest change is that the error handling around Fileoperations (Copy/Move/Delete) have been rewritten.

 
  55+ Changes

-- Build 2999 - 2024-04-08
 ADDED - Experimental support for adding scriptable columns, Let a MultiScript fetch what should be shown in a column in the file list
 ADDED - MultiScript function "VariableDefined(<str>)" that returns 1 if text provided exists as a variable.
 FIXED - 2 Stability issues

-- Build 2997 - 2024-04-02

 CHANGE- Major rewrite of error handing of Copy/Move/Delete operations.
 ADDED - MultiDataViewer is now language aware when doing find. (Can be turned off in option for faster search)
 ADDED - Opening Zip archive with large number of files is now faster
 ADDED - Copy/Move/Delete options for auto handling errors
 ADDED - Copy/Move options for auto handle overwrite options.
 ADDED - Copy/Move/Delete options for showing error report after operation is done
 ADDED - Options for Copy/Move/Delete for System/Hidden/ReadOnly options joined to be 1 options for "Protected Files" (instead of 3)
 ADDED - Support for 64px size thumbnails
 ADDED - DataPreview templates can be updated if they are not customized.
 ADDED - Playing audio file are now shown in status bar
 ADDED - Play Audio Sample command to menu (Will jump 25% into audio file and play for 15s then stop)
 ADDED - Play audio will now try to play "mp3,wav,mp4,m4a,avi,mkv,acc,wma,wmv,asf,flac" (some are movies but it will play the audio if possible)
 ADDED - Play/Stop Audio file icon button to toolbar
 ADDED - Improvements how playing audio files works and are shown.
 ADDED - Preview template for audio files can now select to play the audio file
 FIXED - Unpacking Zip with had a space in the filename just before the ".zip" part.
         Failed to unpack since it tried to unpack into a folder of the name, and space at the end is not allowed on Windows.
 FIXED - Issue when moving tab to other side and the new active tab in the "from" panel was delayed loaded.
 FIXED - 4 Stability issues




A new Experimental feature that probably only I myself have used for is ** Scriptable Columns. **

You can now create a MultiScript that will be used to get what should be shown in a column in the file list.
Add configure Scriptable filepropertys go to Column Customization (Right click on column header)
then at the side of the available columns. there is a script button.
Use this button to create a new file property (column) and connect it with a MultiScript.

Right now there is NO RESTRICTION on what the MultiScript can do when it runs for getting Column text.
But the script will be run for EACH folder and files in the file list where the column is shown.
So, if you have a MultiScript that execute an external program. this program will be executed for all items.
And that is probably not a good idea.. So be careful what script you connect.

When connect a Column with a MultiScript you select what input and output variables in the script it should use.
The Input variable in the variable that will be added with the value of the full path to the file.
Output variable it the variable that the result will be stored in.

To be able to create and debug the script easier.
You check now check if a variable exists, and if not it can be added.
This way. You can easy test the script in ther MultiScript Debugger.

Example of script that will just show the file extension in a column.


Code: [Select]
if(IsVariableDefined("$_FILEPROP_FILEPATH") == 0)
{
  @var $_FILEPROP_FILEPATH = GetTargetFocusPath();
}

@var $ext = PathGetFileExtPart($_FILEPROP_FILEPATH);

@var $_FILEPROP_DISPLAYNAME = $ext;

So to test this.
 * Create new MultiScript and paste in the code above. And save it
 * Go to Customize columns (right click on column header)
 * Click on Script button to add/edit Scritable columns
 * Click New. and then select the script you created, set Name and save.. then close.
 * The new column should now be shown in the list. You can filter on Scriptible and you find it easier.
 * Add the new column to current layout
 Save and close Window


File Operation Error Handing

File operations error handing have been totally changed.. You can now configure how File Already exists error should be handle.. (Overwrite options)
and you can also configure how Protected Files should be handle.. (Files with Hidden / System or ReadOnly file attributes.)
Other errors are not auto handled. but you can enable to skip error. then it will skip when other errors happened.
And if Show Result is enabled you get a dialog showing what errors happened and how they was handle..

The thing is that MC support many different types of FileOperation.. File normal device to normal device, To virtual device, To network, To FTP and so on.
So many different situation and I'm not sure all of them work with the auto handle and auto skip on error.

So please report any issue you see. 


Pages: 1 [2] 3 4 5 6 ... 10