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 ... 21
51
Support and Feedback / Re: Deleted files don't go to Recycle Bin
« on: September 24, 2019, 08:52:25 »
Quote
Additionally, what's the difference between Remove link target and link to Remove link, not target?

1. Create temporary folder (you may optionally copy some test files there)
2. Create a couple of Junctions (Tools > File Links > Create Links...) to that folder
3. Try delete one of the junctions with Remove link, not target option
4. Try delete other junction with Remove link target and link option

52
Support and Feedback / Re: Wildcards In MultiRename Search and Replace
« on: September 23, 2019, 13:25:50 »
You may use regular expressions, e.g.
Code: [Select]
(\d*)\s(\1)(.*)|$1$3So it would look like on attached screenshot

53
I'm not sure I understand you right, but in MC you can define different applications for viewing, launching and editing. I.e. you may view (F3) *.txt with AkelPad, edit (F4) with PSPad and launch (Enter, Doubleclick) with default windows app.

Or do you mean TC-like behaviour where launch (Enter, Doubleclick) can show pop-up menu with multiple open-with entries?

54
Confirm. The issue exists.

===

There's also issue with [Copy] button in the User defined commands dialog. When I press [Copy] new command is created, but some fields are shown empty. E.g. if source command is "Internal command" then copy will show empty fields "Module" and "Command". If source is "Custom commands" then copy will show empty "Command". In fact they are not empty and after saving will be shown correctly, but it's a bit confusing.

55
Feature Requests and Suggestions / Re: V9.0 IS FINALLY OUT
« on: August 21, 2019, 13:49:22 »
Please implement External Packers support in packer profiles.

P.S. There's minor issue with packer profiles.

1. Add new profile and
2. Immediately remove it

Result: Profile is removed, the first existing is loaded, but its name remains from the removed one, so MC asks to save chaged profile.

56
Support and Feedback / Re: Correct Folder Date/Time No Longer Works
« on: August 03, 2019, 13:31:33 »
Correct folder date/time works for me but only partially. It only applies datetime of the newest file but not folder. E.g. if there is a file with 08.03.2019 12:03 and a folder with 08.03.2019 12:05, then after correcting parent folder will have datetime 08.03.2019 12:03 instead of 08.03.2019 12:05

57
Feature Requests and Suggestions / Re: V9.0 IS FINALLY OUT
« on: July 31, 2019, 18:23:34 »
Another FR.

There're 2 folders: folder1 and folder2. If I rename folder2 to folder1 I'd like contents of folder2 to be moved (asked) to folder1, like Windows does.

58
Feature Requests and Suggestions / Re: V9.0 IS FINALLY OUT
« on: July 29, 2019, 20:57:19 »
It still shows [Release Candidate] in the window caption.
FR: Delete items from operation queues.

59
Support and Feedback / Packing with custom extension issue
« on: June 26, 2019, 13:03:31 »
There's a minor problem. If custom extension is set in pack dialog, no packing occurs. Instead MC creates a folder with new name and copies files there.
E.g. if I set archive name to X:\temp\archive.zzz instead of X:\temp\archive.zip, MC will create X:\temp\archive.zzz\ folder.

60
Support and Feedback / Re: help!
« on: June 20, 2019, 12:55:45 »
AFAIK, there's no official way.

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

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

63
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

64
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

65
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.

66
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.

67
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.

68
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?

69
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

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

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

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

Code: [Select]
MC.Explorer.NewBrowser

73
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.

74
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.

75
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)

Pages: 1 2 [3] 4 5 6 7 ... 21