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 ... 23
26
Support and Feedback / Re: Issue with file search
« on: November 29, 2024, 16:12:33 »
I've just tested on
Code: [Select]
Édition                          Windows 11 Professionnel
Version                          23H2
Build du système d’exploitation  22631.4460
Expérience                       Windows Feature Experience Pack 1000.22700.1047.0

The same result: this issue is 100% reproducible.

27
Support and Feedback / Re: Issue with file search
« on: November 29, 2024, 15:00:48 »
SEARCHIN is wrong.. one quote for them all.. not for each

With one quote search finds nothing, with the separate quotes it works.

Quote
view issue I don't know. look like after some windows update on some system, some ppl have seen that issue.. Not been able to recreate that

With usual navigation and normal GUI search I've never seen it before. This issue only appears with this command executed. Each time.

28
Support and Feedback / Issue with file search
« on: November 29, 2024, 14:38:25 »
I've created a User Defined Command:

Code: [Select]
MC.FileSearch.Search SEARCHFOR=*.txt AUTOSTART HIDE SEARCHIN="c:\temp\22";"c:\temp\33\"
and inserted it to the QuickLaunch bar. The following is 100% reproducible for me.

0. There must be some txt files in "c:\temp\22" and "c:\temp\33\" folders.
1. Press the newly created button
2. Close the results Tab
3. Then change path. It may require several attempts

Results:
1. Explorer panel Settings look ugly (see pic)
2. Some item in the file list randomly becomes blanc. Refreshing the tab randomly replaces some oter item with a blanc line. Navigation via cusror keys can't skip that line. (see gif)


MC v14.3.3042 x64 Portable on Win10 x64 Pro

29
I had problems with defining multiple search paths in the MC.FileSearch custom command's options. What is the correct syntax for that?

Code: [Select]
MC.FileSearch.Search SEARCHFOR=*.txt AUTOSTART HIDE SEARCHIN="c:\temp\22";"c:\temp\33"

30
Support and Feedback / Re: immediate searching with saved parameters
« on: November 29, 2024, 13:49:36 »
You can create some UDC with desired search params, and then put it to the user menu or on the QL bar.
MC.FileSearch supports HIDE and AUTOSTART parameters

31
Explorer panel settings > Display > Tab > Open new tab when going to new location it tab is locked. Isn't it what you're lookig for ?

32
@Mathias, yes, I apologize. It also works.
P.S. But after changing desktop.ini MC has to be restarted, refreshing Explorer panel is not enough.

33
Yes, it works. Folder icons can be chaged via desktop.ini files.
P.S. But MC doesn't seem to respect desktop.ini settings

34
You can enable "entire-row" Quick launch bar in the Core Settings > Layout. Then you can e.g. drag'n'drop exe-files on it and insert user defined commands.

35
I've disabled Drives toolbar, it is hidden, but its button still work (they actually change current drive) and their hints are displayed (see pic)

36
For me hover preview works: txt, ini, log are displayed correctly. Look at the menu Configuration > Preview Customization, maybe something is wrong there

37
Beta Releases / Re: v14.3
« on: November 15, 2024, 14:49:58 »
@AlanJB, you can take the link from
h__p://multicommander.com/updates/version.xml

38
Try this:
Code: [Select]
@var $current_dir = GetSourcePath();
@var $path_parts  = StrSplit( $current_dir, '\' );
@var $parts_count = arrayCount( $path_parts );

@var $i = $parts_count - 3;
@var $path_tail = "";

for( $i; $i < $parts_count; $i++ )
{
  $path_tail = $path_tail ^ $path_parts[$i];
}

MakeDir( $current_dir ^ 'A16'  ^ $path_tail, "LOCAL,RECURSIVE" );
MakeDir( $current_dir ^ 'AGFT' ^ $path_tail, "LOCAL,RECURSIVE" );

It is assumed that the source folder has at least 4 levels (x:\%LETTER%\%NAME%\CM4000)

39
Support and Feedback / Re: Column autosizing in List view
« on: November 05, 2024, 20:16:00 »
What about optional wordwrap, multiline ?

40
Support and Feedback / Re: How to Drop&Run?
« on: October 29, 2024, 13:55:11 »
BTW: dropping multiple files on a quick launch bar item only sets the first file as parameter, the other files are ignored.

Some programs support multiple files as params, some do not. You can customize QL button and try different settings.

41
Support and Feedback / Re: List/Index Of Files and Folders
« on: September 24, 2024, 20:53:47 »
Some options are available under Tools > To Clipboard menu. Something more advanced can potentially be done via MultiScript.

42
Beta Releases / Re: v14.2 BETA
« on: September 18, 2024, 06:56:06 »
ADDED - Tab-area will now show a folder icon if tabs in tabarea is full, When clicking on icon a popup list is shown with all tabs

When tab area is not full, folder icon is not shown, but clicking its "empty" place still invokes pop-up menu

43
There's a file MultiCommander.xml in the config folder (I use portable version, so it is in the .\Config subfolder, for installable version it should probably be somewhere in the user profile). I configured logging to Full/Debug and that's how <log> section of that file looks:

Code: [Select]
  <log>
    <application>
      <level value="2"/>
      <save value="1"/>
    </application>
    <filesystem>
      <level value="1"/>
      <save value="1"/>
      <copy value="1"/>
      <move value="1"/>
      <delete value="1"/>
      <rename value="1"/>
      <mkdir value="1"/>
      <extended value="1"/>
    </filesystem>
    <filesystemscanning>
      <show value="1"/>
      <level value="1"/>
      <extendedscanlog value="1"/>
      <save value="1"/>
    </filesystemscanning>
    <logwindow>
      <font FontName="Courier New" SizePT="9" Style="" SizePt="0"/>
      <color background="$COLOR_WINDOW" foreground="$COLOR_WINDOWTEXT"/>
    </logwindow>
  </log>

44
@Mathias (Author),
I think @Balu just wants to hide the entire header with column names, not the particular column itself.

45
Support and Feedback / Re: Is it possible to rename
« on: July 19, 2024, 18:13:56 »
If I get you right... Let's suppose there's a folder structure:

Code: [Select]
my_folder\
  subfolder1\
    file1.txt
  subfolder2\
    file2.txt
  subfolder3\
    file3.txt

You can enter my_folder\, switch to "Flat" mode (via Ctrl+Shift+B or "View mode" button in the top right corner of the explorer panel). It will show all the files recursively within one list:

Code: [Select]
my_folder\
  file1.txt
  file2.txt
  file3.txt

Now you can select these files and multi-rename them.

46
Support and Feedback / Re: Adding to filename in multiname
« on: July 18, 2024, 20:42:38 »
If all you want is to add some prefix to a filename, you may simply write it in the Filename field:
Code: [Select]
img_[N]

47
Support and Feedback / Re: "file type" language
« on: June 24, 2024, 13:11:06 »
So now we know that MC shows File Type in correct language at least for RUS and ENG.

48
Support and Feedback / Re: "file type" language
« on: June 24, 2024, 11:20:52 »
1) File type names shown from the filetype columns is returned by Windows. MC ask windows for them. It should return same in Windows Explorer.

I don't know what does "is returned by Windows" mean. But I tried simple reading (Default) value for file extension from registry and then LoadString/RegLoadMUIStringW. Simple reading returns unclocalized string (I tested on RUS/ENG lang packs), while the latter return localized one.

49
Support and Feedback / Re: "file type" language
« on: June 24, 2024, 08:42:09 »
I can only suppose that "File type" is simply read from registry as I did in my script. But in order to display localized string, so called FriendlyTypeName should be read either by LoadString or by RegLoadMUIStringW (the latter is only supported on Vista+)

50
Beta Releases / Re: v14.0 BETA
« on: June 20, 2024, 15:44:51 »
Yes some Windows API report  NOT FOUND and some SHARING VIOLATION..
Its only for some very special system files. Not sure it is worth the time to create some workaround just for them.
Let FileExists() and others return:
* 1 when GetFileAttributes returns true
* 0 when GetFileAttributes returns false and FILE_NOT_FOUND
* 2 (or -1 or whatever else) otherwise

It will guarantee file existence or absence

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