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 ... 166 167 168 169 [170] 171 172
4226
Support and Feedback / Re: making multi commander default
« on: August 03, 2011, 08:25:22 »
You can not replace it as the default shell in window. If you did that all your desktop icons will go away, and some of the feature in Multi Commander depends on Windows Explorer.

It might be possible top tweak Windows Explorer so that when clicking on my computer or folder. Mulit Commander would open.
But I don't know exactly how to do this. It has something to do with changing HKEY_CLASSES_ROOT\Folder in the registry.
You can try google for that, But I do not recommend messing around in the registry like that, unless you really know what you doing. If you do decided to change things there. Make a backup first.


4227
Support and Feedback / Re: Relative paths
« on: August 02, 2011, 20:16:51 »
No there is no constant for that.. I might add some for the next release.

You can try to edit the config file manuall.

"Menu > Go to > config folder" and  then edit MultiCommander.xml

The find the editors tag and change that

eg

<editors>
    <editor name="Notepad2" cmd="..\n2\notepad2.exe" parameters="${filepath}" ext="*"/>
</editors>

I got it working with notepad2

4228
Support and Feedback / Re: Display problem on Windows 7
« on: August 02, 2011, 17:03:54 »
Yes, Multi Commander still have some High DPI issues.

Im planing to be able to fix them soon.

4229
Feature Requests and Suggestions / Re: Change font size of path bar
« on: August 02, 2011, 17:00:27 »
You can.. sort of.

It is the font for 'Path' in the configuration. However, there is a bug so that the height of the path field is not changed. So if the font is to big it will be clipped. 


4230
You right

The documentation could be better, I got a long list with documentation stuff I should improve. I will put you recommendations on that list.

Unfortunately I had to prioritize bug fixing over writing documentation. But I will update the documentation when I get some time over.

4231
Support and Feedback / Re: New licence type (free of charge)
« on: August 02, 2011, 10:09:30 »
The expiration date is when the program will force the user to update to a newer version.

This because I do not want to receive bug reports, crash reports and issues for old versions, because thous issues are most likely already fixed.


4232
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"


4233
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

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

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

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

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


4239
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

4240
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

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

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

4243
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 ===========================

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


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


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


4247
It is not there.. yet.

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

4248
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

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


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


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