Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Jungle

Pages: 1 2 3 4 5 [6] 7 8 9 10 ... 24
126
Support and Feedback / Re: help!
« on: June 20, 2019, 12:55:45 »
AFAIK, there's no official way.

127
Support and Feedback / Re: Checksum calculation issue
« on: June 13, 2019, 14:36:48 »
This update is installed

128
Support and Feedback / Re: Checksum calculation issue
« on: June 13, 2019, 13:19:16 »
OS: Win7 Enterprise

129
Support and Feedback / Re: Checksum calculation issue
« on: June 13, 2019, 10:19:06 »
Maybe I do something in a wrong way, but look at the pic

130
Support and Feedback / Checksum calculation issue
« on: June 05, 2019, 08:21:48 »
1. It seems that MC fails to calculate SHA-256/512 checksums
2. For SHA-512 no caption is displayed in the checksum tree

MC v8.3.2469

131
Support and Feedback / Re: Search hidden files
« on: April 16, 2019, 07:10:10 »
It works, at least in v8.3.2469. Open search (via menu/hotkey/...), press [Advanced] button, go to [Date/Size/Attributes] tab, check Hidden attribute and start search.

132
One of the ways is to use MultiScript. E.g. the following script changes destination files last write time to the one of the source files.
Code: [Select]
@var $src_path = GetSourcePath();
@var $dst_path = GetTargetPath();

if ( $src_path == $dst_path )
{
  return -1;
}

@var $src_sel = GetSourceSelectedFileNames();
@var $n;
@var $src_file;
@var $dst_file;
@var $time;

for ( $n = 0; $n < arrayCount( $src_sel ); $n++ )
{
  $src_file = $src_path ^ $src_sel[ $n ];
  if ( IsFolder( $src_file ) )
  {
    continue;
  }

  $dst_file = $dst_path ^ $src_sel[ $n ];

  if ( FileExists( $dst_file ) )
  {
    $time = GetFileTime( $src_file );
    SetFileTime( $dst_file, $time );
  }
}
But this script works for manually selected files within two folders. It's not much harder to automatically find all mismatching files as long as two folders are compared. But if you want to sync whole folders structure it would require [significantly] more work.

133
Beta Releases / Re: MultiCommander v8.9 BETA
« on: March 07, 2019, 08:01:11 »
Maybe a compact (optional) floating window with all active operations, which could be minimized/restored to/from that window? Like external status bar. But I guess it is not an easy task.

134
Beta Releases / Re: MultiCommander v8.9 BETA
« on: March 07, 2019, 06:26:33 »
One know issue is that if the search is taking long time to scan and it does not find anything for a long time. You do not really see that anything is happening.
It looks like it might have stalled. but it has not.
I have not really decided on how to show that it is still working yet.  So if you got a cleaver idea. feel free to post it.
What about "endless"/marquee progress bar llike when calculating folder size?

135
Some locale strings are hardcoded in .exe. E.g. "Result options", "List result in"...
Could you please check all new locale strings and move them to lang files before RC?

P.S. Some strings only present in MultiCommander_def.xml. E.g. "Extended filesystem scanning logging" from Core settings

136
Ctrl+M or
Alt > View > Menu Bar ?

137
I've just tested, it works. At least with commander style look'n'feel config (8.3.2469)

138
Support and Feedback / Re: NEWTAB option in button wizard mode
« on: January 03, 2019, 10:01:29 »
Use

Code: [Select]
MC.Explorer.NewBrowser

139
Please consider implementing Resume operation for copy/move in Already Exists Dialog. So only remaining part of source file would be appended to the target file (instead of whole file like Append operation does).

It might be an item in [More >>] menu. E.g. when target file has less size than source, that item would be enabled, otherwise it would be disabled.

140
Beta Releases / Re: Multi Commander v7.9 BETA
« on: March 27, 2018, 18:30:40 »
Issue with password protected 7-zip archives: if archive was created with "Encrypt file names" option, MC asks password 3 times while unpacking.

141
Beta Releases / Re: Multi Commander v7.9 BETA
« on: March 24, 2018, 16:59:57 »
Please update 7-zip lib to current version (18.01 at the moment)

142
It can be easily reproduced.

1. Create two folders: c:\temp\1 and c:\temp\1\2.
2. In one panel enter c:\temp, and in other panel enter c:\temp\1\2.
3. Now try to rename folder c:\temp\1.
Result: rename failed.


P.S. But such behaviour is common for Windows itself and most file managers.

143
Feature Requests and Suggestions / Re: Create a folder and go to it
« on: November 29, 2017, 09:08:26 »
MC already supports it. There're at least 2 ways:

1. pressing Ctrl+Enter in "Create new folder dialog";
2. specifying GOTO param for Custom command "MC.Explorer.Makedir".

144
Support and Feedback / Re: Active Side every Time 75:25
« on: November 05, 2017, 17:33:11 »
Is ther a Way to setup that every Time the active windows have the size of 75:25?

If you simply want to have 75:25 panels ratio at MC start, then one of the ways is to create user defined command and pass it as command line param to MC executable.
1. Go to menu Configuration > User defined commands
2. Add new command and name it e.g. "set panels"
3. Change Command type to "Internal commands", Module to "Multicommander (base)", Command to "75 / 25"
4. Save changes.
5. Create shortcut to MC and add command line parameter '-AutoRun="set panels"' (command name must be enclosed in double quotation marks)

If you want a panel to be automatically resized to 75 after activation, then it's probably not possible.

P.S. Some time ago I've got an idea of "events" like OnTabCreate, OnLeaveTab etc. So each event would allow to execute user command. But then I realized that most likely it would cause much pain with almost no gain for Mathias to implement this.

145
Support and Feedback / Re: Change Default Folder / Directory Color?
« on: September 03, 2017, 20:24:00 »
Explorer Panel settings > Colors > File and Folder state colors
or/and
File Coloring rules editor

146
You can create Multiscript-based user defined command and pass it as command line parameter. See online doc for details.

147
Support and Feedback / Re: Session, save & mapped network folder
« on: August 04, 2017, 21:35:06 »
By default MC doesn't save network paths on exit. Check the following setting:
Explorer panel settings > Display > Save on exit > Remember only paths to local harddrive

148
Beta Releases / Re: MultiCommander v7.3 BETA
« on: July 06, 2017, 20:05:46 »
The following pattern seems to work (in 7.1)
Code: [Select]
(19[0-9][0-9])|" ($1)"

149
Support and Feedback / Re: Hide Folder Tree by default
« on: June 17, 2017, 08:10:06 »
Not a button:
Configuration > Explorer panel settings > Tab > Default settings for new tabs > Show folder tree

150
1. I told that it is similar behaviour. But personally I think that both cases have the same root.

2. Open Windows Explorer window and launch such exe (in my case it is GoogleChrome portable from portableapps.com). Security warning will be shown. Now try go back to Explorer window. It is impossible because warning dialog is modal.

Now launch that exe in MC. Warning dialog is not modal for some reason.

Pages: 1 2 3 4 5 [6] 7 8 9 10 ... 24