The Unarchiver (1000)

1 Name: !WAHa.06x36 : 2006-07-01 16:32 ID:3em7Hrs8 [Del]

So. I kind of like BOMArchiverHelper.app, the default OS X unzipping utility. However, it has quite a number of limitations. Most other unarchivers on OS X have interfaces that I don't like, or just don't work very well. Also, thanks to Windows' idiotic idea of using the current system encoding for filenames, I have tons of archives from Japan with Shift_JIS filenames, which none of the unarchivers on OS X I've tried will handle properly.

And so I, because I obviously don't have enough to do already, get the idea that I need to write a better unarchiver. Features I think it needs include:

  • Handle as many formats as possible. Not just Zip and Tar-Gzip, but RAR, 7-Zip, LhA, StuffIt, and anything else you can think of.
  • Handle non-UTF8 filenames, perferrably automatically.
  • Have a simple and straightforward interface like BOMArchiveHelper.app.
  • Not leave .tar files lying around when unpacking .tar.gz files and the like.
  • As a side benefit, produce some code that can be re-used to add archive support to Xee (so this whole project doesn't just steal time I could be working on Xee instead).

For actual information on the current state of this project, read on!

669 Name: Nico : 2009-10-20 14:27 ID:ExB4Mt0F [Del]

Version 2.1 is finally fast. The only thing that still bugs is that the windows still goes in the background after opening a file. This is especially annoying with password protected archives as you have to find the windows again to enter the password.

670 Name: Tyler : 2009-10-22 00:39 ID:PQ5CkMYo (Image: 0x0 7z, 42 kb) [Del]

Unarchiver seems to have trouble understanding some .7z files. The ones I have had trouble opening were encode with Compress (which can open the files just fine). File size does not seem to be an issue. A 600MB+ file opens fine, but even small files I have compressed myself do not open. I dont know what flags if any that Compress is passing along to p7zip, but its something that Unarchiver doesnt like. Ive attached a file that also gives an encoding error when attempting to un-7zip
Version 2.1 on 10.6.1

671 Name: Donny : 2009-10-22 22:43 ID:8pSp8l/w (Image: 538x188 png, 27 kb) [Del]

src/1256276625046.png: 538x188, 27 kb

This zip file is about 4GB in the system that I recently zip with Unarchiver. But I found that when the time I tried the extract it, it came out this message. That made me to use the Archive Utility on Mac OS X Snow Leopard.

Anny help will be appreciated.

672 Name: Anonymous : 2009-10-26 14:38 ID:HxiyUDBJ [Del]

Thanks for the great work as always.

There is a bug on line 109 of XADArchive.m in -initWithData:delegate:error:. It says if(!parser), but it should be if(parser) instead. As it is, none of the -initWithData:… methods work. The same code is repeated, sans bug, in -initWithArchive:entry:delegate:error: and -initWithFile:delegate:error:.

These could also be refactored to be wrappers around a method like -initWithHandle:… to remove the duplication.

673 Name: jayseye : 2009-10-31 14:21 ID:A7vSNzZ1 [Del]

Works perfectly on Tiger 10.4.11 PPC to unpack an .EXE file. Thank you!

674 Name: jayseye : 2009-10-31 14:24 ID:A7vSNzZ1 [Del]

Works perfectly on Tiger 10.4.11 PowerPC to unpack a non-Zip-format .EXE file. Thank you!

675 Name: broomdodger : 2009-11-01 07:57 ID:3WMwwfuZ [Del]

Are you working on DiskDoubler unarchive?

I have some files that will not open with TheUnarchiver,
I can send if you need.

676 Name: !WAHa.06x36 : 2009-11-01 16:49 ID:whwE1Sh8 [Del]

>>675

I have been studying it a bit, but I'd need a lot of spare time to actually figure out how it works. Hopefully I will find the time sooner or later, because I really do want to support it fully.

And test case files are always very welcome. There are a couple of algorithms I do not have examples files for.

677 Name: broomdodger : 2009-11-02 19:46 ID:3WMwwfuZ (Image: 0x0 zip, 799 kb) [Del]

>>676

> And test case files are always very welcome

I have mostly photos (tiff) and Quark files that have been DD'd.

Attached is one of each.

678 Name: broomdodger : 2009-11-03 08:13 ID:3WMwwfuZ [Del]

>>676
It seems DiskDoubler has 5 formats AD1 AD2 DD1 DD2 DD3
Would you like a file compressed in each format?
If yes, what type of file? tiff, text...

679 Name: !WAHa.06x36 : 2009-11-04 16:54 ID:Heaven [Del]

>>678

Actually, I've managed to find that version and make my own examples. However, there are two or three more formats that were used by earlier versions but that can only be unpacked with later versions. Those would be the most useful, but might be very hard to get a hold of.

680 Name: Belphegor666 : 2009-11-05 06:20 ID:3aTYztuj [Del]

The Unarchiver seems to have a problem with the Amiga .lzx archives that are using the highest possible compression. The Unarchiver refuses to uncompress such archives. Archives compressed with a lower compression unpack well with The Unarchiver.

I've tested this by making such problematic archives using an Amiga Emulator (I've came across this problem while checking some old archives from my real Amiga 1200) using the last amiga version of lzx that came out:
http://xavprods.free.fr/lzx/
http://aminet.net/package/util/arc/lzx121r1

I was only able to unpack the mentioned archives on my mac by compiling the unlzx source code (from the lzx page or the wiki page below).
http://en.wikipedia.org/wiki/LZX_(algorithm)

681 Name: !WAHa.06x36 : 2009-11-05 06:34 ID:Heaven [Del]

>>680

I haven't gotten around to updating the LZX code yet, so it still runs on the old libxad code that I am not very familiar with. Sooner or later I hope to change that, though.

It would help a lot if you filed a bug on the bug tracker and attached a sample file or two.

682 Name: Belphegor666 : 2009-11-05 07:07 ID:3aTYztuj [Del]

OK, I will do that soon when I'm home.

683 Name: straycat : 2009-11-11 09:58 ID:yEDdy1V/ [Del]

great work! i can finally unpack my amiga powerpacker files! you're god. hjsplit segmented files (001,002) and dmg files support would make betterzip and iarchiver useless for me. but what more can you ask for?

thanks !WAHa.06x36!

684 Name: !WAHa.06x36 : 2009-11-18 06:24 ID:Heaven [Del]

2.2 is released:

http://theunarchiver.googlecode.com/files/TheUnarchiver2.2.zip

  • Korean and Traditional Chinese translations.
  • Support for the XZ compression format, along with support for embedded XZ in RPM and XAR files.
  • Support for LZMA2 and some more filters in 7-zip.
  • Support for NSA and SAR.
  • Better support for unicode in Zip files, and some bugfixes for Korean.
  • Better support for MacBinary in Zip.
  • Fixed an issue where the final file in a Zip file created on OS X might get lost.
  • More robust reading of gzip files.
  • Fixed an issue with the interface, where the window was sometimes left open.

685 Name: Navstar : 2009-11-19 08:16 ID:FO0p7VbV [Del]

Could you please add release dates to the release notes here:
http://wakaba.c3.cx/s/apps/unarchiver.html

686 Name: Al : 2009-11-20 18:16 ID:wKIU3BIK [Del]

Love it, works perfectly. Thank you!

687 Name: !WAHa.06x36 : 2009-11-21 04:36 ID:Heaven [Del]

>>685

I could do the work to figure out what the dates are and fill them in, or I could work on the actual code. I don't think the dates have very high priority.

688 Name: elmimmo : 2009-11-23 05:57 ID:JbsF8Gyy [Del]

I would be nice if in Preferences > File formats there was a button to activate all formats that are NOT supported by the Archive Utility according to its Info.plist (that is, letting Archive Utility handle the formats it thinks it supports, and using The Unarchiver for everything else).

689 Name: Daniel Nielsen : 2009-12-14 15:38 ID:G2ZlLzgn [Del]

I'm having a strange issue, i'm extracting the files, and when i look at my left over space on the drive it counts down after the extraction, but the output files are no where to be seen.

690 Name: !WAHa.06x36 : 2009-12-14 16:39 ID:Heaven [Del]

Where did you configure it to put unpacked files?

691 Name: Hyram : 2009-12-28 09:09 ID:epijVsAt [Del]

I just tried to uncompress a segmented RAR file, but instead of

  • foo.rar
  • foo.r01
  • foo.r02

the numbering goes

  • foo.01.rar
  • foo.02.rar
  • foo.03.ror

WinRAR over in peeceeland handles the segmented archive just fine. TheUnarchiver gets to the end of foo.01.rar and spits the dummy.

Could we please have this growing-more-common segment numbering method in a future release?

(I also second the call for split 001 002 etc files!)

692 Name: trip2me : 2009-12-29 09:01 ID:gXNOgUcX [Del]

Hi, I hope you have been enjoying the end of the year.


I've been heard that someone can't extract .rar split files using 'The Unarchiver'.

So I asked the status when the problem was occured.

Then I found that The Unarchiver has been waiting to extract after openning all split files first.
But it is limited that openning over 256 files in one process, because the reason is the OSX's OPEN_MAX limits which is the value of concurrently opening files in one precess.

I made a sample-test archive which has 256 split files and openmax CLI binary to check current system's OPEN_MAX limit.
Download

So it might be changed to close each archive files when extract operation of each file is finished in rar extraction process.

---------------
And another issue related with zip password and Windows OEM & ANSI codepage when extracting files.

Current version of The Unarchiver can extract .zip archive which is encoded in Windowos OEM and local codepage password.
Related Link.

But there are some locales which has different OEM and ANSI codepage such as Hebrew.
In that case, the password is encoded into ANSI codepage, not OEM one which is used for filename in archive.
It make a problem in The Unarchiver.

Read below thread which I wrote, please.
String encoding related with encryption issue

And you can easily find the informalion about which has different codepage between OEM and ANSI.
List of Localized MS Operating Systems
and more specific one
National Language Support (NLS) API Reference


Happy new year!
Park, Chang-Beom

http://trip2me.tistory.com
P.S. I archived my modified CleanArchiver to advertise. Feel free to use it. : )

693 Name: !WAHa.06x36 : 2009-12-29 10:13 ID:Heaven [Del]

>>692

Because of the way it's built, it's not easy to avoid opening files. I wonder if there's some way to increase OPEN_MAX for a process...

694 Name: trip2me : 2009-12-29 13:22 ID:gXNOgUcX [Del]

>>693

OK, I got it.. : )

How about you use setrlimit(2)?

I modified in main.m of The Unarchiver.

Modify it for your adequate use, please.

static int setOpenmax(rlim_t limit)
{
struct rlimit rl;
int status;

rl.rlim_max = RLIM_INFINITY;
rl.rlim_cur = ( limit < RLIM_INFINITY) ? limit : RLIM_INFINITY ;
if ((status = setrlimit(RLIMIT_NOFILE, &rl)) == -1) {
if (getrlimit(RLIMIT_NOFILE, &rl) == -1)
NSLog(@"getrlimit: NOFILE");
rl.rlim_cur = rl.rlim_max;
if (setrlimit(RLIMIT_NOFILE, &rl) == -1)
NSLog(@"setrlimit: NOFILE");
}
return status;
}

int main(int argc,const char **argv)
{
rlim_t limit = ( OPEN_MAX < RLIM_INFINITY) ? OPEN_MAX : RLIM_INFINITY;
if (setOpenmax( limit ) == -1)
NSLog(@"Failed to change OPEN_MAX");

...continues...

695 Post deleted by user.

696 Name: trip2me : 2009-12-29 21:01 ID:gXNOgUcX [Del]

>>694
I forgot the header files.

#include ( sys/resource.h ) /* for setrlimit, getrlimit */
#include ( sys/syslimits.h ) /* for OPEN_MAX */

Cheers!

697 Name: !WAHa.06x36 : 2009-12-30 09:50 ID:Heaven [Del]

>>694

Interesting. I will have a closer look when I get back to work on the next version.

698 Name: JO : 2010-01-04 08:06 ID:pMQws3ph [Del]

Once I download Filezilla from its website, The Unarchiver decompresses it in a weird manner, which creates "FileZilla_3.3.1_i686-apple-darwin9.app" instead of "FileZilla.app."
The strange file is even not executable, only showing an error message.
While Mac OS X Archive Utility does the job correctly, The Unarchiver keeps the same problem even after some bug fixes and version 2.2 still fumbles.
Please check this out. You can download the Filezilla file in BZ2 format at following link.

https://www.ohloh.net/projects/filezilla/download?filename=FileZilla_3.3.1_i686-apple-darwin9.app.tar.bz2

699 Name: !WAHa.06x36 : 2010-01-04 12:04 ID:Heaven [Del]

>>698

That link does not seem to work. It just goes to a download page that does not have that version listed.

700 Name: dg : 2010-01-05 16:10 ID:8Qz5WAuH [Del]

http://pqrs.org/macosx/keyremap4macbook/files/KeyRemap4MacBook-5.1.0.pkg.tar.gz did not unarchive properly for me with latest version (2.2). It appeared to work but the resulting file gave an error when opened.

Built-in Leopard archive utility was successful. I'm on 10.5.8

Thanks.

701 Name: !WAHa.06x36 : 2010-01-05 20:15 ID:whwE1Sh8 [Del]

>>700

At what point do you get an error? The installer started up fine for me, but I did not try going through with the installation.

702 Name: dg : 2010-01-06 09:12 ID:8Qz5WAuH [Del]

Error was right at the start. I see what the problem is now though.

I have "Create a new folder" is set to always. The new folder created appears to be the package (and will launch the installer since packages are folders named *.pkg), but it actually contains the correct package (if that makes sense?).

Perhaps something to check and adjust the names of new folders created in these cases.

703 Name: !WAHa.06x36 : 2010-01-06 10:25 ID:Heaven [Del]

>>702

Ah, I see. Not sure how exactly to fix that, but yes, something should be done about it.

704 Name: Zipser : 2010-01-07 05:01 ID:wUPeF+90 [Del]

I like the move archive to trash function and use it most of the time.
Sometimes however I need to open an archive without trashing it (a seeding torrent for example).
It would be nice if there was a way of disabling this on a temporary basis with a modifier key (like the extract to folder)
It would also be nice if the modifiers could be configured in the preferences.

Also, if I bring another window in front of TheUnarchiver during extraction from the finder, there appears to be no easy way of bringing it back to the front without hiding everything else, as there is no application in the dock and it does not appear in the finder window list.

705 Name: straycat : 2010-01-07 09:58 ID:yEDdy1V/ [Del]

  1. i agree with zipser about

"Sometimes however I need to open an archive without trashing it (a seeding torrent for example).
It would be nice if there was a way of disabling this on a temporary basis with a modifier key (like the extract to folder)" and an option to float the window so it can't be sent to the background.

2. another note, can anyone try decrunch
http://www.twinbirds.com/goattracker/GoatTracker.zip ?

it returns errors on any drive except a fat32 drive i have. if the file is in the fat32 it decrunches well with the unarchiver.

could it be a bug related to a hfs volume?

3. i suggested before but here goes again, hjsplit joiner would be too hard to implement? what about auto-extraction for dmg files like in special move (which i think is a hidden os feature): http://www.fruitz-of-dojo.de/php/download.php4?dlnr=9

thanks and cheers, !WAHa.06x36.

706 Name: !WAHa.06x36 : 2010-01-07 10:12 ID:whwE1Sh8 [Del]

>>705

I can confirm that that file doesn't extract here either, I'll look into it.

There's an issue for simple split files here: http://code.google.com/p/theunarchiver/issues/detail?id=221. Does HJSplit just cleanly split files, or does it add any extra wrapping, do you know?

Also, to do DMG properly in The Unarchiver, I'd have to actually implement a full HFS+ reader. It would be nice to have, but is too much work.

707 Name: straycat : 2010-01-07 11:07 ID:yEDdy1V/ [Del]

thanks for the reply.

about hjsplit, from this page (portuguese)
http://blog.mcsx.net/hjsplit-juntando-arquivos-separados-sem-hj-join/
it says that hjsplits splits files but doesn't use an actual file format, just splits bytes directly in raw mode without any means of cyclic redundancy check to know if the file is intact or was modified (bit flip) when downloading or got corrupted in the hard disk.

what it means i don't know. :\

machacha is opensource and handles hjsplit, maybe you can get the code.
homepage: http://homepage.mac.com/julifos/soft/machacha/index.html
pdf about file formats including hjsplit (from machacha homepage): http://homepage.mac.com/julifos/soft/machacha/specs.pdf

708 Name: Nico : 2010-01-10 02:43 ID:H/TwSa8y [Del]

The only thing that still bugs is that the windows still goes in the background after opening a file. This is especially annoying with password protected archives as you have to find the window again to enter the password.

709 Name: !WAHa.06x36 : 2010-01-10 16:18 ID:whwE1Sh8 [Del]

>>691

This turns out to be really annoying, but I think I've got it covered now.

710 Name: !WAHa.06x36 : 2010-01-10 17:24 ID:whwE1Sh8 [Del]

>>694

I added something similar to that. I don't have the files to test it, though, so if you can test it when 2.3 is done that would be great.

>>698,700

These are actually the same bug, and it should be fixed in 2.3.

711 Name: !WAHa.06x36 : 2010-01-11 15:59 ID:whwE1Sh8 [Del]

All right, let's call this a release:

http://theunarchiver.googlecode.com/files/TheUnarchiver2.3.zip

  • Updated French localization by Ronald Leroux.
  • Can now join simple split files (those named .001, .002 and so on).
  • Supports MSI files. The same format is actually used for many
    Microsoft file types, so you can now also extract the internals
    of DOC or PPT files, among others. If you have some reason to.
  • Much better support for DiskDoubler. Added two missing compression
    methods.
  • Fixed CAB support, which was broken. Should now support all CAB
    files, including multi-part.
  • Amiga LZX should work better.
  • Supports more naming schemes for multi-part RAR files.
  • Some other bugfixes (some mentioned above).

712 Name: trip2me : 2010-01-11 19:02 ID:GVsydEDL [Del]

>>710

OK, I tested it with over 256 files rar split archive.
It works well. Thanks for your support.

>>692

And how is it going on another issue, zip password which has different codepage between OEM and ANSI locales?

713 Name: broomdodger : 2010-01-11 21:54 ID:3WMwwfuZ [Del]

>>711
WuWi
tested over 100 DiskDoubler files that did NOT previously expand with The Unarchiver
--and--
it works!
Thank you.

714 Name: broomdodger : 2010-01-11 21:59 ID:3WMwwfuZ [Del]

I also found a copy of DiskDoubler 3.0.1
Would it be useful to you?

715 Name: !WAHa.06x36 : 2010-01-12 03:36 ID:whwE1Sh8 [Del]

>>712

I haven't thought about it much yet. I guess one solution that isn't very good but would work is to just make it possible to manually choose the encoding when entering a password. This would also help for files where the encoding is guessed wrong.

But that requires updates to the UI resources and translations, so I'll wait until I have some other changes to apply too, it's a bit of a bother to get everyone coordinated to do an UI update.

>>713-714

Good to hear!

Can you check if you can make a file with 3.0.1 that will not open in The Unarchiver? If you can, that would be very useful. Try different compression methods and see if one of them doesn't work.

716 Name: trip2me : 2010-01-12 06:46 ID:GVsydEDL [Del]

>>715

Oki Doki.
Take your time.
It's not important things. : )

717 Name: broomdodger : 2010-01-12 08:51 ID:3WMwwfuZ [Del]

>>715
Method A will expand with The Unarchiver
Method B will NOT expand with The Unarchiver
What would you like? Method B file and/or DD301
Both expand with DD301 and DD410

718 Name: !WAHa.06x36 : 2010-01-12 11:08 ID:Heaven [Del]

>>717

I guess the best would be both! I have an emulator somewhere that might run it but that's a pain to get running.

719 Name: broomdodger : 2010-01-12 13:10 ID:3WMwwfuZ (Image: 0x0 zip, 377 kb) [Del]

>>718
ok... I am sending dd301.zip
It has dd301, good Method A and trouble maker Method B

720 Name: straycat : 2010-01-13 02:54 ID:yEDdy1V/ [Del]

>>711

thanks for split file support.
it sucks when i have to keep 2 or 3 apps to do one thing.

721 Name: !WAHa.06x36 : 2010-01-13 06:49 ID:TxhTWMUf [Del]

>>719

Ah yes, method B is indeed method number 2, which is the one I still lack. (Method 5, too, but it's apparently the same as 2 just with another parameter.)

When I have some time to play with reverse engineering again I'll have a look at it. Thanks!

722 Name: bug report : 2010-01-13 12:11 ID:x5ylVGVF [Del]

if i hit return after entering the password for an archive (instead of clicking ok) the whole program seems to freeze up. if i open another archive it will show up in the window but i can't do anything with it. if i double click the icon i get no preferences. a blank unarchiver window will just stay in the background and can't be force quit (or regular quit). it happens every time. this is a TERRIBLE bug and if it's been reported i apologize, for i don't have time to read through this thread, but it keeps me from using unarchiver as hitting return after typing is something ingrained in my mind.

723 Name: !WAHa.06x36 : 2010-01-13 13:03 ID:whwE1Sh8 [Del]

>>722

Some people have reported similar problems, but I can not reproduce them, and thus can't figure out what is going wrong.

Do you have any haxies or anything similar installed? Do you have a second machine you can test to see if it has the same problem?

724 Post deleted by moderator.

725 Name: broomdodger : 2010-01-14 17:07 ID:3WMwwfuZ [Del]

>>721
Any idea which version of dd had Method 5?

726 Name: !WAHa.06x36 : 2010-01-15 05:56 ID:Heaven [Del]

>>725

Nope, not really. Well, 3.0 seems to use 1 and 2, and 4.0 uses 6, 9 and 10, so maybe something in between? Although I noticed some of the other related programs might use other methods. And method 8 seems to be older than many of the others too (and is the same as in Compact Pro), so it's a bit of a mess.

727 Name: achecht : 2010-01-15 13:12 ID:bhlKeZnx (Image: 700x520 png, 101 kb) [Del]

src/1263589938538.png: 700x520, 101 kb

I wanted to alert you to an issue that I ran into with Unarchiver. I tried to download a wireless broadband configuration application (you can get a copy of it here: http://www.clear.com/support/download -- d/l the Mac version 1.03.1031.0).

The problem was that the installation of that application failed. I was on the phone with that company's tech team multiple times and still could not get it to install properly (see attached image).

Then I happened to download it via Safari (which automatically opens zip file with the standard Mac OS X archive utility). Amazingly the installation worked that time.

The problem was related to the fact that I was always unzipping the file using The Unarchiver. And for some reason, TU was corrupting the .app file in the zip.

I thought I would let you know and let you take a look at the zip file in question.

I love TU, but in this one case it really messed me up for days.

728 Name: !WAHa.06x36 : 2010-01-15 13:32 ID:whwE1Sh8 [Del]

>>727

Which version were you using? Try 2.3 if you haven't.

729 Name: hoosyny : 2010-01-16 07:59 ID:nG0yC+M0 [Del]

Regarding Issue 727 reported by "archecht"
Curiously ! I have done some tests myself (on OSX 10.6.2) and I have observed that if extracted with –

  • Springy 1.6.1

both, Uninstall Script and Install Package, fail to work !

  • The Unarchiver 2.3

Uninstall Script works but Install Package fails to install !

  • Stuffit 14.0.1

both, Uninstall Script and Install Package, work !

  • Apple Archive Utility

both, Uninstall Script and Install Package, work !
with the observation that Apple Archive Utility produces an Install Package with different size, if compared with those produced by the rest of the above utilities.

4 tools = 4 different results !?

730 Name: !WAHa.06x36 : 2010-01-16 09:20 ID:whwE1Sh8 [Del]

Very mysterious. At what point exactly does the installer fail if extracted with The Unarchiver? I tried unpacking it, and it started fine but I didn't want to install any unknown software so I didn't go through with it.

Also, did you spot any obvious difference between the extracted contents of the installer?

731 Name: hoosyny : 2010-01-16 22:31 ID:nG0yC+M0 [Del]

>>730
my apologies ! because is no big problem
just that permissions were not set correctly by default when extracted with The Unarchiver and Springy !
sorry again ! I was rushed !

732 Name: Joshua K. : 2010-01-18 14:20 ID:DE7Fn3bo (Image: 352x200 png, 29 kb) [Del]

src/1263853236961.png: 352x200, 29 kb

pigz is a reimplementation of gzip for multiple procs. Can you pretty please replace the gzip code with pigz?

http://www.zlib.net/pigz/

733 Name: !WAHa.06x36 : 2010-01-19 03:51 ID:whwE1Sh8 [Del]

>>731

All right, I'll try to investigate it further.

>>732

> when compressing data

Decompressing deflate is pretty much impossible to do on multiple cores, unfortunately.

734 Post deleted by user.

735 Name: achecht : 2010-01-20 01:31 ID:XLBZE8w7 [Del]

Answers to some of the questions 728-733...

>>728 I tried version 2.3 of TU, and it stills has this problem (install fails).

>>730 The install fails right at the start of installing any files, so you won't really be installing anything.

TU produces an installer that fails and is 6,939,287 bytes, and Apple Archive Utility produces one that works and is 6,894,913 bytes. Not sure without looking closely what the difference are.

736 Post deleted by user.

737 Name: hoosyny : 2010-01-20 18:43 ID:rf8lUoEZ [Del]

>>735
Hello 'achecht', have you read post 731 ?!
There is no big error ! You just need to fix permissions for all enclosed folders and files ! You can use for this a graphical tool such as 'BatChmod'
Regarding size difference between TU and AU, I do not know why this difference, but both packages works !

738 Name: Anonymous : 2010-01-21 09:24 ID:liDpyjda [Del]

First off, many thinks for enabling me to say NO to Stuffit. Second off, I saw some folks had been asking how to compile. I got it to compile on Snow Leopard (10.6.2) with XCode 3.2.1. I initially ran into problems with #include_next's, but found that by unsetting some of the user settings I could get it to compile. I'm a command line kinda guy, so here's the commands I used to build and install the app in /Applications after downloading TheUnarchiver2.3_src.zip:

unzip TheUnarchiver2.3_src.zip
cd The\ Unarchiver/The\ Unarchiver
xcodebuild \
SDKROOT_i386= SDKROOT_ppc= SDKROOT_x86_64= \
MACOSX_DEPLOYMENT_TARGET_i386= MACOSX_DEPLOYMENT_TARGET_ppc= MACOSX_DEPLOYMENT_TARGET_x86_64= \
GCC_VERSION_i386= GCC_VERSION_ppc= \
HOME= DSTROOT=/ install
cd ../..
rm -fr The\ Unarchiver

739 Name: hnk : 2010-01-21 12:05 ID:YztZsDcx [Del]

I have a strange problem with The Unarchiver. When I download an .rar file, The UnArchiver automatically tries to unarchive it as soon as the file has completed downloading. I have found no way to shut this off. It is really annoying when downloading a multi *.rar set of files, because it will try to unarchive each part.

I'm using the latest Snow Leopard. Is it possible I have something set in the OS that is doing this to me?

Thanks!

740 Name: !WAHa.06x36 : 2010-01-21 16:10 ID:whwE1Sh8 [Del]

>>739

It's probably a Safari option.

741 Name: broomdodger : 2010-01-21 17:16 ID:3WMwwfuZ [Del]

>>739
>>740

Try unchecking the Safari preference:

Safari > Preferences > General > Open "safe" files after downloading

742 Name: booka : 2010-02-01 20:27 ID:yX3WBenB [Del]

This is a very useful program, thank you.

743 Post deleted by moderator.

744 Name: coolman : 2010-02-03 03:32 ID:WR1PsHSO [Del]

Very good!

some suggestions :

.HUD interface

.compression (it would be great !!!)

.DMG container

Bye!

745 Name: Anonymous : 2010-02-04 18:53 ID:Heaven [Del]

>>744

>HUD interface

HUD windows have stupid behavior like always on top, so I'm against this. Also I believe that'd force Unarchiver to require Leopard or higher.

>compression

Try out http://www.kekaosx.com/en/

>DMG

Whats wrong with mounting it with OS X?

746 Name: Anonymous : 2010-02-09 16:53 ID:xq1fDxNO [Del]

Not surprisingly, but Unarchiver doesn't care for the practice of concatenating a rar and a jpg.

Just making sure you know, Waha.

747 Name: fbsduser : 2010-02-22 10:16 ID:4ka/Eqsj [Del]

A suggestion.
Make it use the finder to "preview" archives w/o extracting them (I guess it would be something like "extract to RAM/temp folder" and then open it, and when the user closes the window, the RAM/temp folder contents gets deleted automatically).

748 Post deleted by moderator.

749 Name: yonatan : 2010-03-05 06:57 ID:NDQ97Bk7 [Del]

I'm having trouble extract rar files. I'm using the latest version 2.3 and when I try to extract a multipart rar archive I get the following message:

"The contents of the file <filename> can not be extracted with this program."

This is very odd, as I've not really had any problems with rar files before. I have about 100+ rar files that I cannot extract with The Unarchiver :(

If you want me to send you some of the files I can, but it's about 100-200MB.

Thanks

750 Name: !WAHa.06x36 : 2010-03-05 07:32 ID:fMY4ym22 [Del]

>>749

Are they named .000, .001?

751 Name: yonatan : 2010-03-05 10:05 ID:NDQ97Bk7 [Del]

>>750

No. .part01.rar, .part02.rar etc

752 Name: yonatan : 2010-03-07 15:04 ID:NDQ97Bk7 [Del]

Something is definitely broken in 2.3 with regards to .rar extraction. I downloaded the latest version 3.92 of rar from RARLAB and extracted all 100+ files without any issues.

I hope that this will be resolved in the next version.

753 Name: !WAHa.06x36 : 2010-03-07 16:54 ID:fMY4ym22 [Del]

>>752

Can't do anything without example files that fail.

754 Name: yonatan : 2010-03-08 03:21 ID:NDQ97Bk7 [Del]

>>753

I told you I can give you a few of the files, but they're large 130MB for two part rar files, i.e. part1 and part2. Tell me how to give them to you and I will.

Also, doesn't The Unarchiver use the rar and unrar command line tools from RARLAB? If so then I don't see why it doesn't work.

Let me know how to give you the two files.

755 Name: !WAHa.06x36 : 2010-03-08 08:26 ID:Heaven [Del]

>>754

You can try uploading them to some file hosting service and mailing me the URLs, I suppose.

Also, The Unarchiver uses no external tools.

756 Name: Hudson Hawk : 2010-04-02 07:31 ID:BrLEkH9A [Del]

Hey,
is there a possible way, to create an exit, cancel or break up button?
Sometimes, a zip-file will not really unzip, and than the unarchiver hangs! than I have to complete restart my mac, to stop the program!
Would be really nice for this button, because I also cannot close it from everywhere, not in the finder nor in the dock!
Thanks :-)

757 Name: !WAHa.06x36 : 2010-04-02 18:57 ID:hA6AW9FG [Del]

>>756

I'd rather have a copy of any file that does that so I can fix the bug that makes it do that. That really isn't supposed to be possible at all.

758 Name: Konrad : 2010-04-06 04:38 ID:RLkFoB0A [Del]

Really nice thing. Would love to seem some update mechanism implemented. Unarchiver seems to be ideal solution for mac and I don't want to mix next version when it occurs. Maybe implementing sparkle, as update framework?

759 Name: Chris : 2010-04-07 03:00 ID:nG8kVPhi [Del]

A little usability thing with v2.3.
I have "After successfully extracting an archive, Move the archive to the trash" option ON.

When an archive then fails to extract, the error message is displayd and two buttons are present: Stop and Continue.

Clicking 'Stop' closes the program without deleting the archive, but pressing 'Continue' DOES move the archive to the Trash, although the extraction was unsuccessfull!

760 Name: Estee : 2010-04-19 15:11 ID:FiBKRpS+ [Del]

Is there a way to extract a password protected file with the Unarchiver?

When I try to open the file (in my case a sitx file), goes into the extract mode but in a split second exits, without giving me an option to enter the password before extraction.

Any help will be highly appreciated.

Many thanks.

761 Name: tjcarter : 2010-04-19 16:16 ID:h0aycEoW [Del]

I'd like to offer yet another vote for Sparkle auto-update support.

Also, I found a dmg that The Unarchiver (2.2 or 2.3, I can't check right now) claimed was corrupt. It's the Carbonite backup installer. Apple's archive utility happily extracted and ran it without error. Is this something you've heard of before? I'll post the archive somewhere if needed.

If I had to bet, I'm guessing it's like Palm's HotSync protocol, where the open source implementation sometimes doesn't work properly because it lacks the bugs of the official software. ;)

Also, WAHa, for the record, you rock.

762 Post deleted by moderator.

763 Name: George : 2010-04-20 07:40 ID:Dvw/45Dm [Del]

I would like to provide the Greek localization!
I already know how to localize an application for Mac OS X.
Thank you for this useful application,
George.

764 Post deleted by moderator.

765 Name: straycat : 2010-04-26 09:56 ID:+9OEHnRw [Del]

hi WAHa.

just for the record, i can't extract these files with the unarchiver but with path finder's built-in stuffit engine, they decrunch fine.

check the files on post 42 to 46 on the following link:
https://bugs.launchpad.net/subdownloader/+bug/245836

cheers.

766 Name: !WAHa.06x36 : 2010-04-26 11:09 ID:Heaven [Del]

>>765

Put in a quick fix for that. However, you'll need to click the .z01 part and not the .zip part for it to work.

767 Name: straycat : 2010-04-26 12:14 ID:+9OEHnRw [Del]

ok thanks.

768 Name: !WAHa.06x36 : 2010-05-10 07:51 ID:fMY4ym22 [Del]

All right, time for another release. 2.4 is now out:

http://theunarchiver.googlecode.com/files/TheUnarchiver2.4.zip

  • Support for Zip files missing their central directory. This makes it possible to recover more damaged Zip files.
  • Support for more DiskDoubler files.
  • Better handling of broken Tar files, such as those created by some versions of Ant.
  • Bugfixes for the RAR and StuffIt decompressors.
  • Fixed file association for .Z files.
  • Italian and Danish translations, by Marco Rotatori and Søren Palmund.
  • Some fixes for the handling of file permissions, to better match Archive Utility.
  • Fixes to unpack giant .tar.gz files better.
  • Optimized decompression of several older formats, such as LZH and StuffIt.
  • Fixed a couple of bugs in the UI.
This thread has been closed. You cannot post in this thread any longer.