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 8 9 10 ... 21
126
Support and Feedback / Re: Store location to the closure
« on: April 17, 2016, 19:10:17 »
Jochen
You may save/load tabs. See here
It is also possible to use startup file and/or startup User command. See here

127
Support and Feedback / Re: Moving HTML files.
« on: April 14, 2016, 12:51:35 »
The program have to assume/guess that the files belong together and I think that can be dangerous. and lead to issues..  Maybe..
Just to clarify. I meant if USESHELL applied then MC should perform copy via Windows shell API.

128
Support and Feedback / Re: Moving HTML files.
« on: April 14, 2016, 09:40:11 »
abrogard
You still can have [almost] the same behaviour with MC (tested on Win7), but you'll have to use Ctrl+C/Ctr+X/Ctrl+V instead of F5/F6

Mathias
Actually, this is possible in Win7. See here

BTW, an option may be added to custom commands Copy/Move/Delete like USESHELL which would perform file operation via Explorer. It could make writing user script an easier task.

129
Script / Re: Passing arguments to MC.Run
« on: April 13, 2016, 15:30:08 »
EsperoDrake
What about
Code: [Select]
return "\"" + $args + "\"";or
Code: [Select]
@var $args = "\"" + GetArgs() + "\"";

130
Support and Feedback / Re: Moving HTML files.
« on: April 13, 2016, 15:20:39 »
Mathias

Imagine:
Code: [Select]
[NAME_files]
NAME.html

If i understand correctly, abrogard wants MC to automatically copy/move [NAME_files] folder when he copies/moves NAME.html

131
Support and Feedback / Re: Space determination bug
« on: March 31, 2016, 08:51:42 »
I've already suggested using Decimal/Binary prefixes.

1 kilo == 1000
1 kibi == 1024

1 kilo can't be 1024.

132
Beta Releases / Re: Multi Commander 5.9.8 BETA
« on: March 29, 2016, 18:32:00 »
That screenshot from XP ?? damn XP is ugly :)

No. It's Win7 with disabled themes. I don't like themes.

Quote
There is a point with unification.
But the problem is to have a lot of disabled things there, Then some user going to complain why can't I do this and this there. I see the option but can change them.
For now it will not change..

The slogan of MC is 'File management for Professionals', so there is no need to disable something.

Anyway, I don't ask to implement it in the next RC or release. Just an idea.

133
Beta Releases / Re: Multi Commander 5.9.8 BETA
« on: March 29, 2016, 09:45:40 »
FileTypes ? So when editing a file if the file is a *.txt file and it is older then 2006 open it with notepad++ ?  Hmm
Not really seeing the use case for using it with file types. There might be some very uncommon case for it.

In case of File types some UI elements in Adv. filters dialog might be disabled, e.g.:
  • Only File matching tab is visible
  • Include and Exclude combos are disabled(grayed) and are Extension part/Is
  • File content is disabled
The reason is unification. Same way of managing, same UI, less code, less mistakes etc. From my point of view of course.

134
Beta Releases / Re: Multi Commander 5.9.8 BETA
« on: March 29, 2016, 07:29:53 »
File coloring uses adv. filters, File search uses them too. So the next step is integrating adv. filters with File Types :)

135
Support and Feedback / Re: Multirename by date works not properly
« on: March 28, 2016, 18:04:19 »
Matthias515566

Code: [Select]
[?ExtendedProp.datemodify-{yyyy-MM-dd| HH-mm-ss}]
Is it what you'd like to see?

P.S. See also - online doc.

136
Support and Feedback / Re: Crash during multi rename attempt
« on: March 22, 2016, 10:08:31 »
Suncatcher

1. I have no error in v5.9

2. If I understand your task right, you do wrong thing. You should either add separate search and replace patterns for each letter

Code: [Select]
search = ж
replace = zh

or press [...] and add single block

Code: [Select]
|_
а|a
б|b
в|v
г|g
д|d
е|e
ж|zh
з|z
и|i
й|y
к|k
л|l
м|m
н|n
о|o
п|p
р|r
с|s
т|t
у|u
ф|f
х|h
ц|c
ч|ch
ш|sh
щ|sch
ы|y
ь|j
э|e
ю|yu
я|ya

P.S. This is for non-RegEx search. I haven't tried RegEx.

137
Configuration > Explorer Panel settings > Display > Fonts?

138
Have you tried "Portable" in device dropdown or device toolbar?

139
Support and Feedback / Re: LAN Network Computer access
« on: March 01, 2016, 16:59:59 »
Yes, it can.

You may:
- choose Network in the device dropdown;
- click Network on the drives toolbar;
- type remote path in the path field of explorer panel

140
If toolbar == quick launch bar, then...
1. Menu Configuration > User defined commands
2. Create and save new command:
Code: [Select]
Command type = Internal commands
Module       = Multicommander (base)
Command      = Swap the location of left/right panel
3. Right click quick launch bar and choose Insert user defined command
4. Select your command and press [OK]

141
It's not a bug. By default MC only saves local paths. Saving all paths can be toggled via Explorer Panel Settings > Display > Save on exit > Save only paths to local harddrive option.

142
One more problem. If you pack a folder with locked file, operation completes successfully, but archive is broken. File operations log contains fail record, but if logs are disabled you will not see that something was wrong.

One of the way to reproduce:
Code: [Select]
1. Hide MC logs
2. Create a folder and copy some files there
3. Copy e.g. *.xls file in that folder
4. Open that *.xls file in Excel
5. Try to 7z-pack the folder

143
Support and Feedback / Re: Wrong size of folders?
« on: December 13, 2015, 15:00:52 »
I have just noticed that MC shows me that there is 10GB used on C drive, but folder Windows has 14GB. Someone has an idea why?
Maybe it is because of links. Check Core Settings > File System > Junctions and Symbolic links > When sizing folders

144
Script / Re: MultiScript Name selection excluding file extension?
« on: December 07, 2015, 10:03:26 »
Ulfhednar
1. StrIsRegExpMatch function compares string with RegEx pattern, it doesn't perform search. So it always returns 1 if success and 0 otherwise. It's a state, not position.

2. $text[$pos] =  assignment modifies only one single character in the string.

So if you want to find a position of RegExp in your string, you should use StrRegExpFind function. But unfortunately it returns only position, so you [probably] can't extract matching substring.

IMHO StrRegExpFind function should be improved to return array of (pos; len) if possible.

145
Script / Re: MultiScript Name selection excluding file extension?
« on: November 29, 2015, 19:28:57 »
Sorry, but I'm not sure I realize what is you task and expectable result. Please clarify your task and provide some examples.

147
Support and Feedback / Re: Unpack to another panel
« on: November 28, 2015, 18:08:56 »
The very first time you have to press [Target].
Then check "Use target path as default location". MC will rememver that.

148
You may right-click the icon near the filter box and choose "Only selected" or press Ctrl+G if you haven't redefined shortcuts

150
Support and Feedback / Re: File find
« on: September 15, 2015, 08:54:50 »
You're probably right.

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