Menu

7-Zip 9.22 beta

2011-04-18
2013-07-17
1 2 > >> (Page 1 of 2)
  • Spate

    Spate - 2011-04-18

    Очень нехватает запоминания параметров для разных уровней сжатия (compression level) в GUI-версии.
    Например: сжимаю игровые ресурсы, уровень сжатия Ультра, параметры сжатия "mf=bt4 mc=65535 lc=8", при следующем запуске сжимаю базу, уровень сжатия Скоростной, параметры сжатия остались от ультры, приходится их удалять. В следующий раз при сжатии ультрой приходится опять заново прописывать параметры сжатия.

     
  • gora2

    gora2 - 2011-04-19

    1 Новое примечание в справке: опечатка в слове switches.
    2 Информация о файле 7-zip32.dll добавлена в descript.ion/i], но в readme.txt/i] ее так и нет (версия x64).

     
  • jose_chingasos

    jose_chingasos - 2011-04-24

    regarding the small sfx,
    quote,

    Small SFX uses 3 levels of priorities to select file to execute:

      1) Files in root folder have higher priority than files in subfolders.
      2) File extension priorities (from high to low priority order):
           bat, cmd, exe, inf, msi, cab (under Windows CE), html, htm
      3) File name priorities (from high to low priority order):
           setup, install, run, start

    May I ask why you chose to have inf between exe and msi?
    I am interested in your reasoning for this.

    Wouldn't it be more useful if inf were before both exe and msi?
    I am considering using this module but it would be more convenient to have inf before exe.

     
  • Igor Pavlov

    Igor Pavlov - 2011-04-25

    omega8bit:
    I didn't check real examples with different inf and exe installers.
    What filenames (*.exe and *.inf) do you have?
    Do you know other examples where .inf is used?

     
  • Aitam

    Aitam - 2011-04-25

    Just to note 7-zip.org still points to the older 9.21 Beta.

    As for me, no bugs detected.

     
  • gora2

    gora2 - 2011-04-27

    Unpacking exe files …
    There is a file VirtualBox-4.0.6-71344-Win.exe.
    It opens in archiver, and I can see and extract the following components:
    \.rsrc\RCDATA\BIN_00
    \.rsrc\RCDATA\BIN_01
    \.rsrc\RCDATA\BIN_02
    There is a file VirtualBox-4.0.6-71416-Win.exe.
    It opens in archiver, and I immediately get into \.rsrc\RCDATA\BIN_02.
    If you press "Info", then I see: "Path:.rsrc\RCDATA\BIN_02".
    To get and unpack the other side (BIN_00 and BIN_01) failed.
    How can I fix it?

     
  • gora2

    gora2 - 2011-04-27

    Switch -tpe I found, and it helped, but why the previous versions unpacked without him?

     
  • Igor Pavlov

    Igor Pavlov - 2011-04-27

    7-Zip tries to detect main file in resorces and then 7-Zip opens that file.

     
  • Joao

    Joao - 2011-06-02

    I would like to suggest that like winzip and winrar already have, you add to the new version (maybe in the next beta version) the "shread" (tab) option, to "shread" temp files created by the 7-zip program in order to make recovery of deleted temp files more difficult.

    Should you find that hard to do, it shouldn't be that hard to create the interface in the options to add the command line to call the dedicated program to do that task .

    Maybe you could have already the pre-defined options to SDelete and Eraser, but allow other dedicated programs to be included (if the person knows how to call them properly).

    I write more on this request in the following topic: https://sourceforge.net/projects/sevenzip/forums/forum/45798/topic/3613595/

     
  • Anonymous

    Anonymous - 2011-06-02

    Why CPanel::OnContextMenu do judge the negative number to xPos and yPos?
    Because this judgment exists, it is not displayed at the position where the context menu is correct under the multi display environment.
    It is compare original and comment outed.
    http://www.youtube.com/watch?v=7btnULZovc4

     
  • Igor Pavlov

    Igor Pavlov - 2011-06-03

    MSDN:
    If the context menu is generated from the keyboard—for example, if the user types SHIFT+F10—then the x- and y-coordinates are -1 and the application should display the context menu at the location of the current selection rather than at (xPos, yPos).

    I'll change the line to:
      if (xPos == -1 && yPos == -1)

    Thanks!

     
  • Devil

    Devil - 2011-06-10

    если внутри архива переименовать какой либо файл на название содержащее знак / внутри архива появляются новые папки, например файл 100.txt переименовать в файл aabb/ww/ddd/p745.txt

     
  • OpenPg

    OpenPg - 2011-06-10

    Не хватает сходства с експлорером в плане отступа перед значками файлов в режиме "вид списком" для выделения их  (файлов) курсором мауса.

     
  • Paolo Messina

    Paolo Messina - 2011-07-10

    tahattmeruh
    The code for sending email is at 7z922\CPP\7zip\UI\Common\Update.cpp:864 and below lines.

    I see it uses MAPISendDocuments, while it should use MAPISendMail, which is the only supported call in 64-bit systems. That's according to official documentation at: http://msdn.microsoft.com/en-us/library/dd941355.aspx (see paragraph "Exception: MAPISendMail")

    It should be easy to fix. Some sample code is also at: http://www.codeproject.com/KB/IP/SendTo.aspx

    If I find some time I'll try to rebuild 7-zip myself and try it out, but I guess it would be easier for some developer to do that.

     
  • Anonymous

    Anonymous - 2011-07-10

    @ppescher
    Just note the community-added comment below the cited MSDN article. At least some clients don't support this call. So the proper solution would be to use MAPISendMail, and on failure to fallback to MAPISendDocuments.

     
  • PremiumSaltine

    PremiumSaltine - 2011-07-13

    With every new release I hope for you to add the ability to use my mouse's forward and back button, but with every release, it's still not possible. This seems like it's a standard thing with all software, except for 7z. I just don't get it.

     
  • Joachim Rang

    Joachim Rang - 2011-07-25

    <quote>tahattmeruh The code for sending email is at 7z922\CPP\7zip\UI\Common\Update.cpp:864 and below lines. I see it uses MAPISendDocuments, while it should use MAPISendMail, which is the only supported call in 64-bit systems. That's according to official documentation at: http://msdn.microsoft.com/en-us/library/dd941355.aspx (see paragraph "Exception: MAPISendMail") It should be easy to fix. Some sample code is also at: http://www.codeproject.com/KB/IP/SendTo.aspx If I find some time I'll try to rebuild 7-zip myself and try it out, but I guess it would be easier for some developer to do that.</quote>
    Please, please fix this. It really should'nt be such a big issue.

     
  • Igor Pavlov

    Igor Pavlov - 2011-07-26

    I've already changed the code for MAPISendMail.
    So just wait next alpha version of 7-Zip to test it.
    I plan it in 3 weeks.

     
  • Joachim Rang

    Joachim Rang - 2011-07-26

    Great news. I'm looking forward to it…

     
  • Jane0018

    Jane0018 - 2011-07-27

    tks for your share…

     
  • http://cweks.eu

    http://cweks.eu - 2011-09-10

    7z922-x64.msi installation / setup should default to directory Program Files

    When I ran the installation of the 7z922-x64.msi it defaulted to "Program Files (x86)"

     
1 2 > >> (Page 1 of 2)

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.