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 ... 3 4 5 6 [7] 8 9 10 11 ... 21
151
Support and Feedback / Re: File find
« on: September 15, 2015, 06:34:42 »
Basic info coud be found here

152
Support and Feedback / Re: File find
« on: September 14, 2015, 09:51:27 »
Probably you should use RegEx like
Code: [Select]
(.*)(word1)(.*)(word2)(.*)to search for word1 followed by word2

or
Code: [Select]
(.*)(word1|word2)(.*)(word2|word1)(.*)to ignore order

153
Beta Releases / Re: MC 5.5.1 build 1980 failed to read config file
« on: August 20, 2015, 06:10:46 »
Yes, 5.5 final is OK.

BTW, error message is hidden behind splash. It is only partly visible with default Windows 7 UI, but with classic theme it can't be seen so MC looks frozen

154
Beta Releases / Re: MC 5.5.1 build 1980 failed to read config file
« on: August 19, 2015, 21:14:28 »
And version 5.5.0.1975 does not ?  (5.5.0 Final)  they are both still built with VS2013. Only big change is compiler and that is only for the 5.5.1 beta
But I don't see how change of compiler can cause this.

Btw what file(s) date was changed ?  the Config/ folder or its content..  Under userprofile or Program files ?
5.5 final probably works ok but i've replaced exe with 5.5.1, will check later
I had the problem with Aliases.xml in the Config folder of MC portable. If i change year to e.g. 2015, MC starts ok. If i change it to 1614, error occurs. Haven't tried other xml files, but i think that result will be the same

P.S. It's on Win 7 Pro

155
Beta Releases / Re: MC 5.5.1 build 1980 failed to read config file
« on: August 19, 2015, 19:13:11 »
I think i've found out what causes this error in new versions.

In a few words...
1. Config file date. It should be "valid". E.g. if you change year to 1614 error will occur.
2. Config file owner. My MC folder (with subs) owner was 'Unknown', i changed it to current user and error has gone.

So, Mathias, something definitely has changed, because 5.5.0.1967 RC and below work fine, while newer don't.

156
Beta Releases / Re: Multi Commander 5.2 Beta (Now in RC)
« on: July 17, 2015, 15:54:35 »
RC? What about lang changes?

157
Support and Feedback / Re: Exchange Windows
« on: July 01, 2015, 16:11:03 »
Ctrl+U

158
Feature Requests and Suggestions / Re: Flat FileSystem View
« on: June 30, 2015, 10:42:15 »
For the moment you activate it from the View mode popup. It might and will possible to moved to another place later on.
Pressing the "Flat FileSystem View" option it will activate it. to deactivate it just do a refresh. (It might look like a toggle button but it is not.)
.....
* Flat view are like a snapshot. If you want to refresh it. select the "Flat FileSystem View" option again. That will trigger a rescan.
I think rescan should be triggered by refresh and "Flat FileSystem View" menu option should be toggleable.

159
Click on color rule icon (multicolor circle on toolbar). There you can disable file coloring or change coloring rules. You may also disable file coloring via Explorer panel settings > Colors > File and Folder state colors > Rule based coloring of file and folders

160
Support and Feedback / Re: predefined folders
« on: May 06, 2015, 10:53:04 »
Look here

161
Support and Feedback / Re: Custom filters
« on: April 22, 2015, 06:27:07 »
1. You may right click either on Fiter icon or Select/Unselect icon and customize filters

2. You may create user defined command like (Configuration > User Defined Commands, New, Command type = Custom command)
Code: [Select]
MC.Explorer.Selection.Select FILTER="<10K"or
Code: [Select]
MC.Explorer.SetViewFilter FILTER=">40K"

162
Ctrl+F = Goto View Filter

The filter can be set via custom command like MC.Explorer.SetViewFilter FILTER="*.*"

Not sure if there is a possibility to toggle filter on/off, but a workaround  probably can be done via MultiScript.

163
Inverz/filled cursor option please!
It is already possible to configure in Explorer panel options.

164
Beta Releases / Re: Multi Commander v5.1 BETA
« on: March 07, 2015, 21:05:00 »
After update to this beta, when I try to start MC, it takes over 1,5GB of RAM in few seconds and no window of MC shows. I have to kill the app. I must downgrade :)
Win 7 32bit
Try the following:
1. In your previous working version perform "Backup configuration"
2. Perform clean install (or unpack portable) of the latest version
3. Upgrade to the latest beta
4. Perform "Restore configuration"

This helped me.

165
Branch (flat) view - show all files in the current folder and all subfolders in a single file panel.

166
Support and Feedback / Re: Network drive
« on: February 15, 2015, 19:58:47 »
Here is my vision.

External HDD is connected to Zyxel keenetic router. Windows Explorer is able to "see" that drive while MC is not.

167
Feature Requests and Suggestions / Re: Features-Updates-Mods
« on: February 12, 2015, 13:10:01 »
So far...

Multiple columns. Implemented as List View mode

Option not to remember a file selection or not when changing folder. Implemented (see Explorer panel settings)

Internal edit/view/others. Internal file assotiations can be set (respecting relative paths)

Symlink/hardlink creation support. Implemented (see Tools > File Links)

168
Support and Feedback / Re: How do I get the File Menu back
« on: February 05, 2015, 05:12:44 »
Ctrl+M

169
Support and Feedback / Re: MC.Utils.CreateLink doesn't work?
« on: January 20, 2015, 13:49:53 »
Code: [Select]
if ( GetSourcePath() == GetTargetPath() ) return;

@var $sel_files = GetSourceSelectedPaths();
@var $src_file;
@var $lnk_file;
@var $i = 0;

for ( $i = 0; $i < arrayCount( $sel_files ); $i++ )
{
  $src_file = $sel_files[ $i ];
  $lnk_file = GetTargetPath() + PathGetNamePart( $src_file );
  MC.Utils.CreateLink LNKTYPE=1 LNKTRG="{$src_file}" LNKSRC="{$lnk_file}";
}

170
Support and Feedback / Re: Revert hotkey map to Commander style
« on: December 04, 2014, 19:33:24 »
Menu Configuration > Quick Look'n'Feel setup

171
1. Go to menu Configuration > User defined commands
2. Create new command
3. Set type to Internal commands, module to Multi Rename, command to Multi-Rename
4. Press [Hotkey] button and assign desired shortcut.

172
Support and Feedback / Re: Issue with copy to existing file
« on: November 17, 2014, 09:08:04 »
Use Rename and it will work as you want it.
As i understand, file_bak.txt - is a file that should always be the same, and file.txt is a file that is changed frequently.
So you need to replace the work file by the original copy, keeping that copy unchanged.

Of course, a script may be written, but it would require a certain naming scheme.

173
mrfx
use Commander style look'n'feel

174
Feature Requests and Suggestions / Re: toolbar mods
« on: August 21, 2014, 19:11:54 »
Core settings > Layout > Application layout > Toolbars > Quick launch bar (Entire row)

Is this what you're looking for?

175
Application - Multi Commander - ( MultiCommander_lang_en.xml )

FileSystem - ToolTip
Code: [Select]
F - 27
Generics
Code: [Select]
G - 34
G - 150
G - 151

Where and when do they appear?

Pages: 1 ... 3 4 5 6 [7] 8 9 10 11 ... 21