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 - Mathias (Author)

Pages: 1 ... 167 168 169 170 [171] 172 173
4251
Support and Feedback / Re: Relative paths
« on: August 02, 2011, 10:01:46 »
File Editor Setup dialog when configuring what file editor to use. Type in a path that are relative to the installation path of MC.

for your example that would be

eg  "..\fastEditor\fastEditor.exe"


4252
Support and Feedback / Re: New licence type (free of charge)
« on: August 02, 2011, 09:52:52 »
It is free for both personal and commercial usage. unless you are an evil person, Then you must pay :), But since evil person are evil, I don't except to see any money from them.

MC did require purchase of license before. But when changing it to free and removing text that was referring to registered/purchase, some was missed. But they are removed when I find them.

- Mathias

4254
Support and Feedback / Re: "Page Not Found" in Documebntation
« on: August 01, 2011, 22:43:19 »
It is not written yet,  :)

So much to do. So little time.

4255
Feature Requests and Suggestions / Re: Folder SIzes
« on: August 01, 2011, 20:57:39 »
So it is not just when you start it should calculate folders size. It is all the time. As soon as it finds a folder it should start checking the size for the folder?

Don't that slows thing down? Scanning the harddrive like crazy all the time, or are you settings a filter so it only do that under some path ?

4256
Feature Requests and Suggestions / Re: Folder SIzes
« on: August 01, 2011, 20:05:29 »
You want it to start rescanning all the folder to get their sizes every time you start ?

4257
Support and Feedback / Re: How do I change the default editor?
« on: August 01, 2011, 20:03:47 »
Very strange. I have been trying to make it fail. But Im failing at making it fail.

Only idea I have is that is fails to save the configuration.

If you go to
Menu > Help > Goto > Config Folder

You can see if the time of MultiCommander.xml file is changed when you save the file editor configuration.


4258
Support and Feedback / Re: How do I change the default editor?
« on: August 01, 2011, 18:04:26 »
Also make sure you do not remove the "*" under the "File extensions to use this editor"
* means default.

If the * is not there, it will not be the default editor, and it will fallback to notepad.exe when open, but the dialog should still show your changed.

If the dialog reverts back. then the changes was not saved. Or saving failed

4259
Support and Feedback / Re: How do I change the default editor?
« on: August 01, 2011, 17:56:36 »
Did you press the "Save" button in the File Editor Setup dialog

4260
Support and Feedback / Re: Mass file renamer
« on: August 01, 2011, 17:40:30 »
A plugin for advanced mass renaming is under development.

But a limited mass renaming is already supported.

Menu > Tools > Rename > Replace text in name

It can replace a subtext in all the selected file with a new text.

4261
Support and Feedback / Re: How do I use tabs?
« on: August 01, 2011, 17:37:34 »
And you can duplicate a tab with Ctrl+T

Duplicate tab will create a new tab showing the same path as the one you press CTRL+T on.

If you right click on a tab you will get a popup menu with the tab commands.

4262
I have added a some of them now. More will be added later

  • GetSourceFocusName();
  • GetSourceFocusPath();
  • GetTargetFocusName();
  • GetTargetFocusPath();
  • GetSourceSelectedFileNames();
  • GetTargetSelectedFileNames();
  • GetSourceSelectedPaths();
  • GetTargetSelectedPaths();
  • LogDumpArray();

Example.
Code: [Select]
-------------------------
@var $SourceFocusItemName = GetSourceFocusName();
@var $SourceFocusItemPath = GetSourceFocusPath();
@var $TargetFocusItemName = GetTargetFocusName();
@var $TargetFocusItemPath = GetTargetFocusPath();

Log(0, 10, "SourceFocusItemName : \"" + $SourceFocusItemName + "\"");
Log(0, 10, "SourceFocusItemPath : \"" + $SourceFocusItemPath + "\"");
Log(0, 10, "TargetFocusItemName : \"" + $TargetFocusItemName + "\"");
Log(0, 10, "TargetFocusItemPath : \"" + $TargetFocusItemPath + "\"");


@var $SourceSelectedFilenames = GetSourceSelectedFileNames();
@var $TargetSelectedFilenames = GetTargetSelectedFileNames();
@var $SourceSelectedPaths = GetSourceSelectedPaths();
@var $TargetSelectedPaths = GetTargetSelectedPaths();
LogDumpArray($SourceSelectedFilenames);
LogDumpArray($SourceSelectedPaths);
LogDumpArray($TargetSelectedFilenames);
LogDumpArray($TargetSelectedPaths);
------------------------------------------

Output in application log window is

Code: [Select]
2011-07-30 16:02:09.146 SourceFocusItemName : "notepad.exe"
2011-07-30 16:02:09.147 SourceFocusItemPath : "C:\Windows\System32\notepad.exe"
2011-07-30 16:02:09.149 TargetFocusItemName : "System32"
2011-07-30 16:02:09.151 TargetFocusItemPath : "C:\Windows\System32"
2011-07-30 16:02:09.158 ==[ Variable : $SourceSelectedFilenames ]==
2011-07-30 16:02:09.158 [0] : "notepad.exe"
2011-07-30 16:02:09.158 [1] : "npmproxy.dll"
2011-07-30 16:02:09.158 [2] : "nrpsrv.dll"
2011-07-30 16:02:09.158 [3] : "nshhttp.dll"
2011-07-30 16:02:09.159 [4] : "nshipsec.dll"
2011-07-30 16:02:09.159 [5] : "nshwfp.dll"
2011-07-30 16:02:09.159 [6] : "nsi.dll"
2011-07-30 16:02:09.159 ===========================
2011-07-30 16:02:09.159 ==[ Variable : $SourceSelectedPaths ]==
2011-07-30 16:02:09.160 [0] : "C:\Windows\System32\notepad.exe"
2011-07-30 16:02:09.160 [1] : "C:\Windows\System32\npmproxy.dll"
2011-07-30 16:02:09.160 [2] : "C:\Windows\System32\nrpsrv.dll"
2011-07-30 16:02:09.161 [3] : "C:\Windows\System32\nshhttp.dll"
2011-07-30 16:02:09.162 [4] : "C:\Windows\System32\nshipsec.dll"
2011-07-30 16:02:09.162 [5] : "C:\Windows\System32\nshwfp.dll"
2011-07-30 16:02:09.162 [6] : "C:\Windows\System32\nsi.dll"
2011-07-30 16:02:09.163 ===========================
2011-07-30 16:02:09.163 ==[ Variable : $TargetSelectedFilenames ]==
2011-07-30 16:02:09.164 [0] : "Setup"
2011-07-30 16:02:09.164 [1] : "ShellNew"
2011-07-30 16:02:09.164 [2] : "System32"
2011-07-30 16:02:09.165 [3] : "SysWOW64"
2011-07-30 16:02:09.166 ===========================
2011-07-30 16:02:09.166 ==[ Variable : $TargetSelectedPaths ]==
2011-07-30 16:02:09.167 [0] : "C:\Windows\Setup"
2011-07-30 16:02:09.167 [1] : "C:\Windows\ShellNew"
2011-07-30 16:02:09.167 [2] : "C:\Windows\System32"
2011-07-30 16:02:09.168 [3] : "C:\Windows\SysWOW64"
2011-07-30 16:02:09.168 ===========================

4263
More script function is definitive needed.
And you got a good point about the functions you mention. I will add something like that for the next beta release.

If you have the need for any more functions just let me know and I will see what I can do.


4264
Sounds useful.

And since it already has function for creating MD5/CRC32 /SHA1 that should easy to add.

I will add it to the list.


4265
Feature Requests and Suggestions / Re: [Request] Hide menu bar
« on: July 28, 2011, 21:57:53 »
I can see how that can be good to have.

should not be to hard to fix.. I think.

I will add it to the list.


4266
It is not there.. yet.

But it is coming. It is being designed and will be added.

4267
Support and Feedback / Re: Copy files with long filepaths
« on: July 28, 2011, 07:48:15 »
Internally MC supports paths up to 4096 characters.

Support for long paths are limited. It works in some places and some don't. Multi Commander is using 3th party code for a lot of things. Like for example archives like 7zip, rar and so on, and they might have problem with long path. It has not been tested

The main functions have only been limited tested with long paths. when working with files on local harddrive.

- Mathias

4268
Support and Feedback / Re: Win2K
« on: July 26, 2011, 20:39:34 »
Unfortunately I don't remember what API from WinXp that is used, that does not exists in 2000.

If you get it working with KDW, please let me know.


4269
Support and Feedback / Re: Win2K
« on: July 26, 2011, 20:16:46 »
Win9x and Windows 2000 support was dropped because some OS feature that exists from WinXP was needed.


4270
Feature Requests and Suggestions / Re: [FIXED] Portable version
« on: July 26, 2011, 11:18:27 »
Sounds like an good idé. I will look into that.

4271
Support and Feedback / Re: View Image or Media files
« on: July 26, 2011, 11:17:38 »
Right now it is not possible to configure external viewers for F3/view.
A workaround is to configure Edit to use a external picture viewer and use edit as view.
Another workaround is to define a user command that open the selected file with an external viewer and then assign a hotkey for that command.

A built in picture viewer and configuration of external viewers is something that is very high up on the todo list.

- Mathias

4272
Support and Feedback / Re: File/Folder Copy
« on: July 24, 2011, 20:22:36 »
Windows build in copy is NOT used.  Multi Commander using it's own. Have it's own buffers and ways of reading and writing.
For example if target and source is located on physical different drives, it is copying using async mode (Write data on target while at the same time it can read from the source)

It is possible to tweak how this should work.
In the Copy dialog you can "Options>>" and then "Advanced>>" and the Read/Write Strategy can be tweaked.
However... It is not recommend that anything is change here, unless you really know what you are doing..

4273
Support and Feedback / Re: Editor
« on: July 24, 2011, 00:49:34 »
After you opened the button editor, You need to click on the button you want to edit.
Then the editor will update and show the current state of that button. Then you can change it and then click on "update changes" to save the changes.

4274
Don't really know if I understand.

If you stand in one location you want to show be able to change so it shown all files and folder and sub files/folders. Like a flat structure.

Eg if you have this tree structure.

 F:\File.txt
 F:\Folder1\File2.txt
 F:\Folder2\SubFolder1\File1.txt

then you would see

 File.txt
 File2.txt
 File1.txt

And if you select and copy File1.txt to G:\ it would keep the tree structure for file1.txt and
you would get G:\Folder2\SubFolder1\File1.txt

Is that what you mean ?

4275
Support and Feedback / Re: removed file extensions
« on: July 20, 2011, 11:17:45 »

Yes hiding the file extension can be dangerous, I agree.
If showing the file extension in the 'ext' column is not what you want, you can have the file extension to be show in the filename or even in both columns.

Explorer Panel Settings->Layout.->File and Folder Display->File Extension :

3 options for that exists : 'Both in filename and ext field' , 'Only in filename field', 'only in ext field.'

List mode is planed and coming.



Pages: 1 ... 167 168 169 170 [171] 172 173