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!

401 Post deleted by moderator.

402 Name: Pico Mitchell : 2007-10-29 16:54 ID:4NWbbW93 (Image: 408x99 png, 18 kb) [Del]

src/1193702050291.png: 408x99, 18 kb

Well, to hopefully inspire someone of authority, I have actually modded The Unarchiver to have a HUD display. This shows that it really is simple enough for an Interface Builder to do (with the new dev tools). Here are some preview screens and a download link to the nib files i modified. The HUD needs a custom status bar, but hopefully this will help speed up and motivate the HUD interface into an Unarchiver release. I like it a lot and I think others will too. Also, The Unarchier rocks! thank you for the development!

Example One: http://www.randomstorage.com/mods/unarchiver/UnarchiverHUDExample_1.png

Example Two: http://www.randomstorage.com/mods/unarchiver/UnarchiverHUDExample_2.png

Unarchiver HUD NIBs: http://www.randomstorage.com/mods/unarchiver/UnarchiverHUD_NIB_Resources.zip

403 Name: Baguette : 2007-10-29 23:46 ID:ndeleYI2 [Del]

>>402 That looks really nice Pico! I hope something like this can be incorporated.

404 Name: Pico : 2007-10-30 01:40 ID:ASyR9MYe [Del]

Thank, you can implement it too using the NIBs, it works perfectly, except for resizing the window, which I don't think is worth fussing with. Anyway, sorry for the double posts, I wasn't sure if i could post html and I wasn't able to delete my post like i thought i would be. Also, in the post I meant to say an "simple enough for an Interface Builder novice to do"

405 Name: !WAHa.06x36 : 2007-10-30 09:20 ID:Heaven [Del]

I'll certainly look into it, once I have some spare time to work on it again. What's the problem with resizing, are you putting a big black view to cover up the background painting? In that case, you should just be able to set its size flags so that it resizes properly.

406 Name: Pico : 2007-10-30 14:46 ID:4NWbbW93 (Image: 454x99 png, 13 kb) [Del]

src/1193780785839.png: 454x99, 13 kb

When the window is resized the HUD loses its transparency, and is illegible because of the fact that I made the text white. The progress bar also gets funky, see the 3 different colors on the attached image. I think it does have something to do with the ProgressView but I don't know enough about it to troubleshoot.

407 Name: Dan Pritchard : 2007-10-30 19:18 ID:6mncWYfb [Del]

Love the app, it's simple, elegant and useful.

As for the ZIP file problem, here's my experience.
Did a clean 10.5 install, and just upgraded to The Unarchiver 1.6.

First I told Unarchiver to open .zip files by checking the .zip format.

For a test, I create a file with .zip extension, e.g. by running "touch testfile.zip" in terminal. The file has a blank sheet icon.

I then get the file's info, change it to open with The Unarchiver (which does NOT show in the quick drop-down, i have to browse for it each time I'm here). This file, and only this file, then changes to the Unarchiver "Box" ZIP icon (yay!). Then I click "Change all" and all ZIPs including this one, go back to blank sheets.

Will update you if restarting fixes anything.

Thanks for your work on one of my favorite utilities.
Regards,
-Dan

408 Name: Pico : 2007-10-31 12:53 ID:4NWbbW93 [Del]

I am having the exact same issue as Dan. I have tried all he said and multiple restarts, I also tried changing "com.pkware.zip-archive" to "public.zip-archive" with no luck and also tried changing it to "public.archive" which I saw somewhere after a google search. all to no avail. It would be great to see that awesome icon in my DLs stack!

409 Name: Kurt : 2007-11-02 08:35 ID:EDBG+IkO [Del]

Same issue here as Dan and Pico.. fingers crossed for an update!

410 Name: Ditto : 2007-11-04 15:33 ID:Jv1+xq0C [Del]

Same issue - despite modification association is not functioning ):

411 Name: HP : 2007-11-06 06:17 ID:oZKUA97W [Del]

Find :

	<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>zip</string>
<string>ZIP</string>
</array>
<key>CFBundleTypeIconFile</key>
<string>zip.icns</string>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>application/zip</string>
<string>application/x-zip</string>
<string>application/x-zip-compressed</string>
</array>
<key>CFBundleTypeName</key>
<string>Zip Archive</string>
<key>CFBundleTypeOSTypes</key>
<array>
<string>ZIP </string>
<string>ZIP_</string>
</array>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSItemContentTypes</key>
<array>
<string>com.pkware.zip-archive</string>
</array>
<key>LSTypeIsPackage</key>
<false/>
<key>NSPersistentStoreTypeKey</key>
<string>XML</string>
</dict>

Replace with :

	<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>zip</string>
</array>
<key>CFBundleTypeIconFile</key>
<string>zip.icns</string>
<key>CFBundleTypeName</key>
<string>ZIP archive</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
</dict>

It seams to work, believe me!

412 Post deleted by user.

413 Post deleted by user.

414 Name: silvernode : 2007-11-06 10:08 ID:UDBlkFrv [Del]

Ok so i want to get my own board up and running but i am a total noob when i comes to this. I have already installed perl,mysql,apache. I also configured apache to use cgi correctly. No all i have is the actual wakaba files but where do i place them and how do i get them into my database? All help would be greatly appreciated. Also would there be any chance of a guide somewhere? Like a detailed setup guide? All i get when i come here is people who have pretty much got their board working but have other questions about tweaking it. Thanks

415 Post deleted by user.

416 Post deleted by moderator.

417 Name: Anonymous : 2007-11-06 11:44 ID:Heaven [Del]

418 Name: Pico : 2007-11-06 13:10 ID:4NWbbW93 [Del]

>>411

HP... this didn't work for me on 10.5 on PPC.

Have you restarted and tried changing all zips to open with The Unarchiver?

419 Name: HP : 2007-11-06 13:27 ID:oZKUA97W [Del]

I have restarted twice ;)

But, it started to work, for me, before I have to restart… U have to modify info.plist, move your app (perhaps: /Applications -> ~/Desktop -> /Applications), reassociate (contextual menu) … and after, it could work…

At the moment, all my zips have the icon of "The Unarchiver" :)

In my case 10.5 Intel… but, I don't think syntax used in plist have to deal with processor (may be am I wrong?).

420 Name: !WAHa.06x36 : 2007-11-06 13:49 ID:Heaven [Del]

>>411

That will break the formats list inside The Unarchiver, though.

421 Name: Anonymous : 2007-11-07 09:15 ID:Heaven [Del]

>>391
Just a note, I tried this and it didn't work.
Just yesterday I deleted the unarchiver preferences and downloaded a new copy and tried this again.

It works strangely enough.

422 Name: Pico : 2007-11-08 01:37 ID:EBtvreyN [Del]

>>391

Wow, how did I overlook such a simple troubleshooting procedure? This actually worked for me as well. Thanks!

423 Name: !WAHa.06x36 : 2007-11-08 03:03 ID:Tqv6D0BD [Del]

For those who can't get >>391 to work, it's probably because Launch Services won't read Info.plist again unless the app's container directory's timestamp has changed. That's why moving it around or reinstalling might help.

Or more reliably, use the Terminal to run touch "/Applications/The Unarchiver.app".

424 Name: Pico : 2007-11-13 11:42 ID:4NWbbW93 [Del]

I just found out about this right now, but it looks like this HMBlkAppKit framework could be great for The Unarchiver, comes with great looking alternating row colors and custom progress bars already.

http://shiira.jp/hmblkappkit/en.html

425 Post deleted by moderator.

426 Post deleted by moderator.

427 Post deleted by moderator.

428 Name: Tony : 2007-11-14 12:02 ID:xIq1x5pq [Del]

I just started using The Unarchiver and it is much faster than BOMArchiveHelper.
However, the files I'm extracting are 5+GB, and all I see is' preparing to extract "myfile.zip"', is never says anything like 'Extracting now'. Just when I think it's hung up, the extracted file's folder pops up. Which is great, but I'd like to see something indicating that it's not hung.

Thanks for the fast product.

429 Post deleted by moderator.

430 Name: igmhardcore : 2007-11-30 01:07 ID:UO3+aqUX [Del]

Ok i love the app and how it opens Stuffit format, its wonderful since i hate stuffit, tho is there anyway that in the next update you could try and add support for .sitx files? as i have a few that i havn't been about to open for a while :-/

Regards, Hardcore

431 Name: forbin : 2007-11-30 15:14 ID:LrNLe7ne [Del]

how about a quicklook plugin, like what betterzip has: http://macitbetter.com/BetterZipQL-1.0

432 Name: Anonymous : 2007-11-30 18:50 ID:Heaven [Del]

>>431
Why re-invent the wheel?
There's already 4 different quicklook plugins that support at least zip.

Besides if Waha doesn't have Leopard yet, I doubt he'll want to code something that he can't even test or even use.

>>430
Check >>79

433 Name: fernando : 2007-11-30 21:41 ID:Heaven [Del]

Are you still working on it? Just came to say great work and that I look forward to 2.0 with password-protected rar support.

434 Name: Anonymous : 2007-12-08 20:13 ID:owFITNhl [Del]

Yeah we want some updates, for Leopard and so on

435 Name: !WAHa.06x36 : 2007-12-09 05:43 ID:Heaven [Del]

I have some kind of Leopard fix done, but I need to test it a bit more. Should be out "soon".

I have plans for some big changes to make it easier to add new formats and add support for encryption and such, but it'll take a lot of work that I don't have the time to do at the moment. Perhaps sometime towards spring, I will.

436 Name: bECaye : 2007-12-09 14:23 ID:MCcr18rT [Del]

So good to heard that... Can't wait to test it :P

437 Name: bECaye : 2007-12-09 14:23 ID:MCcr18rT [Del]

So good to heard that... Can't wait to test it :P

438 Name: AJR : 2007-12-10 02:46 ID:hWY6fCvH [Del]

THANK YOU !

this "patch" works fine.

439 Name: Justin Bell : 2007-12-12 07:01 ID:7DNvAT8v [Del]

Do you plan to put in a file joining feature so that people don't have to boot up Windows to open split RAR files? Otherwise, I find it works well -- Thanks.

440 Name: !WAHa.06x36 : 2007-12-12 14:35 ID:Heaven [Del]

It already supports normal multi-part RAR files.

441 Name: Alexander : 2007-12-14 18:54 ID:Axi07+XZ [Del]

The Unarchiver is a great utilify; but it doesn't unpack my RAR archives locked by a (long) password. It gives me the error: "Could not extract the file "aaa". Command is not supported". Other unarchivers have no difficulty in unpacking the archive. Can something be fixed? That would really be great!

442 Name: Alexander : 2007-12-14 18:55 ID:Axi07+XZ [Del]

The Unarchiver is a great utilify; but it doesn't unpack my RAR archives locked by a (long) password. It gives me the error: "Could not extract the file "aaa". Command is not supported". Other unarchivers have no difficulty in unpacking the archive. Can something be fixed? That would really be great!

443 Name: Baguette : 2007-12-15 18:58 ID:Apjt0NET [Del]

>>442 Look above, he says he's working on encryption support. As of now it cannot handle encrypted archives.

444 Name: Anonymous : 2007-12-17 02:22 ID:QI8TvG3+ [Del]

omg. do i have to wait for spring...? hope you'll seed some betas.

btw I noticed you can find some unarchive bundles in Stuffit Expander.app, and are can those used for The Unarchiver? Maybe its needed to unassemble and hacked?

445 Name: Anonymous : 2007-12-17 02:24 ID:QI8TvG3+ [Del]

*Can those be used for The unarchiver
sry mistypes.

446 Name: !WAHa.06x36 : 2007-12-22 12:19 ID:Heaven [Del]

>>444

It is an interesting idea, but I suspect it wouldn't work. I'll keep it in mind, though.

447 Name: anonymous : 2007-12-23 19:05 ID:0D3QcPp/ [Del]

The Unarchiver is not functioning properly in Leopard. I can't seem to assign The Unarchiver to open up my zipped files. When I use the Get Info window, I have to navigate to find it. (It's not visible along with Stuffit and Archive Utility.) When I assign it to a zip (or other similar) file and then click on Change All.. the window flashes and it says Archive Utility again. Looking for a solution.

448 Name: Anonymous : 2007-12-24 14:46 ID:Heaven [Del]

>>447
Read this thread more closely.

449 Name: christian : 2008-01-03 08:01 ID:OjUzr6pw [Del]

it would be really awesome if it would check if i have the terminal version af unrar installet and then use that to unrar files. I have a lot of problems with files rar'ed with winrar stalling the unarchiver but runs just fine from the terminal with unrar e <file>

450 Post deleted by user.

451 Name: Alexander : 2008-01-04 17:42 ID:Axi07+XZ [Del]

Christian: I suggest using Platypus and the command-line UNRAR to make yourself a fully working application without waiting for the RAR support. That's what I did within a day (with a little bit of bash scripting) and I'm quite happy (still using the Unarchiver for ZIPs etc.).

452 Name: !WAHa.06x36 : 2008-01-17 16:41 ID:dq74j0K2 [Del]

Finally put out an attempt at a version to fix the Leopard issues:

http://wakaba.c3.cx/releases/mac/TheUnarchiver1.6.1.zip

Nothing else really new in this, except for some higher-res icons. Hopefully it will work better on Leopard now. Any reports of successes of failures appreciated.

453 Name: elmimmo : 2008-01-23 04:18 ID:n+c+3qVf [Del]

Is there any secret for using expanding Diskdoubler files? Here I send a sample, compressed with DiskDoubler 4.1, that The Unarchiver does not seem to support.

Compressed: http://www.box.net/shared/r0guhi1kwc
Expanded: http://www.box.net/shared/6yos1ggw0o

(I manually added the .dd extension to the compressed file, since that DD identified the compressed nature of the files by its icon, not by the filename)

454 Name: !WAHa.06x36 : 2008-01-23 08:59 ID:Heaven [Del]

libxad has the start of a DiskDoubler decompressor, but it does not actually work. I know nothing about it, so I can't do much about it. If anyone was to contribute some code for it, I'd be more than happy to add it.

455 Name: Anonymous : 2008-01-25 17:26 ID:SwFLTw8a [Del]

>>449

You can just merge the official unrar source. I can't find a license, but I think it's alright.

456 Name: Anonymous : 2008-01-25 17:48 ID:Heaven [Del]

>>455
No, it isn't. UnRAR's license is not free. Further, the format itself is proprietary so dealing with it at all apart from using their non-free library brings various reverse engineering issues into play, which itself is illegal in certain countries.

http://www.thunderstone.com/site/webinator5man/unrar.html

457 Name: el-pur : 2008-01-26 16:24 ID:+DQKImVU [Del]

Heya,
I encountered weird behaviour with a large (4gig) archive compressed with os x (10.5.1) archive utility. It just wouldn't extract right with the unarchiver and always ended up with some 500 megabyte file instead of the 4 gigabyte original. Archive utility on the other hand could extract it a-ok. First I thought it was an issue with the archive and compressed the file again a few times before I figured out I could try archive utility.

458 Name: Anonymous : 2008-01-26 18:43 ID:SwFLTw8a [Del]

>>456

That doesn't seem incompatible with the LGPL. (but it would be with the GPL, of course)

459 Name: Anonymous : 2008-02-03 11:36 ID:Heaven [Del]

>>457
I managed to duplicate this with a 2gb file. (An iso in a zip, in case you're wondering)

460 Name: Anonymous : 2008-02-22 11:47 ID:LgxlhOkL [Del]

вы пидоры!

461 Name: Anonymous : 2008-02-22 15:01 ID:Heaven [Del]

>>458 Waha releases code under the public domain.

462 Name: Anonymous : 2008-02-26 17:41 ID:Heaven [Del]

>>461

libxad is LGPL in this configuration
(http://theunarchiver.googlecode.com/svn/trunk/libxad/COPYING and some grep -r GPL)

463 Name: mootle : 2008-03-02 11:19 ID:Heaven [Del]

higher res icons ftw!

464 Name: Anonymous : 2008-03-09 13:12 ID:/awc9bsP [Del]

The ability to unlock password-protected RAR files is a critically needed feature! I'm looking forward to seeing it added. Thanks.

465 Name: Anonymous : 2008-03-09 13:16 ID:/awc9bsP [Del]

The ability to unlock password-protected RAR files is a critically needed feature! I look forward to seeing it added. Thanks for your work on this!

466 Name: Anonymous : 2008-03-17 08:08 ID:brEXD04s [Del]

i too hope i can decompress rar files with password in the near future, other than that the unarchiver is just great!

467 Name: Nick : 2008-03-18 17:40 ID:aF/1cE2z [Del]

just wanted to second, the decompressing password-protected rar files. otherwise, it's perfect! thanks.

468 Name: Anonymous : 2008-03-25 03:02 ID:iDa9U6Zu [Del]

It's beautifull program, but one problem, how to open 7z parts files?? This files use 001, 002,... extensions

Thanks!

469 Name: Ken : 2008-04-04 01:35 ID:PWwfjBUM [Del]

I love it! Simple and beautiful. But I'm a heavy rar user. The unarchiver fails to unlock password-protected rar files!!! The rest of it is just great!

470 Post deleted by moderator.

471 Post deleted by moderator.

472 Post deleted by moderator.

473 Name: Anonymous : 2008-04-09 14:22 ID:U5j6Z9Ra [Del]

You rock!!! But when is the new version for password-protected RAR files? Really look forward to it!!!!

474 Name: Anonymous : 2008-04-10 17:08 ID:DikmcnKo [Del]

Fantastic program. But I'd love it even more if all the alert dialogs offered a "Default" button that responded to ENTER and RETURN keys!

475 Name: Stan : 2008-04-12 10:31 ID:W9JM0pWW [Del]

Great app. Use as BOMarchiver replacment.

I do have a suggestion.The way now the unarchiver works is that ut unpacks the archive to a default folder. (On my setup thats /temp). It would be great to have modifier key that would activate the unarchiving function while just drag'n'droping the file to the destination folder. just like copy/move but let's that this woud be a new modifier key. For example:

I want to unarchive files.zip from user/downloads/ to user/movies/. I would drag'ndrop the files.zip to user/movies/ while holding cmd+alt. That would start the unarchiving of the files.zip to the destination I wanted.

Hope this makes sense. maybe there is already a way to use this I just don't know the right keys.

have a jice day and thanks again for a great app.
Stan

476 Name: Anonymous : 2008-04-12 11:24 ID:Heaven [Del]

>>475
Would be neat, but I'm not sure that's possible. You'd have to be reaching pretty deeply into OS Finder's internals for that sort of functionality.

477 Name: Anonymous : 2008-04-12 11:25 ID:Heaven [Del]

s/OS Finder's/OS X and Finder's/

478 Name: Henrik : 2008-04-13 11:58 ID:n2tQLMEZ [Del]

Hi. I have a problem.
Unarchiver is a great app and i love the "cue" funktion.
But when i cue up a couple of extractions its a little bit of a gamble if it will go throug or not.
I dont know why and i dont see any patern.
Sometimes it works great and it extracts all the things i have cued up.
But most of the time it stops after a couple of extractions.
Anyone that know what can be wrong?

479 Post deleted by moderator.

480 Name: Mike : 2008-04-22 17:04 ID:U5j6Z9Ra [Del]

It's been a while since v.1.6.1 was out. Really look forward to the new version with extracting passworded RAR files so that I can throw Stuffit Expander away!!! :P

481 Name: brains : 2008-04-26 08:40 ID:a6E4qYaw [Del]

well thats two of us!

482 Name: Anonymous : 2008-04-28 16:02 ID:4Cmey9qJ [Del]

I just found a problem with The Unarchiver, if you're extracting a tar.gz that contains files with a large path, it will print some error message to the console log and not extract those. I found out this when I realized that extracting the tar.gz of Eclipse, it will leave you with an incomplete installation. Using tar xzf on the command line works fine.

I'll whip out a test case if needed later. I'm not sure if this only happens with tar.gzs or other formats.

483 Name: !WAHa.06x36 : 2008-04-28 17:56 ID:dq74j0K2 [Del]

>>482

I guess maybe there is some limit to the path length in tar files, and some extension to handle longer ones? I'll look into it when I have some free time again, which I hope won't be too far from now... But file a bug on the bug tracker too just so I don't forget.

484 Name: Mike : 2008-05-05 15:46 ID:U5j6Z9Ra [Del]

Does that mean the new version is coming out?!!!! That's terrific! Looking forward to it! Hope password protected RAR files can be extracted this time!

485 Name: Anonymous : 2008-05-18 05:09 ID:+etTDJXD [Del]

this is a fantastic app! but i'll still wait and see what it's gonna have in the next ver.

486 Name: Tom : 2008-05-18 13:29 ID:RgI1EYCL [Del]

I use 1.6.1 and it seems to really choke on 7z files, RAM usage goes through the roof. It seems that it actually only does the real choking if I try to cancel, it takes a few minutes or so to actually do the canceling. I tried 7zX and it works fine. Considered using the p7zip file instead of just libxad?

Of course, it could be because 7zip doesn't provide a progress bar and it was working fine, I just didn't see any progress.

487 Name: !WAHa.06x36 : 2008-05-19 09:58 ID:Heaven [Del]

>>486

The 7-zip code is pretty horrible. I'm using the slightly more sane 7zC code, but it's sorely lacking in features, and tends to use up tons of memory. I'd like to improve it, but I'm not sure what's possible.

488 Name: GothAlice : 2008-05-20 12:14 ID:f3mF8MvX [Del]

One thing that appears to be missing is decompression of .tar.lzma and raw .lzma archives.

489 Name: !WAHa.06x36 : 2008-05-20 14:19 ID:Heaven [Del]

It shouldn't be too hard to add, but does anybody actually use that?

490 Name: GothAlice : 2008-05-21 15:22 ID:f3mF8MvX [Del]

It's used by Wikipedia to compress SQL dumps, it's used by the corp I work for, for a similar reason. It's basically a direct replacement for gzip and bzip2; as a stream compressor you'd be hard pressed to find better.

Personally, I use it to compress my rather extensive book collection, one file at a time. E.g. I'd like to be able to double-click my .txt.lzma or .html.lzma file, get an uncompressed file I can read, then delete the uncompressed file. My 50+ GB book collection slims down to under 10GB with LZMA. I've been using gzip for this previously.

I've downloaded the code and I have the code for the lzmatools package, so I'll give it a shot myself tonight.

491 Name: !WAHa.06x36 : 2008-05-22 18:16 ID:Heaven [Del]

> so I'll give it a shot myself tonight.

Don't bother. The guts of the compression code are being heavily re-written right now, and anything you do would just have to be re-done afterwards. (This is because as it is now, it's far too much work to add new formats.)

492 Name: alex : 2008-05-28 06:43 ID:l7tMaJZx [Del]

V 1.6.1 on Leopard reports corrupt file for some .gz archives (single gzipped files actually). I download gzipped log files from my web hosting server and it coughs (unzips part of it and then says file is corrput) on http logs and unzips OK ftp logs (which are smaller files). I presume both log files were zipped using the same utility. Command line gunzip or BOMArchiveHelper.app handle those archives OK. Here is console log:
28/05/08 09:38:27 The Unarchiver[51785] Warning *** -[NSLock lock]: deadlock (<NSLock: 0x14c5f0> '(null)')
28/05/08 09:38:27 The Unarchiver[51785] Warning *** Break on _NSLockError() to debug.
28/05/08 09:38:33 The Unarchiver[51785] Warning *** -[NSLock unlock]: lock (<NSLock: 0x14c5f0> '(null)') unlocked from thread which did not lock it
28/05/08 09:38:33 The Unarchiver[51785] Warning *** Break on _NSLockError() to debug.

493 Name: !WAHa.06x36 : 2008-05-28 07:24 ID:Heaven [Del]

>>492

I'll need files before I can do anything about it.

494 Name: alex : 2008-05-28 18:57 ID:THj6BdYb [Del]

I emailed you the file.

495 Name: Deac : 2008-06-05 07:20 ID:xqfwJM/f [Del]

I just tried your program for opening old DiskDoubler files and it would not. I got error message saying "could not open resource fork".

I still have DiskDoubler but am about to wean off OS 9 finally and was looking for something to open the hundreds of old DD files I have in the future.

Thank you

496 Name: !WAHa.06x36 : 2008-06-05 14:41 ID:Heaven [Del]

>>495

Apparently the DiskDoubler code in libxad is not finished. If you want support for it, you probably need to bother them about it, or if you can find some code for unpacking them, I can try adding support at some point.

497 Name: Joe : 2008-06-05 15:18 ID:U5j6Z9Ra [Del]

Hey, I really like the interface of the Unarchiver, and also the function of extracting many files with only one double-click! But it's been a while since the version of 1.6.1 came out. I'm wondering when you'll release the next version. Actually, I'm really looking forward to it since I got so many RAR files with those stupid passwords!

498 Name: !WAHa.06x36 : 2008-06-05 18:48 ID:Heaven [Del]

That's how it is with software written in one's spare time.

I've been working on some big internal rewrites lately, to make it easier to expand, but when that will be done, nobody knows.

499 Name: LLF : 2008-06-07 04:17 ID:1fgdMiNS [Del]

I'd really like to be able to expend password protected stuffit files (.sit and .sea, which The Unarchiver doesn't seem to support at the moment. when opening a password protected stuffit file it just says the file format is corrupted, instead of asking for the password.

I'm a software developer and won't mind coding it in myself, if some one can give me a hint in regard to the mechanism stuffit is using to password protect it's archives.

500 Name: LLF : 2008-06-07 04:19 ID:1fgdMiNS [Del]

I'd really like to be able to expend password protected stuffit files (.sit and .sea, which The Unarchiver doesn't seem to support at the moment. when opening a password protected stuffit file it just says the file format is corrupted, instead of asking for the password.

I'm a software developer and won't mind coding it in myself, if some one can give me a hint in regard to the mechanism stuffit is using to password protect it's archives.

This thread has been closed. You cannot post in this thread any longer.