Skip to content

Commit

Permalink
Updated docs
Browse files Browse the repository at this point in the history
git-svn-id: https://freearc.svn.sourceforge.net/svnroot/freearc@119 3a4f7f31-9599-433d-91b1-573e8b61252c
  • Loading branch information
bulatz committed Mar 2, 2009
1 parent 611a392 commit 8224b5e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
17 changes: 10 additions & 7 deletions Documentation/History.txt
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@
freezing after archive operation was cancelled/returned an error
lack of scrolling for archive comment
freezing on selecting two files and pressing Up
ArcInfo: fixed counting of files and directories in archive


aARCHIVE_VERSION = make4byte 0 0 5 0
Expand Down Expand Up @@ -387,7 +388,6 @@
����� ��������� � ������ �������� - ������ �����
methodDescr - ������� ��� custom compr. mode
�������� � ������
faster removeDuplicates, ftDirs �� ��������� "������ ��������"
refresh - ���������� �����
closeFMArc ����� ��������� � ����� refresh
�������� ������� ��������� �� ������ ��������� � �������� ���������
Expand All @@ -401,6 +401,7 @@
Please, Bulat, can be PPMonstr's output limited to one row?
��������� �������/keyfiles �����������
"all ok" ����� ������ �������
if you test an archiv, there is no message given back, there should be some kind of "Archive OK" at the end of the test
������������ ��� ���������� cmem/dmem parseCmdline ��� �� ������� ���� ������ ��� �� ��
ArcRecover ��� ���������� ������� ��������
��� ����������/������������ ������ ��� ������� ��� �� ����� ������������� � �������
Expand All @@ -415,11 +416,13 @@
-hp-- - ��������� ��������������� ��������
-hp- - ����� ����������
-hpxx - �������� ����������
-if you test an archiv, there is no message given back, there should be some kind of "Archive OK" at the end of the test
an additional progressbar for big files, like in Winrar
DoubleClick->Run inside archive
��� ������ ������ �� ������� ������, ��� ".."
��������� ��������/�������� ������� Add (������������ ������ �� history/������ � ����)
Performance problems
���������� ������: faster removeDups, keepOnlyFirstOn, buildTree
��������� ��������/�������� ������� Add (������������ ������ �� history/������ � ����)
������������ ������� ������ ������� ������ ��� ����������� ������� ������
���������� ����� -m -s -ds � ������
� �������� ����, ����� � ������� "���������", ��� � �������� ������ "�����"
�������� ��� insert'��, ��� �������� (winrar ���������� ��������� ������ ��� ������, ������� ���� �������� �����)
Expand All @@ -428,16 +431,18 @@
������� arc.english.txt and locale ��� ����, ����� ���������� ����������� tooltips ��� ���������� �����
������ Settings
"Restore standard profiles" button
Date format selection
Windows: [x] Associate FreeArc with .arc files
[x] don't keep history
Import 7-zip lang. file
Recover, including "Original:"
����������� ���������� ����-�� ���� "�������" ��� � Nero, �.�. ����� ��� ������ ������ + ��� ���������
������� Run, View, Queue/Apply; d&d support
������� View, Queue/Apply; d&d support
winarc a/x --dialog - ������� ������ ����������/���������� (��� Total Commander, ��������)
����������� ������� ����� �������� ����������/������/����������� � ��������� � (��� ����� ������������ ��� ���������������)
������� "Detach operation" �� ���� �������� ��������, ����������� ��������� ����� WinArc ��� ���������� ��������!
"Detach" FM button and appropriate syntax: "freearc c:\dir file1 file2 file3 /select file1"
������� ���-���� � ������ ������ ���������
��������� ���-���� � ������ ������ ���������
������ ����������
[x] ������� �����������
�������� Selection: -ta/-tb/-tn/-to/-sl/-sm
Expand All @@ -447,8 +452,6 @@
������ Cancel: Cancel file/solid block/archive/operation/group of operations/All
�����������/���-��� ������� �������� � ������� ���������
�������������� ���������� ������ ������ ������ �������/��� ���������� ��������
�����/���� � locale format (getTimeFormat, GetDateFormatW). GetNumberFormat
������������ ������� ������ ������� ������ ��� ����������� ������� ������
������������ ��� �������� ����� ��� ��������� ���������� �������� view/test/extract
linux: ���� ������� ������ � ������� (HButtonBox?)
���������� ������
Expand Down
3 changes: 2 additions & 1 deletion FileManUtils.hs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@ fdArtificialDir name = FileData { fdPackedDirectory = myPackStr ""
data FileTree a = FileTree [a] [(String, FileTree a)]

-- |Возвращает количество каталогов в дереве
ftDirs (FileTree files subdirs) = length (removeDups (map fst subdirs ++ map fdBasename (filter fdIsDir files))) + sum (map (ftDirs.snd) subdirs)
ftDirs (FileTree files subdirs) = length (removeDups (subdirs.$map fst ++ files.$filter fdIsDir .$map fdBasename))
+ sum (map (ftDirs.snd) subdirs)

-- |Возвращает количество файлов в дереве
ftFiles (FileTree files subdirs) = length (filter (not.fdIsDir) files) + sum (map (ftFiles.snd) subdirs)
Expand Down

0 comments on commit 8224b5e

Please sign in to comment.