rejetto forum

Testing build #188

rejetto · 15 · 10963

0 Members and 1 Guest are viewing this topic.

Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile
download @ www.dovedove.it/hfs/hfs188.exe

what's new
+ external template editor (internal one is no more) www.rejetto.com/forum/?topic=5034
+ collapsed log toolbar
- {.$section.} was not compatible with "|" and "=" operators (options and alias)
- renaming a user account didn't update the VFS permissions http://www.rejetto.com/forum/index.php?topic=5795.msg1034617#msg1034617
- was not possible to upload file with ";" in the name
- AV on {.set item|/unexisting file.} http://www.rejetto.com/forum/index.php?topic=5983.msg1035598#msg1035598


Offline KotUA

  • Tireless poster
  • ****
    • Posts: 124
    • View Profile
Quote
+ external template editor (internal one is no more) www.rejetto.com/forum/?topic=5034

Liked, but with Cyrillic can not understand  ???



Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile
i'm sending you an email for a possible fix to test


Offline TSG

  • Operator
  • Tireless poster
  • *****
    • Posts: 1935
    • View Profile
    • RAWR-Designs
lol, I like the idea of the sliding... but I think it would be better if it had a better icon :P and if you removed the outset divider and made the button stay to the left of the search, as if it slides out.

Also the bottom of the interface is funky? what happened there. It has no corner? and a line has appeared...
Other than that I'm liking it.


I have one final request other than the address bar idea I have voiced on the forum a while ago to mars and in our latest emails. Personally I do not think the icons in the connection status section are necessary, where it has IP, Filename, Status, Speed, Time left and %

I think, first of all remove the icons. Then rename them as follows.

IP Address, File, Status, Speed, Time Left, Percentage

I feel it will be much more professional this way, and in the future it opens up new doors like adding a small arrow and enabling column sorting. Now I know that icons are helpful, but don't you think these icons are a little vague on what they represent? and well... the columns are blatantly obvious. I think it will be much more professional without those 3 icons there.

EDIT: Maybe a smaller version like the attached icon for sliding, is there a default one windows can use maybe?
« Last Edit: July 10, 2008, 09:27:19 PM by That_Stevens_Guy »


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile
lol, I like the idea of the sliding... but I think it would be better if it had a better icon :P

i like that icon more than the one sported by the system tray.
what's wrong with it?

Quote
Also the bottom of the interface is funky? what happened there. It has no corner? and a line has appeared...

!!!
i will fix it next build

Quote
I have one final request other than the address bar idea I have voiced on the forum a while ago to mars and in our latest emails. Personally I do not think the icons in the connection status section are necessary, where it has IP, Filename, Status, Speed, Time left and %

not sure, maybe we need just better icons

Quote
IP Address, File, Status, Speed, Time Left, Percentage

ok, but the last, i opted for "Progress".
tomorrow i'll post a new build.


Offline Mars

  • Operator
  • Tireless poster
  • *****
    • Posts: 2059
    • View Profile
more security when used usb disk and if space to save is too low

Code: [Select]
function moveLegacyTpl(tpl:string):boolean;
  begin
  result:=FALSE;
  if (tplFilename > '') or (tpl = '') then exit;
  result:=FALSE; // until the version is stable, we should not delete the registry anyway
  tplFilename:=cfgPath+TPL_FILE;
  saveFile(tplFilename, tpl);
  end; // moveLegacyTpl

Quote
function moveLegacyTpl(tpl:string):boolean;
  begin
  result:=FALSE;
  if (tplFilename > '') or (tpl = '') then exit;
  tplFilename:=cfgPath+TPL_FILE;
 try
   saveFile(tplFilename, tpl);
 except exit; end;
 result:=FALSE; // until the version is stable, we should not delete the registry anyway
 end; // moveLegacyTpl

« Last Edit: July 10, 2008, 11:37:39 PM by mars »


Offline Mars

  • Operator
  • Tireless poster
  • *****
    • Posts: 2059
    • View Profile
Code: [Select]
function getDefaultTextEditor():string;
begin result:=getEnvironmentVariable('windir')+'\notepad.exe' end;

better if you read registry value of the editor by default trought .txt key.
 why? if notepad.exe does'nt exist, you must ask user to choice another default editor

It is pity not to have kept the internal editor as spare wheel, at least at first


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile
better if you read registry value of the editor by default trought .txt key.

can you tell me how to get the default text editor exactly?

Quote
why? if notepad.exe does'nt exist, you must ask user to choice another default editor

everyone has notepad.
can you tell otherwise?


Offline TSG

  • Operator
  • Tireless poster
  • *****
    • Posts: 1935
    • View Profile
    • RAWR-Designs
lol, I like the idea of the sliding... but I think it would be better if it had a better icon :P

i like that icon more than the one sported by the system tray.
what's wrong with it?

Quote
I have one final request other than the address bar idea I have voiced on the forum a while ago to mars and in our latest emails. Personally I do not think the icons in the connection status section are necessary, where it has IP, Filename, Status, Speed, Time left and %

not sure, maybe we need just better icons

The problem with the slide icon is that it is too big. Needs to be center of the button...

Remove the Icons and you will see what I mean. It just looks more professional that way. I really do not think the icons are necessary there, if your gonna have those icons you may aswell have an icon for every column, but that would look even more silly.


It is pity not to have kept the internal editor as spare wheel, at least at first

Why when everyone has notepad? The internal editor had less features than notepad lol. I will probably push users to get notepad++ to make editing WAY easier. I am really liking this new feature, it makes developing and editing a lot easier. No more importing and hitting apply/ok garbage, just ctrl+s and F5 :D


Offline traxxus

  • Occasional poster
  • *
    • Posts: 62
    • View Profile
HFS search notepad.exe in C:\Windows - correctly rejetto?

I have Vista, and notepad.exe is in C:\Windows\system32  !!
traxxus.dyndns.org:100


Offline Mars

  • Operator
  • Tireless poster
  • *****
    • Posts: 2059
    • View Profile
Quote
HFS search notepad.exe in C:\Windows - correctly rejetto?

I have Vista, and notepad.exe is in C:\Windows\system32  !!

find windir is not necessary (tested), the code below works

Code: [Select]
function getDefaultTextEditor():string;
begin
result:='notepad.exe'
end;


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile
I have Vista, and notepad.exe is in C:\Windows\system32  !!

ah!

find windir is not necessary (tested), the code below works

that's how it was at first.
Then i introduced the full path to get some little improvement on "change editor", but we'll live without.


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile
more security when used usb disk and if space to save is too low

ok i will take it in account


Offline bacter

  • Operator
  • Tireless poster
  • *****
    • Posts: 681
    • View Profile
as renaming an account works now... would it be possible to add in accounts menu an option like ''clone account" (instead of only new), which would create a new account with all the permissions of the cloned account. This option could solve temporarily the user-groups problem which is not simply and will probably last.

Thank you.
your computer has no brain - use your own !


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile