Xee (1000)

1 Name: Mr VacBob!JqK7T7zan. 2005-07-26 13:25 ID:+Fwu3KWy [Del]

I'm using this now, but I'd like it better if it had these features:

  • some way to open a folder from the command line ("open -a Xee ." doesn't work).
  • some way to advance to the next image one-handed on a laptop keyboard, possibly with , and . (obvious joke goes here).

2 Name: Anonymous 2005-07-26 14:36 ID:Heaven [Del]

what

3 Name: Anonymous 2005-07-26 15:12 ID:Heaven [Del]

Xee? What's Xee?

4 Name: Mr VacBob!JqK7T7zan. 2005-07-26 15:51 ID:+Fwu3KWy [Del]

secret project lolz

5 Name: !WAHa.06x36 2005-07-26 17:25 ID:RbcXVHrq [Del]

http://4-ch.net/tech/kareha.pl/1117579382/33 <-- This secret project, in fact.

> some way to open a folder from the command line ("open -a Xee ." doesn't work).

I am enough of a Mac newbie to not know how to make that work. Tell me, and I'll fix it.

> some way to advance to the next image one-handed on a laptop keyboard, possibly with , and . (obvious joke goes here).

Ah, noted.

6 Name: !WAHa.06x36 2005-07-26 19:39 ID:RbcXVHrq [Del]

Oh well, since MrVacBob spilled the beans anyway, and since I do need some testing, I'll upload an alpha version, if anybody wants to check it out.

http://wakaba.c3.cx/releases/mac/Xee_alpha_1.zip

Lots of functionality missing (you'll see placeholders in the menus and stuff), and the status bar is a mess, but it image viewing and browsing should work. Report bugs and such.

7 Name: Albright!LC/IWhc3yc 2005-07-27 08:03 ID:9ZxqTBng (Image: 289x106 gif, 10 kb) [Del]

src/1122472988765.gif: 289x106, 10 kb

Interesting. I like the speed!

Some of them you're probably aware of, but here goes:

  • The program tries to open PDFs and BMP images, but displays just a blank black box for both.
  • When opening an image too big for my screen, and I'm not telling it to shrink images to fit, it opens it up in full size, but there are no scroll bars. Is this intentional?
  • I just happened to have a Wakaba vericode image on my desktop, and when Xee opens it, the transparent background is noisy. Other transparent GIFs seem to be okay. Haven't tried an animated GIF yet...
  • When more images are added to the folder Xee is currently browsing, Xee doesn't seem to become aware of them. Maybe the program could do a re-scan of the folder whenever it is brought to the background from the foreground?
  • Trying to open another viewer while one viewer is open = hang. But I tried it a couple of other times and couldn't reproduce it...
  • "Error loading image" on the attached image.
  • The "fit to screen" isn't as pretty as Apple's. Also, will you be making a "full screen" mode that does away with the menu bar and status bar?

Not a bad little hack for a Mac n00b. Good work. :) Any significance to the name "Xee?"

8 Name: dmpk2k!hinhT6kz2E 2005-07-27 08:19 ID:Heaven [Del]

> re-scan of the folder

Rescanning is a baaaaad idea.

OSX has dnotify-like functionality. I think it's called kqueue.

9 Name: Mr VacBob!JqK7T7zan. 2005-07-27 13:33 ID:cyq7+Rsp [Del]

> I am enough of a Mac newbie to not know how to make that work. Tell me, and I'll fix it.

I checked, and 'open -a Xee <an image>' works properly, so I assume it would be a matter of noticing that the thing you've been given is a directory. I don't know the specific file API you're using, since there's at least three, so I couldn't answer that question specifically.

> When opening an image too big for my screen, and I'm not telling it to shrink images to fit, it opens it up in full size, but there are no scroll bars. Is this intentional?

This confused me the first time I got to a manga page that was entirely white at the top, but I don't want a scroll bar wasting space in the window. Perhaps a "current height/total height" percentage at the bottom?

> The "fit to screen" isn't as pretty as Apple's.

It uses OpenGL (presumably bilinear) scaling, and Preview first displays a scale with no interpolation and then goes back with Lanczos or something. It would be hard to duplicate this without using software scaling.

10 Post deleted by user.

11 Name: !WAHa.06x36 2005-07-27 15:30 ID:RbcXVHrq [Del]

> The program tries to open PDFs and BMP images, but displays just a blank black box for both.

Known bug - I just ripped off the file types from Preview and what NSImage says it can handle, but I no longer use NSImage for loading so it's outdated. Will be fixed later.

> When opening an image too big for my screen, and I'm not telling it to shrink images to fit, it opens it up in full size, but there are no scroll bars. Is this intentional?

This matches the behaviour of ACDSee. It's admittedly confusing to people not used to ACDSee, but for me it's natural, and I've been pretty much designing for myself with this one. It also reduces the clutter around the image.

> I just happened to have a Wakaba vericode image on my desktop, and when Xee opens it, the transparent background is noisy. Other transparent GIFs seem to be okay. Haven't tried an animated GIF yet...

I should probably be clearing the buffer before drawing the Quicktime-loaded image into it, or something. Will look into it.

> When more images are added to the folder Xee is currently browsing, Xee doesn't seem to become aware of them. Maybe the program could do a re-scan of the folder whenever it is brought to the background from the foreground?

This also matches the behaviour of ACDSee, but in this case it may not be a good idea. I'll probably look into ways of fixing that later.

> Trying to open another viewer while one viewer is open = hang. But I tried it a couple of other times and couldn't reproduce it...

There might be some issues with multiple windows open... I haven't been able to track it down, and it seems fairly random. If you could reproduce it, I'd be happy.

> "Error loading image" on the attached image.

Will look into it.

> The "fit to screen" isn't as pretty as Apple's. Also, will you be making a "full screen" mode that does away with the menu bar and status bar?

As MrVacBob says, it's OpenGL doing the resampling. It might look prettier if I enabled mip-mapping, but it would also use a bit more graphics memory. I'll probably add an option for this whenever I get around to making a preference GUI. Full screen mode is something I'll probably do sooner or later.

> Any significance to the name "Xee?"

"ACDSee for OS X", probably. Also, it's cute.

> I checked, and 'open -a Xee <an image>' works properly, so I assume it would be a matter of noticing that the thing you've been given is a directory. I don't know the specific file API you're using, since there's at least three, so I couldn't answer that question specifically.

I am just specifying which file types I support in the plist, and then getting events to the NSApplication. I guess that if I can tell the OS I can open directories, and added some code to properly do that, it'd work?

> This confused me the first time I got to a manga page that was entirely white at the top, but I don't want a scroll bar wasting space in the window. Perhaps a "current height/total height" percentage at the bottom?

I need to design some sort of prettier status bar. Maybe there is some sort of iconic representation for this I could think up...

12 Name: !WAHa.06x36 2005-07-27 17:24 ID:RbcXVHrq [Del]

The image in >>7 loads fine for me, it seems. Maybe your Quicktime installation is wonky or something? Can you load it in Quicktime itself? Can you load it if you copy it somewhere else?

13 Name: Albright!LC/IWhc3yc 2005-07-28 07:43 ID:9ZxqTBng [Del]

>>12: Weird. I made a copy of the image to my desktop, and was able to open the copy. So I moved the original to my desktop, and was able to open the original. So then I moved the original back to /Users/Albright/Sites/oaf/_el/css/img/logo.gif, and "error loading image" again. I don't think the pathname length has anything to do with it, because I have a shadow.gif in the same directory that loads fine...

>This matches the behaviour of ACDSee. It's admittedly confusing to people not used to ACDSee, but for me it's natural, and I've been pretty much designing for myself with this one. It also reduces the clutter around the image.

Yeah, I figured out that you can scroll around using the arrow keys, which works as nice as the scroll bars. That'll be confusing to n00bs though.

Regarding the status bar, maybe you could reduce clutter even more by having it be a transparent overlay over the image; maybe barely visible at first, but it gets more opaque when you mouse over it or something.

Also,

>some way to advance to the next image one-handed on a laptop keyboard, possibly with , and . (obvious joke goes here).

I noticed that the scroll wheel changes through images (though it's a bit too fast). I use SideTrack to emulate a scroll wheel on my trackpad. It's a nifty hunk of code; you might wanna give it a try. It's so nice even a tightwad like me went ahead and paid the registration fee ($15).
http://www.macupdate.com/info.php/id/12800

14 Name: !WAHa.06x36 2005-07-28 10:58 ID:RbcXVHrq [Del]

> Yeah, I figured out that you can scroll around using the arrow keys, which works as nice as the scroll bars. That'll be confusing to n00bs though.

You can use the mouse to drag the image around too. I should probably change the cursor to indicate that.

> Regarding the status bar, maybe you could reduce clutter even more by having it be a transparent overlay over the image; maybe barely visible at first, but it gets more opaque when you mouse over it or something.

No, I don't think an image viewer should overlay anything on the image by default, and I want to be able to read it all the time. Since the resize hande in the lower left corner is already at risk for overlaying the image, the status bar is good for avoiding that, too.

15 Name: Michael Maibaum 2005-07-29 16:02 ID:Heaven [Del]

Tried to make it work on a very big image I have - no joy. Image is linked - it is about 36k pixels wide and I wouldn't recommend opening it in Safari.

16 Name: Mr VacBob!JqK7T7zan. 2005-07-29 16:45 ID:cyq7+Rsp [Del]

Sorting bug: I have a set of images (1-1.jpg 1-2.jpg .. 1-10.jpg 1-11.jpg 1-12.jpg) and they're displayed 1,10,11,12,2.

17 Name: !WAHa.06x36 2005-07-29 19:01 ID:RbcXVHrq [Del]

>>15

The whole image has to fit into memory at least twice when loading, due to it having to be converted to OpenGL textures... I might manage to squeeze down the memory requirements a bit, but I suspect it'll never be able to properly load really huge images. That's also bigger than 32k pixels wide - can Quicktime itself open it?

>>16

Mac OS X seems a bit schizophrenic about how to sort files - the file list you get back from NSFileManager is sort differently than the Finder list. I'll probably work around it at some point - do you know if there are any functions to do sorting the same way as the Finder?

18 Name: dmpk2k!hinhT6kz2E 2005-07-29 23:12 ID:fAk/Hxly [Del]

At least for JPEG a near-arbitrary size is possible, if you write your own decoder. You need only decode enough 8x8 blocks to fill ~1.5 times the size of the screen, and upload that to the card. Today's processors should be fast enough to decode additional blocks on demand as the user scrolls around.

It's an ugly hack, but considering the prevalence of JPEGs, it might be worth doing.

19 Name: dmpk2k!hinhT6kz2E 2005-07-29 23:22 ID:fAk/Hxly [Del]

Actually, libjpeg works by decompressing scanlines, so you can easily do on-demand in the y-axis. Regrettably, it can't do it for x.

Combine that with one GL texture per scanline, and it's better than nothing.

20 Name: !WAHa.06x36 2005-07-30 06:32 ID:RbcXVHrq [Del]

Subdividing textures too much would play hell with resizing the image. Also, the lines have to be subdivided further, either (on more modern cards) if the image is wider than the max texture size, or (on older cards) to make sure all textures used are of power-of-two size. Adding dynamic loading on top of that is a bit more than I feel like doing at the moment. Besides, you'll run into trouble as soon as you zoom out.

21 Name: dmpk2k!hinhT6kz2E 2005-07-30 21:58 ID:Heaven [Del]

Sounds like you're having fun. o/

What's the deal with OSX's 2D API's? Are they really that bad?

22 Name: Mr VacBob!JqK7T7zan. 2005-07-31 13:10 ID:ROqtnF1I [Del]

They're not designed for this (which is a polite way of saying they're slow, especially Cocoa). I think there are fast ways involving the C Quartz 2D APIs or QuickDraw, but one is complex and the other is complex and obsolete.

23 Name: !WAHa.06x36 2005-08-02 19:00 ID:RbcXVHrq [Del]

http://wakaba.c3.cx/releases/mac/Xee_alpha_2.zip

Some things mentioned in this thread are fixed, many aren't. I mostly concentrated on doing a lot of re-writing of the image loading code. It now supports loading sub-images in formats that support this (Photoshop layers, JPEG thumbnails) and GIF animations. This is more in spite of than thanks to the Quicktime APIs.

Use 1 and 2 to flip through sub-images or frames. If anyone has a better suggestion for keys to use for this, do tell.

24 Name: Mr VacBob!JqK7T7zan. 2005-08-03 11:18 ID:4r/TZOrw [Del]

What's the point of displaying "24 bits RGB" for a JPEG? They aren't.

25 Name: !WAHa.06x36 2005-08-03 11:32 ID:RbcXVHrq [Del]

That's what Quicktime says they are, so that's what I'm stuck with. Quicktime also seems to think 32, 64 and 128 colour GIFs are 256 colours. I've been considering making my own code to extract more correct image properties.

For practical purposes, though, JPEGs are 24 bit RGB. Unless they're 8 bit grayscale.

26 Name: !WAHa.06x36 2005-08-03 19:35 ID:RbcXVHrq [Del]

http://wakaba.c3.cx/releases/mac/Xee_alpha_3.zip

Just getting this out before going to sleep. Even more work on the image loading code - background loading can now be interrupted properly when skipping through images, so things should be a bit more responsive.

Also supports deleting files now - press delete or backspace to move files to the trashcan. Moving and copying files will come later.

27 Name: dmpk2k!hinhT6kz2E 2005-08-03 21:12 ID:Heaven [Del]

The thought just occurred to me that since Xee uses QuickTime, it'll never be ported to other unixen. Nooooo!

Ever consider using FFmpeg (although that is one hell of a dependency...)?

28 Name: !WAHa.06x36 2005-08-04 05:05 ID:RbcXVHrq [Del]

I don't really use Quicktime to load anything but bitmap images, so something like ImageMagick would be a better fit. However, I am not using it right now because it would mean the difference between a 60kb executable and a 12 megabyte one. It is, I think, well-designed enough that porting it to use a different image loading library should be fairly easy.

The idea of porting it to OpenStep has occured to me more than once, but I don't know how much functionality that has.

29 Name: !WAHa.06x36 2005-08-04 05:38 ID:rKfAYXZx [Del]

...probably not enough. I'm using some of the wonderful recent Apple functionality like Cocoa bindings (tying interface elements directly to preference values, without glue code - so lovely). Well, you could add the glue code, but I dunno if it's worth it anymore then.

And does OpenStep handle NIB files? I have no idea.

30 Name: !WAHa.06x36 2005-08-04 05:39 ID:rKfAYXZx [Del]

...and I guess I should be saying "GNUStep" and not "OpenStep":

31 Name: test 2005-08-04 07:31 ID:Heaven [Del]

The OSX APIs are completely beyond my realm of experience, so I have no idea. However, this fellow seems to have pulled it off: http://lynkeos.sourceforge.net/

This is particularly relevant with regard to Cocoa<->OPENSTEP<->GNUstep conversions: http://mediawiki.gnustep.org/index.php/Writing_portable_code

32 Name: test 2005-08-04 07:33 ID:Heaven [Del]

And, ah, do something about the cookie code already, will ya? I'm getting testy about this.

Thank-you, thank-you, I'll be here all night.

33 Name: Anonymous 2005-08-04 07:43 ID:Heaven [Del]

> press delete or backspace to move files to the trashcan

Some image viewers use backspace to browse backwards in a directory. (i.e. the opposite of pressing space)

34 Name: !WAHa.06x36 2005-08-04 08:31 ID:rKfAYXZx [Del]

Ah, yes. But Mac uses backspace for deletion instead of delete, for some unfathomable reason. I'd just as well use only delete, but the Mac people might disagree with me there. Well, at least there's a protective confirmation dialog before deleting.

35 Name: Albright!LC/IWhc3yc 2005-08-04 08:42 ID:9ZxqTBng [Del]

The Mac doesn't have a backspace key. It has a Delete key in the place where the Backspace key is on Wintel keyboards. It has the same functionality on both systems. The key that Wintel boards call the "Delete" key is called the "Forward Delete" key on the Mac. Again, same functionality. Just understand that it rubs Mac users the wrong way to say that the Mac is "wrong" because it has a "delete" key instead of a "backspace" key or some shit.

Anyway, I would suggest using Command-Delete to move a file to the trash. It's the same command as the Finder, and the chording will reduce accidental trashings. Either way, a confirmation dialog shouldn't be necessary when it's just moving files to the trash (as opposed to immediately deleting).

36 Name: !WAHa.06x36 2005-08-04 09:11 ID:rKfAYXZx [Del]

Well, the Mac is certainly in a minority with the "Delete" and "Forward delete" thing. Every other platform I've used has "Backspace" and "Delete", and that's definitely not just limited to Wintel machines.

Also, I really dislike chording the delete key. Chords are for making keys do something other than they usually do, and the delete key should delete without having to sprain any fingers.

37 Name: !WAHa.06x36 2005-08-04 14:22 ID:RbcXVHrq [Del]

...maybe I'll do both: Pressing option-delete will delete the picture immediately, pressing delete will ask.

38 Name: !WAHa.06x36 2005-08-04 19:16 ID:RbcXVHrq [Del]

http://wakaba.c3.cx/releases/mac/Xee_alpha_4.zip

Another done-for-the-night release. This one has more fixes for bugs in the loading and threading code (goddamn but I hate multi-threading), some improvements to the deletion (>>37, and also it doesn't say "...and so on" any longer), fixed file ordering, and support for opening directories. Also, you can use space to skip to the next image now.

39 Name: Albright!LC/IWhc3yc 2005-08-04 22:46 ID:9ZxqTBng [Del]

Okay, I gave the program another try. Opening directories doesn't seem to be working in the Open dialog box. Dragging a directory to the Dock's icon worked, though.

Neither is a dialog box appearing when I press (the Mac's) Delete. The program doesn't do anything... Command-Delete works though. Space works.

Also, I forgot to mention in my last post... Be careful implementing any function to the Mac's Forward Delete key. Laptops don't have it.

Still a big fan of this program's speed. Keep it up!

40 Name: Albright!LC/IWhc3yc 2005-08-05 06:21 ID:9ZxqTBng [Del]

Okay, I just used Xee to browse through some pictures I took with my digicam today and delete the ones that didn't turn out well, but it brought to light what would be another nice feature... image rotation, for viewing the "vertical" pics I took. It doesn't have to "save" the rotation; just remember it while I have that directory open. Can do?

41 Name: !WAHa.06x36 2005-08-05 06:53 ID:RbcXVHrq [Del]

> Opening directories doesn't seem to be working in the Open dialog box.

Is this even possible to do? I have no idea.

> Neither is a dialog box appearing when I press (the Mac's) Delete.

Weird. I programmed it to respond to both backspace and delete on this standard USB keyboard I'm using...

> image rotation

That's planned. I'm meaning to add lossless JPEG rotation for just that purpose, so you can safely rotate an image without it getting recompressed.

42 Name: Albright!LC/IWhc3yc 2005-08-05 08:03 ID:9ZxqTBng [Del]

>Is this even possible to do? I have no idea.

Yes. Fire up Bits on Wheels or the official BitTorrent client (if you've got either) and try to make a torrent from a directory of files. The dialog box will let you select a directory. Also, if your Mac came with GraphicConverter (Minis and iMacs might not have it), try its File: Browse Folder... dialog box.

43 Name: !WAHa.06x36 2005-08-05 10:11 ID:RbcXVHrq [Del]

Also: If someone (Hello, MrVacBob!) could tell me why when I try to do an "open -a Xee file.jpg", the Xee icons appears briefly (even if it's already running) and then disappears again, I would be most grateful.

Does it work for anyone else?

44 Name: !WAHa.06x36 2005-08-05 15:13 ID:Heaven [Del]

http://wakaba.c3.cx/releases/mac/Xee_alpha_5.zip

This is the Albright Release. I fixed the bug mentioned about with deletion not working right, and I added lossless JPEG transforms using exiftran. This means the program nearly quadrupled in size, but oh well.

The JPEG menu has options for transforming JPEG files in various ways. The images need to be a multiple of 8 pixels (Or was that 16? I forget.) wide and high for this to work well, but it should be lossless in either case. If your camera writes EXIF orientation tags to its images, you can just press Command-A to automatically rotate the image according to how the camera thinks it should be oriented.

45 Name: !WAHa.06x36 2005-08-05 15:19 ID:Heaven [Del]

Oh, and it's also possible to open directories in the open dialog now.

46 Name: !WAHa.06x36 2005-08-05 16:09 ID:RbcXVHrq [Del]

Also, a request: Xee is in dire need of icons. It needs a program icon, and icons for the different file types it supports (it would be nice if these were subtly colour-coded, too). Personally, I am completely lost when it comes to Mac icon design, and I haven't been able to find anyone to rope into doing this for me yet.

Any takers?

47 Name: Albright!LC/IWhc3yc 2005-08-05 22:38 ID:9ZxqTBng [Del]

Here's what I get when I try to open images from the command line...

Twelve:~/Desktop/103CANON Albright$ open -a Xee IMG_0367.JPG 
2005-08-06 13:23:42.821 open[1410] Couldn't open file: /Users/Albright/Desktop/103CANON/IMG_0367.JPG

Delete key works, rotation works, opening directories work. Auto rotation didn't work, but I don't think my camera writes orientation EXIF data. Xee approaches perfection a little more every day. Thanks!

>and icons for the different file types it supports (it would be nice if these were subtly colour-coded, too)

It's cool if you want to do this, but please make it possible to view pix in Xee without the file becoming "Xee's file." Applications that claim files as their own without my permission just because I open (but do not save) files with them piss me off to no end; Graphic Converter and Windows Media Player do this, and it's very annoying.

48 Name: !WAHa.06x36 2005-08-06 04:57 ID:RbcXVHrq [Del]

...and now that I test it again, open -a Xee works perfectly. What the hell?

Also, yes, Xee won't claim files as its own without being told to. I might add some option for it to claim the filetypes it supports, but that's about it.

49 Name: !WAHa.06x36 2005-08-06 15:10 ID:RbcXVHrq [Del]

Since nobody else is reporting it, I'll instead rant about a new bug: If you install Xee, and do an "open Folder/", you won't get a Finder window, you'll get a Xee window.

Why, you ask? Because I declared that Xee can open folders by using the UTI public.folder. The finder declares a folder file type too, *but doesn't use the public.folder UTI, but instead an incorrect OSType of fold!*

This after Apple making a big point about how great UTIs are for identifying files. The Finder doesn't use UTIs at all! So if I claim to be able to open it, this breaks the open command!

Which all means that the next version of Xee won't let you drop folders on its icon, because I have to claim public.folder to do that. Which I can't.

Opening folders with the open command, or from the open dialog, will still work, though.

50 Name: !WAHa.06x36 2005-08-06 16:53 ID:RbcXVHrq [Del]

http://wakaba.c3.cx/releases/mac/Xee_alpha_6.zip

All right, the "bug" in >>49 is "fixed". I also added an "Open in Editor" option to throw images into Photoshop your favourite legally-obtained image manipulation program.

51 Name: !WAHa.06x36 2005-08-22 18:17 ID:RbcXVHrq [Del]

All right, after an epic struggle against Apple's APIs, documentation and laziness (mine, not theirs), I have finally managed to finish another version of Xee:

http://wakaba.c3.cx/releases/mac/Xee_alpha_7.zip

The main new thing is the ability to move and copy files from inside Xee, with an interface I tried to optimize for quickly categorizing a lot of images, such as for imageboard downloads. I am not sure how successful this was, but I would be happy for any kind of feedback I can get on this.

There might be some other minor changes too, it's been a while and I've forgotten. This was originally meant to be beta 1, since I've now almost implemented all the basic functionality I wanted, and I was meaning to only polish the interface and fix bugs from now on, but it's becoming increasingly clear to me that I don't really want to use QuickTime for loading images, so I'd really like to find a good image loading library to replace it with. I wonder how small I can get ImageMagick if I don't use any of the image processing functions.

52 Name: Albright!LC/IWhc3yc 2005-08-22 20:12 ID:9ZxqTBng [Del]

, and . are broken. So is the Delete key (but not Command-Delete).

Using the scroll wheel in the "Move file to..." panel still changes the picture instead of scrolling through the list (when the window is small enough that it becomes a scrollable list. Also, the "Choose a directory..." isn't logical interface design in my opinion. Maybe you could add a button with a folder and a plus sign instead... but it shouldn't be in the list.

53 Name: dmpk2k!hinhT6kz2E 2005-08-22 22:03 ID:ZrDyryy1 [Del]

> I don't really want to use QuickTime for loading images

Hooray!

54 Name: !WAHa.06x36 2005-08-23 04:30 ID:RbcXVHrq [Del]

> , and . are broken. So is the Delete key (but not Command-Delete).

This is probably when the list is selected. Since menus can't have printable characters as shortcuts (even if you can set them up like that), I have to read those keys manually, and currently the main view does that, so if it's unselected, it won't work. I'll need to work around this one way or the other.

> Using the scroll wheel in the "Move file to..." panel still changes the picture instead of scrolling through the list

A side effect of the fact that I had to do some ugly hacking to make the scroll wheel work when the mouse pointer is outside the window. This is counter-intuitive, but on the other hand it's useful when going through files and moving them. I am unsure of what to do about it.

> Also, the "Choose a directory..." isn't logical interface design in my opinion.

Granted. This time, though, it's to make it easier to run the program from the keyboard. How about putting some sort of spacer between it and the rest of the list? No matter how I think about it, just putting in a button seems a bit clumsy too, except if it was at the bottom of the list, but there it would be sort of hard to see...

55 Name: Albright!LC/IWhc3yc 2005-08-25 10:02 ID:9ZxqTBng [Del]

>This time, though, it's to make it easier to run the program from the keyboard.

I don't see why a task which will be as uncommon as adding a folder to that list must be keyboard-accessable. If you're against a button, though, then how about maybe a line of text telling us to drag-and-drop folders from the Finder to add them to the list (just tried it and saw it works... cool).

How does moving files work using the keyboard, anyway? Only way I've found to do it is double-clicking on the folder (which itself is also a bit illogical, as it's not opening anything as a double-click usually does... perhaps a single-click (as a "choice") would work better).

(Sorry for the slow reply... I just recently tried the program again. It's not somethin I need to use every day, but when I do, it's quite handy.)

56 Name: Albright!LC/IWhc3yc 2005-08-25 10:09 ID:9ZxqTBng [Del]

By the way, and maybe we're getting into feature bloat here... but could you maybe add a feature to rename images from within the application? That way I could easily label my digicam pictures "Curling on Canadian TV.jpeg" instead of "IMG_0258.JPG." Ditto with images from Wakachan.

57 Name: !WAHa.06x36 2005-08-25 10:27 ID:RbcXVHrq [Del]

> How does moving files work using the keyboard, anyway?

Err, you're SUPPOSED to be able to move files by using the arrow keys to select the destination and then pressing return, but I seem to have forgotten to actually implement this. The idea is that you can just use arrow up, arrow down, page up, page down, and return to flip through images and move them around.

> but could you maybe add a feature to rename images from within the application?

Yeah, I've been thinking the same thing.

58 Name: !WAHa.06x36 2005-09-01 15:02 ID:RbcXVHrq [Del]

A new version, now with source code for those who are into that kind of thing:

http://wakaba.c3.cx/releases/mac/Xee_alpha_8.zip
http://wakaba.c3.cx/releases/mac/Xee_alpha_8_src.zip

Mainly a lot of re-working of the internals. The loading code now uses significantly less memory, especially when loading and showing JPEGs. The GIF anim code has also been completely re-written and no longer uses Quicktime. This means a dramatic decrease in memory usage, and better playing of animated GIFs (it appears Quicktime doesn't implement all the correct deviations from the spec that are needed to correctly show all files out there). There is now also proper support for transparent images of various kinds.

No fixes for the various keyboard issues mentioned earlier, though. That's still to come. Now would also be a good point to remind me about other bugs and features I've forgotten about!

59 Name: !WAHa.06x36 2005-09-02 19:46 ID:RbcXVHrq [Del]

A quick bugfix release:

http://wakaba.c3.cx/releases/mac/Xee_alpha_9.zip
http://wakaba.c3.cx/releases/mac/Xee_alpha_9_src.zip

Fixes some bugs introduced in the previous version (Automatic Zoom being broken, files getting added to the destination list instead of directories), and also fixes numerous keyboard problems, and the scroll wheel issue mentioned earlier.

60 Name: Mr VacBob!JqK7T7zan. 2005-09-02 23:12 ID:78XV4gVn [Del]

The keyboard and Automatic Zoom work, but I notice that one comic shows every new page scrolled to the bottom.

61 Name: !WAHa.06x36 2005-09-03 05:11 ID:RbcXVHrq [Del]

>>60

Oops, forgot that I turned the coordinate system upside-down. Will be fixed.

62 Name: !WAHa.06x36 2005-09-05 11:05 ID:RbcXVHrq [Del]

Release release &c &c

http://wakaba.c3.cx/releases/mac/Xee_alpha_10.zip
http://wakaba.c3.cx/releases/mac/Xee_alpha_10_src.zip

New: Now tries to use both Quicktime and NSImage for loading, meaning more image formats are supported. Broken JPEGs are now also handled by NSImage, which is better at reading them than Quicktime. It is also now possible to rename files from inside Xee, and the destination list has a pop-up menu with a couple of useful options.

63 Name: Sakurina!hb3hogbZLc 2005-09-17 20:04 ID:Heaven [Del]

AGED.

I would love to help with >>46, but sadly I'm not THAT good at OSX icon design. I'll try and see what I can do sometime this week. Document icons are quite simple to create to fit with HIG (Human Interface Guidelines) once you have an application icon. :P

My idea was a globe of light. It could be any color for when it's in the dock or as a normal icon. In the document icons, the globe could be a different color for each filetype.

Also, Xee is my primary image viewer on my computer. I haven't touched Preview for a month now. That must mean something. :P

64 Name: !WAHa.06x36 2005-09-18 05:01 ID:RbcXVHrq [Del]

Apple is already using the coloured-orb image for their various Core APIs, though. Something based on an eye is one idea that comes to mind, though...

65 Name: Sakurina!hb3hogbZLc 2005-09-18 15:58 ID:Heaven [Del]

Ah yes, I forgot about the whole Core APIs ordeal. I'll see what I can do.

66 Name: !WAHa.06x36 2005-09-20 18:06 ID:RbcXVHrq [Del]

Finally I have implemented all the functionality I had planned for the version version (and a lot more besides):

http://wakaba.c3.cx/releases/mac/Xee_beta_1.zip
http://wakaba.c3.cx/releases/mac/Xee_beta_1_src.zip

I've been struggling with this one for so long now I've forgotten what I've implemented. It should include:

  • Image saving
  • Copy to clipboard and Show clipboard
  • Find-as-you-type and colors in the destination list
  • Stuff I forgot
  • Bugfixes and new bugs

From now on, I'm trying to focus on bugfixing and polishing for a real 1.0 version. I still need to clean up the status bar a lot, and I need icons, and I was thinking I'd like a Japanese version. Now, what I'd like is for people to actually go through and test the various features that are in there and tell me if they break, and if I am missing something very basic. I'm putting of major new functionality until after 1.0, though.

67 Name: !WAHa.06x36 2005-09-26 16:11 ID:RbcXVHrq [Del]

And here's another beta version. It features only "bugfixes". Truth to be told, I got kind of carried away and did a lot more than fix bugs. I added custom loading code for PNGs (QuickTime's PNG loader has some annoying bugs), PCXs (I guess I could claim it's a bug that it couldn't load all my old PCX files...) and good old Amiga IFF-ILBM files (I have no excuse for that one, I just got carried away).

http://wakaba.c3.cx/releases/mac/Xee_beta_2.zip
http://wakaba.c3.cx/releases/mac/Xee_beta_2_src.zip

For any old Amiga geeks who happen to be hanging around, I implemented a very fully-featured IFF-ILBM reader. It supports all the wacky screen modes (EHB, HAM, HAM8), non-square pixels (640x200 and 320x400 modes and such), and even colour cycling (press 3 to activate it!). I hacked at it until it could load and the Deluxe Paint example images I was able to find (from DPaints 1, 4 and 4.5), except those that were broken out of the box (two of them were). You can find those images at http://wakaba.c3.cx/stuff/dpaint.zip if you want to marvel at the moving colours!

68 Name: !WAHa.06x36 2005-09-26 16:13 ID:RbcXVHrq [Del]

Also, thanks to the #abime.net people for helping me track down those images!

69 Name: dmpk2k!hinhT6kz2E 2005-09-26 18:54 ID:Heaven [Del]

> even colour cycling

hahaha christ

70 Name: Anonymous 2005-10-02 09:04 ID:+AEVP10s [Del]

Just found this... excellent work, goodbye Preview.

71 Name: Anonymous 2005-10-02 11:51 ID:+AEVP10s [Del]

A way to recursively open every image in a folder would be nice. An option in preferences to turn this on and off and with a recursive depth setting would be wonderful.

72 Name: !WAHa.06x36 2005-10-02 13:00 ID:Heaven [Del]

I've been considering that one, but it has some problems. For one, it shouldn't lock up the entire program if you happen to open the root directory. The scanning depth helps with that, but doesn't quite eliminate the problem.

Well, either way, it'll wait until after I get 1.0 done.

73 Name: Anonymous 2005-10-05 10:08 ID:/64hP5Ov [Del]

So... when are we getting sneak peeks of them icons? ;)

74 Name: !WAHa.06x36 2005-10-06 18:55 ID:RbcXVHrq (Image: 200x200 png, 29 kb) [Del]

src/1128646513659.png: 200x200, 29 kb

BEHOLD: The Icon!

Thanks to the talented and twisted James "Kibo" Perry (http://www.kibo.com/), there is now an icon for Xee! This isn't quite the final version, I think, but it's close.

It's SQL quality!

I was meaning to make the next release the final release candidate, but since it's taking some time to get everything into shape, and I'm going away for a couple of days, I figured I might as well release a half-done version to get some comments on how it looks so far. The main new thing is the status bar. The icons it uses currently don't quite fit, but consider them placeholders until I work out something better. Now, do your duty and complain!

http://wakaba.c3.cx/releases/mac/Xee_beta_3.zip
http://wakaba.c3.cx/releases/mac/Xee_beta_3_src.zip

75 Name: Anonymous 2005-10-06 19:01 ID:Heaven [Del]

>>74
Don't you mean James "Kibo" Parry?

76 Name: !WAHa.06x36 2005-10-06 19:02 ID:Heaven [Del]

Also, please kill me for getting Kibo's last name wrong. orz

77 Name: Anonymous 2005-10-07 05:20 ID:Px4fbkR1 [Del]

What makes me not use Xee is that it hasn't got support for viewing comics directly from zip files. Footagehead does this. Footagehead can even view zip files within zip files. Is that too hard to implent if using zlib?

78 Name: Cosmo Gunny 2005-10-07 11:08 ID:MNxIRDsO [Del]

alt.religion.kibology????

79 Name: !WAHa.06x36 2005-10-07 12:25 ID:nAaIFitA [Del]

>>77

It's non-trivial to implement. FFview has a library to make it easier, but I haven't looked into it. The biggest problem is getting the external image loading libraries to load the files properly.

Personally, I've long since gotten into the habit of just unpacking all archives. Reading files out of a zip will always be slower anyway, and more cumbersome if you want to use the files for something other than just reading.

>>78

He's Fred, Jim.

80 Name: Anonymous 2005-10-07 16:05 ID:Heaven [Del]

>>79

You personally know kibo? Neat. He's the old-school internet famous.

81 Name: !WAHa.06x36 2005-10-07 17:18 ID:Heaven [Del]

Well, I know him well enough to get him to draw me an icon, at least. I used to be a somewhat active poster on ARK, which sooner or later leaves you with a Kibo number of 1.

82 Name: Anonymous 2005-10-07 21:02 ID:e7LD/Lcg [Del]

Anyone who read Waha's entry on Wikipedia knows that he is a famous Kibologist like Mr VacBob.

83 Name: Anonymous 2005-10-07 22:27 ID:rj8CR2BA [Del]

A post from an alternate universe!

84 Name: !WAHa.06x36 2005-10-08 06:02 ID:Heaven [Del]

>>82

We're all on big cabal (TINC).

85 Name: Anonymous 2005-10-08 12:50 ID:Heaven [Del]

There is a cabal we just hide ourselťœĬģĄÕP¿_¶ÂñºlNO CARRIER

86 Name: Anonymous 2005-10-09 01:56 ID:Heaven [Del]

What's this cabal thing? Is it like "nurupo"?

87 Name: Mr VacBob!JqK7T7zan. 2005-10-09 10:41 ID:Heaven [Del]

I'm getting this crash frequently:

Date/Time: 2005-10-09 12:24:11.016 -0400
OS Version: 10.4.2 (Build 8C46)
Report Version: 3

Command: Xee
Path: /Users/astrange/Xee.app/Contents/MacOS/Xee
Parent: WindowServer [77]

Version: ??? (1.0 beta 3)

PID: 11442
Thread: 0

Exception: EXC_BAD_ACCESS (0x0001)
Codes: KERN_INVALID_ADDRESS (0x0001) at 0x058a2000

Thread 0 Crashed:
0 <<00000000>> 0xffff88a4 __memcpy + 260 (cpu_capabilities.h:189)
1 com.apple.ATIRage128GLDriver 0x03771c2c gldGetTextureLevel + 1776
2 com.apple.ATIRage128GLDriver 0x03711384 gldDestroyPipelineProgram + 2172
3 com.apple.ATIRage128GLDriver 0x0376abc8 gldUpdateDispatch + 104
4 GLEngine 0x035f9be8 glBegin_Exec + 408
5 cx.c3.xee 0x0000c33c -[XeeBitmapTile drawWithTarget:bounds:] + 356 (crt.c:355)
6 cx.c3.xee 0x0000bad8 -[XeeBitmapImage draw:size:bounds:] + 532 (crt.c:355)
7 cx.c3.xee 0x00003e18 -[XeeView drawRect:] + 1572 (crt.c:355)
8 com.apple.AppKit 0x925069b0 -[NSView _drawRect:clip:] + 2128
9 com.apple.AppKit 0x92505f80 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 404
10 com.apple.AppKit 0x92508c98 _recursiveDisplayInRect2 + 84
11 com.apple.CoreFoundation 0x9f005b84 CFArrayApplyFunction + 416
12 com.apple.AppKit 0x92506094 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
13 com.apple.AppKit 0x92508c98 _recursiveDisplayInRect2 + 84
14 com.apple.CoreFoundation 0x9f005b84 CFArrayApplyFunction + 416
15 com.apple.AppKit 0x92506094 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
16 com.apple.AppKit 0x92505558 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 196
17 com.apple.AppKit 0x9252617c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 192
18 com.apple.AppKit 0x924ff1cc -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384
19 com.apple.AppKit 0x924f44d0 -[NSView displayIfNeeded] + 248
20 com.apple.AppKit 0x925b5934 -[NSThemeFrame handleSetFrameCommonRedisplay] + 256
21 com.apple.AppKit 0x925020f8 -[NSWindow _setFrameCommon:display:stashSize:] + 708
22 com.apple.AppKit 0x92501e20 -[NSWindow setFrame:display:] + 40
23 cx.c3.xee 0x0000540c -[XeeController setViewSize:] + 980 (crt.c:355)
24 cx.c3.xee 0x00004f88 -[XeeController setImage:] + 692 (crt.c:355)
25 cx.c3.xee 0x00012f80 -[XeeDirectoryController displayImage:next:] + 212 (crt.c:355)
26 com.apple.AppKit 0x92561d2c -[NSApplication sendAction:to:from:] + 108
27 cx.c3.xee 0x000158ac -[XeeDirectoryWindow keyDown:] + 232 (crt.c:355)
28 com.apple.AppKit 0x9258eff8 forwardMethod + 92
29 com.apple.AppKit 0x9258eff8 forwardMethod + 92
30 cx.c3.xee 0x00004008 -[XeeView keyDown:] + 204 (crt.c:355)
31 com.apple.AppKit 0x9251d0d8 -[NSWindow sendEvent:] + 6424
32 com.apple.AppKit 0x924c5bfc -[NSApplication sendEvent:] + 4172
33 cx.c3.xee 0x00006e78 -[XeeApplication sendEvent:] + 424 (crt.c:355)
34 com.apple.AppKit 0x924bd090 -[NSApplication run] + 508
35 com.apple.AppKit 0x925ad8bc NSApplicationMain + 452
36 cx.c3.xee 0x00002d84 _start + 344 (crt.c:272)
37 cx.c3.xee 0x00002c28 start + 60

88 Name: This is not a member of the cabal 2005-10-09 14:01 ID:Heaven [Del]

>>86

There is no cabal. Please move on, and remember, we never spoke. You never saw me, and I never saw you. Please, the non-existance of a non-group should not intrest you, even if they are not not intrested in you. This newsgroup does not exist, this newssever has no address, and even if it did, it would not exist to point to.

Have a nice day.

89 Name: Anonymous 2005-10-09 15:59 ID:rIfZ9CF1 [Del]

>>88
kinda like luelinks am i rite

90 Name: !WAHa.06x36 2005-10-09 16:02 ID:Heaven [Del]

>>87

A crash inside the GL driver? Aaaugh!

91 Name: anon 2005-10-09 22:01 ID:Heaven [Del]

>>89 Only this cabal actually doesn't exist.

92 Name: Mr VacBob!JqK7T7zan. 2005-10-10 08:33 ID:7tQSvUDi [Del]

>>90

Yeah. I haven't tried RGB mode yet, but I'll give you the images when I get home so you can fiddle with tiling or something.

93 Name: !WAHa.06x36 2005-10-10 16:46 ID:Heaven [Del]

If you were holding your breath while waiting to find out how this would turn out, rest assured that the crash was fixed. The bug is apparently in Apple's Rage128 driver, but a quick workaround seems to have calmed it down. Xee will use a bit more memory on Rage128 thanks to it, though.

94 Name: Anonymous 2005-10-21 18:13 ID:Heaven [Del]

>>86
GA!

95 Name: Anonymous : 2005-11-13 01:38 ID:FWDZc9LY [Del]

Thank you for this, it is wonderful.
I wish i could remap the forward and next buttons though.

96 Name: !WAHa.06x36 : 2005-11-14 08:54 ID:OmtsthcK [Del]

>>95

I don't think I feel like spending all the effort that would be required for that, but if you really want to do that, install the developer tools (so that you have Interface Builder.app), and then do a "Show Package Contents" on Xee, go to Contents/English.lproj/, and click on MainMenu.nib. That should launch Interface Builder, and you can edit all the menus to your heart's content.

97 Name: !WAHa.06x36 : 2005-11-15 15:09 ID:OmtsthcK [Del]

Well, after some waiting, I've now decided that Xee is good enough for a real 1.0 release.

http://wakaba.c3.cx/releases/mac/Xee1.0.zip

1.0 features some more bugfixes, a full set of icons by James "Kibo" Parry, and a Japanese translation by Hinata. Many thanks to them, and also to MrVacBob for being an invaluable help for me while trying to get a grip on Objective-C and Mac OS X programming.

There is now a separate thread for general support questions for Xee, which is also linked from inside the program itself:

http://wakaba.c3.cx/sup/kareha.pl/1132091963/

Source code is available, for those who want to hack or help out:

http://wakaba.c3.cx/releases/mac/Xee1.0_src.zip

98 Name: !WAHa.06x36 : 2005-11-17 10:14 ID:Heaven [Del]

99 Name: Anonymous : 2005-11-17 13:28 ID:op5gLDkq [Del]

Circlesoft?

100 Name: !WAHa.06x36 : 2005-11-17 13:46 ID:Heaven [Del]

Old name. Apple insists that you are part of a company if you make software.

101 Name: Anonymous : 2005-11-18 09:48 ID:9Cl+HzIb [Del]

Tell them to change it to "WakabaSoft"

102 Name: Anonymous : 2005-11-18 09:53 ID:c4RNYNnZ [Del]

I like it. Definitely better than all the available junk for OS X.

A few things from ACDSEE that I'd love to see in a future version:

  • Full-screen (and the possibility to affect the third mouse button as a toggle, or at least F or ⌘F)
  • To have the behavior of the * and / keys kept between images (in parctice, that means for me being able to toggle fit-to-screen and actual size with one key)

What are your plans for this app? Do you consider making a browser mode, or some picture categorization/metadata fun things?

103 Name: !WAHa.06x36 : 2005-11-18 12:30 ID:OmtsthcK [Del]

Full-screen is definitely on the list for future features. It would have been in 1.0, but I couldn't find a way to do it without a lot of work, so I got lazy.

You can change the default zoom behaviour with the Zoom -> Automatic Zoom menu, but there's no keyboard shortcut. I'll consider adding that, too.

I see no need for a browser mode when the OS already does thumbnailing for me, and I don't use metadata to categorize my images, I use a directory structure, for which the Move Image/Copy Image features are enough... I figure that if you want that, you're better off using a dedicated program.

104 Name: dmpk2k!hinhT6kz2E : 2005-11-18 14:21 ID:Heaven [Del]

>>98
That's the funniest thing I've seen all day.

105 Name: 102 : 2005-11-19 02:42 ID:c4RNYNnZ [Del]

>>103
I see, thanks for the reply.

Do you consider allowing smart folders as folders (instead of going into the original folder)?
I have no idea how things work beneath the surface and wether it's a pain or not to do it, but I thought that if it were supported, I could make for myself a simple solution using some applescript to toggle spotlight tags (no actual experience with these things, but I believe it should be possible to get the file location using some GUI scripting trick, then toggles can be affected to keys and displayed using some unobtrusive thing like growl)

106 Name: !WAHa.06x36 : 2005-11-19 05:49 ID:Heaven [Del]

Hmm, Smart Folders... Certainly a good idea, but I am not entirely sure if it is possible. Another thing that comes to mind is that it would be nice if Xee would use the same sort order as the window it was launched from. But I am not sure if that is possible, either.

It is worth thinking about, though.

107 Name: Anonymous : 2005-11-21 01:59 ID:464QHz6H [Del]

screenshot would be nice

108 Name: Anonymous : 2005-11-21 06:40 ID:c4RNYNnZ [Del]

A few bug reports/feature requests/stupid nitpicking:

  • I can't drop a folder on the dock icon
  • After going through a lot of images, the window tends to re-center itself. I'd expect it, when I move the window in a corner, to always be as close to that corner as possible
  • I really like the way "Copy / Move" are done, but it could use some interface improvement

    • It would be better if it had +/- buttons for adding and removing folders, like you can see in the Accounts prefpane for example, especially since on Mac it's generally not a good practice to make something accessible only from the contextual menu.
    • For some reason, it feels wrong that adding a folder to the list using "Choose directory" performs the moving/copying AND adds the folder to the list
    • The (X) round button looks like a "Remove folder" button, not a "close drawer".
    • I love being able to perform the copying/moving operation by clicking on the destination then pressing Enter, but you should give feedback, like a sound.
  • When deleting a file using delete then enter, the trash sound is played before the confirmation sheet disappears on my Mac Mini, and that feels a bit wrong for some reason
  • The status bar should be removable
  • The official -sanctioned word for directory is folder ;)
>> 107

Look at the link in >>98 for a screenshot.

109 Name: !WAHa.06x36 : 2005-11-21 06:51 ID:Heaven [Del]

> I can't drop a folder on the dock icon

This is due to an Apple bug. If I set Xee to accept opening folders, any program that tries to open a folder will open Xee instead, because Finder is not set up to accept folder opens.

> After going through a lot of images, the window tends to re-center itself. I'd expect it, when I move the window in a corner, to always be as close to that corner as possible.

It's a bit non-trivial to do, but I'll look into it.

> It would be better if it had +/- buttons for adding and removing folders, like you can see in the Accounts prefpane for example, especially since on Mac it's generally not a good practice to make something accessible only from the contextual menu.

You can remove folders by dragging them off. I'm copying the Finder-style interface here, not the listview-style interface. The only other features that are only accessible through the popup are really just gimmicks.

> For some reason, it feels wrong that adding a folder to the list using "Choose directory" performs the moving/copying AND adds the folder to the list

If you just want to add folders, drag them to the list.

> I love being able to perform the copying/moving operation by clicking on the destination then pressing Enter, but you should give feedback, like a sound.

It's supposed to make a sound. However, there's no standardized way that I've been able to find to get the Finder sound effects, so I hardcoded in the paths to them. These may be different on older versions. What version of OS X are you running?

> When deleting a file using delete then enter, the trash sound is played before the confirmation sheet disappears on my Mac Mini, and that feels a bit wrong for some reason

I know, but I haven't thought up a good fix for it so I left it as it is. Might get fixed if I can think of a way.

> The status bar should be removable

I'll consider that.

> The official -sanctioned word for directory is folder ;)

And that.

110 Post deleted by user.

111 Name: Anonymous : 2005-11-21 07:37 ID:c4RNYNnZ [Del]

> What version of OS X are you running?

10.4.3, but it works now. Weird since I'm 99% sure it didn't make a sound when I first tried it (and I had the sound on of course since I noticed the trash one).

112 Name: Anonymous : 2005-11-22 16:19 ID:s3r98Krl [Del]

Nice work!
I'm sticking with FFView for now (only because I spent like an hour fixing the default settings to make it usable) but I'm keeping an eye on Xee.

113 Name: Aninymous : 2005-11-22 20:49 ID:dFblG9UO [Del]

Would it be possible to allow user defined actions for keys 0-9, like, for example, implemented in "qiv" or "feh"? I know it is not very Mac-like but it is a powerful feature for unix-savy users.

114 Name: Anonymous : 2005-11-22 20:52 ID:dFblG9UO [Del]

Would it be possible to implement user defined actions for keys 0-9, like, for example, implemented in "qiv" or "feh"? I know it is not very Mac-like but it is a powerful feature for unix-savy users.

115 Name: Guntis Bukalders : 2005-11-22 23:51 ID:32a7wcfN [Del]

Very good start! This is almost what I used to have as image preview in Windows :) However, it would be good to have several improvements:
1) Full-screen preview (black or user-defined background);
2) Command+- to zoom out, Command+= to zoom in, Command+0 to 100%, Command+Option+0 fit to screen. These are shortcuts used in professional (Adobe and many other) programs. It would be good to keep them...
3) Why complicate browsing by pressing Page Up nad Page down, when I could use just arrow buttons left or right? Command+left arrow goes 10 images back, while Command+right jumps 10 images forward. Home button jumps to he first image, End to the last image.
4) Add Xee to the contextual menus in the Finder. ("View with Xee" or just simply "Browse images").
5) Add optional toolbar for previous/next image, Zoom in/out/Fit to screen/100%, Rotate left/right, Flip vertical/horizontal, Delete.
What else? Probably that's all we'd need for the good'n'fast image browser... :-)
Add these few extra features and it'll be THE BEST image viewer for the Mac!!!

116 Name: Ingus : 2005-11-23 01:40 ID:rpAJCvW+ [Del]

Agree with Guntis.... and also resize and crop would be appreciated for fast browsing/processing images... Thank YOU in advance ! :)

117 Name: Anonymous : 2005-11-23 03:03 ID:c4RNYNnZ [Del]

> Would it be possible to allow user defined actions for keys 0-9, like, for example, implemented in "qiv" or "feh"? I know it is not very Mac-like but it is a powerful feature for unix-savy users.

A mac-like way of doing that would be to provide some Applescriptability, then maybe provinding facilities to bind scripts to those keys, or use the Script menu. (there are also third-party script launchers that will accept keyboard shortcuts)

> Command+- to zoom out, Command+= to zoom in, Command+0 to 100%, Command+Option+0 fit to screen. These are shortcuts used in professional (Adobe and many other) programs. It would be good to keep them...
  • and - already zoom in and out. It's not like zooming is a secondary function of this app, it's something you do all the time, so it makes sense to break the "rule" of affecting them to ⌘ shortcuts
> Why complicate browsing by pressing Page Up nad Page down, when I could use just arrow buttons left or right? Command+left arrow goes 10 images back, while Command+right jumps 10 images forward. Home button jumps to he first image, End to the last image.

Arrow buttons are already affected to navigation in the picture when it is larger than the window, but I'd like to have shortcuts to jump an arbitrary amount of images.

> Add Xee to the contextual menus in the Finder. ("View with Xee" or just simply "Browse images").

What's wrong with Open with ➝ Xee?

I like how the application right now does stuff like it always did in the good versions of ACDsee. It doesn't need to have a lot of features or to be as mac-like or standardized as possible, because that's just not the most efficient way of managing large picture collections fast.

118 Name: Anonymous : 2005-11-23 03:04 ID:c4RNYNnZ [Del]

Oops, I meant "+ and - already zoom in and out." It converted that to a bullet.

119 Name: !WAHa.06x36 : 2005-11-23 04:52 ID:Heaven [Del]

(Copied from macupdate.com)

  1. Fullscreen is planned, but not done yet.
  2. Those may be the normal shortcuts, but they also cause massive pain to your fingers to use. I might add them as an option, but I find it much easier to not have to use key chords for such basic actions.
  3. The arrow keys are used for scrolling when zoomed in. This will not be changed.
  4. You can already select "Open with... - Xee". Or set it as the default viewer.
  5. I might add a toolbar in a later version, but I haven't yet because find a toolbar a waster of space in an image viewer.

I really need to make it clearer that you can use "." and "," to browse on machines with no page up and page down keys, though. Also, skip-10 with shift-pageup or command-pageup or something might get implemented.

120 Name: Guntis Bukalders : 2005-11-23 05:33 ID:32a7wcfN [Del]

"2. Those may be the normal shortcuts, but they also cause massive pain to your fingers to use. I might add them as an option, but I find it much easier to not have to use key chords for such basic actions."
For image editing professionals Command+-/+ is in their blood already. It's automatic - just press it and it should zoom in/out...

"3. The arrow keys are used for scrolling when zoomed in. This will not be changed."
Scrolling with the arrow keys?! Why do we have mouse then? I think that currently you can click with the mouse on image and scroll. Or use scrolling button on the Mighty Mouse...
Ok, then there is an option for Command+left/right arrow keys... Or you can just add one extra tab in preferences for user shortcuts. Everyone will be happy with their own shortcuts...

"5. I might add a toolbar in a later version, but I haven't yet because find a toolbar a waster of space in an image viewer." Yes, you are absolutely right! I would fold toolbar immediately. But for the first-time users, children and grandmas this could be big improvement! :)

121 Name: Guntis Bukalders : 2005-11-23 05:40 ID:32a7wcfN [Del]

Another thing I'd like to see is ability to drop folder onto Xee icon to browse that folder. I created Xee's button in the Finder's toolbar (actually it doesn't look quite good there, can you think about something that resembles button? Or perhaps there is some other way to make it appear as another nice Finder button in the Finder's toolbar?), and I can drag-and-drop files onto it, but I cannot drop the whole folder. I tried JView, and I can drop folders on it's icon in Finder's toolbar.

122 Name: !WAHa.06x36 : 2005-11-23 05:53 ID:Heaven [Del]

> Scrolling with the arrow keys?! Why do we have mouse then? I think that currently you can click with the mouse on image and scroll. Or use scrolling button on the Mighty Mouse...

Macs are not known for having good keyboard controls, but I don't see that as a reason to stop me. Xee tries to be fully controllable from the keyboard, which is usually much faster and convenient for those who take the time to learn such things. Besides, I just like scrolling around on my images with the arrow keys.

I don't like programs with configurable keyboard shortcuts - that requires you to actually configure them. I prefer to add multiple different shortcuts, so people can use whichever they prefer. I need to add a full list of keyboard shortcuts somewhere, I guess.

> Another thing I'd like to see is ability to drop folder onto Xee icon to browse that folder.

Me too. However, when I tried to add this, I found out it triggered a Finder bug - the Finder does not declare the public.folder UTI, which means that any program that tries to open a folder will open it in Xee instead of in the Finder. Maybe they have fixed that in the latest updates, though, I don't know. JView probably does it by declaring itself to open any file, which doesn't seem a very elegant solution. I'll have to look at it closer.

123 Name: !WAHa.06x36 : 2005-11-23 11:52 ID:Heaven [Del]

Update: I found the hidden, undocumented feature to use if you want to open directories without replacing the Finder, so the next version will have that fixed, whenever it's ready.

124 Name: !WAHa.06x36 : 2005-12-06 14:29 ID:OmtsthcK [Del]

It's time for some brave beta testers to do their thing!

http://wakaba.c3.cx/releases/mac/Xee1.1beta1.zip

1.1 fixes a lot of bugs mentioned here and elsewhere, and some that nobody even noticed. It now works on 10.3, minus a couple of features. It also brings a lot of improvements to the interface, with a toolbar, and customizable keyboard shortcuts.

Well, that's the idea. Here are the known issues at the moment:

  • Customizable keyboard shortcuts aren't actually customizable. Trying to do so crashes Xee. I have no idea what's going on.
  • Fullscreen mode doesn't do anything. It might not be in 1.1 at all - turns out it's annoyingly hard to implement.
  • The Japanese translation is not up to date. I'll have to nag Hinata some more about that.

125 Name: Ingus : 2005-12-14 02:38 ID:rpAJCvW+ [Del]

on Tiger 10.4.3 the Xee 1.1 beta works just like advertised :) ... Thank YOU !
Please add crop and resize and you'll have my 30$ ;)

126 Name: Guntis : 2005-12-14 09:19 ID:32a7wcfN [Del]

Can you think about some other icon? When I drag and drop it in the Finder's toolbar, it doesn't look like part of the toolbar...
Fullscreen mode -- PLEASE don't drop it! This is VERY useful feature. I wish you could make something similar to QT7 fullscreen layout with the semitransparent toolbar palette floating on the screen...

127 Name: Guntis : 2005-12-15 04:55 ID:32a7wcfN [Del]

Version 1.1 is a big improvement over 1.0. It's becoming what was looking for in Apple Preview, but Preview failed...
One suggestion: Can you please change Zoom In shortcut from Command++ to Command+=? It's annoying to press Shift button every time, just to get +. We usually refer to it as + while actually it's =. Apple Preview and all Adobe graphics apps work this way.

128 Name: U (u) : 2005-12-15 20:16 ID:XYVx8248 [Del]

I really like the direction Xee is taking.

Some bugs (and a lot of annoying nitpicking):

  • Minimizing doesn't work correctly.
  • When hiding the statusbar, there sometimes are black bars to the viewed images.
  • Ok, for the weird one: I have on my desktop a lot of icons in one same spot (snap to grid, 96px. icons). When I browse images at a particular rythm in some conditions I have not found out, I can see that big icon dump and the background around it flashing through the image for about 1/10 sec while jumping to another image. No idea how to reproduce this though.

Regarding the interface:

  • I think that the 90º buttons look like 180º buttons, and the 180º button like a 360º or a "reload" button
  • Maybe I'm missing some issue about this one, but I think the auto-rotation should only be enabled when it would result in a rotation in the image.
  • Regarding the drawer, I think you should provide a button inside the drawer that would switch between "Copy" and "Move", it is easier to undersand and a lot less accident-prone to use than 2 different drawers that look exactly the same and share their contents.
  • In the The file "something.jpg" already exists floating window:

    • If the two files are the same, you should provide a little icon, it is easier than to check the info manually.
    • I think the focus should be on the "New name:" field instead of cancel, so that you can start directly typing a new name - Cancel is still available from the keyboard using Esc. And if an edition or a movement is detected in the "New mane" field, make the "Rename" button the default one instead of Replace. Rationale: that way it still is as easy to cancel or replace, and easier to give a new name, and to accept the default renaming you could just use a direction key then enter.
  • I really like the Futaba date conversion idea

Other requests:

  • Ability to jump to an image by typing its position as a number in the list of images (like, go to the 200th image of the directory). It allows for some kind of rough navigation when you get a good feel of the contents of a directory.

Maybe also modifier keys to the "Next image", "Previous image", "Random Image" and "Previous Random Image" that would skip an arbitrary (5, 10, 25, 50, 100, 500?) amount of images.

  • Rotation for other formats (it does not make much sense from the user point of view to allow it only for JPEG)

129 Name: U (u) : 2005-12-15 20:22 ID:XYVx8248 [Del]

I knew I was forgetting something:
When dragging a directory out of the drawer, the cursor should get a poof, like in the Dock of the Finder, and the name of the directory in the drawer should either be moved while dragging (instead of a copy of it being dragged) or (if it is a pain to do) become half-transparent. It would make it much easier to understand since it's how things with the same behavior already look like when dragged off.

130 Name: !WAHa.06x36 : 2005-12-16 05:53 ID:6THb/Qdo [Del]

> Minimizing doesn't work correctly.

How, exactly?

> When hiding the statusbar, there sometimes are black bars to the viewed images.

That's because the picture viewing area gets bigger. I could resize the window when hiding the status bar, but that's a little bit tricky to get right.

> Maybe I'm missing some issue about this one, but I think the auto-rotation should only be enabled when it would result in a rotation in the image.

The issue is that I'm using Quicktime to load JPEGs, and it won't tell me if they have rotation data or not. It'll be fixed if I ever get around to implementing my own JPEG loader.

> Regarding the drawer, I think you should provide a button inside the drawer that would switch between "Copy" and "Move", it is easier to undersand and a lot less accident-prone to use than 2 different drawers that look exactly the same and share their contents.
> If the two files are the same, you should provide a little icon, it is easier than to check the info manually.
> I think the focus should be on the "New name:" field instead of cancel, so that you can start directly typing a new name - Cancel is still available from the keyboard using Esc. And if an edition or a movement is detected in the "New mane" field, make the "Rename" button the default one instead of Replace. Rationale: that way it still is as easy to cancel or replace, and easier to give a new name, and to accept the default renaming you could just use a direction key then enter.

These seem like pretty good ideas. I might implement at least some of that.

> Rotation for other formats (it does not make much sense from the user point of view to allow it only for JPEG)

Maybe, but I'm not too interested into putting in much general-purpose image editing. I don't think that's really the job of an image viewer, and it would require quite a bit of extra code. The JPEG rotation is only there because I was lacking any good tools to do lossless JPEG rotations. The only images people are likely to want to rotate are JPEGs, anyway.

> When dragging a directory out of the drawer, the cursor should get a poof, like in the Dock of the Finder, and the name of the directory in the drawer should either be moved while dragging (instead of a copy of it being dragged) or (if it is a pain to do) become half-transparent. It would make it much easier to understand since it's how things with the same behavior already look like when dragged off.

Apple makes it really, really hard to replicate the Finder dragging and poofing behaviours. It's a miracle I got this much working. Just detecting that something was dragged out of a view is nearly impossible. So I wouldn't hold my breath for those, even though they are obvious things that should be implemented.

131 Name: U (u) : 2005-12-16 14:41 ID:XYVx8248 [Del]

> How, exactly?

Okay, the minimizing issue, I hoped you could reproduce it because I fail at English clarity ;) :
I use a Mac mini (32MB ATI Radeon 9200), 10.4.3, dock on the bottom, hiding and magnification off.
I'll describe what happens to me.

  1. Xee 1.1 Beta1 is not running. I click on its dock icon, choose an image, everything OK.
  2. I click on the yellow minimize window in the top of the window. It minimizes correctly to the dock. (Also reproduced this by double-clicking the titlebar)
  3. I click the minimized window in the right side of the dock. Nothing happens: the window stays in the dock.
  4. I click the Xee icon in the left side of the dock. The minimized window appears without any unminimizing animation on the foreground, but is still visible in the right side of the dock, and its red-yellow-green buttons are stuck in rollover mode (IE, they display the X, -, +) and don't get unstuck on subsequent rollovers.
  5. Moving to another picture using page up and page down don't display the picture. The window is resized, the statusbar updated, but the window only shows a white background (also had a black one before) and a part of the window of the previous picture (you see a part of its image and the titlebar, so you can see a few titlebars INSIDE the window). Traffic light buttons get unstuck but still don't register rollover. Clicking the zoom one does nothing but to stuck them back into clicked position, and the red one works as expected: it closes the window, and removes it from the dock.
  6. Other Xee windows still work correctly.

Another thing that doesn't work correctly:

  1. Xee 1.1 Beta1 is not running. I click on its dock icon, choose an image, everything OK.
  2. I click on the yellow minimize window in the top of the window. It minimizes correctly to the dock.
  3. I go to the Window menu, and choose the last option - the window I have minimized. The window is unminimized from the dock with an unminimizing animation, but the problems in the 5. and 6. of the previous procedure will still happen, except for the stuck on rollover buttons.

Okay, now here's my hunch about the issue, but I could be terribly wrong: I have almost the same problem with QuickTime player, like most (all?) people who have installed DivX. If you want I can try to experiment with finding out where is the divx component and disabling it to see if I was right.

> I don't think that's really the job of an image viewer, and it would require quite a bit of extra code.

I understand that, but as for myself, I think it is the job of any program that displays rotate arrows in its toolbar. If you won't implement rotation for other formats, keeping those buttons on the default toolbar (even if they had some obvious "JPEG" mention) will generate a lot of bug reports/feature requests/overall whining ;)

> It's a miracle I got this much working.

Oh damn, I thought Apple provided a Big Box O' Magical APIs that do Everything and More and Just Works, makes me want to reconsider learning OS X development.

132 Name: !WAHa.06x36 : 2005-12-16 15:03 ID:Heaven [Del]

> Okay, now here's my hunch about the issue, but I could be terribly wrong: I have almost the same problem with QuickTime player, like most (all?) people who have installed DivX. If you want I can try to experiment with finding out where is the divx component and disabling it to see if I was right.

That might be useful. The locate shell command is good for finding files, by the way.

A less cumbersome thing you might want to check first is to open /Applications/Utilities/Console.app, and see if it shows any error messages while you do the things you described above.

> Oh damn, I thought Apple provided a Big Box O' Magical APIs that do Everything and More and Just Works, makes me want to reconsider learning OS X development.

They do to some extent, but then they get distracted by something shiny and forget to implement all of it. Or just forget to document it.

133 Name: Mr VacBob!JqK7T7zan. : 2005-12-16 15:11 ID:CyEwx4YX [Del]

> The locate shell command is good for finding files, by the way.

'mdfind' is better because it uses Spotlight; locate is usually out of date.

134 Name: !WAHa.06x36 : 2005-12-16 15:37 ID:Heaven [Del]

>>133

locate seems to get rebuilt fairly often on my machine. mdfind is useless because it excludes the system directories. Also, locate is faster by orders of magnitude on my machine.

135 Name: Guntis : 2005-12-18 17:10 ID:32a7wcfN [Del]

One small remark. Today I went through 50+ images in Xee and wanted to sort them (mark useful ones), but... no tools for that. I know, I can switch to Finder and move or copy files or apply color label, but... Can you add color labeling in Xee? For example, press Command+1, 2, 3, 4, 5, 6, 7 to apply red, orange, yellow, green, blue, pink or gray color label.

(Current Command+1, 2, 3 could be assigned to <, > and Current <, > to LeftArrow, RightArrow.)

This way, I could go through the images and apply color labels, according to my taste. It would be good to display color label also over the image, maybe as a color circle somewhere in the corner?

136 Name: !WAHa.06x36 : 2006-01-25 19:49 ID:OmtsthcK [Del]

After a far too long wait, I have finally managed to put together another beta version!

http://wakaba.c3.cx/releases/mac/Xee1.1beta2.zip

This includes an interface for configuring keyboard shortcuts that actually works (I hope!). This took after some hackery of epic proportions to BEND MAC OS X TO MY WILL.

Ahem, yes. I also implemented some of the suggestions in this thread, and some bugfixes, and probably stuff I forgot about. This is pretty much what I'm thinking 1.1 will be like when it's done. I'm not planning to do anything but bugfixing before the final version, unless something really important turns up (or I get inspired). This means no fullscreen yet. Sorry. I want it too, it's on the list, I hope to have it for 1.2.

Oh, and a note for Japanese users: This version is probably pretty broken if you run in Japanese, so it will probably not work right for you. Sorry about that, I hope to have it fixed in the next version. I also need to nag Hinata to do some more translating...

For now, this needs some serious testing, so if anyone could take a moment to do bash it around, especially the keyboard configuration interface, I'd be grateful. Report as many bugs as you can find, or else they will be in the final 1.1 release!

137 Name: !WAHa.06x36 : 2006-01-26 12:48 ID:OmtsthcK [Del]

Well, since I apparently get linked on Japanese download sites even if I say the program is likely not to work, I thought I might as well fix it to work properly in Japanese too. The new translations aren't done yet, but this version should at least work:

http://wakaba.c3.cx/releases/mac/Xee1.1beta3.zip

English users don't need to bother with this version, there's nothing really new. Unless I managed to mess up some of the strings in English.

138 Name: !WAHa.06x36 : 2006-01-26 12:50 ID:OmtsthcK [Del]

PS: Get testing, people!

139 Name: Mr VacBob!JqK7T7zan. : 2006-01-26 20:37 ID:HYvCNwKJ [Del]

The keyboard settings don't let me use the CD eject key in a command (probably impossible) and hitting cmd-opt-ctrl-8 isn't overridden, and I can't tell the difference between - and X instantly. And the Actual Size button should be able to reverse itself (and the keyboard command).

It displays "2046 B" for one picture when that should probably be in KB.

It displays the miniature thumbnail next to "JPEG timedbykillshok.jpg" (or whatever), which is pretty useless.

It should say "colors" instead of "colours" (as in 2 colours PNG) because that's shorter \('-')/

And I'd like to be able to ignore the speeds specified in a GIF and just play it superfast.

There is an unreproducable crash when using open with file instead of just launching it ("open -a Xee Pictures/xenosaga1kh.jpg", Pictures has every picture I have in it so is very large):

Date/Time: 2006-01-26 21:55:11.638 -0500
OS Version: 10.4.4 (Build 8G32)
Report Version: 3

Command: Xee
Path: /Users/astrange/Xee.app/Contents/MacOS/Xee
Parent: WindowServer [108]

Version: ??? (1.1 beta 3)

PID: 17428
Thread: 4

Exception: EXC_BAD_ACCESS (0x0001)
Codes: KERN_INVALID_ADDRESS (0x0001) at 0x435b3263

Thread 0:
0 libSystem.B.dylib 0x9000b208 mach_msg_trap + 8
1 libSystem.B.dylib 0x9000b15c mach_msg + 60
2 com.apple.CoreFoundation 0x9075d114 __CFRunLoopRun + 832
3 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268
4 com.apple.HIToolbox 0x9318e1e0 RunCurrentEventLoopInMode + 264
5 com.apple.HIToolbox 0x9318d874 ReceiveNextEventCommon + 380
6 com.apple.HIToolbox 0x9318d6e0 BlockUntilNextEventMatchingListInMode + 96
7 com.apple.AppKit 0x9368c104 _DPSNextEvent + 384
8 com.apple.AppKit 0x9368bdc8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
9 com.apple.AppKit 0x9368830c -[NSApplication run] + 472
10 com.apple.AppKit 0x93778e68 NSApplicationMain + 452
11 cx.c3.xee 0x00002654 _start + 340 (crt.c:272)
12 cx.c3.xee 0x000024fc start + 60

Thread 1:
0 libSystem.B.dylib 0x9000b208 mach_msg_trap + 8
1 libSystem.B.dylib 0x9000b15c mach_msg + 60
2 com.apple.opengl 0x935ecd60 glcDebugListener + 252
3 libSystem.B.dylib 0x9002b200 _pthread_body + 96

Thread 2:
0 libSystem.B.dylib 0x90053f68 semaphore_timedwait_signal_trap + 8
1 libSystem.B.dylib 0x900702c8 pthread_cond_timedwait_relative_np + 556
2 ...ple.CoreServices.CarbonCore 0x90b74e90 TSWaitOnSemaphoreCommon + 176
3 ...ickTimeComponents.component 0x8ed87564 ReadSchedulerThreadEntryPoint + 5212
4 libSystem.B.dylib 0x9002b200 _pthread_body + 96

Thread 3:
0 libSystem.B.dylib 0x90053f68 semaphore_timedwait_signal_trap + 8
1 libSystem.B.dylib 0x900702c8 pthread_cond_timedwait_relative_np + 556
2 ...ple.CoreServices.CarbonCore 0x90b74e90 TSWaitOnSemaphoreCommon + 176
3 ...ple.CoreServices.CarbonCore 0x90b7f938 AIOFileThread(void*) + 520
4 libSystem.B.dylib 0x9002b200 _pthread_body + 96

Thread 4 Crashed:
0 <<00000000>> 0xfffeff18 objc_msgSend_rtp + 24
1 com.apple.CoreFoundation 0x90741860 CFURLCopyAbsoluteURL + 148
2 com.apple.CoreFoundation 0x9076276c _CFBundleCopyExecutableName + 256
3 com.apple.CoreFoundation 0x907623c4 _CFBundleCopyExecutableURLInDirectoryWithAllocator + 272
4 com.apple.CoreFoundation 0x907777b8 CFBundleLoadExecutable + 44
5 com.apple.CoreFoundation 0x907776b0 CFBundleGetFunctionPointerForName + 40
6 ...ple.CoreServices.CarbonCore 0x90b59b5c cf_lookupLibraryEntry(rtFile*, RegisteredComponent*) + 116
7 ...ple.CoreServices.CarbonCore 0x90b59978 LoadComponent + 216
8 ...ple.CoreServices.CarbonCore 0x90b596b8 OpenAComponent + 232
9 ...ple.CoreServices.CarbonCore 0x90b653a0 OpenComponent + 20
10 ...ple.CoreServices.CarbonCore 0x90b5a6a4 CallComponent + 292
11 ...ple.CoreServices.CarbonCore 0x90b6d53c CallComponentGetPublicResource + 48
12 com.apple.QuickTime 0x8facc8b4 cchaMissing + 336
13 ...ple.CoreServices.CarbonCore 0x90b5b610 GetComponentPublicResourceList + 440
14 com.apple.QuickTime 0x8facc51c startUsingCachedCodecCharacterizations + 312
15 com.apple.QuickTime 0x8facbc58 FindBestChain + 48
16 com.apple.QuickTime 0x8faca7b8 ICMSequenceGetChain + 444
17 com.apple.QuickTime 0x8fac4b4c DoBandedDecompress + 4200
18 com.apple.QuickTime 0x8fb3fb98 ICMAction_aligned + 1308
19 com.apple.QuickTime 0x8fac38e0 ICMDeviceLoop + 3456
20 com.apple.QuickTime 0x8fac9dfc DecompressSequenceFrameWhen + 860
21 com.apple.QuickTime 0x8fafb224 DecompressSequenceFrameS + 20
22 ...ickTimeComponents.component 0x8f097b2c importGraphicDrawInternal + 1476
23 ...ickTimeComponents.component 0x8f0992d0 importGraphicDrawOrDecide + 2116
24 ...ple.CoreServices.CarbonCore 0x90b5aae0 CallComponentFunctionCommon + 1016
25 ...ple.CoreServices.CarbonCore 0x90b5a684 CallComponent + 260
26 ...ple.CoreServices.CarbonCore 0x90b5a684 CallComponent + 260
27 com.apple.QuickTime 0x8fafb05c GraphicsImportDraw + 32
28 cx.c3.xee 0x0000be34 -[XeeQuicktimeImage loadFromIndex:count:] + 692 (crt.c:355)
29 cx.c3.xee 0x0000bafc -[XeeQuicktimeImage load] + 56 (crt.c:355)
30 cx.c3.xee 0x000164d8 -[XeeDirectoryController imageLoader:] + 288 (crt.c:355)
31 com.apple.Foundation 0x928e66d4 forkThreadForFunction + 108
32 libSystem.B.dylib 0x9002b200 _pthread_body + 96

Thread 4 crashed with PPC Thread State 64:
srr0: 0x00000000fffeff18 srr1: 0x000000000000d030 vrsave: 0x0000000000000000

cr: 0x44848422          xer: 0x0000000020000007   lr: 0x0000000090741860  ctr: 0x00000000fffeff00
r0: 0x0000000090741844 r1: 0x00000000f0201fd0 r2: 0x0000000000000000 r3: 0x0000000000040000
r4: 0x0000000090a02528 r5: 0x0000000000000061 r6: 0x00000000a09ba8b4 r7: 0x00000000907f9230
r8: 0x0000000000001a77 r9: 0x0000000090a02533 r10: 0x0000000000000000 r11: 0x000000006f5e2528

r12: 0x00000000435b3243 r13: 0x0000000044822222 r14: 0x0000000000000000 r15: 0x00000000049eb000
r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000001944c28 r19: 0x00000000f0202eac
r20: 0x0000000000000001 r21: 0x0000000000000000 r22: 0x0000000000000000 r23: 0x0000000000040000
r24: 0x00000000a1b1c1d3 r25: 0x00000000a073a150 r26: 0x00000000a073a150 r27: 0x00000000a073a150
r28: 0x0000000000000000 r29: 0x00000000a0743d30 r30: 0x0000000000040000 r31: 0x00000000907417d8

(abbreviated to fit in post size limit)

Model: PowerBook6,1, BootROM 4.5.5f4, 1 processors, PowerPC G4 (3.3), 867 MHz, 640 MB
Graphics: NVIDIA GeForce4 MX, GeForce4 MX, AGP, 32 MB
Memory Module: DIMM0/BUILT-IN, 128 MB, built-in, built-in
Memory Module: DIMM1/J31, 512 MB, DDR SDRAM, PC2100U-25330
AirPort: AirPort Extreme, 404.2 (3.90.34.0.p16)
Modem: MicroDash, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
Bluetooth: Version 1.7.0f18, 2 service, 1 devices, 1 incoming serial ports
Network Service: AirPort, AirPort, en1
Parallel ATA Device: MATSHITADVD-RAM UJ-825S,
Parallel ATA Device: FUJITSU MHS2060AT, 55.89 GB
USB Device: Bluetooth HCI, , Up to 12 Mb/sec, 500 mA
FireWire Device: iPod, Apple Computer, Inc., Up to 400 Mb/sec
FireWire Device: > LaCie 1394 DVD-R/RW+CD drive LUN 0, LaCie Group SA, Up to 400 Mb/sec
FireWire Device: Firewire Drive, PI-036, Up to 400 Mb/sec

140 Name: !WAHa.06x36 : 2006-01-27 06:07 ID:6THb/Qdo [Del]

> cmd-opt-ctrl-8 isn't overridden

What's that about?

> I can't tell the difference between - and X instantly

Actually, I'd like both "reset" and "reset all" buttons, but then I'm really running out of iconography. Maybe I should just give up and make buttons that say "reset" and "reset all". Matching them visually is a bit tricky, though. It would sure be nice if OS X actually supported all of these visual styles Apple uses, so you wouldn't need to keep using custom bitmaps.

> And the Actual Size button should be able to reverse itself

This seems a bit iffy. Do other apps do that?

> It displays "2046 B" for one picture when that should probably be in KB.

That's intentional, because I use four digits when displaying the size, and "1.998kB" would just look retarded.

> It displays the miniature thumbnail next to "JPEG timedbykillshok.jpg" (or whatever), which is pretty useless.

It displays the current icon, so if you've saved the image with a program that saves an explicit thumbnail icon, it'll show that. I'm not sure I want to go to the trouble of trying to match my own icons to the files, unless there's a simple way to do this.

> And I'd like to be able to ignore the speeds specified in a GIF and just play it superfast.

Stop the animation, hold down "Next Frame". (You HAVE your keyboard set to maximum repeat rate, right?)

Also, fix for crashing Quicktime: Write me a proper libjpeg loader, so I don't have to bother with Quicktime!

141 Name: Sakurina : 2006-01-27 10:08 ID:hEphOYN/ [Del]

Cmd-Opt-Ctrl-8 is the black on white universal access keyboard shortcut, I believe. You can change those in the keyboard prefpane in System Preferences.

142 Name: Mr VacBob!JqK7T7zan. : 2006-01-27 20:06 ID:2/5dwLMo [Del]

The school Websense thinks this website is "adult content" now.

> What's that about?

Well, it was just an example of Xee not being able to override something that was already mapped. This probably isn't possible.

> This seems a bit iffy. Do other apps do that?

I don't think so, but there's no point in having an Actual Size command when it's already at Actual Size.

143 Name: !WAHa.06x36 : 2006-01-31 18:21 ID:OmtsthcK [Del]

All right, enough messing around, let's release this!

http://wakaba.c3.cx/releases/mac/Xee1.1.zip

Summary of the new features:

  • Toolbar
  • Configurable keyboard shortcuts (This code is easy to drop into other projects where you want configurable keyboard shortcuts, by the way.)
  • Lots of small interface improvements.
  • Lots of bugfixes.
  • Should run on 10.3 now (not very well tested, though).

Source is here: http://wakaba.c3.cx/releases/mac/Xee1.1_src.zip

144 Name: kohlmannj : 2006-01-31 20:03 ID:jQhQ547E [Del]

Wow, this is nothing short of amazing. Thank you for taking the time to build this little app! Please do us all a favor and kill Preview(.app), okay? :-D

I know you'd prefer not to hear my life story, but let me just say that this makes working with high-resolution graphics on a 5 year-old Mac a dream come true.

145 Name: AndyZ : 2006-02-02 08:04 ID:T96qot8Q [Del]

Thanks for this great app! I'd very much like to see the following features implemented:

  • using embedded color profiles when displaying images - Preview and Xee display photos differently,
  • an option to turn off chaning the position/size of the window automatically when switching to next/previous image,
  • an option to center the window on screen (maybe just horizontally), instead of centering with respect to previous position, as I think it currently does,
  • when I select "next frame" from toolbar, and frame sizes are different, the window size does not change, but when I select the same command from the menu, it does, so it looks like a bug,
  • a option to change window background color

146 Name: !WAHa.06x36 : 2006-02-02 08:35 ID:6THb/Qdo [Del]

> using embedded color profiles when displaying images - Preview and Xee display photos differently,

There are various problems with this, not least that I'm not very knowledgable about this. Basically, I'd like to have the program store the exact bitmap data that appears in the file, so as not to cause changes in the data when saving. However, when drawing with OpenGL it's not easy to apply colour adjustments on the fly, either. Possibly one could use pixel shaders for this, but my Mac mini doesn't support them, so I can't really do anything about it.

If anyone wants to help out with this, it would be appreciated.

> an option to turn off chaning the position/size of the window automatically when switching to next/previous image,

This option already exists.

> an option to center the window on screen (maybe just horizontally), instead of centering with respect to previous position, as I think it currently does,

This would be easy enough to add.

> when I select "next frame" from toolbar, and frame sizes are different, the window size does not change, but when I select the same command from the menu, it does, so it looks like a bug,

Not a bug, intentional (and can be changed via the option mentioned above). Changing the position and size of a window after clicking on a button in a window is really annoying, is why.

> a option to change window background color

The black border around the image, or the background on transparent images? The first might be a good idea. For the second, Xee tries to figure out what background colour the image has specified (but not all images do). So at the most, I could add an option to give a default background colour for those that don't have one.

147 Name: 88 Gunner : 2006-02-02 13:25 ID:+GOnhTvI [Del]

think we need a option to view foto's in zip files, like in acdsee
that would be great. :)

148 Name: 88 Gunner : 2006-02-02 13:26 ID:+GOnhTvI [Del]

think we need a option to view foto's in zip files, like in acdsee
that would be great. :)

149 Name: !WAHa.06x36 : 2006-02-02 14:23 ID:Heaven [Del]

I never understood why people wouldn't just unpack their zip files and view the pictures in them that way, instead of making their image viewers support zip. It all seems backwards.

I've considered adding it, though, but it's not a high-priority feature at the moment.

150 Name: Anonymous : 2006-02-03 01:24 ID:FLTSz8dC [Del]

Nice program! I would love to see batch renaming and slideshows integrated into Xee.

151 Name: !WAHa.06x36 : 2006-02-03 07:11 ID:6THb/Qdo [Del]

I'm not sure if batch renaming fits in there, or would be better handled by a separate program, but slideshows are a much-requested feature. I'll have to look into that for the next version. Obviously this also requires full-screen mode.

152 Name: Anonymous : 2006-02-03 08:44 ID:Heaven [Del]

batch renaming is probably better done with a command line program

153 Name: !WAHa.06x36 : 2006-02-03 09:50 ID:6THb/Qdo [Del]

Actually, that's sounds like a surefire way to get yourself in trouble. You really need a GUI that tells you what your files will be renamed to before they are actually renamed.

154 Name: Anonymous : 2006-02-03 11:16 ID:Heaven [Del]

>>149
If you happen to get most of your images in zips or rars say... from a torrent. You need to keep the original around so you can seed/resend/whatever. Then you have to unzip everything, view it, probably delete the folder since you don't need two copies. If the image viewer supports zips, you skip two steps. Repeat 1000 times and you have a lot less clicks, shrug

155 Name: !WAHa.06x36 : 2006-02-03 16:24 ID:Heaven [Del]

Seems to me it's pretty unlikely you'd ever need the original archives again, unless you are specifically doing distro for some group. If you want to give it to some friends, they'd be happier if you just zipped up your whole collection in a single file anyway.

156 Name: brooks : 2006-02-04 18:12 ID:Ziw3C9LS [Del]

there is no way to browse into and out of subfolders?

157 Name: !WAHa.06x36 : 2006-02-04 18:34 ID:OmtsthcK [Del]

No, sorry. It would be useful, but I'm not sure how it would work in practice.

158 Name: brooks : 2006-02-04 18:38 ID:Ziw3C9LS [Del]

"file list.app" is a really good batch renamer, i use it with xee to sort hundreds of pictures
http://www.versiontracker.com/dyn/moreinfo/macosx/27090

159 Name: brooks : 2006-02-04 22:30 ID:Ziw3C9LS [Del]

as for browsing into subfolders,
you could have some kind of button like control shift option blah blah blah, that will jump beetween each folder (including the main one) and the normal keys to switch beetween pictures within them

but i could see how that would get complicated with alot of folders and items, maybe some kind of window or another item on the bottom that shows you what folder the picture is in

subfolders would be reeeallllly useful, especially if i dont sort all of my pictures in one sitting, i can pick back up relatively easily

160 Name: AndyZ : 2006-02-05 08:56 ID:T96qot8Q [Del]

Thanks for your reply!
Unfortunately, I don't know much about color profiles and OpenGL either, so I can't help you with this :(

An option to change color of the black border and another option to set default background color of transparent images will be great! But for fullscreen mode, if you make one, it would be better to leave border color black IMO.

As for subfolders, I also think that it will be useful. Perhaps there could be an option "Look into subfolders", so that when you open a folder, the back/forward buttons will go through the files in all the subfolders. And the status bar could have the name of the current folder. Or another idea: maybe add a side-window with the folder tree, so that you can open it and quickly change the folder, without going into file-open dialog.

161 Name: AndyZ : 2006-02-05 09:14 ID:T96qot8Q [Del]

Just some thoughts about color profiles. There are a couple of samples at Apple's website which do color management, like these:

http://developer.apple.com/samplecode/ImageApp/ImageApp.html
http://developer.apple.com/samplecode/ColorMatching/ColorMatching.html

Maybe this info could help.

162 Name: Anonymous : 2006-02-05 12:38 ID:MxKCaACQ [Del]

Can't you just implement an explorer view?

163 Name: !WAHa.06x36 : 2006-02-05 17:10 ID:OmtsthcK [Del]

>>160

Scanning subfolders was suggested earlier, but it's tricky to implement right - what if you open up a file in the root folder, and the program starts scanning your entire drive? I'm not sure what the best behavior is for situations like this, so so far I haven't implemented it. It's on the list, though.

>>162

I don't want to end up implementing a full replacement for the Finder. This is a trap far too many other image viewers fall into, and it makes them far more complex than useful.

164 Name: AndyZ : 2006-02-06 03:57 ID:T96qot8Q [Del]

Do you create a list of files to browse through when you open a file? Maybe you could calculate next/previous file only when the corresponding button is pressed? Then it would be ok to browse through root folder. And if you still need a list of files, it could be built in a separate thread with low priority, so that it will not slow down the system.

165 Name: borndevil : 2006-02-10 11:32 ID:XYMH95AD [Del]

just one important thing: full screen (and that could start Xee in full screen mode). thank you. thank you. thank you.

thank you.

166 Name: !WAHa.06x36 : 2006-02-17 19:23 ID:OmtsthcK [Del]

Well, just because I love >>165 like a brother, here's a new version with full screen mode!

http://wakaba.c3.cx/releases/mac/Xee1.2.zip

It also has some more bugfixes, better support for camera raw files, and icon sets. Someone mailed me a set of alternate icons, and I figured that since this is a program that would be used by people who do graphical work, they're bound to have strong opinions on the icons used, so now there is the option to easily package a set of alternate icons for quick installation. As for now, there's just two icon sets: The default one, and the contributed Eye-see by Havi Govinda:

http://wakaba.c3.cx/releases/mac/Default.xeeicons.zip
http://wakaba.c3.cx/releases/mac/Eye-see.xeeicons.zip

Source is available, as usual:

http://wakaba.c3.cx/releases/mac/Xee1.2_src.zip

167 Name: !WAHa.06x36 : 2006-02-17 19:38 ID:OmtsthcK [Del]

Also, I'll take this opportunity for a quick question: Out of the following things that I'm thinking about implementing, which ones are you interested in?

  • ZIP/RAR/LZH handling
  • More image format loaders (MNG, JNG, pbm, xbm and non-Quicktime JPEG are on my list - anything else?)
  • EXIF metadata (sort of dependent on implementing JPEG myself instead of using Quicktime, as in previous entry)
  • Higher-quality scaling (as some sort of second pass: first do a quick OpenGL scaling, and then a higher-quality update)
  • Mangariini comic reader mode (laying out multiple pages for reading scanned comics)

That whole list is a lot of work, and I don't think I'll be able to do it all any time soon, so I'd like to know what to prioritize. Also, if anyone wants to help out with any of that, that would be even better.

168 Name: !WAHa.06x36 : 2006-02-18 07:56 ID:OmtsthcK [Del]

Oops, a typo had broken the Save As functionality in 1.2. Here's a quick bugfix:

http://wakaba.c3.cx/releases/mac/Xee1.2.1.zip

169 Name: Florian : 2006-02-18 09:45 ID:M8zZ89Cq [Del]

While I'd like anything on your list, I already have other apps to do all these, but no image viewer as quick, pretty and modern as Xee.
Hence, the most important thing to me would be higher quality scaling - and it would be very cool, if this would not be an automatism, but an option in the prefs.
I think this is more important than adding more features right now.

Another wish of mine would be image viewing without any borders, i.e. not even a title bar, without entering fullscreen mode. The only application I know which does this is the old JView. And if one could switch between this mode and the "full mode" including too- and statusbar with one shortcut, I'd be even happier.

Last issue on my list: If I skip through the images extremely quickly, Xee can't load the images fast enough and instead shows a black background. Just keep your finger on the dot-key... while it may not be very sensible to scan images like that, it's my way of narrowing it down. :/

Thanks a lot for Xee, it really already is an excellent app.

170 Name: !WAHa.06x36 : 2006-02-18 11:57 ID:Heaven [Del]

> Last issue on my list: If I skip through the images extremely quickly, Xee can't load the images fast enough and instead shows a black background. Just keep your finger on the dot-key... while it may not be very sensible to scan images like that, it's my way of narrowing it down. :/

Well, that's pretty much intentional. Instead of slowing you down by waiting for each image to load, it will try to skip through as fast as you want, and load images when it catches up. It's handy when you want to jump, say, twenty images backwards, and you can just hold the key down for a little while.

171 Name: Robert : 2006-02-18 13:06 ID:swxgrqCk [Del]

Xee is 99/100 of what I'd like out of an image browser. The last thing I'd want is the ability to start Xee maximized.

Thanks for all your great work!

172 Name: Ernest Millan : 2006-02-18 16:05 ID:xUQeWoLP [Del]

"The last thing I'd want is the ability to start Xee maximized."

I completely agree with Robert. This seems to be the only missing piece from this great application. Thanks!

173 Name: !WAHa.06x36 : 2006-02-18 16:16 ID:OmtsthcK [Del]

> The last thing I'd want is the ability to start Xee maximized.

I'll ignore the unfortunate phrasing of this request, and instead just ask how this would work in practice: Doubleclick on a file and Xee starts up in fullscreen mode, or something? Obviously that would need to be optional, if so. Is an option in the preferences enough, or should there be some sort of menu checkbox?

174 Name: Robert : 2006-02-18 21:40 ID:swxgrqCk [Del]

Instead of having the ability to start maximized or not, I suppose what I'd really like is for Xee to remember its own window size and position after closing. That is, if I manually resize Xee to be a 5x5 window on the upper right-hand corner of my screen, it should appear like that every time I open Xee (until I change that). Likewise, if I use the maximize button to make Xee as large as it could possibly be (without being fullscreen), I'd like Xee to remember that every time it opens.

175 Name: !WAHa.06x36 : 2006-02-18 23:21 ID:OmtsthcK [Del]

Well, that would only make sense when disabling the automatic resize entirely. Also, since Xee can have any number of windows open, it's not obvious which window's size it should remember as default. Any thoughts?

176 Name: Robert : 2006-02-20 11:24 ID:tUgDKNmy [Del]

I do disable the automatic resize functionality. On the multiple windows front, I'm not sure how that should work, since I've never used Xee with multiple windows open.

I have Xee setup as follows:

  1. No auto-resize.
  2. When Xee loads, I immediately maximize it. It stays this way the entire time (because it's set not to auto-resize).
  3. I browse through my pictures.

If step 2 (starting maximized) could be made an option instead of requiring my intervention, it would be fantastic. However I would understand your reluctance to make that an option if preserving usability across multiple instances of Xee became a problem.

177 Name: !WAHa.06x36 : 2006-02-20 11:26 ID:Heaven [Del]

I see. I'll try to think up a sane behaviour to handle this.

178 Name: rodgerSan : 2006-02-20 16:20 ID:+dmAocF1 [Del]

I dropped ffview for Xee today because it seems to be faster and lighter. But I've missing slideshows, a french translation and an infopanel (apple-i) to display image properties and exif metadata (that you're apparently considering #167)

About french localization, I can translate it from english.

So if you're are interested, drop me a line here.

Finally, great job for this wonderful piece of software, keep up the good work.

179 Name: Anonymous : 2006-02-20 18:56 ID:dFblG9UO [Del]

I am really missing the possibility of user defined actions for keys 0-9, like, for example, implemented in "qiv" or "feh". That would be on the top of my list for further developments.

180 Name: !WAHa.06x36 : 2006-02-20 20:07 ID:Heaven [Del]

>>178

If you want to do a French translation, get the source, and look for the file English.lproj/Localizable.strings. That should have all the text that needs to be translated.

(Note that just changing it won't change all the text in the interface, you also need to generate .nib files from the translation. But I can do that easily once I have the .strings file.)

>>179

How do those work?

181 Name: rodgerSan : 2006-02-21 15:00 ID:Nbt+86x/ [Del]

Hi, I did it but there are some strings that I can not translate as "Done" or "Special Characters...".

I uploaded the file here: http://www.megaupload.com/fr/?d=YWFNX0YQ

Last thing, how I can test it to check if it has been well translated??

182 Name: Syn : 2006-02-23 16:36 ID:4djQYJdf [Del]

Xee looks great! I'm curious why you have not released it as a universal binary at this point? I've got an MBP delivering tomorrow, so I grabbed the 1.2.1 source and punched it through Xcode. It compiled (with a few deprecated warnings, but no errors), linked and created a UB that appears to work just fine on my G5 and G4. We'll see about the Intel tomorrow. It's bigger (2.8M) but nothing huge or anything.

I can obviously make the UB available if needed, and having the source made it a non-issue for me, but I am curious now.

Thanks!

183 Name: !WAHa.06x36 : 2006-02-23 20:29 ID:Heaven [Del]

It won't work fine. Try loading up a PNG, and it'll have inverted colours. There are a lot of endianess issues in the various image format loaders that need to be ironed out before I can do a universal version. And since I don't have an Intel machine to do it on, it'll have to wait.

184 Name: Syn : 2006-02-23 22:46 ID:tYaucI0I [Del]

Well, That's why I asked. :) Like I said, it worked fine for me now.. :)

The MBP is at the sort facility now, so I'll take a look tomorrow. Should be easily enough to check.

Thanks for the reply on it, however. Out of Semi-complete ignorance, I do ask about the issues. I've got a few image processors that are UB now, and most of the programmers I've talked to about it have not expressed any major problems at all, especially in the imaging areas. Is it in the Library routines that you are linking in? Or is it just too many potential issues to hit without a test environment to see immediate results on?

Thanks!

185 Name: !WAHa.06x36 : 2006-02-24 07:42 ID:Heaven [Del]

The main problem is that Intel processors have different endianness than PPC processors, so when reading 32-bit values out of memory, you get the bytes in reverse order. Lots of image code does this, because it's much faster to read 32-bit values than 8-bit values. I'm pretty sure OS X doesn't have any problems, but for instance libpng requires a #define statement set to whether the machine is little- or big-endian. It'd be easy enough to set that up so it gets set correctly depending on which architecture you're compiling for, but I'm sure the code I wrote myself also makes assumptions about endianness at several points, and I'd have to clean those up too.

In the end, I'd have to have a machine to test on to make sure I got all of them right. All of this is for fairly obscure formats, though, except for the PNG.

186 Name: Syn : 2006-02-24 16:10 ID:4djQYJdf [Del]

Just checked. Real quick, I'll hit it harder later, but 24bit PNG's work fine. 32bit PNGs, as you said.... ugly. JPG, GIF work fine, which is what I'm looking at most with this app.

Thanks!

187 Name: odyss... : 2006-02-28 14:06 ID:NEEI/C5h [Del]

hi...

just saw Xee and can say that it's what I was looking all this time. a quick image viewer to browse images in folders easily.

for me it only lacks for same means to makeing the actual image wallpaper/desktop background

very nice, thank you...

188 Name: brooks : 2006-03-02 20:22 ID:Ziw3C9LS [Del]

ok i got an idea. if you had like 1-9 be configurable to different folders on your computer, and then like you go to an image, press 1 and it moves to one, press 2 and folder 2 etc.

you could have like a side drawer where you can drag and drop folders and xee will assign them a number

that would make xee the best image sorter (and elimate the rename and de-rename stuff i have to do to effectively sort)

just antoher idea, thanks for this great application

189 Name: brooks : 2006-03-02 20:25 ID:Ziw3C9LS [Del]

oh and an option to turn off sorting and make it the way it is now would be cool

190 Name: !WAHa.06x36 : 2006-03-03 06:55 ID:OmtsthcK [Del]

What do you mean by "the way it is now?" The way it's sorted in the Finder? I'd like that very much too, but I am not sure if there's any way to find out how files are displayed in the Finder. If anyone knows, do tell.

191 Name: brooks : 2006-03-04 17:27 ID:Ziw3C9LS [Del]

like, competely turn off all of the sorting features and just have it so it views images or somthing (basically so you can reassign the hotkeys to somewhere else, and it wont ask you to add folders or anything)

192 Name: brooks : 2006-03-04 17:28 ID:Ziw3C9LS [Del]

what do you mean "the way files are displayed in the finder" i was thinking since there is already a move to trash command, there could just be like a move to this folder command, but with custom folders

193 Name: !WAHa.06x36 : 2006-03-04 17:45 ID:Heaven [Del]

Uh, there is already a side drawer for sorting through images. File -> Move to. There aren't any hotkeys for moving to specific folders, but I guess that would be a good enough idea to add...

194 Name: brooks : 2006-03-05 00:53 ID:Ziw3C9LS [Del]

oh im sorry. i hadnt realized that. thats exactly what i wanted to except with hotkeys. ha. i was wondering where i got the idea too.

195 Name: djcouchycouch : 2006-03-05 09:11 ID:yrgvKU0G [Del]

Could it be made so that a double-click toggles fullscreen view? Like ACDSEE and Cocoview.

196 Name: !WAHa.06x36 : 2006-03-05 10:29 ID:Heaven [Del]

>>195

That's probably a good idea, I'll try to remember to add that in the next version.

197 Name: mav : 2006-03-08 04:10 ID:EhdbpDx7 [Del]

Just want to throw in another vote for adding some kind of ability to control the sort order - IMO it would be more efficient to have controls for this in the program, either in addition to or in place of capturing the sort order from Finder. Xee is very nice, but in the application I have in mind for it I need to be able to switch between sorting by date modifed and file name, and its lack of this is the only reason I'm not using it full-time. Otherwise it's an amazing piece of software!

198 Name: Andrew Scott : 2006-03-10 19:46 ID:sKb14Yys [Del]

>If your camera writes EXIF orientation tags to its images, you can just press
>Command-A to automatically rotate the image according to how the camera
>thinks it should be oriented.

I wish you could set this rotation feature to really automatic such that EXIF rotation tags are applied as a matter of course instead of requiring the user to activate it. Currently it seems only semi-automatic if you know what I mean.

Nice work generally. This is my favourite image sorter.

199 Name: !WAHa.06x36 : 2006-03-10 21:51 ID:Heaven [Del]

>>198

I think this is a bad idea. I want Xee to show what is actually stored in the file, not a transformed version of it. If it showed the rotated image instead of what was actually in the file, you might for instance upload it on the internet thinking it looked all right, only to find that it shows up rotated the wrong way, as browsers don't care about the EXIF data. Preview does this, and I don't like it at all.

Pressing Command-A actually modifies the data in the file to turn it the right way up (losslessly, of course).

200 Name: Andrew Scott : 2006-03-14 08:13 ID:sKb14Yys [Del]

Isn't that what Preferences are for: letting the user decide what suits their needs? I take and review hundreds of images a week sometimes. I need a programme that will let me painlessly and quickly choose the ones to keep. Anything that speeds up that process helps. I upload many images to Flickr which now provides auto rotate based on EXIF.

I suggest offering true automatic rotate as an option and perhaps also "auto rotate view" without changing the file. If this doesn't suit your vision for the software that's OK and I guess my quest for software that works the way I need it to continues. :)

Well done, though. It's a great little app.

201 Name: xeefan : 2006-03-14 09:06 ID:jCb3LCr+ [Del]

Are there plans for a universal binary for Intel Macs?

202 Name: !WAHa.06x36 : 2006-03-14 09:34 ID:Heaven [Del]

As soon as I have a machine to develop it on. Xee won't work quite right with a simple recompile, it'll need a bunch of tweaking and testing.

If you buy me an Intel Mac, I'll have it done in days!

203 Name: xeefan : 2006-03-15 08:10 ID:jCb3LCr+ [Del]

Oh well.....thats a shame lol. How does it work under Rosetta emulation?

204 Name: !WAHa.06x36 : 2006-03-15 08:17 ID:Heaven [Del]

It should work fine, if a little slower. Soon as I have a machine, there will be a universal binary, but I don't want to release any half-functioning code when the emulated version should work fine.

205 Name: djcouchycouch : 2006-03-15 17:31 ID:yrgvKU0G [Del]

Can the scroll wheel on a mouse be set to go backwards and fowards through the images in a folder? Like the arrow keys.

DJCC

206 Name: !WAHa.06x36 : 2006-03-15 20:30 ID:Heaven [Del]

Uh, it's already supposed to do that.

207 Post deleted by moderator.

208 Name: djcouchycouch : 2006-03-29 01:33 ID:yrgvKU0G [Del]

I noticed what you mean, but for me it doesn't see to work very well. I have a MS Intellimouse. If I just roll the wheel one "notch" forward or backwards nothing happens but if I roll it fast in a direction then it'll switch to another image. Maybe it's a bug? Or maybe your scroll wheel roll dead zone is too large?

DJCC

209 Name: !WAHa.06x36 : 2006-03-29 06:33 ID:6THb/Qdo [Del]

>>208

Hmm, that's very strange. This might happen if the mouse actually reports having moved the scroll wheel less than one unit. Why it would do that is beyond me, but that might be it. If you have any settings for the wheel, try playing with them, and I'll try to put in some fix for it in a later version.

210 Name: djcouchycouch : 2006-03-30 19:48 ID:yrgvKU0G [Del]

If I roll the mouse wheel just one notch in Safari, it scrolls just as expected so I'm not sure if it's related to the wheel itself.

The scrolling speed in System Preferences is at the second notch on the left.

DJCC

211 Name: brooks : 2006-04-06 20:44 ID:Ziw3C9LS [Del]

alright another feature request.

i was wondering, maybe some support for movies.

not actually playing them or anything and works with rename and sorting and all that stuff, but like just shows you that there is a movie file so i dont completely skip them.

thanks again

212 Name: Thomasson : 2006-04-13 13:15 ID:B5HWv3mD (Image: 176x256 png, 52 kb) [Del]

src/1144955732139.png: 176x256, 52 kb

Hi !WAHa.06x36 and all

Been using xee for about a week (previously used viewit) and I've never seen an image browser as fast and easy in OSX.

I was playing with wings3d the other day, trying to make a simplistic walking man for a flash game. What I made looked quite like the Xee eyeball guy Icon. So I made it fully into the Xee icon, and so here's my version as maybe an alternative icon.

also feature requests:
a 'copy to selected place' button in the toolber, so you don't have to waste screenspace with the 'copy to...' sidebar
slideshowability: another toolbar button for this, maybe?

Hope you like the PNG as much as I like Xee. Email me if you'd like a copy of the 3d model.

213 Name: !WAHa.06x36 : 2006-04-15 18:38 ID:Heaven [Del]

>>212

Wow, that's even creepier than the real icon!

214 Name: Guntis Bukalders : 2006-04-16 11:16 ID:32a7wcfN [Del]

Hi,
Could you add labeling feature? For example, I watch pictures and want to sort them. I could press Command+Option+1 to add red label, or Command+Option+2 to add orange label, Command+Option+0 to remove any label. This is good when selecting images to order for prints. Just set full screen, look, set labels and then select them in Finder and send to the photo lab.

215 Name: Guntis Bukalders : 2006-04-16 11:20 ID:32a7wcfN [Del]

Copy file and Move file commands and buttons do nothing on my PowerBook. I press them, they change state to clicked, and that's all. Also, when I click on File menu and choose Move file, nothing happens. Any ideas why?

216 Name: Guntis Bukalders : 2006-04-16 13:17 ID:n9/thICN [Del]

Actually I don't like Xee's icon. Try to drag-and-drop it in Finder's toolbar. It's ugly. So I replaced it with the generic Core icon from SymbolExplorer. This one looks much better in the Finder's toolbar. Download SymbolExplorer (http://www.macupdate.com/info.php/id/20562), open application package, copy icon to the Desktop, rename it to Xee.icns, and replace Xee's icon in the application package (Applications/Xee/Contents/Resources/Xee.icns).

217 Name: !WAHa.06x36 : 2006-04-16 19:57 ID:Heaven [Del]

>>215

Those are not buttons, those just select if you are going to move or copy files. You click on entries in the list to actually move the files.

218 Name: Frank : 2006-04-23 07:44 ID:5D7JVTfO [Del]

Hello,

nice work!
Only one little thing would be good: If I zoom the main window, a image which was shon as "fit on srceen", does not automaticaly refit to the new window it keeps the actual zoom level.

thanks

219 Name: malcolm : 2006-04-27 06:10 ID:nU/36z4u [Del]

I was expecting to be able to view thumbnails. Like Phoenix Slides

220 Name: !WAHa.06x36 : 2006-04-27 07:36 ID:6THb/Qdo [Del]

>>219

Why? OS X shows you thumbnails just fine already.

221 Name: Anonymous : 2006-04-27 08:45 ID:Heaven [Del]

>>219 So use Phoenix Slides, then.

222 Name: kL : 2006-04-29 12:09 ID:TcU/mBRC [Del]

OS Version: 10.4.6 (Build 8I127)

Path: /Applications/Utilities/Xee.app/Contents/MacOS/Xee
Parent: WindowServer [66]

PID: 22036
Thread: 4

Exception: EXC_BREAKPOINT (0x0006)
Code[0]: 0x00000001
Code[1]: 0x9084e36c

Thread 4 Crashed:
0 com.apple.CoreFoundation 0x9084e36c __HALT + 0
1 com.apple.CoreFoundation 0x907c8fa8 _CFStringCreateWithFormatAndArgumentsAux + 144
2 com.apple.CoreFoundation 0x9084e9e0 CFLog + 56
3 com.apple.CoreFoundation 0x907fe914 CFBundleLoadExecutable + 392
4 com.apple.CoreFoundation 0x907fe6b0 CFBundleGetFunctionPointerForName + 40
5 ...ple.CoreServices.CarbonCore 0x90be0b5c cf_lookupLibraryEntry(rtFile*, RegisteredComponent*) + 116
6 ...ple.CoreServices.CarbonCore 0x90be0978 LoadComponent + 216
7 ...ple.CoreServices.CarbonCore 0x90be06b8 OpenAComponent + 232
8 ...ple.CoreServices.CarbonCore 0x90bec3a0 OpenComponent + 20
9 ...ple.CoreServices.CarbonCore 0x90be16a4 CallComponent + 292
10 ...ple.CoreServices.CarbonCore 0x90bf453c CallComponentGetPublicResource + 48
11 com.apple.QuickTime 0x8facc8b4 cchaMissing + 336
12 ...ple.CoreServices.CarbonCore 0x90be2610 GetComponentPublicResourceList + 440
13 com.apple.QuickTime 0x8facc51c startUsingCachedCodecCharacterizations + 312
14 com.apple.QuickTime 0x8facbc58 FindBestChain + 48
15 com.apple.QuickTime 0x8faca7b8 ICMSequenceGetChain + 444
16 com.apple.QuickTime 0x8fac4b4c DoBandedDecompress + 4200
17 com.apple.QuickTime 0x8fb3fb98 ICMAction_aligned + 1308
18 com.apple.QuickTime 0x8fac38e0 ICMDeviceLoop + 3456
19 com.apple.QuickTime 0x8fac9dfc DecompressSequenceFrameWhen + 860
20 com.apple.QuickTime 0x8fafb224 DecompressSequenceFrameS + 20
21 ...ickTimeComponents.component 0x8f097b2c importGraphicDrawInternal + 1476
22 ...ickTimeComponents.component 0x8f0992d0 importGraphicDrawOrDecide + 2116
23 ...ple.CoreServices.CarbonCore 0x90be1ae0 CallComponentFunctionCommon + 1016
24 ...ple.CoreServices.CarbonCore 0x90be1684 CallComponent + 260
25 ...ple.CoreServices.CarbonCore 0x90be1684 CallComponent + 260
26 com.apple.QuickTime 0x8fafb05c GraphicsImportDraw + 32
27 cx.c3.xee 0x0000d1c0 -[XeeQuicktimeImage loadFromIndex:count:] + 616 (crt.c:355)
28 cx.c3.xee 0x0000ced4 -[XeeQuicktimeImage load] + 56 (crt.c:355)
29 cx.c3.xee 0x00017ed4 -[XeeDirectoryController imageLoader:] + 288 (crt.c:355)
30 com.apple.Foundation 0x92977194 forkThreadForFunction + 108
31 libSystem.B.dylib 0x9002ba68 _pthread_body + 96

Thread 4 crashed with PPC Thread State 64:
srr0: 0x000000009084e36c srr1: 0x100000000002d030 vrsave: 0x0000000000000000

cr: 0x84828418          xer: 0x0000000000000000   lr: 0x00000000907ca0fc  ctr: 0x000000009084e36c
r0: 0x00000000907ca0fc r1: 0x00000000f0201a40 r2: 0x00000000a07c2f44 r3: 0x0000000000720069
r4: 0x0000000000000000 r5: 0x000000000000001b r6: 0x0000000000000020 r7: 0x000000000000000e
r8: 0x696e642065786563 r9: 0x0000000000000000 r10: 0x0000000005d0021d r11: 0x0000000000000000

r12: 0x000000009084e36c r13: 0x0000000000000000 r14: 0x00000000f0202450 r15: 0x0000000000000002
r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x000000009087c66c r19: 0x00000000a07c1150
r20: 0x0000000005c10400 r21: 0x0000000000000001 r22: 0x00000000f0201da0 r23: 0x0000000000000000
r24: 0x00000000f0202450 r25: 0x0000000000000000 r26: 0x000000000000001c r27: 0x000000000000001c
r28: 0x00000000f0201dbc r29: 0x0000000000000000 r30: 0x00000000f0201a40 r31: 0x00000000907c9108

223 Name: !WAHa.06x36 : 2006-04-29 12:44 ID:OmtsthcK [Del]

>>222

Is that reproducible?

224 Name: Anonymous : 2006-05-30 17:28 ID:I+49p+4q [Del]

Could Applescript support be added? There's a few programs out that allow remapping of the Apple remote control via Applescript and I've been trying to get them to work with Xee. Right now, I'm just sending key codes to Xee and it works fine for paging up and down but doesn't work with scrolling around the image. Having an Applescript interface would be cleaner than sending key codes.

225 Name: !WAHa.06x36 : 2006-05-31 03:31 ID:OmtsthcK [Del]

>>224

Not a bad idea, but I have no idea how to do it. If I can find some time to work on it, I'll try adding it. What kind of commands would be useful, besides next/prev image?

226 Name: Anonymous : 2006-05-31 19:21 ID:I+49p+4q [Del]

>>225
Off the top of my head, here are the actions I would map to my remote control: next/previous image, scroll image up/down/left/right b x pixels/percent, toggle fullscreen, zoom in/zoom out.

On a related note, will you implement bicubic/cubic zoom and is there an update on the universal binary situation?

227 Name: !WAHa.06x36 : 2006-06-01 04:17 ID:Heaven [Del]

>>226

I might implement a better scaling-down algorithm at some point, but due to the OpenGL use it's not a trivial thing to do. For scaling up, no.

And I still don't have an Intel machine to develop a universal binary on.

228 Name: Anonymous : 2006-06-01 16:25 ID:I+49p+4q [Del]

>>226
Actually, would there be any immediate advantage to getting Xee to be univerisal?

229 Name: Anonymous : 2006-06-01 16:48 ID:Y4+OZ9yz [Del]

Could we have an option for image list sorting? i.e. sort by name, modification date, creation date, kind, size.

230 Name: !WAHa.06x36 : 2006-06-01 18:38 ID:OmtsthcK [Del]

>>229

Yes, that is somewhere on the todo list. Ideally, I'd like it to detect the sorting order used in the Finder window it was launched from, but I'm not sure how realistic that is.

231 Post deleted by user.

232 Name: nina : 2006-06-05 09:54 ID:QyTBGx/F [Del]

Xee on MacBook

hi!

Xee work on my new MacBook a little slower (I had an iBook before...) and it's not posslibe to rotate the image (jpg rotation left or right). the system crahes and I have to restart!

I hope there will be an intel-version in the future, I won't miss my default picture-viewer ;)

best wishes
nina

233 Name: !WAHa.06x36 : 2006-06-05 13:21 ID:Heaven [Del]

I hope so too, but it most likely won't happen until I manage to actually get an Intel Mac to develop on.

If you want an Intel version quickly, buy me one!

234 Name: nina : 2006-06-05 17:55 ID:QyTBGx/F [Del]

hi!

if I had the money I would ;)

nina

PS: Xee is really the best picture viewer and I don't use preview anymore

235 Name: sunspot : 2006-06-29 10:09 ID:pvIhqvYX [Del]

Couldnt somone who has a Intel Mac compile it for you?

236 Name: sunspot : 2006-06-29 10:10 ID:pvIhqvYX [Del]

There are lots of developers over at macrumors.com forums

237 Name: !WAHa.06x36 : 2006-06-29 10:24 ID:OmtsthcK [Del]

>>235

It's not a simple recompile, or I would have done it myself a long time ago. There are possible endianess issues in a lot of the image loading code, and I couldn't guarantee the Intel version would work right without doing some rather extensive testing and bugfixing.

238 Name: Anonymous : 2006-06-30 15:59 ID:QLtbLROJ [Del]

is there a way for images to open actual size instead of fit to window? other than that i have no complaints.

running on a Macbook btw.

239 Name: !WAHa.06x36 : 2006-07-01 08:03 ID:OmtsthcK [Del]

View -> Automatic Zoom

240 Name: Anonymous : 2006-07-01 09:15 ID:QLtbLROJ [Del]

sweet.

this app is exactly what i have been looking for. i was actually planning to write one myself because i couldn't find one, but someone suggested this. i can say that it is exactly what i had in mind.

241 Name: Anonymous : 2006-07-08 01:01 ID:3N6Gz/c5 [Del]

I really think FFArchive should be integrated into Xee, with recursion for archives within archives, ideally. I'll try to look into how to go about it.
I would like to request an Open Recent menu item. And some comments in the code.

242 Name: !WAHa.06x36 : 2006-07-08 05:33 ID:Heaven [Del]

>>241

Don't bother, I'm planning on doing that, but I won't be using FFArchive, I'll use XADMaster from The Unarchiver instead (http://wakaba.c3.cx/sup/kareha.pl/1125697859/).

243 Name: zlinx0 : 2006-07-12 03:15 ID:3vagAC0W [Del]

this is really great!!!!!!!!!!!
but, How about nef files...?(RAW format for Nikon cameras)

244 Name: !WAHa.06x36 : 2006-07-12 09:50 ID:OmtsthcK [Del]

>>243

There was some discussion about that in the support thread (http://wakaba.c3.cx/sup/kareha.pl/1132091963/). After some research, I've learned that there's some sort of bug in OS X that breaks NEF loading in most programs even though it should be supported. I'm working on working around this, but I can't say exactly when I'll have it fixed.

245 Name: Denis : 2006-07-18 01:35 ID:iD+01rvA [Del]

THANK YOU SO MUCH!!!!

I have spent hours looking for a app like xsee.

It is beyond belief that not one but you guys have written an image app for os x, that actually works.
I'm on my knees thanking you.

A word of advice; make an interface like the internal viewer, and start making some money on this app, it's worth it.

cheers

246 Post deleted by user.

247 Post deleted by user.

248 Name: Bruno : 2006-07-21 23:13 ID:DdmmNmMo [Del]

Xee is listed on the new community-based software tracking site, http://osx.iusethis.com/app/xee

Dan, you should log on to claim the Xee entry as your own and submit a proper icon for it.

Denis: interface like the internal viewer? Do you mean "Preview.app?" If so, that would defaul the whole point of Xee. It's the best viewer with the best interface available for Mac OS. Changing the interface would only lessen its sgrengths. Preview's interface is sub-par. BTW, I had spent years looking for Xee on the Mac.

249 Name: !WAHa.06x36 : 2006-08-01 05:53 ID:OmtsthcK [Del]

Well, I found a bit of spare time to work on Xee again.

http://wakaba.c3.cx/releases/mac/Xee2.0_alpha_1.zip

New in this version:

  • Universal binary - this is completely untested!
  • Internal rewrites to make it easier to get the endianness right, and to better support ImageIO.framwork - this has most likely introduced bugs!
  • Now uses ImageIO.framework as a fallback loader instead of NSImage.
  • Due to the above, NEF files should now load correctly.
  • Now uses a custom JPEG loader - doesn't support YUV mode yet.
  • Supports 32-bit integer and floating point data (HDR files like Radiance)
  • Some things are still broken due to the rewrites, most notably viewing images in the clipboard, and saving.

I predict that the development cycle for 2.0 will be quite long. I'll try and get the things that are broken fixed along the way, but I don't think I'll release an intermediate 1.3 version with just the endianness fixes, unless there is a really big demand for a stable universal version quickly. The 2.0 alpha versions should be stable enough for normal use soon.

250 Name: !WAHa.06x36 : 2006-08-01 05:57 ID:OmtsthcK [Del]

And remember, you can report bugs and suggest features at http://code.google.com/p/xee/, too!

251 Name: Adam Betts : 2006-08-02 06:31 ID:BlSs0uyd [Del]

If anyone is interested in different icon for Xee, I did an icon replacement including status bar icons.

http://www.artofadambetts.com/weblog/?p=119

Have fun :)

252 Name: !WAHa.06x36 : 2006-08-02 12:15 ID:OmtsthcK [Del]

>>251

I like the program icon, but I miss the colour-coding of the format icons (this is something I liked with ACDSee back on Windows, and that I wanted to preserve in Xee).

Xee has a mechanism to easily replace its icons - you can pack them in a bundle named .xeeicons, like so: http://wakaba.c3.cx/releases/mac/Default.xeeicons.zip. However, that doesn't include the status icons. I could pretty easily add support for that too, though. I'll try to get that done for 2.0.

253 Name: !WAHa.06x36 : 2006-08-03 19:00 ID:OmtsthcK [Del]

Here's something fun and experimental: Antialiasing, implemented entirely in OpenGL! It's fast, although at high levels it can mess with the colours a little (this may be dependent on the graphics card). Either way, it looks a lot better than what's been there before. Enjoy!

http://wakaba.c3.cx/releases/mac/Xee2.0_alpha_2.zip

254 Name: !WAHa.06x36 : 2006-08-03 19:01 ID:OmtsthcK [Del]

Also: You can tweak it a bit in the View -> Antialias Quality menu. And it doesn't work on really old cards like the Rage 128.

255 Name: dasepsilon : 2006-08-04 02:33 ID:cAiJpBSx [Del]

alpha 2 does "crash" my intel 10.4.7,
i can move the mouse but it shows the rainbow-ball
and whatever key i hit (incl. ctrl-alt-esc)
or pixel i click, nothing happens. but the computer
still continues to run (e.g. thunderbird checks mails).
where can i get the sourcecode for alpha 2, so to
try to debug? (nothing at code.google.com :( )

256 Name: dasepsilon : 2006-08-04 02:35 ID:cAiJpBSx [Del]

sorry, forgot to mention, that this happens only
with certain jpgs (but a lot of them).
i was able to see two photoshop files.

257 Name: !WAHa.06x36 : 2006-08-04 05:37 ID:OmtsthcK [Del]

The new JPEG loader is still half-done. I haven't found any problems like that with it, but it certainly is possible that it has some horribl bugs. Upload one of the JPEG that it crashes on, and I can do some more testing.

258 Name: !WAHa.06x36 : 2006-08-04 05:38 ID:Heaven [Del]

Also, there's no source at Google Code becuase I haven't found the energy to figure out how to get Xcode and Google Code to cooperate. If someone can tell me how exactly to do this, I'll get it there.

259 Name: Adam Betts : 2006-08-04 08:35 ID:BlSs0uyd [Del]

>>252

If you're interested, I did a color-coding version for Document icons. You can download it here:

http://homepage.mac.com/adambetts/icons/XeeDocumentFiles.zip

260 Name: !WAHa.06x36 : 2006-08-04 09:44 ID:Heaven [Del]

>>259

Nice, but I think you need 48x48 versions. They're pretty much unreadable with the crappy resizing algorithm the Finder uses as it is now, and 48x48 is pretty much the default.

261 Name: dasepsilon : 2006-08-04 12:37 ID:cAiJpBSx (Image: 1024x768 jpg, 64 kb) [Del]

src/1154720269268.jpg: 1024x768, 64 kb

actually i believe it crashes with all jpegs.. :)
but one example is here.
the window pops up, but stays black,
status line says "no file loaded",
mouse and keyboard completely shut off,
but osx itself did not crash.
only reseting helps.

262 Name: !WAHa.06x36 : 2006-08-04 13:40 ID:OmtsthcK [Del]

>>261

That's very strange, it loads with no problem at all here. Could you test some GIFs and PNGs and such to see if there's any other format that can cause the same crash? When it crashes, can you switch away to another app with command+tab?

And finally, I forget, is there some way to force an app to load using Rosetta on intel macs? If there is, could you try that and see if it works then?

Wait, one more idea: Maybe it's not JPEGs, but the antialiasing code? It only gets used if the image is scaled down. Try using View -> Antialiasing Quality to turn it off and see if that changes anything.

263 Name: dasepsilon : 2006-08-05 07:55 ID:bAtS/8eh [Del]

yes, that did it!
(though its strange, that one cannot turn off
antialias when viewing no picture, had to first
load an png).
there is a way to force an application to use
rosetta, just by turning rosetta on (if the
app is universal) in the "get info" window.
i'll now try xee in rosetta and antialias ON.
if it crash, this is my last message for today :)

thanks!

264 Name: dasepsilon : 2006-08-05 12:32 ID:bAtS/8eh [Del]

well, it really "crashed" even with rosetta!..
and cmd+tab doesnt work neither.

265 Name: !WAHa.06x36 : 2006-08-05 13:10 ID:OmtsthcK [Del]

So then it's the OpenGL antialiaser that's broken. Sigh, it'll be a pain trying to debug it without the hardware to test it on...

266 Name: dasepsilon : 2006-08-06 00:53 ID:pY5ugsfP [Del]

sorry for finding a bug :p :p
if there is anything i can do, just write.
i'll try to check this forum regularly.

267 Name: fajaekel : 2006-08-15 05:51 ID:e6wjCjWa [Del]

great app!
but why is no german localisation available? i could do the translation if you want. ichat: fajaekel

268 Name: !WAHa.06x36 : 2006-08-15 08:19 ID:Heaven [Del]

Once 2.0 is nearing completion, I'll probably request some translations. I'll try to keep you in mind for then.

269 Name: Ibane : 2006-08-16 06:27 ID:Mfbid10h [Del]

I can make the spanish location

270 Name: Fruitarmigan : 2006-08-19 05:03 ID:pMPcyGYi [Del]

Ibane just beat me to offering help with Spanish localization. :)

I've been hunting for a real ACDSee replacement for years now, and I only found Xee today sigh. Thanks for this wonderfully useful application.

271 Name: Alan : 2006-08-19 20:44 ID:fjBpsXJw [Del]

There is any way to change the scroll wheel behaviour? I have a mighty mouse and i like to use the mini ball to pan the image when zoomed. Using it for changing images it's a bit hard and I don't use it at all..

Thanks

272 Name: johan : 2006-08-20 07:15 ID:NkC1zr8b [Del]

wanted to try a universal version for my macbook and downloaded Xee2.0_alpha_2.zip
sadly, it crashes my macbook everytime :((

273 Name: !WAHa.06x36 : 2006-08-20 19:22 ID:Heaven [Del]

>>272

Read the earlier posts in the thread - the antialiaser breaks on Intel Macs for some reason. You have to turn it off either by opening a small image and using the menus.

274 Post deleted by user.

275 Name: crispin webb : 2006-08-21 07:59 ID:TOPcooMO [Del]

hey i love this app been looking for something to replace preview for about two years this is amazing and fast even with large images.. i have been using iview media pro but i think this makes muchmore sense to me amazing software and thanks for making it freeware...
i have a couple of suggestions for usability
mabey make a drawer function like preview on the side or the bottom so you can click between images..

and mabey a control bar in full screen that you can hide

if ound a contextual image viewer thats pretty good but not as good as xee its called picturepoppro its worth alook for ideas

thanks again im telling everyone about this app..
also i saw someone mention side track for the scroll pad functionality I use iscroll wich is freeware and amazing as well

thanks again awesome

crispin

276 Name: !WAHa.06x36 : 2006-08-21 08:06 ID:Heaven [Del]

>>275

I'm not really very interested in having a thumbnail view, because the finder already shows thumbnails, and it'd just waste processing power for images that don't have built-in thumbnails.

A control bar in fullscreen would be nice, but I have a lot of other stuff I need done before that.

277 Name: Olivier : 2006-08-21 14:42 ID:QSXnoz16 [Del]

>>199

Automatic rotation actually modifies the file? That's really a bad idea. I don't expect a viewer to alter my files.

278 Name: Alan : 2006-08-21 15:51 ID:gk0MTTFP [Del]

Hello again,
Is there a way to have xee open only the files i put on it's icon instead of making a list of files that there are in the same folder of the file i put on it?

I mean, the preview behaviour instead of the "Windows image viewer" behaviour..

Thanks

279 Name: !WAHa.06x36 : 2006-08-21 16:06 ID:Heaven [Del]

>>277

That's what lossless JPEG rotation does, in most image viewers that can do it.

>>278

No. I find the Preview behaviour pretty useless, so it's never interested me.

280 Name: Alan : 2006-08-21 17:20 ID:gk0MTTFP [Del]

Maybe an option to get the dropped images or the image in the same folder? No?

281 Name: Guntis : 2006-08-22 02:58 ID:32a7wcfN (Image: 493x78 jpg, 9 kb) [Del]

src/1156240705967.jpg: 493x78, 9 kb

>>259
Can you improve "Xee Document Files" icons? At 44px size I can hardly recognize BMP from EC and EXR from DR...
Maybe make file type letters bigger, or embed specific 48px, 32px and 16px size icons? I think each icon could have several sizes embedded.
Guntis

282 Name: Anonymous : 2006-08-22 04:05 ID:3N6Gz/c5 [Del]

Quitting from fullscreen causes a crash in the latest beta.

283 Name: !WAHa.06x36 : 2006-08-22 07:41 ID:Heaven [Del]

>>282

Thanks, I think I was vaguely aware of that but had forgotten.

If you (and anyone else) want to be helpful, make a bug report at http://code.google.com/p/xee/issues/list, and I will be less likely to forget again.

284 Post deleted by user.

285 Name: Albright!LC/IWhc3yc : 2006-08-22 09:59 ID:aqkfCajf [Del]

>>259
Looks like this dude did some more artwork tweaks of Xee. http://www.artofadambetts.com/weblog/?p=119

Mention of this made it into a TUAW article (how I found out about it). http://www.tuaw.com/2006/08/22/betts-mods-your-mac/

286 Post deleted by user.

287 Name: Anonymous : 2006-08-22 13:53 ID:Heaven [Del]

>>285

Uh... Look a little bit closer.

288 Name: Albright!LC/IWhc3yc : 2006-08-22 20:16 ID:Heaven [Del]

I'm sorry, look a little bit closer at what?

289 Name: Alan : 2006-08-22 20:44 ID:gk0MTTFP [Del]

The "dude" you're talking about is the same who posted the icons here :)

290 Name: Albright!LC/IWhc3yc : 2006-08-22 20:51 ID:Heaven [Del]

I'm aware of that. Should I have written "Looks like you did some more artwork?" That would have been confusing.

Anyway, uh, on topic… Is Google Code's hosting thinger any good?

291 Name: Anonymous : 2006-08-22 21:02 ID:r1hqdvyb [Del]

It can't be any worse than free hosting on sourceforge.

292 Name: !WAHa.06x36 : 2006-08-23 05:36 ID:Heaven [Del]

It had a shaky start but it's apparently working better now. Their bug tracker is actually kind of usable, as opposed to every other bug tracker in existence. The design of it is pleasantly minimalist. The project's headed by the usual kind of thin-skinned and arrogant open-source developers.

Short, declarative sentences.

293 Name: Mouloud : 2006-08-25 08:33 ID:OIt2qgDi [Del]

Really good software ! I was looking for that for a very long long time ! it was the last thing my PC friends was laughing at me...
A few improvment idea :

  • a preference option to go directly to full screen mode on opening
  • arrows to navigate
  • double-clic on the image to swich full screen/window
  • selection-clic to zoom

Anyway, thanks a lot, it's really a big step forward for mac users :+)

294 Name: Ionut : 2006-08-28 05:34 ID:39UnbRHr [Del]

Problems displaying huge tiff files. I have 2 screenshots to see the differences, where can i send them?

295 Name: Anonymous : 2006-08-28 07:55 ID:pAhc1XOi [Del]

>>294 this board has an upload feature, just below the comment box.

296 Name: Ionut : 2006-08-29 01:33 ID:39UnbRHr (Image: 1440x900 jpg, 280 kb) [Del]

src/1156840437391.jpg: 1440x900, 280 kb

this is the first picture is viewed with Mac os internal Preview. It looks good, attached.

297 Name: Ionut : 2006-08-29 01:36 ID:39UnbRHr (Image: 1440x900 jpg, 310 kb) [Del]

src/1156840575257.jpg: 1440x900, 310 kb

this is the same picture, is viewed with Xee, there is major differences from Preview. look for yourself. print screen with details about the picture included.

298 Name: !WAHa.06x36 : 2006-08-29 03:34 ID:OmtsthcK [Del]

>>297

How does it look if you open it with Quicktime.app?

299 Name: Ionut : 2006-08-31 05:58 ID:39UnbRHr (Image: 1440x900 jpg, 276 kb) [Del]

src/1157029105970.jpg: 1440x900, 276 kb

With Quicktime the same file looks the same as Xee. Meening bad. Here is the screen shot.

300 Name: !WAHa.06x36 : 2006-08-31 09:37 ID:OmtsthcK [Del]

>>299

Well, that explains the problem - Xee first tries to load images it can't load itself with Quicktime, and apparently Quicktime gets it wrong.

Ideally, you'd report this to Apple and they would fix it. Realistically, I'm not sure they would do much about it for a long time.

Alternatively, I'd have to force Xee to load TIFFs with NSImage or ImageIO.framework, but I am not sure how well that handles other features like multi-layer TIFF. So basically, it's a tricky problem to solve.

Even more ideally, I would write my own TIFF loader that would always do the right thing, but practically, I don't have the time to do this, since TIFF is a horribly complex format. Although maybe LibTIFF could do it...

So sorry, I don't have a simple solution. I'll think about it. In the meanwhile, you could try reporting the bug in Quicktime to Apple, and see if they bother doing anything about it.

301 Name: Ionut : 2006-09-01 03:58 ID:39UnbRHr [Del]

Thank you for your answers. I will try to get to Apple with Quicktime problem but also i hope to see Xee doing the right job.

Thanks again.

302 Name: starless : 2006-09-03 06:34 ID:1Hh93gG1 [Del]

Thank you for this great application, I remapped the keys to my likings and always use it to browse through photos just downloaded from my camera. I like the possibility to set zoom to 1:1 pixel with a keypress, and then scroll around with the mouse. And it's fast!

I'd like to try 2.0 alpha, but I have a question: will it overwrite my current Xee preferences and/or make them unusable with 1.x versions? In other words, can I have both versions installed at the same time without them interferring with each other?

I'd also like to be able to see current image's exif data (e.g. in a popup window when in full screen) by pressing a key... would it be hard to add such a feature?

Thanks.

303 Name: !WAHa.06x36 : 2006-09-03 08:18 ID:OmtsthcK [Del]

>>302

You can use them both side by side - 2.0 adds some new preferences, but doesn't break the old ones. And I am actually working on EXIF right now.

304 Name: Anonymous : 2006-09-03 20:23 ID:jyHQ0ZAF [Del]

Small interface bug report:
Tested with version 2.0 alpha 2 on PPC
On the Copy/Move drawer, when dragging an item off the list and pressing escape while still dragging, the item is removed from the list. The expected behavior would be for that element to snap back in place (it's that way everywhere else and I think it's mentioned in the HIG).

Anyway, I really like the direction Xee is taking. With all those feature requests, it's nice to see that you don't intend to go all ACDSee on it in the next versions.

305 Name: Ionut : 2006-09-04 00:50 ID:39UnbRHr [Del]

I asked people in Apple forum about those TIFF files. Quicktime can't display CYMK images, only RGB ones. This is it: http://discussions.apple.com/thread.jspa?threadID=623165&tstart=15

306 Name: Anonymous : 2006-09-04 02:36 ID:3+aYsvjs [Del]

Vow,

implement simple thumbnail mode and simple folder bar and you created the best image browser ever!

Thumbs up!

Ta.

307 Name: !WAHa.06x36 : 2006-09-04 04:26 ID:OmtsthcK [Del]

>>304

I'll try to get that fixed.

>>306

Since the Finder already has a thumbnail mode, I don't see why an image viewer would also need it.

308 Name: 307 : 2006-09-07 06:01 ID:QyTBGx/F [Del]

I checked the new beta on my intel-macbook
Looks good..., but it crashes when I try to rotate a picture (rainbow-ball and I need to restart)

PS: I don't want/need a thumbnail mode - there are enough picture viewers with this feature and that's why I like Xee ;)

309 Name: !WAHa.06x36 : 2006-09-07 08:19 ID:Heaven [Del]

>>308

Probably the same problem as everyone else, turn off antialiasing in View -> Antialiasing.

Next version will have it off by default unless I can find an intel mac to debug it on. I really don't think it should even be possible to cause a bug like that, though, so I'm going to put some blame for that on Apple and buggy drivers.

310 Name: starless : 2006-09-14 05:43 ID:FLWcG6M0 [Del]

Testing v2 beta on OS 10.4.7 PPC (iBook G4 1GHz), seems ok but it looks slower than 1.x when browsing pictures: I usually drag a photo folder on the application icon and then browse through photos one at a time, and with v2 very often I see a black area at the bottom of the screen immediately after advancing to the next photo, which is then filled up with the corresponding photo part; looks as if the photo still has to be completely drawn (or loaded?) when I'm already viewing it.
This didn't happen with v1.x. I tried deactivating antialiasing but it made no difference.

311 Name: !WAHa.06x36 : 2006-09-14 06:27 ID:6THb/Qdo [Del]

>>310

With 1.x, you'd just have seen a completely black screen for about the same amount of time. I'm trying to get progressive loading working properly so you can see the picture as it loads.

312 Name: starless : 2006-09-14 13:35 ID:FLWcG6M0 [Del]

>>311

Well yes with 1.2.1 sometimes I see a black screen for a brief moment, but I can assure you that, globally, browsing the same folder with 1.2.1 is clearly much faster than it is with 2.0 alpha 2 (without antialiasing).
Maybe the 2.0 code is not optimized yet?

313 Name: Anonymous : 2006-09-14 13:40 ID:QyTBGx/F [Del]

Ah, I turned off antialiasing and now it works (rotating images)!
Thank you very much ;)))

314 Name: !WAHa.06x36 : 2006-09-14 14:13 ID:OmtsthcK [Del]

>>312

Some quick testing on just the JPEG loading code I did earlier showed that it is slightly faster than that in 1.2. However, I think that was testing code from later than alpha 2. Whenever I finally finish the next version, try again and see how it seems.

315 Name: jb : 2006-09-18 03:16 ID:N8rV342p [Del]

The alpha 2 causes my whole system to freeze and I need to reboot.
hope you get a intelmac to develop on soon.

316 Name: tom : 2006-09-28 08:05 ID:Ikf68vHR [Del]

great little tool. would love to have a simple slideshow-function like irfanview. zooming pictures looks quite bad compared to other tools. any way to improve that by some s-spline code or something like that?

317 Name: !WAHa.06x36 : 2006-09-28 08:48 ID:Heaven [Del]

>>315

Read the earlier posts about how to work around that.

>>316

No, it's not that easy, since the drawing is done with OpenGL. The 2.0 alpha has some trickery to produce prettier zoomed out pictures, though.

If you're referring to the zoomed in pictures, those are intentionally left pixelized, because I, at least, want to actually see the pixels in a picture when I zoom it.

318 Name: greg : 2006-09-29 09:21 ID:Z15KZ9/v [Del]

How do we keep the "auto rotate" setting? There is no point in having to do that for every picture. It should remain the setting!

319 Name: Andrew : 2006-09-30 16:54 ID:siVCZjrJ [Del]

Just thought I'd upload a universal version of Xee 1.2.1. I couldn't find one and I can't stand the Rosetta load time. YUV decoding doesn't seem to work so go into prefs > advanced and set it to use RGB.

Here's a link:

http://rapidshare.de/files/35040937/Xee.app.zip.html

Can't wait for the anti-aliasing build, though I checked out preview and it doesn't seem to anti-alias either. It only seems to do that for PDF documents. Xee alpha 2 crashed my Intel Mac too as soon as it launched. You'd have thought there would be some way that the system would auto-recover from a graphics driver crash.

320 Name: Andrew : 2006-09-30 16:59 ID:siVCZjrJ [Del]

Sorry about using Rapidshare. For those of you who don't know how to use it, you have to click the button that says free and then wait for the timer to count down and then input a code. It should download the zipped program that is about 1MB in size.

321 Name: vim : 2006-10-01 12:54 ID:fbc8oraX [Del]

--please forgive my poor english--
hi, i really like your app, it's great.
i have some suggestions. i noticed xee when i was searching an qiv alternative for the mac. so i would be really happy with some shell support like qiv. for example something like xee find . -name "*.jpg" to function would be great. (i found an workaround with open but it doesn't open all the pics given on the command line - just one and you can then browse the folder). another interesting feature would be an open dialog like the "go to folder" (don't know exactly the english local.) in the finder with path completion. i could think of much more... ;-)
thanks for the app! keep on coding.

322 Name: !WAHa.06x36 : 2006-10-01 13:24 ID:OmtsthcK [Del]

>>319

There's a lot more than YUV that doesn't work. I'm pretty sure 32-bit PNGs won't work right either, and probably a bunch of other stuff.

To make alpha 2 work, run this in Terminal:
defaults write cx.c3.xee antialiasQuality 0

>>321

Xee won't open several windows for files in the same directory by default. You can change this in the preferences if you prefer it to always open new windows.

323 Name: Andrew : 2006-10-01 14:50 ID:siVCZjrJ [Del]

I just tested some 32-bit PNGs and they work ok. So far, I haven't found any problems compared to the PPC versionapart from YUV but I'll post if I find anything. I'd like to use alpha 2 but I don't want to rely on a preference to prevent my system crashing.

On the subject of the anti-aliasing, are you using the same techinques that games designers use for FSAA? Surely there must be a way to prevent it from crashing the system in order to debug it.

I also found this about OpenGL antialiasing:

http://homepage.mac.com/arekkusu/bugs/invariance/FSAA.html
http://homepage.mac.com/arekkusu/bugs/invariance/TexAA.html

Texture AA would work since you are dealing with quads.

Here's some Apple documentation on FSAA. You probably know about this stuff already but I thought I'd post it just in case:

http://developer.apple.com/documentation/GraphicsImaging/Conceptual/OpenGL-MacProgGuide/opengl_fsaa/chapter_11_section_1.html#//apple_ref/doc/uid/TP40001987-CH405-SW7

324 Name: !WAHa.06x36 : 2006-10-01 15:11 ID:Heaven [Del]

No, FSAA is pretty weak for antialiasing, and it's not supported on older cards anyway. I use other trickery, but there isn't really anything in there that should be able to crash the system, except maybe that I use all texture units. Of course, nothing should be able to crash the system in the first place, so something is definitely strange.

325 Name: vim : 2006-10-02 09:01 ID:M8jvaSK2 [Del]

you misunderstood me, sorry.
the behaviour not to open many windows is good. what i wanted was something like a playlist - not just looping through the directory. maybe giving xee a file as playlist, or - as i meant - to give xee in the Terminal some files as argument: xee /dir1/file1.jpg /dir2/file2.jpg /dir2/file3.jpg /dir3/file4.jpg ...

326 Name: Doctroid : 2006-10-05 08:15 ID:ilpUgMdO [Del]

Hi, I have a need for an image viewer that does something a little different from what Xee does -- unless I'm overlooking something. I sometimes use JSTOR, which is a service that serves scanned pages of old journals in GIF or JPEG format. I can save pages into a folder and then use a viewer to read them offline. Problem is, Xee opens images sized to fit the screen. So I have to cmd-0 to make the page legible, then arrow up to top of screen and start reading. At end of page I go to the next page... and Xee sizes it to the screen again, so I have to cmd-0 and arrow up to the top again, for every page. What I'd like is really two things: (1) once I've established a magnification, use it for all subsequent images unless I change it, and (2) concomitant with that, when I go to the next page, I want to be looking at the TOP of the next page (and for previous page, the BOTTOM of the page). I can understand why one might not want that mode of operation when looking at a folder full of pictures, but for this particular case of looking at scanned articles, Xee's behavior is annoying. So I guess I either need an "article mode" in Xee, or a different viewer. Suggestions?

327 Name: Doctroid : 2006-10-05 08:19 ID:ilpUgMdO [Del]

Hi, I have a need for an image viewer that does something a little different from what Xee does -- unless I'm overlooking something. I sometimes use JSTOR, which is a service that serves scanned pages of old journals in GIF or JPEG format. I can save pages into a folder and then use a viewer to read them offline. Problem is, Xee opens images sized to fit the screen. So I have to cmd-0 to make the page legible, then arrow up to top of screen and start reading. At end of page I go to the next page... and Xee sizes it to the screen again, so I have to cmd-0 and arrow up to the top again, for every page. What I'd like is really two things: (1) once I've established a magnification, use it for all subsequent images unless I change it, and (2) concomitant with that, when I go to the next page, I want to be looking at the TOP of the next page (and for previous page, the BOTTOM of the page). I can understand why one might not want that mode of operation when looking at a folder full of pictures, but for this particular case of looking at scanned articles, Xee's behavior is annoying. So I guess I either need an "article mode" in Xee, or a different viewer. Suggestions?

328 Name: !WAHa.06x36 : 2006-10-05 11:49 ID:OmtsthcK [Del]

View -> Automatic Zoom.

329 Name: Doctroid : 2006-10-06 05:43 ID:EX2XudrF [Del]

Sorry about the duplicate post; the board was acting weird yesterday. Maybe it always acts weird. We'll see.

I hadn't noticed the Automatic Zoom menu option (I'd been looking in Preferences). With that turned off, it does something like what I want. Not quite. It opens each new image at unit magnification, centered on the top leftmost part of the image. What I would like is for the new image to open at the same magnification as was used for the previous image. (I realized I talked about using cmd-0 on each page, but that was just an example; for some texts that is not be the ideal magnification.) And, ideally but not critically, when going back a page, it would centered on the bottom rightmost part of the image.

ALSO -- is there a way to turn off the "feature" where scrolling selects later/earlier images? I hate that. On my MacBook I'm so used to the idea that 2-finger dragging on the trackpad scrolls window content downward that I find myself doing it without thinking in Xee, instead of using the arrow keys... and I find myself looking at some later image in the folder rather than a lower part of the same image.

330 Name: Anonymous : 2006-10-08 19:46 ID:3N6Gz/c5 (Image: 1056x766 png, 47 kb) [Del]

src/1160362017517.png: 1056x766, 47 kb

>>283
I saw that you've been unable to reproduce my crash when quitting from fullscreen in 2.0 alpha 2. It's consistent for me, so here's a screen of the crash report. It looks like a NULL dereference.
I'd respond on the Google page, but I don't have an account.

331 Name: !WAHa.06x36 : 2006-10-08 19:52 ID:Heaven [Del]

>>330

I think it might have been fixed by some changes I made in the current development version. When I finally get alpha 3 ready, try reporting back if the crash is still there or not.

(PS: _deallocHardCore: is the best method name ever.)

332 Name: Chris Love : 2006-10-25 01:51 ID:NH8Nb5ts (Image: 1036x842 png, 579 kb) [Del]

src/1161766270842.png: 1036x842, 579 kb

Hi, I love XEE, but I have an intel iMac (Core 2 Duo) I compiled a universal binary with XCode, but .jpg files are wierd looking.

(look @ attachment)

I opened a .png file, and it worked fine.

Thanks for you help.

333 Name: Chris Love : 2006-10-25 01:53 ID:NH8Nb5ts (Image: 1045x787 png, 607 kb) [Del]

src/1161766425656.png: 1045x787, 607 kb

Here's what it's supposed to look like.

334 Name: !WAHa.06x36 : 2006-10-25 03:34 ID:OmtsthcK [Del]

>>332

Yes, that is why 1.2 is not Universal. You'll have to wait for 2.0, which will still take some time. There is an alpha version available, but you'll have to disable antialiasing or it will crash your machine. Check older posts in this thread.

335 Name: kadoma : 2006-11-04 01:10 ID:OG5YRKM9 (Image: 640x304 jpg, 40 kb) [Del]

src/1162631436933.jpg: 640x304, 40 kb

Xee is simple and efficient, Yeah! :-)

just one request , view an edit keywords (i.e. spotlight search)

Can you do that?

336 Name: brooks : 2006-11-06 18:38 ID:BMzEXxv+ [Del]

hew i tried the alpha.

on a ppc some really big jpgs only load half way.

and i could reallllllly use hotkeys to move to specific folders (as in, you assign a hotkey to a folder, and then press that hotkey to move an image there)

and maybe some kind of movie file handling (acknowledgement and handling of movies, not viewing them) so i can move them into folders like i would a picture)

337 Name: natty : 2006-11-07 20:42 ID:ZSND02hP [Del]

Hi, I'm enjoying Xee, and have two requests/suggestions regarding automatic JPEG rotation:
1) differentiate between displaying an image with auto-rotation applied, and performing lossless rotation on the image file. I didn't realize that "auto rotate" would change my files on disk, but I can see that was the result. (Such file modification should be obvious or pop up a warning, especially since it can't be undone.) I appreciate the option to perform lossless rotation on my files, but usually I'm primarily interested in viewing images at the proper orientation, without altering the files. I suggest two different functions for displaying/performing rotation.
2) Make "display with automatic rotation" a sticky option in the preferences, such that it's truly automatic (without user intervention on each JPEG image).

Thanks for an outstanding app.

338 Name: !WAHa.06x36 : 2006-11-08 03:38 ID:Heaven [Del]

>>337

I've been working on pretty much just that, but I lost the code in a drive crash. I'm working on re-creating it now.

339 Name: Concorde : 2006-11-16 03:28 ID:5xebM+xp [Del]

@ Chris Love

Xee Universal works great... just set in Pref -> Advanced -> RGB !!

not YUV... then the colors comes ok!

cya

340 Post deleted by user.

341 Name: !WAHa.06x36 : 2006-11-16 05:22 ID:Heaven [Del]

>>339

There are most likely other formats that do not work, even if you do that. .icns might be one.

342 Name: !WAHa.06x36 : 2006-11-18 10:37 ID:OmtsthcK [Del]

OK, Xee may seem like it's dead, but this is actually just because of me totally fucking up my development cycle, and suddenly starting to re-design several interal parts of the code at the same time, and then getting distracted by adding other new features on top of that, and then finally having a goddamn hard drive crash and losing like two months of work on the damn thing, and so on, and so on. Lesson learned: Release early, release often, and goddammit, upload the source too. So with that in mind,

http://wakaba.c3.cx/releases/mac/Xee2.0alpha3.zip

This version has been so long in development I forgot half of the stuff I did. I finally got my Intel mac so it's been fixed up to work correctly on Intel now, at least. However, I still couldn't replicate the antialiaser crash, so nothing has been done about that, except to disable antialiasing by defualt on Intel. If some brave people would try and see if it still crashes under 10.4.8 when they turn it on, that would be very helpful.

Other stuff I can remember:

  • Progressive image loading.
  • Support for EXIF and other metadata.
  • Rotation for any kind of image.
  • New saving code.
  • Updated JPEG loader.
  • Maya IFF loader.
  • Scroll wheel behaviour can be customized.
  • Scrolling keys can be customized.

Stuff that is broken in this version:

  • No lossless JPEG transforms. This is being re-written, because:
  • There is a crop option which doesn't do anything really useful yet. It will in the future, however, AND it will support lossless cropping for JPEGs!

343 Name: Anonymous : 2006-11-18 16:07 ID:3N6Gz/c5 [Del]

Works very well here, thanks.

344 Name: Tome : 2006-11-19 02:45 ID:MGm3cuQe [Del]

What ACDSee on Windows had was not only rotate pics but also store them losslessly again. Something for you to implement? Would be awesome!

Besides of that, it seems to work well on my MacBook Pro 17" Intel Duo Core. Great Job

345 Name: !WAHa.06x36 : 2006-11-19 05:29 ID:Heaven [Del]

>>344

That's what I'm working on now.

346 Name: Jason : 2006-11-20 08:47 ID:oxM/mVSY [Del]

Xee is awesome. It's just the app I've been looking for. Thanks so much for making this app available for us.

I've just tried Alpha 3, and I'm sorry to report the anti-aliasing is still crashing my Core 2 Duo MacBook, running on 10.4.8. :(

For what it's worth, I used to run Xee 2 Alpha 2 on my MacBook Pro, and the anti-aliasing never caused a crash on there. However, it has on this MacBook and the previous one that I exchanged for this one. So I'm wondering if it's related to the integrated 950 graphics chip?

If you'd like me to try any potential fixes, feel free to email me at "jason at resequenced dot com".

Thanks!

347 Name: !WAHa.06x36 : 2006-11-20 10:51 ID:OmtsthcK [Del]

> So I'm wondering if it's related to the integrated 950 graphics chip?

It's looking a whole lot like it. None of the Intel machines I've had try it have experienced any crashes, and none of them had the 950 chip.

348 Name: sa4zet : 2006-11-20 12:44 ID:4WTjcZtt [Del]

Xee is a BEST picture viewer for MAC!
Can you put a little option?
When open an image with Xee, then show me full screen automatically.
That's will be PERFECT!
Anyway thx for this cool software!

349 Post deleted by user.

350 Name: !WAHa.06x36 : 2006-11-20 14:45 ID:OmtsthcK [Del]

http://wakaba.c3.cx/releases/mac/Xee2.0alpha4.zip

Lossless JPEG transforms now work, including cropping - however, there is still no crop tool, so that's not very useful yet. However, this will come soon.

But right now, you can rotate an image, and when you select Save As, you have the option to save it without recompressing. EXIF data and thumbnail should be updated correctly, too.

351 Name: Jason : 2006-11-21 14:58 ID:vBmjqrpP [Del]

Awesome to see on the lossless tranforms. I will be making good use of that.

Just for kicks I made my computer crash with the antialiasing bug again, to see if maybe it was fixed by accident in alpha 4. :) Nope, still freezes the screen solid.

PhotoPresenter, Preview and iPhoto all managed to find a way to antialias (eg "resample" or "interpolate") downsized images on my 950 chip without crashing. Maybe you can ask the PhotoPresenter guys how they handled it?

Thanks again for the awesome app.

352 Name: !WAHa.06x36 : 2006-11-21 15:30 ID:OmtsthcK [Del]

>>351

It's easy if you use the normal, slow APIs. Xee uses OpenGL all the way, which makes it fast, but also makes antialiasing hard.

That said, there's nothing wrong with the code that is there now that I can think of, and I really suspect this is a bug in the 950 OpenGL driver, which I'll have to work around somehow.

353 Name: Frank : 2006-11-27 01:41 ID:RuTVK0KB [Del]

Great program! Are you going to release the source for Xee 2? I desperately need to display arbitrary exif tags in full screen mode.

354 Name: !WAHa.06x36 : 2006-11-27 05:17 ID:OmtsthcK [Del]

>>353

It's there in the same directory. If you're thinking of hacking it, be aware that since it's still in alpha, I'm doing some pretty big changes on it constantly, so keep me up to date if you want stuff included.

355 Name: garfield : 2006-11-29 12:01 ID:8jvbgH8u [Del]

Finnaly! Great program. I would be very usefull to configure xsee to open in fullscreen mode (like PhoenixSlides) and display important exif info transparent (like PhoenixSlides)

356 Name: bebe : 2006-11-29 18:41 ID:nvyxMkLy [Del]

Xee2.0alpha4.zip won't work with my Mac OS X 10.3.9 ?
After unzip, open the application but it just close itself (boucing at the dock for a second and disappear again).

Xee1.2.1.zip works though, but i want to try Xee2Alpha4 version.

357 Name: !WAHa.06x36 : 2006-11-29 18:46 ID:OmtsthcK [Del]

Now, here are some fairly big updates:

http://wakaba.c3.cx/releases/mac/Xee2.0alpha5.zip

  • The antialiaser crash on MacBooks should be fixed. I finally found a test machine, and found out that the OpenGL driver for the GMA 950 chipset really does seem to be broken. It reports having eight texture units, but if you try to use more than seven, it crashes. Workaround added, and bug filed with Apple.
  • Archive support. Xee can now load files out of any file format that The Unarchiver can read (except for tar.gz and tar.bz2 at the moment, as it needs extra code and doesn't seem useful). To make it work, you need The Unarchiver installed!
  • Realtime updates of the file list. Adding, renaming and deleting files (or the directory itself) should now be handled automatically!
  • Slightly updated look for the status bar. Still needs some better icons, though - any takers? Designing useful 16x16 icons is hard.

Some of the code is very untested. Please report any and all problems! The more testing you do, the better!

358 Name: !WAHa.06x36 : 2006-11-29 18:47 ID:Heaven [Del]

>>356

It probably doesn't support 10.3, no. I might fix that later, but it's hard since I don't have a 10.3 machine to do testing on.

359 Name: bebe : 2006-11-30 03:36 ID:nvyxMkLy [Del]

Oh... i'm outta luck then. Can only stick with version 1.2.1. T.T

360 Post deleted by user.

361 Name: !WAHa.06x36 : 2006-12-01 16:56 ID:OmtsthcK [Del]

Some requested features:

http://wakaba.c3.cx/releases/mac/Xee2.0alpha6.zip

  • Automatic slideshow
  • Looping images when browsing
  • Auto-fullscreen mode
  • Some bugfixes

All the new stuff is accessible from the menus (which have also been re-arranged a bit).

362 Name: Jason : 2006-12-02 10:53 ID:Idu/i/sR [Del]

Yes! The anti-aliasing problem on the MacBook is indeed fixed. Perfect.

Love the auto-fullscreen mode too. Finally, I feel like I've found a replacement for Irfanview. :)

Thanks again for creating such an awesome program. This will be a huge hit when it's done.

363 Name: DJ.HAN : 2006-12-03 18:45 ID:tTn5sHkS [Del]

Wow! Archive support is very nice feature. It's really great program. Thank you! :)
But if you add 'Show two pages' feature, xee will be best comic viewer.
Currently, I use cooviewer for archived comics file. I believe xee will replace cooviewer in near future. :D

364 Post deleted by user.

365 Name: aingoppa : 2006-12-03 22:41 ID:ZLmBxR+J [Del]

Thank a ton! Xee is the greatest viewer ever I've seen.

BTW, is it possible to view all the pictures rotated? It is, like a monitor itself is rotated. I have many pictures which was taken vertically. Instead of rotating each images, I just want them to be 'automatically rotated Clockwise or Counter-clockwise'.

Thanks again for great software.

366 Name: !WAHa.06x36 : 2006-12-04 04:18 ID:Heaven [Del]

>>365

Well, if your camera has an orientation sensor and writes the orientation data to the file, 2.0 can show it automatically rotated (turn this on in the advanced preferences). If it doesn't, there's currently no way to do that. I guess it would technically be possible to add support for that, but it's kind of a rare situation...

367 Name: Ian : 2006-12-04 17:25 ID:amJB3Hfg [Del]

How about an option to automatically move the mouse pointer to keep it on the toolbar button last clicked on? This would be handy for scrolling through directories of pictures of varying size without having to reposition the mouse on the 'Next picture' button.

368 Name: !WAHa.06x36 : 2006-12-04 18:29 ID:OmtsthcK [Del]

>>367

There is already the option to not resize windows when clicking in the toolbar, which is on by default. Moving the mouse pointer is generally a big no-no, user interface design-wise.

369 Name: !WAHa.06x36 : 2006-12-06 18:14 ID:OmtsthcK [Del]

Some polishing:

http://wakaba.c3.cx/releases/mac/Xee2.0alpha7.zip

Fixed some full-screen bugs, such as problems with animation. Viewing meta-data in fullscreen now works, and the metadata display is a bit prettier. Made the scroll wheel browsing work a bit better and fixed some pre-caching problems for random skipping.

370 Name: Barry : 2006-12-07 02:48 ID:hUivbIle [Del]

>>357

Adam Betts made replacement icons a while back (>>251 or http://www.artofadambetts.com/weblog/?p=119). They look really good.

371 Name: !WAHa.06x36 : 2006-12-07 03:20 ID:Heaven [Del]

>>370

I tried them earlier, but they don't quite do it for me. I might ask him for some changes and use them, though.

372 Name: garfield : 2006-12-08 13:15 ID:8jvbgH8u [Del]

it would be very usefull to display exif info transparent just like in PhoenixSlides

373 Name: Anonymous : 2006-12-09 06:45 ID:GkiaiGAC [Del]

Archive support! Wonderful. A little slow on first load, but a lot of formats are supported. Very nice update.
For an Open Recent menu, would you need to subclass NSDocumentController?

374 Name: !WAHa.06x36 : 2006-12-09 19:15 ID:OmtsthcK [Del]

And again!

http://wakaba.c3.cx/releases/mac/Xee2.0alpha8.zip

  • As requested, it is now possible to sort by name, size or time. Also, by default, Xee will try to find out how you were sorting files in the Finder, and use that order.
  • Also as requested, there are now keyboard shortcuts for the first ten entries in the destination list. Configurable, of course, along with the rest.
  • I have been tracking down and fixing memory leaks. I think I have most of them now, except for those that seem to be inside OS X itself.

375 Name: Anonymous : 2006-12-09 19:47 ID:XO0AwXiS [Del]

xee sucks

personally i install gentoo portage and emerge wine plus use a hacked version of microsoft image viewer you should too

376 Name: !WAHa.06x36 : 2006-12-10 09:31 ID:OmtsthcK [Del]

Oops, I broke archive support in alpha 8 (which I didn't notice because it DID work when started from Xcode, but not otherwise). Fixed:

http://wakaba.c3.cx/releases/mac/Xee2.0alpha9.zip

377 Name: jmd : 2006-12-11 04:09 ID:mrQrvB+v [Del]

Been a fan of this program for a few months now - I love it. Version 2.0 alpha 4 works great on my 10.4.8 intel mac, but alpha 9 crashes upon launch. If i can provide any additional help for testing let meknow

PS - regarding "Anonymous"' post on using hacked Microsoft products instead ....>sigh<

378 Name: !WAHa.06x36 : 2006-12-11 04:24 ID:Heaven [Del]

>>377

If you can post the crash log, that would help.

379 Name: Gonçalo : 2006-12-11 04:49 ID:vXz8IX3w [Del]

Your viewer is AMAZING !!! It's fast, acurate, ... and the antiliazing feature is wonderful ! Congratulations.

380 Name: Lisa : 2006-12-12 05:59 ID:QyTBGx/F [Del]

Thank you so much! Your work is really fantastic! Alpha 9 works great on my MacBook!

381 Name: Tony : 2006-12-14 11:45 ID:ZTrXILYE (Image: 756x1132 jpg, 791 kb) [Del]

src/1166125556225.jpg: 756x1132, 791 kb

First off, love your program. Something I've noticed. This picture is always deformed when viewed through all of the Universal alphas so far and sometimes crashes. As soon as I figure out how to put up a crash log, I'll do that.

382 Name: Tony : 2006-12-14 11:50 ID:ZTrXILYE (Image: 0x0 txt, 16 kb) [Del]

Here you go.

383 Name: !WAHa.06x36 : 2006-12-14 15:40 ID:OmtsthcK [Del]

Wow, that is some image. Gecko won't load it, the thumbnailer on this board won't load it. Preview says it's CMYK, so I guess nobody likes those. Well, I'll try to make Xee load it.

384 Name: !WAHa.06x36 : 2006-12-14 15:57 ID:OmtsthcK [Del]

Correction: The file is in YCCK, not CMYK. libjpeg has no built-in converter for YCCK to RGB, so I will have to code something up at some point. For now, I've made it not crash, at least.

385 Name: !WAHa.06x36 : 2006-12-14 18:32 ID:OmtsthcK [Del]

All right, I think I've got most of the stuff I absolutely want to have in this version. Time for a feature freeze, and switching to beta. Well, probably not a complete feature freeze, but from here on I'll try to mostly do bugfixes and polish.

This means I need more bug reports! Please take some time to really test features in Xee, and tell me of ANYTHING that breaks, or doesn't work like you expect it to!

http://wakaba.c3.cx/releases/mac/Xee2.0beta1.zip

  • Finally, a working crop tool! Big thanks to squeeks for helping me design this. We're still tweaking that, so it's not quite done, but it should be pretty good as it is.
  • Some interface tweaks.
  • Added a super-dumb CMYK converter to the the JPEG loader, so >>381 loads, even if the colours are a bit off.

386 Name: Anonymous : 2006-12-14 19:20 ID:GkiaiGAC [Del]

The behavior is odd when opening new files from fullscreen, in single-window mode particularly.

387 Name: MG : 2006-12-14 19:33 ID:4N/UZaD/ [Del]

May I suggest Xee use the Sparkle framework for updating? This would make it convenient to get the latest betas and test them during development, as well as upgrades for the stable version in time.

Thanks for the great software :)

388 Name: jmd : 2006-12-15 04:49 ID:mrQrvB+v [Del]

The crash that I was experiencing with alpha9 no longer occurs after using the version you posted on 2006-12-14 at 18:32. Great application, sir!

389 Name: jmd : 2006-12-15 04:49 ID:mrQrvB+v [Del]

The crash that I was experiencing with alpha9 no longer occurs after using the version you posted on 2006-12-14 at 18:32. Great application, sir!

390 Name: Tony : 2006-12-15 08:56 ID:ZTrXILYE [Del]

So far, it's opened everything I've thrown at it. No discoloration, either.

One thing I've noticed is that CMD-0 doesn't seem to work on any picture with 2.0 beta 1. Although, going to View > Actual Size does work. Is anyone else experiencing this or is it just my machine?

391 Name: !WAHa.06x36 : 2006-12-15 14:15 ID:OmtsthcK [Del]

>>386

Noted and reproduced.

>>387

It looks nice enough, but Sparkle.framework is about half the size of Xee. That doesn't really make it very appealing to bundle with every download.

>>390

Oh. That is because I added Cmd-0 as a shortcut for "Copy to tenth destination", since Cmd-1 to Cmd-9 are the first nine ones. I guess that's a problem. Maybe I'll just remove the tenth shortcut...

392 Name: !WAHa.06x36 : 2006-12-15 14:17 ID:OmtsthcK [Del]

>>390

Also: To work around it, open the keyboard shortcuts and remove the other shortcut.

393 Name: Tony : 2006-12-15 16:53 ID:OYlW1/M6 [Del]

Cool. I didn't even think about that... Yep, works fine. Everything's good.

394 Name: Lisa : 2006-12-17 06:15 ID:QyTBGx/F [Del]

Hi!
Is there an option or setting to remember rotated images? When I'm rotating an image and I browse back, it's unrotated again?!

395 Name: Andre : 2006-12-17 08:49 ID:7FXgPZ8q [Del]

I love xee, and it has replaced preview on my powerbook! Many thanks! it crashes somewhat (1.2.1) more often that I'd like but it's still feature rich and i love the intuitive keyboard navigation, it's a total oreo cookie! (ie: good :)

396 Name: Andre : 2006-12-17 08:52 ID:7FXgPZ8q [Del]

I love xee, and it has replaced preview on my powerbook! Many thanks! it crashes somewhat (1.2.1) more often that I'd like but it's still feature rich and i love the intuitive keyboard navigation, it's a total oreo cookie! (ie: good :)

397 Name: Andre : 2006-12-17 08:53 ID:7FXgPZ8q [Del]

I love xee, and it has replaced preview on my powerbook! Many thanks! it crashes somewhat (1.2.1) more often that I'd like but it's still feature rich and i love the intuitive keyboard navigation, it's a total oreo cookie! (ie: good :)

398 Name: !WAHa.06x36 : 2006-12-17 11:53 ID:OmtsthcK [Del]

>>394

Right now, you have to save pictures explicitly to keep the rotation. I might add some kind of optional auto-save. I haven't quite worked out how I want that to work.

>>395

Try to see if the beta 2.0 crashes any less. If it still crashes, post me some crash logs.

399 Name: Lisa : 2006-12-18 06:14 ID:QyTBGx/F [Del]

About the rotation:
I see.. hoping this feature will be in any next future's version ;)))
I'm using the old version again, because I need that... :(

400 Name: !WAHa.06x36 : 2006-12-18 12:23 ID:OmtsthcK [Del]

>>399

It's definitely one thing I need to fix before the final 2.0 version.

401 Name: Brooks : 2006-12-25 20:15 ID:hFTNqxxJ [Del]

hey, thank you for adding the "move to" shortcuts! very appreciated

the beta seems to work very nicely(ppc)
3 things:

-a "crop" button in the toolbar is needed
-in the like keyboard configuration window within preferences the x apparently does nothing at all. also, to change the key combinationits it is awkward to have make a whole new button and delete the old one you should be able to change a key combo in one step.
-movie placeholders (its alright if its not gonna happen. would be very cool though)

thank you very very much

402 Name: !WAHa.06x36 : 2006-12-26 06:25 ID:Heaven [Del]

> a "crop" button in the toolbar is needed

Yes.

> in the like keyboard configuration window within preferences the x apparently does nothing at all.

It should restore the shortcut to defaults. I guess it should be disabled if they are already set to the defaults.

> also, to change the key combinationits it is awkward to have make a whole new button and delete the old one you should be able to change a key combo in one step.

Granted, but I am not sure what to do instead - I don't think it's very friendly to make other keyboard shortcuts disappear silently, either. As it is now, you can at least drag the old one to the new action.

> movie placeholders (its alright if its not gonna happen. would be very cool though)

Theoretically, I could even make movies PLAY in Xee without too much effort, but that's definitely feature bloat. Not sure what I'll do about this.

403 Name: J : 2006-12-26 11:41 ID:GIlO8inL [Del]

EXCELENT PROGRAM!!!, congrats!!! The best image brouser for MAC. Im using macbook dual core 2, and the only bug i find is when i rotate the image and save it (without recompression) it saves the file replacing the old one but the program after doing that crashes and closes. I dont know why. Also the ^save lossessly^option in the menu appears in grey, maybe im doing something wrong.
I use in windows xp irfanview and the only thing i miss is that u can edit the image gamma, histogram, contrast...
Good job on the cropping tool!!!

404 Name: J : 2006-12-26 11:54 ID:GIlO8inL [Del]

Date/Time: 2006-12-26 13:51:19.568 -0600
OS Version: 10.4.8 (Build 8N1106)
Report Version: 4

Command: Xee
Path: /Applications/Multimedia/Xee.app/Contents/MacOS/Xee
Parent: WindowServer [52]

Version: ??? (2.0 beta 1)

PID: 1715
Thread: 1

Exception: EXC_BAD_ACCESS (0x0001)
Codes: KERN_INVALID_ADDRESS (0x0001) at 0x65426c6c

Thread 0:
0 libSystem.B.dylib 0x90009857 mach_msg_trap + 7
1 com.apple.CoreFoundation 0x9082b2f3 CFRunLoopRunSpecific + 2014
2 com.apple.CoreFoundation 0x9082ab0e CFRunLoopRunInMode + 61
3 com.apple.HIToolbox 0x92ddabef RunCurrentEventLoopInMode + 285
4 com.apple.HIToolbox 0x92dda2fd ReceiveNextEventCommon + 385
5 com.apple.HIToolbox 0x92dda154 BlockUntilNextEventMatchingListInMode + 81
6 com.apple.AppKit 0x9325f465 _DPSNextEvent + 572
7 com.apple.AppKit 0x9325f056 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
8 com.apple.AppKit 0x93258ddb -[NSApplication run] + 512
9 com.apple.AppKit 0x9324cd2f NSApplicationMain + 573
10 cx.c3.xee 0x00002292 _start + 216
11 cx.c3.xee 0x000021b9 start + 41

Thread 1 Crashed:
0 libobjc.A.dylib 0x90a564c7 objc_msgSend + 23
1 com.apple.Foundation 0x925f836c forkThreadForFunction + 123
2 libSystem.B.dylib 0x90023d87 _pthread_body + 84

Thread 2:
0 libSystem.B.dylib 0x90024427 semaphore_wait_signal_trap + 7
1 com.apple.Foundation 0x9264e2f8 -[NSConditionLock lockWhenCondition:] + 39
2 com.apple.AppKit 0x93336270 -[NSUIHeartBeat _heartBeatThread:] + 377
3 com.apple.Foundation 0x925f836c forkThreadForFunction + 123
4 libSystem.B.dylib 0x90023d87 _pthread_body + 84

Thread 3:
0 libSystem.B.dylib 0x90009857 mach_msg_trap + 7
1 com.apple.CoreFoundation 0x9082b2f3 CFRunLoopRunSpecific + 2014
2 com.apple.CoreFoundation 0x9082ab0e CFRunLoopRunInMode + 61
3 com.apple.audio.CoreAudio 0x9146541e HALRunLoop::OwnThread(void*) + 158
4 com.apple.audio.CoreAudio 0x91465239 CAPThread::Entry(CAPThread*) + 93
5 libSystem.B.dylib 0x90023d87 _pthread_body + 84

Thread 4:
0 libSystem.B.dylib 0x900268bc kevent + 12
1 ...ple.CoreServices.CarbonCore 0x90cb5f84 PrivateMPEntryPoint + 51
2 libSystem.B.dylib 0x90023d87 _pthread_body + 84

Thread 5:
0 libSystem.B.dylib 0x90024427 semaphore_wait_signal_trap + 7
1 ...ple.CoreServices.CarbonCore 0x90cb6129 MPWaitOnQueue + 198
2 com.apple.DesktopServices 0x9251e943 TNodeSyncTask::SyncTaskProc(void*) + 143
3 ...ple.CoreServices.CarbonCore 0x90cb5f84 PrivateMPEntryPoint + 51
4 libSystem.B.dylib 0x90023d87 _pthread_body + 84

Thread 1 crashed with X86 Thread State (32-bit):
eax: 0x65426c6c ebx: 0xb009ded4 ecx: 0x00081d40 edx: 0x900268bc
edi: 0x65426c74 esi: 0x003ad920 ebp: 0xb009df08 esp: 0xb009dea4
ss: 0x0000001f efl: 0x00010206 eip: 0x90a564c7 cs: 0x00000017
ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037

405 Name: !WAHa.06x36 : 2006-12-26 12:50 ID:Heaven [Del]

>>403

The "Save losslessly" option isn't properly implemented yet, so that's why it's grey. I'll have a look at that crash, though. Thanks!

406 Name: Cloverleaf : 2006-12-26 17:00 ID:TVQ/o4iM [Del]

Xee turns out to be the easiest to use image viewer for my 59 year old mother, who is using her iBook for 1 month now.
So great work!

But we had a problem this day. She has a lot of picture-CDs of her friends. When watching them, there's often the need to rotate an image. This is not possible with Xee. When the volume is write-protected you get an error-message.

It's also not possible to rotate non-jpeg images.

Is there a particular philosophy behind these two points or are you working on implementing these functionalities?

407 Name: Cloverleaf : 2006-12-26 17:45 ID:TVQ/o4iM [Del]

Me again!

Found your 2.0beta1. Both of my mentionned points in post #406 are already implemented. Great!!

One additional little point:
Pictures should be resized to window (or screen in fullscreen) after rotation.

408 Name: Anonymous : 2006-12-26 18:25 ID:dVtGyLmO [Del]

>>406
You say "She has a lot of picture-CDs of her friends. When watching them, there's often the need to rotate an image. This is not possible with Xee. When the volume is write-protected you get an error-message."
You can't change something that is read-only, such as a CD-ROM or CD-R! I don't see how this could be now "already implemented". Unless you save some sort of cached metadata.

409 Name: Anonymous : 2006-12-26 22:56 ID:viTDzZY1 [Del]

>>408 I don't think he's trying to save the rotation, just rotate temporarily, and that was what was failing before.

410 Name: Anonymous : 2006-12-27 10:09 ID:7DfzYHmw [Del]

>>402

> Theoretically, I could even make movies PLAY in Xee without too much effort, but that's definitely feature bloat. Not sure what I'll do about this.

Please don't. If would make sense if Xee offered a directory view with thumbnail previews but as it is right now, Xee is an image browser. There are other programs to let you preview/view a batch of movies sequentially.

411 Name: jmd : 2006-12-27 15:15 ID:mrQrvB+v [Del]

Any way to turn off the delete confirmation box when clicking the Delete button on the toolbar?

412 Name: Anonymous : 2006-12-27 21:50 ID:7DfzYHmw [Del]

>>385

For some reason with this build, I have an odd problem with viewing large amounts of images on a network share. I cannot reproduce this on local directories. It's a bit difficult to explain but here goes.

Say I go through a directory with more than a hundred or so images, all rather large (think manga) and then I use finder to go to a different directory and double-click an image to open it in Xee. Sometimes a problem will occur where Xee will resize itself to the dimensions of the image but will display nothing but black. When Xee is like this, I can't navigate to other images either.

Trying to open another image through the finder will only get another all-black image. Trying to bring up the open dialogue inside Xee will just cause it to eat up CPU. Here's the sample log on Xee when it's in that locked-up state:

Analysis of sampling pid 2429 every 10.000000 milliseconds
Call graph:
300 Thread_0f07
300 start
300 _start
300 NSApplicationMain
300 -[NSApplication run]
300 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]
300 _DPSNextEvent
300 _NSHandleCarbonMenuEvent
300 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:]
300 -[NSMenu performActionForItemAtIndex:]
300 -[NSApplication sendAction:to:from:]
300 -[XeeDelegate openDocument:]
300 -[NSSavePanel(NSSavePanelRuntime) runModalForTypes:]
300 -[NSSavePanel(NSSavePanelRuntime) runModalForDirectory:file:types:]
300 -[NSApplication runModalForWindow:]
300 -[NSApplication beginModalSessionForWindow:]
300 -[NSApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector:contextInfo:]
300 -[NSApplication _orderFrontModalWindow:relativeToWindow:]
300 -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:]
300 -[NSWindow _commonAwake]
300 -[NSWindow(NSDrag) _registerDragTypesIfNeeded]
300 -[NSWindow(NSDrag) _registerDragTypes:]
300 -[NSView(NSDrag) _addDragTypesTo:]
300 objc_msgSend
300 objc_msgSend
300 Thread_1003
300 _pthread_body
300 __ape_agent
300 mach_msg_trap
300 mach_msg_trap
300 Thread_1103
300 _pthread_body
300 forkThreadForFunction
300 kevent
300 kevent
Total number in stack (recursive counted multiple, when >=5):
Sort by top of stack, same collapsed (when >= 5):
kevent 300
mach_msg_trap 300
objc_msgSend 300
Sample analysis of process 2429 written to file /dev/stdout
Sampling process 2429 each 10 msecs 300 times

Intel Mac mini on 10.4.8

413 Name: Todd Partridge : 2006-12-30 14:36 ID:9KpDEKml [Del]

WAHa,

this a great little app. Needed something that would flip thru photos. u did good though I haven't tested it throughly.

414 Name: Todd Partridge : 2006-12-30 15:01 ID:9KpDEKml [Del]

ohh, does need one thing. Using the X button really should close the app program unless another is open.

415 Name: Anonymous : 2006-12-31 06:42 ID:GkiaiGAC [Del]

>>414
No. That's not how Mac apps work.
At least, that's not how they should work, according to the HIG.

416 Name: !WAHa.06x36 : 2007-01-07 17:48 ID:OmtsthcK [Del]

>>412

I've been trying, but I can't reproduce this. Can you figure out a solid way to reproduce it? Also, what kind of network share?

417 Name: Anonymous : 2007-01-11 19:07 ID:7DfzYHmw [Del]

>>416
I can't reproduce it consistently in the sense that I can't figure out why if I view one set of images in one directory, I can trigger the problem always but if I go through another directory of a similar number of images, it won't trigger. But for known 'bad' directories, I can definitely reproduce the bug consistently.

It's a CIFS share off a Win2K3 server. I can confirm that I had no problems using the stable version of Xee and did not recall any problem using the early Intel betas either.

418 Name: Anonymous : 2007-01-11 19:36 ID:7DfzYHmw [Del]

>>416
On a side note, can I again make a request for AppleScripting support?

419 Name: !WAHa.06x36 : 2007-01-12 03:10 ID:OmtsthcK [Del]

>>417

Does opening an image in a directory, and then clicking another image there (to re-use the same window), and then doing stuff cause the problem? Because I've found and fixed a bug relating to that already.

Also, I want AppleScripting too but it won't be in 2.0, I'm trying to polish that off and release it now without adding anything new. Also if somebody with more experience with AppleScript than me wants to help me out with it, that would be appreciated because I don't have much of a clue how it should be done.

420 Name: Anonymous : 2007-01-12 14:58 ID:7DfzYHmw [Del]

>>419
Doesn't seem to trigger it in that case. This bug is actually bugging me a lot because it essentially all my manga are stored on a network share so I run into this pretty much every other volume of reading. If you want me to run a special build that outputs lots and lots of output and debug messages, I'm up for it as long as it helps.

421 Name: Anonymous : 2007-01-12 15:06 ID:e/xlDcog [Del]

o key bindings doesn't seem to stay; after a restart they are either gone or have multipled (tested on G4 only); e.g. setting "L" to loop, after a restart you can find "L" several times in the list
o maybe the default OSX print dialog would be nice; I know it's a viewer but sometimes for quick printing...
nice work anyway

422 Name: !WAHa.06x36 : 2007-01-12 16:06 ID:OmtsthcK [Del]

>>421

What version?

423 Name: Anonymous : 2007-01-12 16:25 ID:e/xlDcog [Del]

this one: http://wakaba.c3.cx/releases/mac/Xee2.0beta1.zip
problem exists even with a clean cx.c3.xee.plist
It also occurs with a "clean" account (in this case root which isn't spoiled by any customizations); The "L" is funny as it really gets multiplied; I set horizontal and vertical mirror to "H" and "V", which are kept after a restart of the programm but doesn't work
I haven't tested it yet on intel mac

424 Name: !WAHa.06x36 : 2007-01-12 17:42 ID:OmtsthcK [Del]

>>423

All right, I see the problem. I'll try to get it fixed. Thanks!

425 Name: !WAHa.06x36 : 2007-01-14 18:38 ID:OmtsthcK [Del]

All right, I think I've finally got all the GUI tweaks in, and everything should now work! I also fixed most of the reported bugs, except for the network share one which I haven't gotten around to reproducing yet. Hopefully, though, the program should be nearly ready for release now, except for translations, which I'm going to try and get arranged now, at least for Japanese.

So! If you don't report bugs now, they won't get fixed in the final version!

http://wakaba.c3.cx/releases/mac/Xee2.0beta2.zip

426 Name: Anonymous : 2007-01-14 21:19 ID:J4cI9h3a [Del]

for some reason the Xee2.0 beta2 is still significantly slower on my old PB G4 1.25 Ghz than Xee 1.21 while loading larger JPEG images (both versions set to YUV). While 1.21 loads them almost instantaneously, 2.0b2 seems to need more memory. hope this is not related to the universal binary...

427 Name: Anonymous : 2007-01-15 03:44 ID:le1sQuTO [Del]

I really like Xee and I have two suggestions:

  • It would be nice if it lets me copy only the selected area of an image when I use the crop tool. (and of course a new-image-from-clipboard option, just like Preview, would be welcomed)
  • I think it really needs to display scrollbars when seeing a bigger than your display resolution image. Without scrollbars you don't know if you see the whole image or a part of it.

Thank you and keep up the good work!

428 Name: !WAHa.06x36 : 2007-01-15 04:44 ID:OmtsthcK [Del]

>>426

That is still strange, because most of my own tests suggest it should be about as fast or a little faster. I could add a hidden option to turn off the progressive display, in case that is causing trouble on some old graphics chip...

>>427

It's not really a select tool and more just a crop tool, so I dunno. You can always just apply the cropping and then copy. Also, just press cmd-V to make a new image from the clipboard.

The scrollbars, I dunno. Not only is the standard scrollbar code on OS X pretty buggy, it'd also most likely be slower at scrolling if it had to draw the scrollbars too, and they'd clutter up the interface. Normally you would expect them, but ACDSee, which I am copying to a large extent, doesn't have them either.

429 Name: Tony : 2007-01-15 07:23 ID:ZTrXILYE [Del]

Xee2.0beta2 fixes the problem with Cmd-0 I was experiencing with 2.0beta1, but now I can't open Help > Keyboard Shortcuts... The menu item simply flashes and goes away, as it should... And, that's it. Nothing else comes up. It doesn't display Keyboard Shortcuts. I tried deleting cx.c3.xee.plist, but that didn't resolve the problem. Thanks again.

430 Name: Anonymous : 2007-01-15 09:53 ID:OmtsthcK [Del]

>>429

Hmm, it works fine here. Can you open the preferences normally?

431 Name: Tony : 2007-01-15 11:01 ID:ZTrXILYE [Del]

>>430

I just discovered this. I opened it up through Preferences (which, to answer your question, works fine). Then, I went back to Help > Keyboard Shortcuts (KS) and now it works. But, if I quit Xee and go to Help > KS it's back to square one; it doesn't open. But, it will if I open it through Preferences first, again. Looks like a simple bug.

432 Name: !WAHa.06x36 : 2007-01-15 11:31 ID:OmtsthcK [Del]

>>431

Oh! I get it, it IS a very simple bug. Thanks for catching that.

433 Post deleted by user.

434 Name: Anonymous : 2007-01-16 19:09 ID:7DfzYHmw [Del]

>>425
My problem with the network shares still persists in this version but here's some more info.

When my problem occurs, the status bar will say "Cannot display image" and the window/canvas will be black. Using the file open dialogue inside Xee will crash. In the previous beta, Xee would just drive up CPU utilisation.

Here's the crash log in case it helps:

Exception:  EXC_BAD_ACCESS (0x0001)
Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x00000020
Thread 0 Crashed:
0 libobjc.A.dylib 0x90a54380 objc_msgSend + 16
1 com.apple.AppKit 0x9335c070 -[NSView(NSDrag) _addDragTypesTo:] + 55
2 com.apple.AppKit 0x9335bec6 -[NSWindow(NSDrag) _registerDragTypes:] + 120
3 com.apple.AppKit 0x932e8e6f -[NSWindow(NSDrag) _registerDragTypesIfNeeded] + 66
4 com.apple.AppKit 0x932e79ef -[NSWindow _commonAwake] + 2575
5 com.apple.AppKit 0x932900af -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 512
6 com.apple.AppKit 0x93339854 -[NSApplication _orderFrontModalWindow:relativeToWindow:] + 686
7 com.apple.AppKit 0x9333933a -[NSApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector:contextInfo:] + 678
8 com.apple.AppKit 0x9333908e -[NSApplication beginModalSessionForWindow:] + 72
9 com.apple.AppKit 0x93338f6d -[NSApplication runModalForWindow:] + 109
10 com.apple.AppKit 0x9345ee20 -[NSSavePanel(NSSavePanelRuntime) runModalForDirectory:file:types:] + 218
11 com.apple.AppKit 0x9345ec31 -[NSSavePanel(NSSavePanelRuntime) runModalForTypes:] + 71
12 cx.c3.xee 0x0000c522 -[XeeDelegate openDocument:] + 188
13 com.apple.AppKit 0x9335cd88 -[NSApplication sendAction:to:from:] + 107
14 com.apple.AppKit 0x9340ace7 -[NSMenu performActionForItemAtIndex:] + 455
15 com.apple.AppKit 0x9340aa29 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 103
16 com.apple.AppKit 0x9333be16 _NSHandleCarbonMenuEvent + 477
17 com.apple.AppKit 0x9326f7fc _DPSNextEvent + 1491
18 com.apple.AppKit 0x9326f056 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
19 com.apple.AppKit 0x93268ddb -[NSApplication run] + 512
20 com.apple.AppKit 0x9325cd2f NSApplicationMain + 573
21 cx.c3.xee 0x00002db2 _start + 216
22 cx.c3.xee 0x00002cd9 start + 41
Thread 1:
0 libSystem.B.dylib 0x90009857 mach_msg_trap + 7
1 com.unsanity.ape 0xc0001cac __ape_agent + 307
2 libSystem.B.dylib 0x90023d87 _pthread_body + 84
Thread 2:
0 libSystem.B.dylib 0x900268bc kevent + 12
1 com.apple.Foundation 0x925f536c forkThreadForFunction + 123
2 libSystem.B.dylib 0x90023d87 _pthread_body + 84
Thread 0 crashed with X86 Thread State (32-bit):
eax: 0x00000000 ebx: 0x925f0f26 ecx: 0x90a65c00 edx: 0x16a8f650
edi: 0x00000004 esi: 0x00000000 ebp: 0xbffff0b8 esp: 0xbfffee58
ss: 0x0000001f efl: 0x00210202 eip: 0x90a54380 cs: 0x00000017
ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037

435 Name: !WAHa.06x36 : 2007-01-17 04:05 ID:6THb/Qdo [Del]

>>434

> com.unsanity.ape

First, try disabling that and see if the problem persists.

436 Name: Anonymous : 2007-01-17 18:09 ID:7DfzYHmw [Del]

>>435

I just tried disabling all my APE extensions but I can still crash Xee using the same steps. Though, the crash log is much shorter:

Command: Xee
Path: /Applications/Xee.app/Contents/MacOS/Xee
Parent: WindowServer [60]

Version: ??? (2.0 beta 2)

PID: 3776
Thread: Unknown

Link (dyld) error:

image not found

437 Name: !WAHa.06x36 : 2007-01-18 04:40 ID:Heaven [Del]

>>436

Wow, that is a weird crash. Something is definitely fucked up there.

438 Name: Mr VacBob!JqK7T7zan. : 2007-01-18 10:45 ID:h7/pk3oL [Del]

Open Console.app (in /Applications/Utilities/) and see if it says anything?

That's a really weird error though. I don't think anything involved uses weak linking or bundles.

439 Name: Anonymous : 2007-01-19 16:16 ID:7DfzYHmw [Del]

>>438

When my problem occurs:

2007-01-19 18:48:12.849 Xee[5180] *** -[NSBundle load]: Couldn't dynamically load framework code

When I crash Xee:

2007-01-19 18:49:15.549 Xee[5180] unable to load nib data: /System/Library/Frameworks/AppKit.framework/Resources/English.lproj/NSNavPanelContentView.nib
2007-01-19 18:49:15.550 Xee[5180] unable to load nib data: /System/Library/Frameworks/AppKit.framework/Resources/English.lproj/NSNavView.nib

440 Name: !WAHa.06x36 : 2007-01-19 18:19 ID:OmtsthcK [Del]

>>439

Are you trying to open an image, or an archive, when this happens?

441 Name: Anonymous : 2007-01-19 18:30 ID:7DfzYHmw [Del]

>>440

Image in a directory different from the directory the image resides in.

442 Name: Fab : 2007-01-21 02:16 ID:EcOeOulW [Del]

Many thanx 4 this great app, just what we needed for osX !

443 Name: subw : 2007-01-22 12:18 ID:+/X/aXHd [Del]

This image viewer would replace Preview right away if only it could open .pdf and - even better - .ps

444 Name: Anonymous : 2007-01-23 01:32 ID:FoNKZVxR [Del]

the old version 1.21 kept the settings for an image once applied (i.e. rotating 90 degree, jpeg), I assume by writing the exiftags. This is no longer possible with 2.0 beta 2.
I hope I didn't miss some obvious settings...

445 Name: !WAHa.06x36 : 2007-01-26 20:45 ID:OmtsthcK [Del]

>>441

I finally managed to set up an SMB share to test this on, and I do see the problem.

It smells just a little bit like samba itself being very buggy, though. If that's the case, I can try and work around it but I can't guarantee I will have much success.

(For fun, try this: delete the picture you're viewing from inside Xee. Then browse forward a couple of images and then back to the deleted image. For me, it's still there and can be loaded, although it's disappeared from the Finder!)

446 Name: Anonymous : 2007-01-27 06:29 ID:7DfzYHmw [Del]

>>445

I feel vindicated that it's not some imaginary problem only I can reproduce. But now that you mention it, I do have odd problems like this with Window shares in general. Though it also seems like that the problem occurs less if I don't browse all the way to the last image of a directory before opening an image from another directory.

447 Name: !WAHa.06x36 : 2007-01-27 13:29 ID:OmtsthcK [Del]

>>446

I found the bug, and fixed it! However, the basic problem is that the kqueue functions that Xee uses to monitor changes in the filesystem (even when it does things like delete an image itself) don't work on SMB shares. So behaviour will always be a bit broken on SMB, but at least browsing works right now.

(Turns out the trigger for the bug is simply viewing enough images on an SMB share. Just opening one and holding down the skip-to-next button will trigger it after a while.)

448 Name: Anonymous : 2007-01-27 18:24 ID:7DfzYHmw [Del]

>>443
Try PDFView.

>>447
I'm happy as long as I can browse off Windows shares now without this bug kicking in. Much thanks.

449 Name: Anonymous : 2007-01-28 05:08 ID:ox+vDP7D [Del]

Could you pretty please not write the name of every file to the console log?

450 Name: !WAHa.06x36 : 2007-01-28 06:29 ID:Heaven [Del]

>>449

That's what you get for running beta versions! It'll be removed in the final.

451 Name: Rigido : 2007-01-28 11:23 ID:cLpjQQCh [Del]

Hi,
I started using Xee some days ago, I would like to have two more options:

  1. Auto-rotate (but do not save) based on EXIF info
  2. Start in fullscreen (useful for double-clicked images)

Great software!

452 Name: !WAHa.06x36 : 2007-01-28 15:09 ID:Heaven [Del]

>>451

Both options exist in the 2.0 beta already, the first in the advanced prefs, and the second in the View menu.

453 Name: Anonymous : 2007-01-29 15:58 ID:JADe0b70 [Del]

In 1.2.1 Xee would stay fixed to a certain area of the screen when opening a new window. Now it opens windows in the upper left. Is there any chance that Xee might be able to regain this little bit of functionality?

454 Name: !WAHa.06x36 : 2007-01-29 16:15 ID:OmtsthcK [Del]

Well, it's finally time to release this, I think!

http://wakaba.c3.cx/releases/mac/Xee2.0.zip
http://wakaba.c3.cx/releases/mac/Xee2.0_src.zip
http://wakaba.c3.cx/s/apps/xee.html

I've tried to list the changes on the Xee homepage, but I'm not sure I can even remember them all any longer!

455 Name: !WAHa.06x36 : 2007-01-29 16:36 ID:OmtsthcK [Del]

Also, sorry, >>453, you were a bit too late. I'll look into that for the next version.

456 Name: wm : 2007-01-30 05:10 ID:n8/s3VuW [Del]

I just saw that the new version ought to open archive files (with help of the unarchiver).

Ho can i use this feature? Whenever i open a zip (or cbz) in Xee (either by File>Open or by dropping the zip at the program icon) Xee states to be unable to display the file, though the unarchiver is perfectly able to open and extract the archive...

457 Name: !WAHa.06x36 : 2007-01-30 07:46 ID:Heaven [Del]

>>456

If you upgraded The Unarchiver and put the old version in the trash, try emptying the trash and see if that helps.

458 Name: tom : 2007-01-30 07:53 ID:EYRB3J0Z [Del]

I'd prefer that Xee 2.0 doesn't associate itself with my archives.
I don't want browse archived images and prefer to extract big binaries with stuffit instead of Xee (which doesn't work at all neither with the Unarchiver nor without).

459 Name: wm : 2007-01-30 08:10 ID:iI8iok/Z [Del]

>>457

Unfortunately not. I emptied my trash, loged out/in again without changes. Even creating a new zip (by using the Finder) I'm not able to watch the content in Xee.

Is there a way to determine whether or not Xee has found The Unarchiver?

>>458

Have a look at the Xee Preferences. There's a panel named Formats, uncheck the last two items and Xee wont open your archives anymore.

460 Name: Anonymous : 2007-01-30 08:32 ID:uCFik3S2 [Del]

I'd also like to print my images from Xee.

461 Name: !WAHa.06x36 : 2007-01-30 09:23 ID:OmtsthcK [Del]

>>458

Actually, it doesn't associate itself with anything by default. If it does, it's OS X that picked that association by itself.

>>459

If it doesn't find it, it opens a dialog to tell you. With this particular bug, it finds it, but somehow can't load the code from it. Check Console.app for any messages.

>>460

For now, this is outside the scope of the app. If I implemented printing, I'd like to do it properly, but I don't really have the time to work on it.

I'd be happy to accept any submitted code for this, though.

462 Name: !WAHa.06x36 : 2007-01-30 09:32 ID:Heaven [Del]

>>459

Furhtermore, try deleting both Xee and The Unarchiver, emptying the trash, and installing them again. I really wish I could give some more useful advice, but while I had the same problem at one point during development, it pretty much went away on its own, and I really don't know why.

463 Name: Anonymous : 2007-01-30 19:28 ID:4CVbH5AX [Del]

I tried deleting both Xee and The Unarchiver and the problem of not viewing inside archives if still persists.

Could you post the previous versions (The Unarchiver 1.3 and Xee 2.0 Beta2) again?

I know that this combination worked before, so maybe it'll narrrow down the problem. Thanks!

464 Post deleted by user.

465 Name: !WAHa.06x36 : 2007-01-31 03:33 ID:OmtsthcK [Del]

466 Name: wm : 2007-01-31 03:40 ID:n8/s3VuW [Del]

>> 461
>> 462

Still not working :(. I tested the following: removed both Xee and The Unarchiver and installed Xee alone (to make sure Xee will definitely find nothing else). After the box you mentioned poped up I installed The Unarchiver and tried again - the box did not appear though Xee wasn't able to open the archives. However Console.app did not show any error message at all :(.

I'd like to give you some better failure descriptions, unfortunately I don't have Xcode/Objective C experience (I assume python knowledge doesn't help at this point... :( ).

467 Post deleted by user.

468 Name: !WAHa.06x36 : 2007-01-31 04:45 ID:6THb/Qdo [Del]

>>466

Come to think of it, I know one other trick that might work, but it will not explain what was actually wrong: You could try doing "Show package contents" on both Xee and The Unarchiver, and then copying the Frameworks folder over to Xee, which should let it use those frameworks without having to load them from The Unarchiver.

469 Name: wm : 2007-01-31 05:04 ID:n8/s3VuW [Del]

>>468

Yes, that finally did the trick.

It seems the framework could not be (cross)loaded from The Unarchiver. If you compile a version with debug output around the framework loading point (I normally use something like "ive found the path here, im using that path there" when i'm to lazy to use a debugger), post the link to the zip and I will verify this.

And/Or giving me some pointers to some good Xcode/ObjC introduction/tutorial for regaled python/java/xslt programmers would be even better - so I could get my hands dirty without whining next time something breaks... ;)

470 Name: Anonymous : 2007-01-31 13:43 ID:4CVbH5AX [Del]

>>465

I haven't tried the copying over the frameworks solution yet, but I found that:
Xee 2.0 + The Unarchiver 1.3 works.
Xee 2.0 + The Unarchiver 1.4 does not work.
I repeated it several times, emptying the trash every time, so it seems that it cannot load the frameworks from the 1.4 package for some reason.

471 Name: !WAHa.06x36 : 2007-01-31 16:50 ID:OmtsthcK [Del]

That's funny. It works fine on my main machine, but with a fresh install on my secondary machine, it fails in the same way. Some research reveals that it finds the framework just fine, but fails to load it, giving no reason. This will be somewhat tricky to figure out.

>>469 and >>470, what machines are you doing this on? It works on Intel for me, but not on PPC.

472 Name: Brooks : 2007-02-01 10:33 ID:rAPNNkGw [Del]

it doesnt load archives from the unarchiver on my PPC

the archives unarchive fine with the unarchiver otherwise

console doesnt say anything, xee says "Couldnt display file"

473 Name: NETknightX : 2007-02-01 13:28 ID:4CVbH5AX [Del]

>>471

That's weird...
I'm on an Intel machine...MacBook Core Duo to be specific...

474 Post deleted by user.

475 Post deleted by user.

476 Name: Tony : 2007-02-01 15:54 ID:OYlW1/M6 [Del]

I had the same problem and copying the Frameworks folder over worked like a charm. And, for the record, I have an MBP 2 GHz Core Duo.

477 Name: !WAHa.06x36 : 2007-02-01 18:39 ID:Heaven [Del]

>>472

Read the earlier posts.

478 Name: wm : 2007-02-02 01:01 ID:n8/s3VuW [Del]

>>471

I'm on Intel (MacBook 1g).

479 Post deleted by user.

480 Name: till : 2007-02-02 16:51 ID:waAnSZDz [Del]

hey, great thing. but could you add a possibility to enter a numeric zoom level (in the toolbar or in the status bar)? and add maybe shortcuts for 25%, 50%, 200%? that would be nice.

481 Post deleted by user.

482 Name: Stefan : 2007-02-03 11:38 ID:w0ZLVLc7 [Del]

Hi,

I like Xee very much, great work!

only thing i'm missing, while crop, it would be nice,
to see position infos in status bar.
i used irfanview (on windows) and this was one of
major features i loved...

regards, stefan

483 Name: Stefan : 2007-02-03 11:38 ID:w0ZLVLc7 [Del]

Hi,

I like Xee very much, great work!

only thing i'm missing, while crop, it would be nice,
to see position infos in status bar.
i used irfanview (on windows) and this was one of
major features i loved...

regards, stefan

484 Name: Dick : 2007-02-03 12:22 ID:5QbHFm7d [Del]

Just wanted to say: absolutely great program !

485 Name: !WAHa.06x36 : 2007-02-08 18:26 ID:OmtsthcK [Del]

I'll post this in here too, because it's mostly Xee-related anyway:

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

This version should hopefully fix the problems with loading archives! Anybody who had the problems, if you want to confirm that it has been fixed, install this and re-install Xee (or just delete the Frameworks folder from it if you copied it oveer)!

486 Name: Brooks : 2007-02-08 19:02 ID:rAPNNkGw [Del]

(ppc) xee 2.0 works with the unarchiver again

nice, thankyou.

487 Name: rd : 2007-02-12 23:19 ID:xGUyG67f [Del]

Great tool! Any plans for scripting? I often do slideshows full of photos, and haven't found a lightweight way to organize them in a hurry. If I could feed your program a simple text document listing image filenames, along with a few display options, it would out-do OpenOffice's Presentation tool, and Apple's iPhoto. Display options would include custom timings on each slide, including wait until manual advance on any given slide, and perhaps simple captions.

488 Name: Tony : 2007-02-14 08:07 ID:ZTrXILYE [Del]

>>485

That fixed the problem. Thanks for a great couple of programs.

489 Name: rd : 2007-02-14 13:09 ID:xGUyG67f [Del]

Further note on scripting... it would be great to have 2 (or more?) threads (or just groups) of photos in the slideshow. One thread would cycle slides continuously. Hit some key, first thread stops, and a manual thread begins. People could watch slides from my travels flip by as I talk about the trip generally, and then when I want to discuss a particular photo, I'd jump to the thread of photos that deserve some explanation. Finish the explanation, then hit some key, and back to the first thread. Doable?

490 Name: !WAHa.06x36 : 2007-02-14 13:27 ID:OmtsthcK [Del]

Well, that's sounding like a whole app in its own right already. I'm doing my best to avoid feature creep, and this seems a pretty niche feature, so I don't really see it as something worth putting much effort into.

491 Name: Anonymous : 2007-02-14 14:30 ID:QyTBGx/F [Del]

Hi!
I think it would be great to choose in the preference panel if the images will be saved automatically when rotated or not! I miss this option and when saving in version 2.0 with command-s - the thumbnails of the images are not rotated :((((((( Or is there an option to set?

492 Name: !WAHa.06x36 : 2007-02-14 15:49 ID:OmtsthcK [Del]

>>491

That's probably just the Finder being buggy. Xee does rotate the thumbnails when you save images. Or alternatively your camera saves thumbnails in some weird format that Xee doesn't support?

493 Name: Anonymous : 2007-02-16 14:57 ID:mrQrvB+v [Del]

If only Xee had a Print button I could add on the toolbar... :) I need to print through Preview to do that

494 Name: !WAHa.06x36 : 2007-02-16 16:11 ID:Heaven [Del]

>>493

You can at least set Preview as the default editor, and press Command-E.

495 Name: Anonymous : 2007-02-17 05:52 ID:mrQrvB+v [Del]

>>494
Thank you!

496 Name: Dank0 : 2007-02-22 22:07 ID:iYj/nhcf [Del]

Hi,
I have to say that this is the best Image viewer for OS X. I switched from windows where I was used to Xnview. I work everyday with BBEdit and I would like to have button in the bar that will copy image information and create this line: image.jpg" width="100" height="100" and put it into clipboard. This function will let me browse hundreds prepared images for the web and just copy the information for the HTML image tag.
Also Autodesk Maya IFF format will be nice.

thank you for this great application.

P.S. sorry about my english

497 Name: !WAHa.06x36 : 2007-02-23 07:31 ID:6THb/Qdo [Del]

>>496

2.0 has a Maya IFF loader, but it is not extensively tested because I don't have very many test cases. If you have any files that do not work, send them to me.

498 Name: New-Xee-User : 2007-02-24 14:56 ID:ZJi394WL [Del]

It seems that when I delete the image I am currently viewing, another image is automatically loaded. Is there anyway to not do that? So when I delete the image I am viewing, that's it, the window closes and another image is not opened?

Thanks, great program otherwise.

499 Name: !WAHa.06x36 : 2007-02-24 15:08 ID:OmtsthcK [Del]

500 Name: Remain : 2007-02-25 15:41 ID:6nG7S9yL [Del]

Hello, Mr. Ågren.

First off, I do need to say this (though you probably have heard it a thousand times before):

This is one of the best image viewing applications for Mac I've ever used.

When I first started to use Mac OS X, I realized that for my image viewing needs, Preview quite frankly won't cut it.
What was I supposed to do?
Open pictures one at a time? (double-click, close, double-click, close, etc.)
Or perhaps "Select all" in Finder, then open them, then use the drawer thing to browse, etc. etc. etc.
Why must it be so complicated??

So I then desperately sought out a good image viewer.
I think I downloaded and tried out 4-5 of them.
Some were not too bad, or "partially satisfactory", but still, not good enough for permanent use.

Then, through a forum, I found Xee, and boy, was it a godsend.
After trying it out, I KNEW it was THE image viewer for the Mac.

It is not only well-made, but also highly customizable.
(And the way you customize the keyboard shortcuts is really awesome: [+] [-] drag-and-drop...
In my opinion, ALL apps should allow you to do this.)

Okay, enough gratuitous praise. =P

I have a suggestion. (of course)

I noticed that if I resize the window (or Zoom it), then close it,
the next time a Xee window is opened, it does not retain that size.

I do not know if this was done on purpose,
but personally, I like my programs to retain window sizes. (and I'm sure a lot of other people like this too)

It would be great if you could either:
-make "retain the window size" the default behavior
or
-add a Preference to retain the window size

Thanks a lot for your time!

And of course, keep up the great work!! :)

-Xee user

501 Name: !WAHa.06x36 : 2007-02-26 15:29 ID:Heaven [Del]

>>500

I've been meaning to tweak the window placement code for some time, but I have not gotten around to it yet. Some day I will.

502 Name: Marius : 2007-02-26 16:24 ID:haKbea19 [Del]

Ok, firstly: This is a WONDERFUL application. I've switched to OS X about 3 years ago now, but still have not had a good replacement for Irfanview/AcdSee for the Mac. (The Mac version of AcdSee sucks) I wanted something that when opened would be able to navigate through the current directory.

Your app is a wonderful example of coding done right.

Okay, with that all said my critique...

When the last window that is open is closed (when escape is pressed) but the app is still open, it would be cool if focus is given back to the previous application. An option for this would be cool. I fave the finder open and am traversing directoies and opening images constantly and exiting with escape. My only open here is to remap Quit to Escape or something, but that would be counter to performance.

Thanks again, for (several) cool apps.

503 Name: Remain : 2007-02-28 11:07 ID:AxJsWklo [Del]

"I've been meaning to tweak the window placement code for some time, but I have not gotten around to it yet. Some day I will."

That's good to hear.

Oh yeah, on the Wikipedia page on Xee,
http://en.wikipedia.org/wiki/Xee
it says that Circlesoft is the Developer (though it still lists you, Dag Agren, as the Author)

I thought it might be possible that you work for this Circlesoft,
but I see nothing on your site that mentions Circlesoft
and nothing on http://www.circlesoft.com/ mentions you nor your programs either.

So is that information simply false??

note: At the bottom of the Wikipedia page, there is even a link that read "Circlesoft Website" but it links to your page. o_O

note 2: I Googled "xee circlesoft" and I found many links that says the same thing as the Wikipedia page. (???)

504 Name: !WAHa.06x36 : 2007-02-28 12:10 ID:Heaven [Del]

>>503

It's a common enough name that there are many that use it. It's an old name used by me and some friends back in the nineties. I only used it now because Apple thinks only companies can write software.

505 Name: Remain : 2007-02-28 14:05 ID:AxJsWklo [Del]

So circlesoft.com has nothing to do with you then, right?

Wait, isn't it possible that you get in trouble somehow if you use the name of a real company?

506 Name: Remain : 2007-03-01 10:53 ID:UcICJHz7 [Del]

Here's another suggestion:

Currently, the Rotate Image buttons are laid out this way
[Rotate right 90°] [Rotate left 90°]

Well, maybe it's just me, but this is kinda unintuitive/unnatural.

I think most people would think left button = rotate left and right button = rotate right

(note: Windows XP's Preview also has this problem.)

507 Name: !WAHa.06x36 : 2007-03-01 13:12 ID:Heaven [Del]

"Right" and "left" are fairly arbitary designations for rotations. More accurately they are "Rotate clockwise" and "Rotate counter-clockwise", and it seems logical to me (and apparently others) that clockwise comes before counter-clockwise. I'll consider it, but I am not entirely convinced.

508 Name: Remain : 2007-03-01 20:52 ID:95xgjm4/ [Del]

Yeah, I understand what you mean.
"Rotate left" and "rotate right" aren't exactly very accurate descriptions, but a lot of people still think of them that way, methinks.

And so does Apple, it seems:

http://img.photobucket.com/albums/v32/dhtns/misc/apple_preview.png

I don't know, I guess people's minds work from top to the bottom,
so they think of the top of a picture being spun left/right. (if that even makes sense)

In either case, I'll leave it up to your judgment.

Thanks for your time!

509 Name: Pascal : 2007-03-02 04:05 ID:hK2FHSVb [Del]

Hello anyone :) First, for me, Xee is the best apply for looking a picture on a Mac, how ACDsee on windows !
But, just a suggestion : why the windows never reminder is last size ?
"Get info" can remember is late place en size, but not the viewer :-(

Very very good soft !

510 Name: 88 Gunner : 2007-03-02 08:10 ID:uzpttUPF [Del]

like the program even more and more especially the zip thing, like to see a thumbnail option to see inside zip tar or other files if it is possible. so keep on the good work enjoy XEE

511 Name: Anonymous : 2007-03-03 18:22 ID:7DfzYHmw [Del]

>>507

Say, I've thinking about this. Instead of donating to you through Paypal, do you have a local Amazon where you live? If you do, why not set up a wish list and paste it here? I'm not a huge fan of Paypal and from what I remember, their commission cut isn't small.

512 Name: Mike T. : 2007-03-07 12:31 ID:aGw6Vi4y [Del]

Thank you for this app!!! It works exactly like I want a simple viewer to work! I can't even begin to tell you for how long I've been looking for something like an early ACDSee for Windows (before it became a huge bloatware).

Quick suggestion.. could you make it behave a bit more like Photoshop? For example, if you hold a spacebar in PS, you can then scroll around an image. It would be great if I could hold a spacebar and then use arrow keys or a mouse to move around a zoomed in image.

Thanks! Donation's coming.

513 Name: !WAHa.06x36 : 2007-03-07 13:24 ID:Heaven [Del]

>>512

I'm not sure why you would want to hold the spacebar, as you can move the image around with the mouse or arrow keys without holding it down right now?

514 Name: Martin : 2007-03-07 14:31 ID:Sm4lNxZG [Del]

Tiger 10.48, Xee 2.0
Preferences > Formats > Select all.

:-( now I cannot UNCHECK them anymore.. only some of them. I tried a restart and trashing the preference file.

Can somebody help me please? Thanks, Martin.

515 Name: !WAHa.06x36 : 2007-03-07 15:17 ID:Heaven [Del]

>>514

There is no way for a program to tell the system to NOT use it. If no other program is available to open a file, there is no way to deselect yourself.

516 Name: Martin : 2007-03-07 15:38 ID:Sm4lNxZG [Del]

But I do have another program available -- called "Preview" (for the jpgs) ;-)

I have also DefaultApp installed - I can "fix" it with that. In case a future reader wants to know more - see here: http://www.rubicode.com/Software/RCDefaultApp/

Thanks for the prompt reply BTW. I like Xee. One suggestion: make a preference that opens the window using the full screen (keeping the menu bar) and NOT changing window size to the picture - that's distracting to me. It would be as if during a movie the screensize of my TV would change randomly - makes it for me difficult to focus on the image itself.

517 Name: !WAHa.06x36 : 2007-03-07 16:00 ID:Heaven [Del]

>>516

You can turn off the window resizing already, in the preferences. Also, after doing some testing, there seems to be some kind of bug with the filetype handling code... Going to have to investigate that.

518 Name: Tim : 2007-03-08 03:11 ID:rQwKXFXk [Del]

Plz, oh plz give this little tool an thumbnail and browser view through pressing the "ENTER" key. Would make this thing to absolute killer-app for viewing pictures.

atm: iView and the others that offer one still are a touch better!

519 Name: !WAHa.06x36 : 2007-03-08 03:32 ID:Heaven [Del]

>>518

Once again, the Finder is already a very capable thumbnail browser, and I see no reason wasting my effort re-implementing what's already there.

520 Name: Dogs Thatchasecars : 2007-03-08 06:13 ID:75FtVzbI [Del]

I really like Xee - fast, slick interface, beats the pants of Prevew.

2 features that I think would enhance it mightily:

  1. A browser window, so you can see the contents of a directory (a la acdsee and irfanview) -- a "thumbnail/preview option".
  2. Support for PDF, as I'm not impressed at all by Preview's handling of PDFs.

thanks for great software!

Dogs

521 Name: Anonymous : 2007-03-08 06:23 ID:Heaven [Del]

522 Name: Anonymous : 2007-03-09 02:58 ID:md1QVJgJ [Del]

>>519
The only reasons being the ability to scan thumbnails from archives, and well, the fact that an ACDSee-like browser beats finder hands down when it comes to keyboard navigation, etc.

523 Name: Martin : 2007-03-10 23:56 ID:Sm4lNxZG [Del]

I meant to have Xee open the initial window full screen sized. So the application window fills the full screen which has the advantage that i can focus on my image, yet have the navigation still at hand.

Currently I have checked "Never resize windows" but Xee seems to forget my last window size and opens always as a default with 800 pixel or so width.

Does my suggestion make sense ?

524 Name: Martin : 2007-03-10 23:59 ID:Sm4lNxZG [Del]

My post referrs to >> 516 (sorry, I can't figure out how to make that reference link).

525 Name: Martin : 2007-03-11 00:06 ID:Sm4lNxZG [Del]

If you have set the default window size to 800, I assume you want to accomodate smaller screens. However as I know from webdesign, there are possibilities to default the window size to the full computer screen - no matter what size.

If a user already has the "philosophy" to select "never resize windows" it should be fairly easy to have Xee pop up full window size upon launch WITHOUT the need to click the green button when Xee launches.

At the minimum I'd simply wish Xee would remember in that case the last window size. Now that should be easy to implement.

526 Name: !WAHa.06x36 : 2007-03-11 06:11 ID:Heaven [Del]

There are several improvements that could be made to the window sizing and placement. When I have the time, I will look at it. But I am fairly busy, so it could be a while.

527 Name: Narcotix88 : 2007-03-13 03:47 ID:mOxYeN+J [Del]

Hi ! I've done a french translation of this fantastic sofware i uses a lot. It's nearly finished.
http://spytv.keo.in/fr.lproj.zip
Could this translation be integrated in the next realse ?

528 Name: !WAHa.06x36 : 2007-03-13 05:37 ID:Heaven [Del]

>>527

It will probably need to be updated for any GUI changes in the next release. If you give me a mail address, I'll give you a new version to translate when the time comes.

529 Name: Anonymous : 2007-03-13 05:43 ID:3rIY9eKI [Del]

First of all,
thanks for your hard work. You've made the best OS X image viewer possible. I wasn't happy with Preview, but Xee made browsing pictures worthwhile again.

One feature I would like to see in another release would be being able to set the current picture as wallpaper. I don't know if that's possible.

Thanks again!

530 Post deleted by moderator.

531 Name: !WAHa.06x36 : 2007-03-13 16:40 ID:Heaven [Del]

>>530

Thanks. I removed the post so you don't need to get any extra spam.

532 Name: Keruah : 2007-03-14 12:59 ID:jigr4WIx [Del]

Can't assign backspace key on the «prev image» action (bug)

533 Name: !WAHa.06x36 : 2007-03-14 15:12 ID:Heaven [Del]

>>532

What happens when you try?

534 Name: Anonymous : 2007-03-17 13:24 ID:CbwWeXt2 [Del]

535 Name: Remain : 2007-03-17 21:36 ID:PKK2glNl [Del]

I found some keyboard shortcut-related bugs.

Bug 1:

When Space is assigned to an action (in my case, Next Image)
it doesn't not work as the "select focused element" key in dialogs/sheets.

For instance,
if I'm in the Rename or Delete confirmation dialog and I use Tab to focus the OK or Cancel button,
pressing Space won't "press" on the focused button.

(note: If Space is not assigned to anything, then it works.)

Bug 2:

If Escape is assigned to an action (in my case, it's the default setting: "Cancel Action or Close Window or Drawer"),
it does not work in the Delete confirmation dialog;it doesn't close it.

(note: Just like Bug 1, if Escape is not assigned to anything, then it works.
However, Escape DOES work in the Rename dialog.)

Bug 3:

In the Rename and Delete confirmation dialog/sheet,
pressing Tab does not move the focus to the OK and Cancel buttons.

536 Name: Remain : 2007-03-17 21:46 ID:PKK2glNl [Del]

Whoa, now THIS is a weird bug.

If I display a file in Xee and choose Rename, then I rename the file to a name that contains one or many slashes "/", the file seems to DISAPPEAR.

I tried searching for the file in Spotlight.
And I did "ls" in Terminal.
Nothing.
The file is GONE.

Freaky.

537 Name: !WAHa.06x36 : 2007-03-18 05:39 ID:Heaven [Del]

>>535-536

Thanks!

538 Name: !WAHa.06x36 : 2007-03-18 05:43 ID:Heaven [Del]

>>536

Also, I know the reason for this one: Since OS X is a Unix system, slashes are not allowed in filenames, but because slashes have traditionally been allowed, a kludge was inserted that silently maps slashes to and from colons in filenames. However, I need to do that by hand and I have not implemented that.

That doesn't really explain why it would DISAPPEAR, though.

539 Name: Anonymous : 2007-03-18 09:33 ID:U+AQnAcm [Del]

opening a JPEG file procuded by a Canon EOS 400D (same as XTi in the US) result in a null pointer dereference. Following message appears in the logs: "(null): Custom function unsupported; please report to author (Canon EOS 400D DIGITAL)"

540 Name: !WAHa.06x36 : 2007-03-18 11:39 ID:Heaven [Del]

>>539

You'll need to provide me with an example file before I can fix it.

541 Name: Remain : 2007-03-18 13:02 ID:PKK2glNl [Del]

>>537

So those will be fixed in 2.0.1, I'm guessing?

Oh, by the way, I just realized that in Bug 1, I said, "and I use Tab to focus the OK or Cancel button".

But then in Bug 3, I said that I CAN'T use Tab to focus. What the heck???

I just tried it out now and indeed, it CANNOT do it.

But I distinctively remember having used Tab at a certain point. Really weird. (Maybe I just remembered wrong.)

In either case, I hope Tab, Escape and Space will all work in the next release.

>>538

Yeah, I do know about the UNIX thing.
That's why I tried to play around with ":" and "/" to see what would happen.
I first tried ":", and it showed up in Finder as a "/", which told me that Xee uses the "real" UNIX file names.
Then I tried "/", and, well... bye bye file. =P

Say, you wouldn't happen to know where that file could've gone, would you?

Is is still in that folder/directory? (though doing "ls" in Terminal shows nothing)

Or is it lost forever in hard disk purgatory?

542 Name: !WAHa.06x36 : 2007-03-18 13:29 ID:Heaven [Del]

>>541

They will hopefully be fixed once I get some time to work on it.

Also, I would have expected the rename to just fail and that nothing would happen. For the file to disappear seems very wrong. I'll look into that later.

543 Name: Alohaglide : 2007-03-18 21:44 ID:BiUq1gje [Del]

I apologize if I missed it in this thread, but is there a way to have the images open up so that their width expands to the full width of the screen, but not both width and height?

I want it to open an image as large as possible horizontally, but dont mind scrolling vertically.

Many thanks...the speed of this app is awesome!

544 Name: Remain : 2007-03-18 22:15 ID:PKK2glNl [Del]

I think the closest you can get is:
View > Automatic Zoom > check Enlarge To Fit

I don't think you can "enlarge to fit width" only.

545 Name: Alohaglide : 2007-03-19 00:26 ID:BiUq1gje [Del]

I think you are right, Remain. If I make a patch, could I submit it?

thanks

546 Name: Bryce : 2007-03-19 02:03 ID:byy17Hx1 [Del]

This is a really great image viewer, and I appreciate all the effort you've made to make it as clean and simple, yet powerful, as it is.

I've started using it to view very large sets of images (20,000) and the performance upon opening the folder is really bad. The source of the problem seems to be that when you sort the files you call CFURLCreateFromFSRef for every single comparison operation. Maybe instead you could call it once for each file and cache the result? Or even better would be to build the full expanded path when you first read the directory contents so you don't need to expand it later.

547 Name: !WAHa.06x36 : 2007-03-19 06:39 ID:Heaven [Del]

>>545

It seems an awfully specific feature. I don't think many people would have a use for it, and I am loath to add clutter to the interface with such features. That way lies feature creep.

>>546

Yeah, I know, I really need to optimize this. However, there is a reason I use FSRefs and not paths in the list, which is to keep track of files as they are moved around. However, calculating paths once before sorting and then caching them might indeed help. I'll look into that.

548 Name: Bryce : 2007-03-20 01:37 ID:byy17Hx1 [Del]

Re 546: I went ahead implemented the caching of file paths during sorting, and it reduced the start-up time for my folder with 27,000 images from 327 seconds to 11 seconds. Not bad, huh?

In _runSorter I added:

int count=[entries count];
for(int i=0;i<count;i++) [[entries objectAtIndex:i] SetTmpPath];
[entries sortUsingSelector:@selector(compareTmpPaths:)];
for(int i=0;i<count;i++) [[entries objectAtIndex:i] ClearTmpPath];

and then added a tmp_path variable to XeeDirectoryEntry. I can send you the full source if you like.

549 Name: Bryce : 2007-03-20 01:47 ID:byy17Hx1 [Del]

I forgot to mention another change I made to improver performance:

-(void)addEntry:(XeeFileEntry *)entry sort:(BOOL)sort
{

[self lockList];

#if 0

int index=[entries indexOfObject:entry];
if(index!=NSNotFound) { [self unlockListWithUpdates:NO]; return; } // already added

#endif

This code adds another 50 seconds on top of the 327 seconds I quoted above. If there is only one directory loaded then this isn't necessary (as in my case). For other situations I'd recommend either sorting the list before adding to it (so a binary search would be possible), or add things unconditionally, then sort, then scan and look for adjacent items that are duplicated.

550 Post deleted by user.

551 Post deleted by user.

552 Name: !WAHa.06x36 : 2007-03-20 05:31 ID:Heaven [Del]

>>549

That won't work quite correctly in all cases, as the clicked image is added twice in some circumstances. Also, the whole thing needs to be thread-safe (current versions don't use threads when scanning but future ones will), so it's all kind of tricky to get right. I'll have to look it through thoroughly when I find some time...

553 Name: Will : 2007-03-21 14:33 ID:5ebTZK9b [Del]

Wow this thing is -FAST-! -Too bad it doesn't do optional thumbnailing & metadata. -You'd beat the crap out of ImageBrowser, et. al. !

Great work man!!!!!

554 Name: Remain : 2007-03-21 15:58 ID:DXOPBOuc [Del]

Suggestion:

How about something to indicate when part of the picture is outside the boundaries of the window?

Since Xee doesn't use scrollbars (and I actually like this approach),
there should be another way to let the user know that the current pic can be scrolled.

I guess there could be an indication in the Status Bar?

555 Name: Remain : 2007-03-21 16:04 ID:DXOPBOuc [Del]

Suggestion:

How about something to indicate when part of the picture is outside the boundaries of the window?

Since Xee doesn't use scrollbars (and I actually like this approach),
there should be another way to let the user know that the current pic can be scrolled.

I guess there could be an indication in the Status Bar?

556 Name: Anthony Sigalas : 2007-03-22 05:37 ID:7ZczXQxT [Del]

Great Work. I have a request: Bind a default keyboard shortcut to Slideshow Run (say command + option + S) so that I can complete a great Sofa Control Script to browse / view images via the Apple Remote control. I know I can do this myself on prefs but so will have to everyone that uses Sofa Control + Xee. I think that's very easy to implement. On a diiferent note some applescript support would be great for future versions :-)

557 Name: world peace : 2007-04-01 04:49 ID:xF5VHVGn [Del]

It would be nice to have thumbnail browser, where one can configure thumbnail size. This is convenient when searching for a photo and filenames are generic.

558 Name: !WAHa.06x36 : 2007-04-01 05:18 ID:Heaven [Del]

>>557

Once again, the finder already does that.

559 Name: Anonymous : 2007-04-01 11:43 ID:7DfzYHmw [Del]

Enhancement request:

Folders can be dropped onto Xee in the dock to browse that folder. Can this be extended so that:

- folders can also be dropped onto the Xee window to open that folder, as the window is much larger and easier to drop files onto

- be able to browse the items in that folder and its subfolders, using depth first search useful for browsing manga more than anything else

560 Post deleted by moderator.

561 Name: Gopher Bill : 2007-04-05 09:59 ID:aPuJ0Q0Z [Del]

I've noticed a problem with Xee in trying to delete files from an AFP mounted volume. The Finder will do it, but Xee says "The file "blabla" could not be deleted." I'm pretty sure that it's not a permissions problem. Maybe it's just me :)

562 Name: Remain : 2007-04-07 02:42 ID:eaPTUmHe [Del]

Suggestion:

A preference to turn off the "Open" dialog when you open Xee directly (meaning not through opening a file).

I, for one, never use that dialog to open files; I open them through the Finder.

But also, there are certain instances where that dialog is completely pointless and only annoying.

For example, when you just want to open Xee to paste the clipboard.

Therefore, I believe that dialog should be made optional.

563 Name: Frank : 2007-04-10 03:00 ID:l1rF9/8j [Del]

I have some favorite folders where I have put aliases to the original pictures. When I open such an alias with Xee, it open correctly the original and views it. When I toggle to the next picture/alias, it views the next picture from the original picture folder, and not the next alias from the favorite folder.

564 Name: !WAHa.06x36 : 2007-04-10 04:54 ID:Heaven [Del]

>>563

I haven't checked yet, but this may be a limitation in OS X that I can't do anything about.

565 Name: J�rgen Lugsch (moved from other thread) : 2007-04-11 07:24 ID:6THb/Qdo [Del]

Hello,

Is there an easy way to translate Xee to german language, e.g. by exchanging some strings in a text file?

566 Name: !WAHa.06x36 : 2007-04-11 07:24 ID:6THb/Qdo [Del]

Yes, the usual method of editing Localized.strings and all .nib files works. However, I already received a German translation so hopefully the next version, whenever I can get it finished, will be localized.

Also, please use the existing threads for short questions, to keep all discussion in one place.

567 Name: george : 2007-04-12 01:41 ID:wnItLTrp [Del]

when dragging a folder that has subfolders full of images to Xee, it reports "No images available". Maybe make it search recursively for images? It's this close to being pure joy.

568 Name: bhcatlady : 2007-04-12 21:16 ID:aEYOu2ZX [Del]

I seem to have a problem. To be honest I haven't read all 567 posts. Most of them I don't understand anyway.
I have a digital photo frame. I viewed all the pictures with Xee and deleted those I didn't want. They are on an SD card. None of them went to the trash. When I play the pictures, they all come up. If I go to the folder mode on the frame, it shows trashes and that is where the discarded pix live; but I am unable to see them on my Mac so that I can discard them permanently. How would I do this, or is it impossible?
Thanks for your response.
MeoW
Susan

569 Post deleted by user.

570 Name: brooks : 2007-04-15 14:42 ID:rAPNNkGw [Del]

it would be really really nice to be able to see the exif data somehow, maybe transparent over it or something.

thanks

if there is a way already im sorry i missed it

571 Name: !WAHa.06x36 : 2007-04-16 05:03 ID:OmtsthcK [Del]

>>570

File -> Get Info

572 Post deleted by user.

573 Name: Allister : 2007-04-24 21:14 ID:GgFzthQp [Del]

Excellent piece of software. It would be perfect if I could get a thumbnail view of all pictures in a folder as well. As things stand Xee is great for looking at pictures but not so good for sorting.

574 Name: Remain : 2007-04-24 23:15 ID:zkNU1HHD [Del]

>>573

You can do that in the Finder though.

View > Show View Options (or Cmd J)

Check "Show Icon Preview"
(obviously, it'd be best to also set Icon Size to a reasonably large size)

As for sorting, you can change the order of the pictures in Xee by doing
Browse > Sort Order
There are 3 options: By Filename, By Date, By Size

Besides, I think Dag Ågren doesn't want to add a thumbnail file browser.
>>557
>>558

I would agree, because this would be a step towards bloatware.
(see: ACDSee http://en.wikipedia.org/wiki/Acdsee )

575 Name: Guntis : 2007-04-30 03:17 ID:nWcigP/l [Del]

I have Xee 2.0 running on PowerBook G4 PPC Mac. I don't kknow why, but every time I open some JPG image and rotate, save, open next image, rotate, save, open next image... after 5-10 such operations Xee crashes... constantly...

576 Name: !WAHa.06x36 : 2007-04-30 04:14 ID:Heaven [Del]

>>575

Can you post a crash log?

577 Name: Juan : 2007-04-30 05:21 ID:tUUCj2h4 [Del]

>>270

Is there a Spanish translation of Xeen?
it is already done?

578 Name: !WAHa.06x36 : 2007-05-01 07:02 ID:OmtsthcK [Del]

A person apparently going by just the name "John" contributed some icons for Xee:

http://wakaba.c3.cx/releases/mac/DocumentStyle.xeeicons.zip

At some point I really need to link the alternate icon sets from the homepage, too.

Also, >>577, no.

579 Post deleted by user.

580 Name: sin : 2007-05-01 22:17 ID:FX5fVIbd [Del]

>>578
Adam Betts made a very great set of replacement-icons for xee
http://www.artofadambetts.com/weblog/index.php?s=xee

581 Name: ange : 2007-05-05 02:28 ID:n6ed9axZ (Image: 0x0 zip, 104 kb) [Del]

>>527

I've finalized the french localisation of Xee (2.0). But unfortunately i'haven't a FTP site to propose you the zip of the fr.lproj.... (108 Kb). I try with the Image button hereafter, else can you send me a email where i can send you this translation to be added to the software ?

Enjoy !

582 Name: XEE : 2007-05-06 06:12 ID:ZvngO1eN [Del]

I think this had been said a thousand times, but when it has Two-Page feature for comics, PERFECT! :D Is developer considering about that?

583 Name: !WAHa.06x36 : 2007-05-06 09:24 ID:Heaven [Del]

>>581

Thanks. I hope to add it to the next version when that is finally done, but it will probably need updating. I will mail you when the time comes.

584 Name: Remain : 2007-05-06 22:51 ID:Ikgne3Zq [Del]

Just curious: will the next version be able to remember window size and position?

I really hope so, as it is one of my biggest (and only) gripes with Xee.

Thanks a lot!

585 Post deleted by user.

586 Name: ange : 2007-05-07 23:28 ID:7V+e6kyR [Del]

>>583

Ok. I'm waiting with impatience the new version ! Does it include the possibility to change the resolution ?

587 Name: PiotrW : 2007-05-12 12:31 ID:7A62EW/N [Del]

I've just discovered Xee and love it. But I have one little feature request - could you add an option to browse only associated file formats? No it tries to open my RAFs and fails every time.

588 Name: TTaveira : 2007-05-17 12:46 ID:wzDYP/Ug [Del]

Someone mentioned that Xee lacks an option to Set the desktop background... That would be quite useful in my opinion. No responded though :)

Any plans to add that?

TTaveira, Portugal

589 Name: raiten : 2007-05-19 01:09 ID:ciioz3Ln [Del]

here a few feature request i have about xee
some are from windows irfanview

  • open a directory as thumbnail to have a more global view of multiple images (thumbnail size could be define freely)
  • when displaying image (full screen or not), you can add a text with name of file, base folder, some exif data like date, aperture, speed, or else
  • with the copy/move option, you can define a list of multiple folders with their keyboard shortcut to sort images quickly.
  • miss a lot a list of 10 or 50 last opened folders/files

(there is one in xee1 but never fills ...)

  • with a thumbnail view, it would be cool to be able to batch some operation like rotation, mirror or file conversion/resize
  • one quick operation it would be good to have is change of constrast and light
  • option to keep or not status bar in full screen mode.

else, a great tool
thanks a lot for it

note: as i'm waiting for 10.5, i'm still stuck with xee1 for 10.3. so maybe some feature exist. soory for it.

590 Name: Nightkrawler : 2007-05-21 11:21 ID:wADQXUb4 [Del]

So the thumbnail request...
I understand that Xee is just a image viewer and not a thumbnail indexer/viewer, and the implantation of that may be hard, but a shortcut to the inbuilt fullscreen thumbnail preview of OS X would be great and i think (Im no programmer) relative easy to code.
look at minute 4:00 http://www.youtube.com/watch?v=GKP5fFelYkI they really improved it with core animation in Leopard, its way faster than in Tiger even at many pictures and really looks awesome.

So my wish is that it would be possible to open the inbuilt fullscreen slideshow presenter of OS-X right out of Xee with all the pictures. - only if a direct implantation of displaying thumbnails would be to ... far from the purpose of Xee.
Oh yes and a "set as wallpaper" really would useful :)

Anyway I love Xee, cant thinking browsing my images without it :)

591 Name: Guntis : 2007-05-21 12:27 ID:nWcigP/l [Del]

When I rename any jpg or gif file which has Spotlight Commnets, then after renaming these comments are lost... Can you improve Xee here?

592 Name: !WAHa.06x36 : 2007-05-23 06:58 ID:6THb/Qdo [Del]

>>589

Some of that is implemented in Xee 2, and some won't be implemented any time soon, such as thumbnails, because Finder already does thumbnails for you.

>>590

I've never seen that feature in Tiger. How would one access that?

>>591

I'll look into that at some point, but it sounds more like an OS X bug than anything else.

593 Name: Nightkrawler : 2007-05-23 16:11 ID:k6ZuOiR1 [Del]

>>592
select some pictures in finder, rightclick them and choose "slideshow".
Or open them with preview and press shift+cmd+f.
But its only nice when you have 90 pics max or so in tiger.
http://www.google.com/search?q=finder+slideshow

594 Name: Remain : 2007-05-30 14:14 ID:eTKRYtBS [Del]

>>593

For me, it's 99 pictures max: 9 rows of 11 pics each.
(unless it's different at different resolutions)

Bug 1:

By default, Space is assigned to both Toggle Animation and Next Image. (that's 1 problem)

But it only acts as Next Image. Even if I remove Space from Next Image, it still won't work as Toggle Animation for some reason. (You'll hear the system sound, meaning no effect.)

Bug 2:

Certain GIFs has a very dark color for their transparent areas.

In browsers, you'll see these transparent areas as white.

But in Xee, they'll be displayed in that dark color.
This can effectively make the image "un-viewable."

Here's an example:

This is the actual GIF image:
http://img.photobucket.com/albums/v32/dhtns/misc/xee_gif_trans_orig.gif

Here's what it looks like in a browser:
http://img.photobucket.com/albums/v32/dhtns/misc/xee_gif_trans_browser.png
(see how the transparent areas are white)

Here's what it looks like in Preview:
http://img.photobucket.com/albums/v32/dhtns/misc/xee_gif_trans_preview.png

But here's what it looks like in Xee:
http://img.photobucket.com/albums/v32/dhtns/misc/xee_gif_trans_xee.png

Yeah... you can't see much of anything. (If you zoom in, you'll see that it's not actually black, it's just a very dark shade of gray.)

This is why I'd like to request a way to set the color of transparent areas of GIFs, PNGs, etc.

In Preferences, there's a pref called "Default image background" but it does not seem to do anything.
(Say, I set it to red then I try out GIFs with transparencies, but I see nothing red. So I'm not really sure what that pref does.)

595 Name: !WAHa.06x36 : 2007-05-31 05:21 ID:Heaven [Del]

> Bug 2:
> Certain GIFs has a very dark color for their transparent areas.

That's not a bug as such, it's just displaying the GIF as it is defined. The problem is that the GIF is specifying a non-sensical background colour. Xee compromises by displaying the transparent colour with a pattern. If I changed it to override the background colour defined in the GIF, there would a lot of other images that would display wrong instead.

You could try complaining to whoever or whatever made the broken image.

596 Name: Remain : 2007-05-31 07:13 ID:eTKRYtBS [Del]

Well, I got that image from the Web, so I don't really know who made it.

But the thing is, that's not the only one that's like this.

I've got a bunch that have the same issue.

Yes, I understand that it's the image makers' fault and not Xee's.

But I use Xee as my main image viewer,
so it would be nice if I were able to view my entire collection with Xee without having to resort to opening in a browser for certain random ones.

I'm not saying make "white for transparent areas" the default behavior.

I just want to request a way to set it that way, perhaps temporarily.

For instance, a quick pref under the View menu. (View > "Show Transparency in White" or something)

So that for cases such as this, where nothing can be seen, that quick pref can be toggled on, and you can see it as you would in a browser.

Thanks for your time!

597 Name: !WAHa.06x36 : 2007-05-31 13:00 ID:Heaven [Del]

>>596

I might, but I've got a lot of other stuff that needs fixing too.

598 Name: Remain : 2007-05-31 13:06 ID:p9h+HAsF [Del]

Thanks for considering it. Much appreciated.

Actually, the number one thing on my Xee wishlist right now is for Xee to remember window size and position instead of always loading the default size.

In any case, I'm really looking forward to 2.1!

599 Name: jamik : 2007-06-01 23:17 ID:loonkKkL [Del]

Thx! Xee the best!

600 Name: Justin : 2007-06-02 10:39 ID:8tI0zW0m [Del]

I think a great feature would be if Xee supported the autorate stuff from cameras with a rotation sensor. It would be very helpful

601 Name: !WAHa.06x36 : 2007-06-02 17:19 ID:Heaven [Del]

>>600

It does.

602 Name: czechxteam : 2007-06-03 10:25 ID:KFhevC9j [Del]

I would like see one feature in next version:
I would like to see filename with path while slideshow/presentation - it should depend on some preference.

603 Name: Anonymous : 2007-06-03 14:13 ID:eTH0EC1M [Del]

^ I 'd like that!

604 Name: Anonymous : 2007-06-04 13:58 ID:901KVNlC [Del]

Print capability. That's essential!

605 Name: Anonymous : 2007-06-05 09:07 ID:D1yPWtkN [Del]

>>592 >>591
According to "Renamer4Mac" file comments are lost when things are renamed via the "System" instead of the "Finder"

I have no clue what that means but changing the preference from "System" to "Finder" does keep the Spotlight Comments.

606 Name: Athanasios : 2007-06-07 15:34 ID:C4cbQfku [Del]

Hi everyone.

Do you know why I cannot seem to be able to have antialias for scaled up images? I have antialias set to smooth high, but if I try to view a small image in a large window( say 200 or 300%), it is all pixeled up, no antialiasing whatsoever. All of this with xee2.0 on a core2duo macbook.

best regards to everyone

607 Name: Anonymous : 2007-06-07 16:13 ID:Heaven [Del]

608 Name: Athanasios : 2007-06-08 03:55 ID:BWaRchy+ [Del]

Ah. Fair enough. Anyway, it would be nice to have smooth zoomed in pictures.

best regards

609 Name: Sparky : 2007-06-10 17:50 ID:LBsa/qHa [Del]

When I try to open RAW files from an Olympus C5050-z I can see them in the preview pane, but Xee is unable to open the image.

I get a black screen and a statement "Couldn't display file (filename)"

610 Name: !WAHa.06x36 : 2007-06-10 18:45 ID:Heaven [Del]

>>609

Can't do anything about that unless I have an image to test on.

611 Name: Timothy Bonnici : 2007-06-13 09:00 ID:xgl04JOL [Del]

Just dowloaded Xee and I really like it. It's pretty much perfect for how I sort my photos with one exception - no capability to add tags/Spotlight keywords. If it could do that then it'd be pretty much perfect in my eyes.

Another thing which would be nice is if there was a preference to control the sound effects/turn them off.

612 Name: Andreas : 2007-06-13 13:33 ID:rD/jlGCW [Del]

Xee is the best image viewer I've found for Mac (almost as good as irfanview for XP).
I've however found a small "bug"; rotating an image in full screen crops the image and you have to go to normal mode and then back to full screen for it to display properly.
Otherwise it is super!

613 Name: !WAHa.06x36 : 2007-06-13 16:38 ID:Heaven [Del]

>>612

That is completely normal behaviour. It's just not changing the zoom level. Use Zoom out or Fit to Screen.

614 Name: Kat : 2007-06-18 06:27 ID:Qobp8V+w [Del]

Whenever I use Xee to rotate a picture and then save it "losslessly" the picture quality is still degraded anyway. I read a post dated 2006 in this forum that said Xee automatically saves the rotation of a picture without loss of quality, so pressing Save is unnecessary and actually reduces quality. I guess this has changed? My rotations are not automatically saved, so I manually save, resulting in a very discernable reduction in image quality despite it supposedly being lossless. Also, for cropping, saving losslessly isn't even an option, I have to "save as." Any suggestions?

615 Name: !WAHa.06x36 : 2007-06-18 07:01 ID:BcTCx8CP [Del]

>>614

The system for saving rotations has changed, yes, you need to manually save. But it really does not degrade quality - there is no way for it do so unless you select Save As and manually pick to save as "JPEG" instead of "JPEG without recompressing".

Also, since cropping is not ever "lossless" as such, as you lose the data you cropped out, you have to use Save As for that. The default option should be set to "JPEG without recompressing" which is the "lossless" mode.

616 Name: wm : 2007-06-22 00:43 ID:XVGtf/+a [Del]

Is there a way to set the current zoom level in a way that it won't change when going to the next image? This would be particular helpfull when doing a presentation (or watching) of digicam pictures which tend to have the wrong size an must therefore manually zoomed 2 times each picture again...

617 Name: !WAHa.06x36 : 2007-06-22 07:09 ID:Heaven [Del]

View -> Automatic Zoom

618 Name: wm : 2007-06-22 10:26 ID:4YS6XVa9 [Del]

Thanks, that was exactly what I had been looking for.

619 Name: Timothy Bonnici : 2007-06-25 06:17 ID:ImSNrvx5 [Del]

Since I posted the comment above I've learnt a bit more about metadata and it turns out that what I like is adding tags to the EXIF keywords field rather than the Spotlight tags which are stored in the .DS_Store files. A system like Photoshop/Adobe Bridge where you can store the keywords in a list, grouped together in user-defined categories is perfect. At the moment that's what I use to tag my photos and it seems a bit ridiculous to fire up such a heavyweight app just for tagging, especially as I've converted over to Xee for organising and naming my photos

620 Name: Danielj : 2007-06-26 12:04 ID:s5Ng5qyA [Del]

When using Xee to open images out of a directory (external drive) with many image files (thousand+) the loading time for opening each image is unreasonable long, compared to preview. Is this a known bug, and is there any chance it will be fixed? :)

621 Name: !WAHa.06x36 : 2007-06-26 16:37 ID:BcTCx8CP [Del]

>>620

Yes.

622 Name: turbo : 2007-06-30 19:33 ID:JXIGr8Wn [Del]

hi,
thanks for xee, i'm using it as my default image viewer because it's quite fast, easy, light-weight and supports many formats. i just got a feature request: cmm - color management. apple's preview's got it, most other apps have it, too. whenever i open pictures with icc profiles embedded other than srgb, they are displayed incorrectly.

623 Name: !WAHa.06x36 : 2007-07-01 20:05 ID:Heaven [Del]

It is on the list, but it will most likely be a long time before I get around to that. It is no easy task.

OS X has built-in CMM, which pretty much every app uses, but it does not work together with OpenGL, which Xee uses, which means it will probably have to be implemented from scratch.

624 Name: ruby : 2007-07-06 13:18 ID:dxXlUIKb [Del]

super fast! now i find a image out of hundred in a few seconds.

i like to have a switch to disable the alpha channel.

625 Name: n8 : 2007-07-11 16:20 ID:lqa2y0Jv [Del]

I just found Xee and it's really nice! I'd like to second the request for color management, though. Lots of my pics are in Adobe RGB mode and they look funky in Xee.

Thanks for the great programs (The Unarchiver too)!

626 Name: guerom00 : 2007-07-12 15:28 ID:Y8AET5mg [Del]

Feat. Req. : PDFs ! And hence, .ai :)

That would be great.

627 Name: raiten : 2007-07-16 23:46 ID:ciioz3Ln [Del]

a few more remarks (based on 1.2.1)

  • why xee does not retain last used file format when saving ?
  • why no "save" option
  • is there a way or planned feature to view and edit IPTC tags ? to search them ?

thanks a lot
Bye

628 Name: !WAHa.06x36 : 2007-07-17 05:58 ID:6THb/Qdo [Del]

> why xee does not retain last used file format when saving ?

Not many apps do that I can tell. I'm not sure if this is a desirable behaviour or not. If you want it, convince me why.

> why no "save" option

This is largely useless. The only common saving operation is lossless save, which exists in 2.0.

> is there a way or planned feature to view and edit IPTC tags ? to search them ?

Viewing, maybe in the far future, searching, no.

629 Name: Mdd : 2007-07-17 12:10 ID:B9mlcI6M [Del]

Thanks for the app!

630 Name: Nick : 2007-07-20 01:28 ID:yEyWprIZ [Del]

I really must be missing something, but I simply cannot figure out how to open the destination list. I was expecting, I dunno, a menu item or a context menu or a toolbar button. But I am completely at a loss at this point. What am I overlooking?

This app is really neat, I just downloaded it right now. It could have saved me a lot of time image sorting before now! Thanks a bunch.

631 Name: !WAHa.06x36 : 2007-07-20 04:42 ID:Heaven [Del]

>>630

File -> Copy/Move Image...

632 Name: First Name Last Name : 2007-07-21 16:37 ID:kgMId2h3 [Del]

Have no requests, just want to say >THANKS< for this great app! It's so superior compared to any other image viewer. Keep up the excellent work!

P.S. All right, maybe just one request: subfolders scanning? Maybe? Please? :)))

633 Name: Visual destination list : 2007-07-22 19:57 ID:tZ5+hftS (Image: 997x600 jpg, 59 kb) [Del]

src/1185159424193.jpg: 997x600, 59 kb

I'd love to see a "destinations" pane similar to the iTunes "Sources" pane with the various Move/Copy destinations. It would be much easier to just click (move) or option-click (copy) things to this drawer rather than try to remember what folder is assigned to what number.

634 Name: Few more requests... : 2007-07-22 19:58 ID:tZ5+hftS [Del]

  • If resizing the window, try to keep the upper left corner stationary - this will keep the toolbar buttons from moving about unexpectedly.
  • A full-screen button would be great to have on the toolbar.
  • When in full screen, it would be great if the toolbar could appear iPhoto style from the bottom (translucent black), or the aforementioned "Destination" list.

635 Name: !WAHa.06x36 : 2007-07-23 06:28 ID:Heaven [Del]

Uh... Is there something wrong with the destination list that is already there? Also, keeping the upper-left corner stationary is makes the resizing itself far less useful and more confusing, and the window already doesn't resize when you actually click the buttons in the toolbar, to avoid them moving around (unless you've reconfigured that).

636 Name: Anonymous : 2007-07-23 10:11 ID:tZ5+hftS [Del]

Oops - I missed the destination list completely. It's fine, but as I and others have noted, it's not intuitive how to find it (not on Window, View, etc - it just appears when you select "Move/Copy" on the file menu). I'd say the interior window pane is more in-line with the way Apple is doing things these days, not that there's anything wrong with drawers.

As for window resizing, if the window has to move to fit the new content, then it has to move. However, if there's no reason (new size fits on screen fine without moving the corner), then it should stay put. I did change the preference to resize windows as needed, because if I'm moving between pictures with different resolutions, orientations, and aspect ratios, I don't want to see lots of big black areas for no reason.

Or (as I just did), zoom out. The entire window shrinks, and the upper corner jumps. There's no way to keep clicking that button to zoom more because the whole window just moved FOR NO REASON. Open up any other graphics program - it won't do that. Or look at completely different applications that resize their windows dynamically - Safari, System Prefs, etc. If they don't need to move that corner, it stays stationary, so that toolbar elements and the window close/minimize/maximize buttons don't move about.

Quoting from the old Apple Human Interface Guidelines (p157):

"When the user changes the size of a window, it affects only how much of the document is visible in the window. It doesn't affect the position of the upper-left corner of the window or the appearance of the part of the view that's still showing."

637 Name: !WAHa.06x36 : 2007-07-23 12:22 ID:Heaven [Del]

The entire program is mostly optimized to be used from the keyboard. I recommend just turning off the toolbar. Keeping the corner stationary while browsing through images with they keyboard or mouse wheel causes a lot more distracting movement than keeping the center stationary.

Possibly I might change the behavior so that if you set the window to resize even when clicking toolbar buttons, it will then keep the corner stationary, but it's sort of an uncommon case so it's not very high priority.

638 Name: Anonymous : 2007-07-23 14:59 ID:tZ5+hftS [Del]

It still goes against expected behavior (based on other apps) and Apple's venerable HIG. Feel free to do it however, but it really mucks with the metaphor of the window being a single object that is resizing - moving it about like that makes it feel more like the resized window is a completely different object from the original window. There's no visual cue or connection from one to the other.

But, your program, and a great one it is.

639 Name: !WAHa.06x36 : 2007-07-24 03:36 ID:Heaven [Del]

The HIGs are fine, but they should not get in the way of improved usability in edge cases that they do not deal with. This is definitely a case where strict compliance to the HIG would decrease usability.

640 Name: Anonymous : 2007-07-24 19:19 ID:tZ5+hftS [Del]

I would disagree. I don't see how maintaining a fixed upper corner decreases usability - it certainly makes the toolbar and window controls consistent and more usable. Perhaps I'm just not understanding something about the feature?

By all means, please work with me. :-)

641 Name: Noradninja : 2007-07-25 13:24 ID:svTnAg5h [Del]

I love this app, its super fast at loading sequences of images. One request though...I use this to load .iff sequences rendered out of Maya, and would like either a way to playback a numbered sequence of images in Xee, or could you make it so that there is not the black 'flicker' (which i can only assume occurs cause the canvas is painted black to 'clear' it when swapping between images) when i scroll through a folder full of images so that I can use Xee to replace FCheck for previewing render sequences? Thanks.

642 Name: !WAHa.06x36 : 2007-07-25 14:16 ID:Heaven [Del]

>>640

The main usage of the program is to quickly flick through images in a directory. If the top corner stays fixed, this means that when browsing through different-sized images, the center of the image, which is usually close to the center of attention, jumps around, making it harder to take in the image in a single glance.

>>641

The black flicker happens when the image is not fully loaded yet. There's nothing to do about that other than browsing slower.

643 Name: Anonymous : 2007-07-25 15:06 ID:svTnAg5h [Del]

>>642

Is there a way you could add a switch to preload all the images into RAM to avoid this?

644 Name: !WAHa.06x36 : 2007-07-29 09:44 ID:Heaven [Del]

Not easily.

645 Name: Remain : 2007-07-30 01:58 ID:Iw+Ec18S [Del]

Just curious, what's the ETA for the next release?

Also, I would like to ask if there could be a preference to turn off the "Open" dialog when you open Xee directly (meaning not through opening a file).

(previously asked at >>562 )

And also, I'm also having my fingers crossed for persistent window size and position.

Thanks once again for the great app! Don't know what I'd do without it.

646 Name: KC : 2007-08-02 12:02 ID:OKAwVnJl [Del]

First I have to say, I really like the program a lot, it's nice and simple and to the point... Anyway, I was wondering whether you could add a bit more control over the way it's sorting through the images. Since it's primarily a browser, it would be nice to see an option to reverse the date sorting starting with oldest images first, or newest first, and maybe a sort by modified date(forward and backward too) I know you can do this by sorting the way finder is, but I am not always opening finder to the folder to view images in xee, so its not easy to quickly change the sorting option. Thanks a lot!

647 Post deleted by moderator.

648 Name: !WAHa.06x36 : 2007-08-03 11:24 ID:BcTCx8CP [Del]

>>646

There is intentionally no way to reverse the sort, as that doesn't really add anything - if you want to browse in the opposite order, jump to the last image and go backwards. I could maybe add sorting by modified date, but is there really a situation where this is useful?

649 Name: Remain : 2007-08-03 19:49 ID:9o1MBHhe [Del]

One example:

You add new pictures into a folder, and now you only want to browse the new ones.

By the way, "Default sort order: Same As In The Finder" only seems to work if you open a picture from a folder in List View.
Doesn't work in Icon View with "Keep Arranged By..." turned on.

650 Name: Anonymous : 2007-08-04 10:56 ID:MYSskaAl [Del]

First of all: brilliant little app! The only Problem I have is that the colours of my photos are somewhat shallow. Probably only a setting I haven't discovered yet.

651 Name: !WAHa.06x36 : 2007-08-04 15:16 ID:Heaven [Del]

>>650

There are some issues with colour management, namely that it is missing and is very hard to add. However, it's planned for some future version.

652 Name: KC : 2007-08-06 13:23 ID:OKAwVnJl [Del]

>>648

Well, I just mean, as an image browser, it would be nice to be able to browse in the order the user would like. It would just be an option added to the drop down menu to reverse order, it could even be made so that if you click 'sort by date' or 'by name' again, it would reverse, so it wouldn't even make the menu any longer. It's just a work flow thing, so you can start where you want, and not go to the end and work backwards. Why else are there reverse sort options on every file browser/email program/music player/etc.? Not to argue here, but I think it's a pretty useful option, that doesn't seem too complicated or bloated to include.

653 Name: !WAHa.06x36 : 2007-08-08 08:05 ID:Heaven [Del]

>>652

The reason it exists elsewhere is mostly that if you actually display a list, the order does matter. When you don't, like Xee, it matters less.

654 Name: Peter : 2007-08-10 09:29 ID:7EOaMzb6 [Del]

love Xee, only suggestion (as someone else suggested too) was to give the option to disable the alpha channel being shown.

655 Name: Daniel : 2007-08-11 15:42 ID:uAb6FkCE [Del]

Is there any possibility of making Xee touch the Last Opened attribute of the files viewed through it? It does it with the first file viewed (when using "Open with Xee" on a file) but not the other ones if I'm browsing a directory.

The reason I ask is because I'm playing around with Hazel, trying to make it color new images fetched from the web blue and removing the color tag on the ones I've viewed with Xee. The uncoloring part is done by checking if (date opened > date added), hence the need for Xee to touch the opened attribute.

656 Name: !WAHa.06x36 : 2007-08-11 16:14 ID:Heaven [Del]

That's weird, you wouldn't think one would need to touch an attribute like that manually. That should be the work of the filesystem to keep track of...

Well, maybe I'll do it, I'll have to look into the details of that though. When I find the time...

657 Name: Daniel : 2007-08-11 16:52 ID:uAb6FkCE (Image: 778x250 png, 72 kb) [Del]

src/1186876366599.png: 778x250, 72 kb

I thought so too, it ought to be in the interest of the file system to monitor when files are being opened. I attached an image to this post showing info for three files, all viewed in Xee. The one named 20061126 was the one Xee opened with, the other two were browsed to from within the viewer.

658 Name: Hannes : 2007-08-14 01:59 ID:pFx8Mi6d [Del]

Xee is cewl and my favorite image browser. It would just be cewler if Xee could also PRINT an image (so i finally can trash the OS X Preview app ;-)

659 Name: Pinnock : 2007-08-18 19:18 ID:s6xa0i6T [Del]

I love Xee but a few things I'd like to see:

  1. Remembering window size
  2. Option for turning off sound effects. (Is there a way to do it now?)

660 Name: Mr VacBob!JqK7T7zan. : 2007-08-19 21:25 ID:pVDvb8yu [Del]

>>656

> That should be the work of the filesystem to keep track of...

The FS updates 'atime' but not Last Opened, which is just for GUI apps? Or something?
I have no idea how to update it either...

661 Post deleted by moderator.

662 Post deleted by moderator.

663 Name: Wheelie4 : 2007-08-20 15:17 ID:5gPrrBG7 [Del]

I'm a new mac user (Macbook one month old) switching from a 18 year WinP user. I have a Fat32 external drive conneted with my pc files backed up. I was looking for an image viewer for mac that rivaled irfanview for pc's. I found Xee which comes pretty close. I don't have The Unarchiver installed. When I installed Xee it took over association of .rar and .7z files. I uninstalled and reinstalled xee three times and it keeps doing it. Those formats aren't even in Xee's preference format tab. Can this be stopped?

664 Name: !WAHa.06x36 : 2007-08-20 15:34 ID:Heaven [Del]

>>663

Get Info -> Open With and Change all... in the Finder.

665 Name: Wheelie4 : 2007-08-20 16:25 ID:5gPrrBG7 [Del]

Thx and sorry for the multiple posts, new to this type board. Actually the .rar and .7z files had no app association to them before Xee gets installed. Just odd seeing an Icon of a cardboard box with a green Xee emblem on those file types.

666 Name: Wheelie4 : 2007-08-20 16:33 ID:5gPrrBG7 [Del]

I just went ahead on installed The Unarchiver and associated .rar and .7z to it.

667 Name: Anonymous : 2007-08-20 17:44 ID:Ho1S6hsz [Del]

>>SATANGET

668 Name: Tom : 2007-08-27 23:53 ID:N1FOAR39 [Del]

Xee is a great image viewer.

One small trouble:
When I order the photos by date (timestamp) and then start viewing them, the pictures don't show in date order but in name order.
I set "date modified" of my photo files to the EXIF time stamp (jhead helps wth it) and then want to watch the pictures in chronological order (mixed from several cameras, so names don't reflect chronlogical order), but it doesn't work in Xee.

669 Name: !WAHa.06x36 : 2007-08-28 05:24 ID:Heaven [Del]

>>668

What exactly are you doing? Sorting by date works just fine in Xee as far as I can tell.

670 Name: Tom : 2007-08-28 21:39 ID:ByQA9sKt [Del]

>>669

OK, I see what you mean. There are two sort orders. One in the "Open" window, and another in "Browse" menu. I forgot about the one in Browse menu. I expect that when I sort files in "Open window" in date order and I open the first file, the files will be presented in the same order as they are shown on Open window - in date order.

Now - I found another problem. When I go to Browse/Sort order, all 3 options are greyed out (by Filename, by Date, by Size). They are grey always: when no windows are open, when "Open" window is open, when picture window is open. Onle when a picture window is open I see a check mark next to "by Filename", but all options are still grey and I can't change the sort order.

So, immediate question is, how can I access these sort order options and change the viewing sort order?

And, less imediate question is - when Open window shows files sorted by date, can they be shown in date order when viewing the photos?

671 Name: Lauri Raittila : 2007-08-29 01:32 ID:uPwfQBo2 [Del]

I haven't used Xee very long, but already found it much better than any other image viewer tried. But I have a wish for a feature:

I think it wouldn't make sence to demand lots of new sophisticated features only few are going to use, but almost everybody needs. The trouble is of course that everybody needs different features.

I have suggestion for a solution: Make Copy/Move destination list command also work with scripts and applications, not just foulders. Then it would be easy to launch them with the current image as argument.
(Allowing them to be dragged there would be nice as well, but for start, editing plist is easy enough)

I would personally use it for at least these:

  • Perl script that publishes picture in internet
  • One that would mail it to one other website
  • One that would make it ready to be attached on new email
  • Perhaps one that would open the file in metadata editor

None of those are features that would make sence to include in the program, as they are highly special, and require lots of configuration.

672 Post deleted by user.

673 Name: !WAHa.06x36 : 2007-08-29 12:37 ID:BcTCx8CP [Del]

> OK, I see what you mean. There are two sort orders. One in the "Open" window, and another in "Browse" menu. I forgot about the one in Browse menu. I expect that when I sort files in "Open window" in date order and I open the first file, the files will be presented in the same order as they are shown on Open window - in date order.

Hmm. You are right that this would be good functionality, but as far as I know there is no obvious way to figure out what sort order the user has picked in the open window. However, it might be worth looking into whether there is a non-obvious way.

Also, those menu options should not be greyed out when you have a picture window open. That is kind of strange.

674 Name: !WAHa.06x36 : 2007-08-29 12:46 ID:BcTCx8CP [Del]

>>671

Well, you can sort of use the "Open in Editor" for that as it is now, but you have to manage to package up the scripts so they appears as apps, which takes some hacking. But maybe the idea could be useful... You could file it as an issue on http://code.google.com/p/xee/issues/list and I might do something about it whenever I find some time.

675 Name: Lauri Raittila : 2007-08-29 13:50 ID:uPwfQBo2 [Del]

Thanks for your reply. Open in editor menu is good hint, but I already have my default editor there, and there is no shortcut keys for the rest. (And I have no clue about OSX programming anyway. But it seems easy enough project for starting point)

But I'll file issue on it. I will of course publish the scripts I that would do those things I mentioned if someone is interested.

676 Name: brodzky : 2007-08-30 06:22 ID:GRcRr9Fj [Del]

Hi

I'm new Mac user but I think Xee is the best image browser I've ever seen (on Mac ;-)) but it lacks one tiny feature. Could you add an info in status bar showing image pixel color under the cursor? It's a small feature but IMHO sometimes very important not only for me :)

TIA

677 Name: Anonymous : 2007-08-31 00:56 ID:eskVSKIo [Del]

Waha, I heart you and your apps.

678 Name: Alphons : 2007-08-31 11:34 ID:+xdEK93/ [Del]

I was looking for a nice app that will show me CBR files with 2 facing pages. I think Xee doesn't do this, doesn't it? Too bad, I will have to look for an alternative.

679 Name: Nathaniel : 2007-09-01 14:52 ID:PdaNeA76 [Del]

Wow, all I can say is wow. I heard about the UnArchiver from one of the Apple blogs a few months ago and instantly switched to it -- amazing it took so long for someone to produce such a perfect archive extraction utility for the Mac, but you certainly did it.

I have been using the Mac for several years now, and am a graphics professional, so one of my pet peeves was always the complete lack of good, FAST, image browsers. Every single one that I tested was either slow, only allowed viewing of pre-selected images, or had some other silly limitation. (For reference, Polyview is what I consider the gold standard on Windows for this kind of speed and flexibility, though irfanview is more widely known and similar). I can't believe I didn't notice until today that the great programmer behind the UnArchiver also had an image browser! And it rocks, it is 99% perfect, is fast and flexible. I'm in heaven.

The ONLY think I can possibly think of that I'm missing is the ability to show the file name while browsing in full-screen. That's really useful just to be able to know what I'm looking at when comparing a bunch of similar images from a shoot. Really, the status bar (and perhaps even toolbar) could do with the ability to show it even in full screen, and possibly choose which items show on the status bar the way you can customize your toolbar. Or if you don't like changing what "full screen" means, having a mode where the rest of the screen can be set to black while viewing images (if you have photoshop, you can see it has two different "full screen" modes, basically what I'm describing here).

But geez, even if you abandoned the software now (please don't!) I'd be recommending it to all my graphics friends for the next several years. Thank you, thank you :)

680 Name: Remain : 2007-09-02 21:09 ID:oGKSbKB2 [Del]

>>678

Alphons, try out Simple Comic

http://dancingtortoise.com/simplecomic/

It also has a cool feature to switch to previous/next page by clicking the left/right half of the page.

681 Name: JerryL : 2007-09-03 06:59 ID:jSotx8J9 [Del]

A question about Xee: It can easily be set to be the default application for various types of files. But it seems to be difficult/impossible to reverse the choice! Xee has a list of perhaps 50 file formats it can open. In Preferences>Formats, you can Select all, and it does indeed select them all (and seems to actually take over at least those files I have examples of). But Deselect all does nothing. Each file type has a selection box. Some of them (e.g., Fax Document) can be unselected. Others (e.g., JPEG Image) do nothing if you unselect them. What controls this seems random - about half the various "raw image" formats can be deselected.

Using Finder to set JPEG files back to using Preview works, and if I exit and reenter Xee the box is deselected.

I think I saw the same behavior with Unarchiver, but in that case when I exited and restarted, it let me Deselect all successfully (and I can't swear that it actually ever failed to work.)

Xee Version 2.0 on OS X 10.4.10.

                                                                                                   -- Jerry

682 Post deleted by user.

683 Name: Wercsy : 2007-09-03 13:15 ID:70DUnJ0i [Del]

I would like to resize images with Xee. Thx!

684 Name: !WAHa.06x36 : 2007-09-03 15:51 ID:Heaven [Del]

>>681

Known bug, already fixed in the development version.

685 Post deleted by user.

686 Name: Kalun : 2007-09-05 09:00 ID:xxuWaTUq [Del]

Any chance of ICC profile support? A must have for most colour savvy users.

687 Name: !WAHa.06x36 : 2007-09-05 14:04 ID:Heaven [Del]

>>686

I want it, but it's extremely difficult to do. On hardware that supports OpenGL pixel shaders, maybe, in the future.

688 Name: jerryc : 2007-09-05 20:27 ID:Cc4QbJKo [Del]

xee is great, but version 2.0 highjacked my cbz and cbr files and won't let them go... changing the preferences doesn't seem to do anything.

689 Name: vmg : 2007-09-07 04:06 ID:RbbLHbbA [Del]

A couple of things…

First I'd like to say this program is amazing. I use it constantly and would be lost without it.

There is a bug and a couple of feature requests.

Bug: OS X 10.5 (9A527) full screen only shows white screen. Images do not display.

Feature Requests:

  1. Option to traverse folders. I have a lot of images nested in folders and it's a pain in the nether regions to open each folder individually to display the images.
  2. Hide the mouse curser when in full screen while the mouse isn't moving. Nothing bugs me more than to view full screen images and have the mouse in the middle of the screen interrupting the view. Kind of defeats the purpose of full screen in my mind.

which brings me to…

3. Hud window toolbar in full screen and controller similar to quicktime's full screen controller. I imagine that the hud would appear and give the user rotating, image stepping, image copying and moving etc.

690 Name: jobaer : 2007-09-19 14:36 ID:WvQ9RxWH [Del]

Xee's great! What would make my day are two additional features when cropping a picture:

  1. The option of selecting a size with the same ratio as the original, e.g. by pressing SHIFT while selecting.
  2. The option of getting some of the traditional picture ratios (e.g. 3:4) in either landscape or portrait mode for the selected portion.

691 Name: Anonymous : 2007-09-23 10:13 ID:7DfzYHmw [Del]

>>689

http://doomlaser.com/cursorcerer-hide-your-cursor-at-will/

I am using this little program to hide my cursor globally on idle. It needs to be applied on every start but it does the job.

692 Name: aris : 2007-09-24 11:41 ID:d5xqJhbx [Del]

I love Xee. It works really well. The scrolling is lovely. A couple of requests to consider:

When viewing a large number of images, it would be useful to be able to perform a simultaneous (rotate)AND(shrink to fit). I am starting to get RSI from apple+R then ALT+zero (kidding!)

After a rotate then save, the EXIF orientation tag becomes "unknown". Can its value be modified and saved correctly?

Can we have something like a custom EXIF info window? For example: a small window onto which we can drop EXIF properties from the main Info Window. This way I can display only the properties I like in a compact window. It would also be great if the window could display those properties horizontally like a status bar. Maybe, the status bar can be made to accept a property dropped on it from the info window. Small size is the focus here.

Well, apart from that, I seriously have no complaints. Great work, keep it up, we love you, we kiss you, we applaud!

693 Name: !WAHa.06x36 : 2007-09-24 16:39 ID:Heaven [Del]

> When viewing a large number of images, it would be useful to be able to perform a simultaneous (rotate)AND(shrink to fit). I am starting to get RSI from apple+R then ALT+zero (kidding!)

I'll try to think about how to do that correctly. It's really part of a larger interface problem.

> After a rotate then save, the EXIF orientation tag becomes "unknown". Can its value be modified and saved correctly?

Hmm, it's getting set to 0 but maybe it should be set to 1 instead.

> Can we have something like a custom EXIF info window? For example: a small window onto which we can drop EXIF properties from the main Info Window. This way I can display only the properties I like in a compact window. It would also be great if the window could display those properties horizontally like a status bar. Maybe, the status bar can be made to accept a property dropped on it from the info window. Small size is the focus here.

I kind of like this idea, but it seems like a whole lot of work to get right, so it might not happen any time soon.

694 Name: Dishy : 2007-09-25 20:44 ID:4sOYhXNh [Del]

I take a lot of photos. Then I use Xee to audit and erase those I'm not satisfied with.

My main issue is the pre-caching. I got tons of RAM and it would be great if I could configure the caching to get rid of (by my means) unnecessary loading times.

Any dates on the next release by the way?

Keep up the awesome work!

695 Name: Josef (moved from other thread) : 2007-09-26 06:57 ID:Heaven [Del]

Hello, I use it Xee constantly to browse me photos. I'ts working fine with may Raw files on Nikon (NEF) and Olmypus e-330 (ORF) but on Olympus e-400 Raw (ORF) I got error "Coulnd't display file "xx.orf".

696 Post deleted by user.

697 Name: !WAHa.06x36 : 2007-09-26 07:35 ID:Heaven [Del]

>>694

Maybe one day I'll make the pre-caching more configurable, but generally that is sort of tricky to get right, so it's not a priority.

>>695

Do the pictures open in Preview?

698 Name: moe : 2007-09-28 22:54 ID:d4VDefI9 [Del]

I love Xee but it always accesses all the files in a folder -- which can be quite a while if there are thousands of photos. I tried highlighting just the photos I want to browse and dragging those to Xee but it still grabs all the files. Is there a way to just browse a selected bunch of files?

699 Name: Arma : 2007-10-01 17:09 ID:TJNLhVTq [Del]

Nice stuff!
When for a SVG implementation?
Would be so great!

700 Name: !WAHa.06x36 : 2007-10-01 18:50 ID:Heaven [Del]

That would be neat, but SVG is a horribly complex format and there is no way I could implement it by myself, and as far as I know there are no open-source implementations that are anywhere near complete.

701 Name: Paul Buxton : 2007-10-02 05:17 ID:uEsxbIih [Del]

Lauri Raittila.

I posted this on Lifehacker, and I think it should meet your needs.

Thought I would share what I have managed to do with Xee.
Thanks to it's ability to open up image editors via the menu interface I thought it would be an ideal candidate for speeding up my digital workflow.
When you have a large number of digital images you want to quickly identify which ones to keep/process further. Enter Xee.
What I have done is create automator workflows which apply a label and add a spotlight comment. The tricky bit is how to make these workflows accessible to Xee. TIf this sounds interesting to you then read on.

1) Save the automator workflow as an appliction. Don't put it in your applications folder just yet!
2) Next you need to open the resulting application in AppHack [www.sveinbjorn.org]
Modify the input file types to include the image types you are interested in, make sure to mark the 'Editor' option for each file type as otherwise Xee wont recognize it.
3) Now move the applications you have created into your applications folder (under a sub-folder to keep things nice and tidy).
4) Right click on some of each image type and check that you can open the image with your applications.
5) Open Xee and check that it recognizes your applications as editors for each image type.

6) Go to SystemPreferences\Keyboard & Mouse. Go to the shortcuts section and add some keyboard shortcuts to Xee to launch your scripts on whichever shortcuts you like!
I have set alt-1,2,3 to set up rankings, alt-x to mark for deletion and alt-c to clear tags.

Hope this is useful to people!

702 Name: McK : 2007-10-03 12:59 ID:WhgVnl4b [Del]

Hello, I liked Xee very much, so I made a translation to Spanish. I sent you the files by email to your gmail account called paracelsus a few days ago. Did you receive them? I'll be happy if next release has spanish translation :) I can help if you need to translate something else.

See you!

703 Name: !WAHa.06x36 : 2007-10-04 11:53 ID:Heaven [Del]

>>702

I don't seem to have received them. Either way, there's not much point in sending them to me now, because they won't work with the next version anyway. If you give me an email address, I will mail you when the next version is ready to be translated.

704 Name: arau : 2007-10-04 18:17 ID:NA6CnkJT [Del]

>>703

I just checked out Xee from the google code repository. Is that the most up to date alpha?

705 Name: !WAHa.06x36 : 2007-10-05 06:44 ID:Heaven [Del]

>>704

Yes, but it is not guaranteed to even work, and it will change a lot still.

706 Name: arau : 2007-10-05 09:52 ID:NA6CnkJT [Del]

>>705
I was asking more from a developer perspective. I might end up sending you some diffs.

707 Name: McK : 2007-10-05 13:46 ID:WhgVnl4b [Del]

>>703

Okay, when next release is ready, send me an email to my gmail account: mario.arias and I will translate it.

Thanks :)

708 Name: !WAHa.06x36 : 2007-10-05 18:26 ID:Heaven [Del]

>>706

I strongly recommend coordinating with me before making any changes, because I tend to re-write and re-organize large parts of the source, and I might easily stomp all over your changes doing that.

709 Name: _StranGe_ : 2007-10-05 20:56 ID:+BjmtJDp [Del]

Thank you very much for this good piece of app!!! But I would apreciate if you included colour management (just like other people said before)... :)

710 Name: Baguette : 2007-10-15 16:29 ID:dPbDWvnm [Del]

Is there a way to stop the delete sound effect or replace it with another sound? It becomes terribly annoying after a while.

711 Name: !WAHa.06x36 : 2007-10-16 04:30 ID:Heaven [Del]

The next version uses the global OS setting for sound effects.

712 Name: passerby : 2007-10-21 14:02 ID:DODcIHIa [Del]

Love both these apps... hope to see dev continue. One (minor) suggestion is posting dates for the file versions... when I didnt see any I started to wonder if the project was still live. Glad to see the comments are still active!

713 Name: Eddie : 2007-10-26 08:41 ID:Uglg9AaZ [Del]

Hi, first of all, your xee is awesome! I love it! Thank you!
I use it since tiger 10.4.8, and everything just fine. but I just updated to Leopard 10.5 build 9A581 today, and found that there is something wrong with the full screen view. when you choose view the picture in full screen mode, It responsed as a whold gray screen. Hope you can fix it and wait for the new release!

714 Name: Anonymous : 2007-10-26 15:24 ID:x1O1oyZY [Del]

>>713 I can confirm this bug :/
console output:
<code>
27.10.07 00:20:38 Xee[1874] CGSGetSurfaceBounds failed - error 1001 (window:15264, surface:276013567
27.10.07 00:20:38 Xee[1874] CGSSetSurfaceBounds failed - error 1001 (window:15264, surface:276013567, bounds:{{0, 0}, {1680, 1050}}
27.10.07 00:20:38 Xee[1874] CGSRemoveSurface failed - error 1001 (window:15264, surface:276013567,)
</code>

715 Name: DJ.HAN : 2007-10-26 20:37 ID:BBomeyfl [Del]

in Leopard(10.5), xee can't link file assocation with ZIP file.
please fix this issue. ^^
Thanks for your development, Good Luck!

716 Name: DJ.HAN : 2007-10-26 20:38 ID:BBomeyfl [Del]

in Leopard(10.5), xee can't display image full screen.
only blank screen was displayed.

Please fix this issue. Thanks, Good Luck.

717 Name: zX : 2007-10-27 03:07 ID:KEuiVVuB [Del]

same problem - no full screen (in beta and official 10.5 release)

718 Name: Harald Loeffler : 2007-10-27 04:32 ID:XOw3AtDj [Del]

Same problem with fullscreen in Leopard. Please fix it and keep up the good work!

Thanks
Harald

719 Name: John : 2007-10-27 10:04 ID:/UhgZXq+ [Del]

Same here. Xee does not work in full screen in Leopard. hope you fix it! Thanks!

720 Name: !WAHa.06x36 : 2007-10-27 10:12 ID:Heaven [Del]

Gonna have to get a copy of Leopard before I can fix it. It might take a while yet.

721 Name: johndoe3924 : 2007-10-27 10:54 ID:JBMQcGRE [Del]

Xee fullscreen gives me blank white screen when viewing pictures in Leopard. windowed mode is ok, but fullscreen doesn't work. Will that be fixed, i like this viwer but need fullscreen

thanks

722 Name: Anonymous : 2007-10-27 16:31 ID:Heaven [Del]

For the people like me who noticed the fullscreen problem in Leopard.
You could use Sequential for now, its designed for comic and manga reading and not even close as featured as Xee, but it makes a decent substitute for now if all you want to do is view images.

723 Name: !WAHa.06x36 : 2007-10-27 17:49 ID:Heaven [Del]

You want this fixed quickly, buy me a copy of Leopard.

724 Name: Franky : 2007-10-28 04:59 ID:lnBd+LZB [Del]

I've done italian translation of Xee. Can I send you it?
Another question. Reading this forum, I found spanish, french and german translation. Why don't you release a new version, just to include all avalaible translation made by users of this program? It's a minimal work, but it's usefull to spread of Xee and to increase its popularity.

Thanks for your good application.

725 Post deleted by user.

726 Post deleted by moderator.

727 Name: Anonymous : 2007-10-29 00:41 ID:tVDkSUSX (Image: 160x389 jpg, 30 kb) [Del]

src/1193643709670.jpg: 160x389, 30 kb

Found a bug in Xee that was causing it to go into an infinite loop on the attached image. It gets stuck in the EXIF IFD parsing code. This image that was cropped in Photoshop CS2 looks like it has at least one bad IFD that has a "next" field that references itself. I changed the code to break out if it encounters this situation.

In exifutils.c readifds:

u_int32_t newOffset = offset;
do {

    offset = newOffset;
newOffset = readifd(offset, &(curifd->next), tagset, md);
curifd = curifd->next;

} while (offset && offset != newOffset);

I figured that was better than hanging. But it's possible I've totally misunderstood the problem.

728 Name: !WAHa.06x36 : 2007-10-29 05:43 ID:Heaven [Del]

>>727

The exiftags code I'm using for this has a number of bugs. I've fixed some in the development version, but I'm not sure about this one. I'll look into it, thanks for tracking it down.

729 Name: william : 2007-10-29 17:17 ID:Dd5uu9Om [Del]

Why is that I can't modify/change the orientation of a picture? Originally, the orientation is wrong, so I used C and CC to adjust the picture. After that, I saved the picture, but when I reopen the picture, it'd be in the wrong orientation again. What am I doing wrong?

I've even looked under Get Info, and if the image orientation was unknown, after I orient the picture to the right place and save it, it'd still be unknown.

730 Name: william : 2007-10-29 17:17 ID:Dd5uu9Om [Del]

Why is that I can't modify/change the orientation of a picture? Originally, the orientation is wrong, so I used C and CC to adjust the picture. After that, I saved the picture, but when I reopen the picture, it'd be in the wrong orientation again. What am I doing wrong?

I've even looked under Get Info, and if the image orientation was unknown, after I orient the picture to the right place and save it, it'd still be unknown.

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

I don't know, you'll have to provide more details of what exactly you did. Also check for error messages on the console.

732 Name: Anonymous : 2007-10-30 13:45 ID:tVDkSUSX [Del]

I tracked down that fullscreen bug in Leopard. The problem is that apparently you're not supposed to re-parent NSOpenGLViews. Either use an NSView subclass with it's own NSOpenGLContext or release and recreate the view every time you switch between fullscreen and windowed.

See this email for more info:
http://lists.apple.com/archives/Mac-opengl/2002/Feb/msg00180.html

I tried to change the XeeView to an NSView subclass but I still couldn't get it to work even following the instructions in the email. I'm guessing it's a bug in Leopard since it worked just fine in Tiger. Judging by the date of the email, I'm guessing they counted re-parenting as a bug and fixed it in Tiger and just re-broke it in Leopard.

I was able to get it to work by destroying and recreating the view each time though. Things didn't work perfectly but I suspect that's a combination of me not understanding your code very well and me still trying to get the hang of the new XCode tools.

733 Name: william Chen : 2007-10-30 14:15 ID:sU6JuvpR [Del]

Hmmk, let me rephrase my question then.

How do you change the orientation of a picture if the EXIF orientation is wrong?

734 Name: !WAHa.06x36 : 2007-10-30 17:54 ID:Heaven [Del]

>>732

Ugh, what a mess. Perhaps it might be an idea to just wait for 10.5.1 and see if that fixes it before messing up the code horribly just to kludge this?

>>733

If you rotate it manually and save, it's supposed to work.

735 Name: william Chen : 2007-10-30 20:25 ID:sU6JuvpR [Del]

I did rotate manually (cmd+r, cmd+shift+r) and then cmd+s
then it'd say cannot save image (or something to that extent)

and when I reopen the picture, the orientation's back the way it was before..

736 Name: Anonymous : 2007-10-30 21:58 ID:Heaven [Del]

>>735
cmd+shift+s.
cmd+s doesn't work if it is impossible to save losslessly according to Waha.
I've personally never seen it enabled...

737 Post deleted by user.

738 Name: william : 2007-10-30 22:07 ID:sU6JuvpR [Del]

But all Xee has to do is modify the EXIF data... And can't I make it so it'd save the orientation automatically, without me having to change the direction, then his cmd+shft+s, then replace the file?

I remember it used to work when Xee was 1.0

739 Name: !WAHa.06x36 : 2007-10-31 06:49 ID:6THb/Qdo [Del]

Changing the EXIF data is exactly the wrong way to do it. This is only supported by some programs, so when you for instance upload your picture to the net, it will probably be the wrong way around if you rely on the EXIF data. Xee rotates the image data itself losslessly.

I might re-enable the automatic saving that 1.0 used as an option, but it's been disabled for now because most people don't expect a "rotate" feature to immediately change the data on disk.

Apparently there is some kind of bug where cmd+s doesn't work. I've never seen this happen myself, so I'll need more information about this before I can do anything about it.

740 Name: william : 2007-10-31 16:16 ID:iaxN5zcL [Del]

how would you re-enable the automatic saving??

And also, how would you rotate the picture so that it saves correctly?

741 Name: !WAHa.06x36 : 2007-11-01 05:51 ID:Heaven [Del]

Those are not the questions you want to be asking.

742 Name: william : 2007-11-01 16:45 ID:iaxN5zcL [Del]

o.o
what do you mean??

743 Name: !WAHa.06x36 : 2007-11-02 20:28 ID:Heaven [Del]

>>742

I mean that even if I answered those questions, it would not help you at all.

744 Name: Anonymous : 2007-11-08 13:02 ID:LcFMRG0l [Del]

>>742
It's not a technical issue, it's a policy issue. Too many bad decisions or too many decisions wimped out of by adding a preference over the years, and you end up with user-hostile crap like current versions of acdsee.

Also, I have a very unhelpful bug report in Leopard: sometimes the statusbar appears partly black. Happened after trying to go fullscreen then back to windowed, then browsing through pictures of various sizes. I have yet to find precise steps to reproduce the bug. Maybe it's related to the full screen issue in 10.5?

And while I'm at it I'll add a request, not sure if you're gonna consider it since you already have some issues with rotation behavior in general, but I think a "Remember rotation" option that would behave like "Remember zoom level" would be useful: I'm using a LCD that can be rotated by 90º, it would be very useful for example for reading comics. (Of course you can also change the rotation of the display in the system preferences, but it's not as easy as something you could affect a shortcut to directly in Xee, and on some older Macs the UI is no longer accelerated when rotated).

745 Name: George : 2007-11-12 16:31 ID:B7uhpT7l [Del]

Hi,

Just wondering if there is a timetable for the next release of this splendid program?

Thanks George

746 Name: !WAHa.06x36 : 2007-11-15 16:15 ID:Heaven [Del]

No. It is being developed, but I have other things I need to take care of too. It all depends on when I have spare time.

747 Name: johndoe : 2007-11-21 09:58 ID:0HNnvInM [Del]

any updates?

748 Name: Anonymous : 2007-11-21 11:51 ID:Heaven [Del]

>>747
See >>746

And please don't bother a man who does free software in his spare time about when he's going to update.

749 Name: yup : 2007-11-22 21:33 ID:T0FjolNT [Del]

This software is amazing, it's one of the few that reads EXIF data, but doesn't allow to see and edit the JPEG comment field (JPEG standard allows you to add a comment).

Good work!

750 Name: frediverx : 2007-11-24 11:20 ID:tmmLrfvd [Del]

Fantastic software. I've been looking for a good viewer like this for a long time. Fast, clean interface, keyboard navigation, auto resizing of window when zooming - awesome!

Three items I'd love to see addressed:

1) full screen doesn't work in Leopard. I'm sure this is high on the fix list.

2) Add basic editing features like lossless rotate and crop.

3) Add a thumbnail view option with a slide control to adjust icon size.

751 Name: !WAHa.06x36 : 2007-11-24 15:05 ID:L4e87LFG [Del]

>>750

Uh, lossless rotate and crop are there already.

And the Finder does a thumbnail view already, I still see no reason to duplicate that functionality.

752 Name: Deepboy : 2007-11-27 10:02 ID:oVKpC6df [Del]

10.5.1 and no bugfix from Leopard's side for full screen view...waiting for Xee's side...

753 Name: Simon Howard : 2007-11-27 15:18 ID:dDGbq6ux [Del]

I have been using Xee for quite a while and find it very useful.

I wonder whether in the next version you could have a configure the status bar.

I would like to put selected EXIF options on. ie f/stop, ISO, Shutter Speed, lens

754 Post deleted by user.

755 Name: MikeStallings (moved from other thread) : 2007-12-02 12:51 ID:BcTCx8CP [Del]

Hi, On Leopard 10.5.1 Build 9818 I can't get Xee to display an image. I get this response by double-clicking a previously associated filetype like jpg; or using Open With from the context menu; or using Open from the Xee menu. The response is a slight screen flicker and s slight spike in CPU. I get the same response when I click on Xee Preferences.

756 Name: !WAHa.06x36 : 2007-12-02 12:51 ID:BcTCx8CP [Del]

Any messages on the console?

757 Name: ps : 2007-12-03 11:37 ID:MTMaYZeE [Del]

I like the slideshow + auto-rotate features. Is there a way to make it save the images it auto-rotates? It does a pretty good job of picking what to auto-rotate and I would like it to just go ahead and save them.

758 Name: Irving Olender : 2007-12-03 13:05 ID:MRVLzZvQ [Del]

How can I deactivate Xee as my jpeg default but keep it accessible? I am using Mac 10.4.11

759 Post deleted by moderator.

760 Name: andy : 2007-12-04 13:00 ID:TPfW0U4b [Del]

Great work, finally something like irfanview for the Mac!
It is tiny and makes a fast workflow possible! Thanx for the effort!

Did you consider the suggestion of post 690? The fixed
proportional selection would be nice to crop for those online
services that print out photos on 3:4 sized paper. Also having a
predefined square proportional selection would be helpful sometimes.

Irfanview for example shows the selection information
in the title bar: current cursor position, width, height and ratio

cheers,

andy

761 Name: starless : 2007-12-05 13:35 ID:aXYB2wLa [Del]

Hi, I have a PPC iBook with Tiger, and I've been a very happy Xee user for some time now. But recently something strange happens, and I can't understand why and how to fix it: although I have set the default sort order in Xee preferences to be "By Filename", as it always was, each time I open Xee it starts into "By Size" sort order, which is very confusing.

I also tried setting the preferences again, or even setting it to "Same as in Finder", but it still starts in "By Size" mode, and I have to change it by hand each time.

Xee is version 2.0.

Any clues?
Thanks.

762 Name: etlund : 2007-12-06 12:31 ID:rymDT9Uk [Del]

I would really like to see a 'Run Slideshow' button on the toolbar.

Great tool!

Thanks

763 Name: Anonymous : 2007-12-07 12:27 ID:Heaven [Del]

>>760
Just making a few wild guesses since I'm not at my mac right now nor have I ever had that problem.

  1. The preferences file could be corrupted,
  2. The preferences file could have the wrong permissions.

Try making a backup of whichever file it is, and then delete the original, and try changing the setting again.

764 Name: starless : 2007-12-08 10:20 ID:aXYB2wLa [Del]

>>763
Thanks, but no way, even with clean new prefs the problem happened the same.

But I just seem to have found the real problem: Xee always uses the "Same as in Finder" sort order, even when you set it to "By Filename" in its prefs.
I noticed that the problem only happened in one folder, and so I realized that this folder was set to "By Size" sort order in Finder, although I forgot it because I usually view it in columns mode which is not affected by the selected sort order.

So, my personal problem is now fixed, but it looks to me as if Xee has a bug here. Does anyone confirm?

765 Post deleted by moderator.

766 Name: !WAHa.06x36 : 2007-12-08 10:28 ID:Heaven [Del]

It's a known bug, fixed in the development version.

767 Name: Horoskop : 2007-12-09 13:30 ID:3ptgfmIO [Del]

I have the same problem! Thanks for the lot of Replays and Helps ;)

768 Name: Naouel : 2007-12-10 14:07 ID:dJAa10ne [Del]

Hello Xee users,

Here is a version with fixed fullscreen for MacOS 10.5

Just go there http://aorlinsk2.free.fr/xee/

769 Name: !WAHa.06x36 : 2007-12-11 03:26 ID:Heaven [Del]

>>768

Is that using samiamwork's fix, or your own?

770 Name: Naouel : 2007-12-11 05:12 ID:noe9+4zi [Del]

this is my own fix. I didn't know that another fix was made.

771 Name: George : 2007-12-11 05:23 ID:F/e/6s0R [Del]

Thanks Naouel - it works a treat for. Hope your fix finds its way into the release soon.

772 Name: !WAHa.06x36 : 2007-12-11 07:13 ID:6THb/Qdo [Del]

>>770

Do you have a diff for it?

773 Name: Naouel : 2007-12-11 12:59 ID:dJAa10ne [Del]

774 Name: VaNyA : 2007-12-11 15:23 ID:D6c4RSvf [Del]

Thanks Naouel!

There still are some problems with this fix. If you don't go full screen Xee works as usual. Once in fullscreen, sometimes a picture won't show (or will show half-loaded); if you exit fullscreen the problem persists. If you launch Xee with the picture that didn't show before and go fullscreen, then this one will be displayed but some other won't.
This happens with folders where some pictures have been saved by Photoshop or some other app (screenshots as well). Folders with only straight out of the camera or downloaded from the web pictures seem to be working perfectly.

775 Name: Kevin : 2007-12-14 18:12 ID:kn8N1vA0 (Image: 1440x900 png, 1538 kb) [Del]

src/1197684737833.png: 1440x900, 1538 kb

Hey, I love Xee, but on Leopard I've noticed a pretty serious color discrepancy between Xee and other OS X image viewers (like Quick Look and Preview).

The colors in Xee seem a lot more washed out. Is this a known bug? I'm using 10.5.1 on a 15" SR MBP.

776 Name: !WAHa.06x36 : 2007-12-14 20:13 ID:Heaven [Del]

Yes.

777 Name: Kevin : 2007-12-15 19:50 ID:kn8N1vA0 [Del]

Okay, I just wanted to let you know. Did this exist in Tiger? I've been on Leopard since the end of October and I can't remember.

778 Name: Kevin : 2007-12-15 19:50 ID:kn8N1vA0 [Del]

Okay, I just wanted to let you know. Did this exist in Tiger? I've been on Leopard since the end of October and I can't remember.

779 Name: Miell : 2007-12-24 15:09 ID:FrzXJW4h [Del]

Issue with a lot of files in a folder.

Folks, I tried using Xee 2.0 (on Leopard) to manage a folder that had about 1,500 images. As soon as I started Xee, it would crawl to a stop and the CPU would spike to 100% and stay at that level for few minutes. When I would delete/move files, same thing would happen... it would beachball and CPU would hit 100%.

Anyone know what's causing that?

780 Name: Hayden : 2007-12-25 08:43 ID:gr2ji/cV [Del]

I'm using Xee 2.0 and I'm shooting with a Canon 30D in Raw. Xee is really nice, but it seems to render RAW files not great. I shoot on a setting that lets me save to both RAW and JPG and the jpg files look a lot nicer (which I expected), but what is confusing to me is that Preview renders the RAW files and they look nicer than the way Xee does it. I've tried everything to make Xee render the files "correctly".

Okay, that's not a huge deal. Who knows, maybe Xee is showing the RAW files correctly. However, when I edit RAW files using Lightroom and save those files into JPGs, Xee renders THE JPG files differently than Preview. The image that I see as the final print in Lightroom, that's what Preview shows. But then I throw the same image to Xee, and Xee renders it with a lot of macroblocking, etc. It's really weird.

Anyone have any idea what's going on here?

781 Name: !WAHa.06x36 : 2007-12-27 17:15 ID:Heaven [Del]

>>779

Known bug, fixed in development version.

>>780

Lack of colour management. Will be fixed sooner or later.

782 Name: Pierre : 2007-12-29 08:07 ID:50LABsr2 [Del]

Hi guys !
I used Xee for quite some time and it's great.
Open my Nikon RAW files without trouble.
Recently I bought a Canon G9.
Xee keep telling me it could'nt display file ???
Yes, Canon CR2 raw image is selected in the formats list.

Any tips ???
Thank's

783 Name: Pierre : 2007-12-29 08:07 ID:50LABsr2 [Del]

Hi guys !
I used Xee for quite some time and it's great.
Open my Nikon RAW files without trouble.
Recently I bought a Canon G9.
Xee keep telling me it could'nt display file ???
Yes, Canon CR2 raw image is selected in the formats list.

Any tips ???
Thank's

784 Name: Pierre : 2007-12-29 08:07 ID:50LABsr2 [Del]

Hi guys !
I used Xee for quite some time and it's great.
Open my Nikon RAW files without trouble.
Recently I bought a Canon G9.
Xee keep telling me it could'nt display file ???
Yes, Canon CR2 raw image is selected in the formats list.

Any tips ???
Thank's

785 Name: Albright!LC/IWhc3yc : 2007-12-29 13:33 ID:TaFfMMrj [Del]

Eighteen months ago, someone said…

> I would like to request an Open Recent menu item.

I sometimes miss this feature as well. Please get it working if you can!

Also, Xee's version info does not show up when you do a Get Info on it in the Finder.

Now that I've whined, here's some praise. I know it's been around for a while, but I just gotta say that I really like the feature that displays images in the same order they're sorted as in the Finder. That's so incredibly handy. Being able to rotate images and save them losslessly is great too.

786 Name: raimue : 2007-12-30 06:00 ID:cXim3igp [Del]

I tried to build it myself, but ran into this error:

/Developer/usr/bin/../libexec/gcc/i686-apple-darwin8/4.0.1/ld: can't locate framework for: -framework XADMaster

Where can I get this framework?

787 Name: !WAHa.06x36 : 2007-12-31 05:25 ID:Heaven [Del]

>>786

The Unarchiver.

788 Name: Anonymous : 2007-12-31 19:35 ID:VIBNtOmc [Del]

fullscreen is not working, i get white blank screen insted on leopard

789 Name: Kisaragi : 2007-12-31 23:16 ID:Xq7HL/xf [Del]

Same problem as above, blank white screen in fullscreen mode in Leopard.

790 Name: chaloots : 2008-01-01 05:54 ID:ZJh+Y6n/ [Del]

I just installed the universal binary version of Xee. Gotta tell ya, because of what I perceived to be a loooong time to load I was quite apprehensive opening it. The newer version is much quicker. Thanks.

As a recent refugee from another OS, it (Xee) reminds me of one of my favorite apps, Irfanview. Great work!

One teeny gripe though: might it be possible to add a "check for update" option in one of the file menu choices? Not that it matters now, as I'd gone to the website and discovered a newer version anyway, but a thought nonetheless...

791 Name: freediverx : 2008-01-01 14:17 ID:tmmLrfvd [Del]

Any timeframe for the full screen view fix?

792 Post deleted by user.

793 Name: Bill : 2008-01-02 16:58 ID:7HbjlmKf [Del]

Xee is a very fast viewer, but is there a way to rate photos?

What is "destination 1, 2, 3..."?

Thanks, Bill

794 Post deleted by user.

795 Post deleted by user.

796 Name: Tim : 2008-01-12 17:23 ID:HND255nB [Del]

Are you planning to localize it into new languages?

If so, I can help.

797 Name: Lars G. : 2008-01-12 18:52 ID:dx6qhPp7 [Del]

Amazing piece of software; fast, pretty images, no hassle - Thanks (o:

798 Name: Mick F : 2008-01-13 16:24 ID:XmIzT5ck [Del]

Great App,

Is there a way for dual image mode, so the left pane is one image and the right another.

I was after this feature for reading CBR/Z as the 'book' interface is a more natural read.

Cheers
Mick

799 Name: dds : 2008-01-16 18:49 ID:QB16o/0u [Del]

I've been using xee for quite a while now and really love it. However, I just got a Nikon D300, but Xee won't open the RAW (.NEF) files produced. Is an update in the works to fix this -- or have I done something to have caused the problem?

dds

800 Name: !WAHa.06x36 : 2008-01-17 13:28 ID:Heaven [Del]

>>799

Xee just uses the built-in OS X loading for RAW formats. If your version of OS X supports the files, Xee should support them. If it doesn't, that's a bug.

801 Name: zX : 2008-01-18 08:38 ID:aKfCSdnJ [Del]

hey!!!
any chances tor fullscreen mode in Leopard.
everyon's beggin YOU
Xee is the best and we cant use it!!!
PLEASE

802 Name: zX : 2008-01-18 08:39 ID:aKfCSdnJ [Del]

hey!!!
any chances tor fullscreen mode in Leopard.
everyon's beggin YOU
Xee is the best and we cant use it!!!
PLEASE

803 Name: Anonymous : 2008-01-23 08:35 ID:VxzWISvD [Del]

Hello Xee users,

Here is a version with fixed fullscreen for MacOS 10.5

Just go there http://aorlinsk2.free.fr/xee/

804 Name: zX : 2008-01-26 15:50 ID:qbQOKZuB [Del]

Finally! thanx a lot!

805 Name: Anonymous : 2008-01-26 18:43 ID:Heaven [Del]

>>803

Patches! Patches!

806 Name: Toxi : 2008-01-27 22:02 ID:yILwxWQm [Del]

Big THX to 803! :) It works now (Fullscreen) on my new iMac MacOS 10.5.1 without Problems.

807 Name: Tom : 2008-01-30 11:36 ID:g50Z/RRR [Del]

803: Thanks for the Leopard fullscreen fix

808 Name: !WAHa.06x36 : 2008-02-11 15:42 ID:BcTCx8CP [Del]

All right, finally 10.5.2 is out, and Apple did fix the NSOpenGLView bug!

So to anyone who's had problems with full screen not working: Update to 10.5.2, and it's fixed!

809 Name: Anonymous : 2008-02-11 23:34 ID:Heaven [Del]

Apple actually fixed a bug instead of making developers use a workaround?

Amazing.

810 Name: Anonymous : 2008-02-12 02:36 ID:Heaven [Del]

>>809
They tend to do that now and then. You might be thinking of the other company.

811 Name: Anonymous : 2008-02-13 14:34 ID:Heaven [Del]

812 Name: Anonymous : 2008-02-13 14:45 ID:Heaven [Del]

>>811
Sucks. I put in a bug report for Safari and it was fixed in the next version.

813 Name: !WAHa.06x36 : 2008-02-13 16:57 ID:Heaven [Del]

To be fair, they did pay enough attention to close one of my reports as a duplicate, though!

The report about this bug is still listed as "open", though.

814 Name: Adobe : 2008-02-15 08:14 ID:aZnFDw3N [Del]

Hi there.
when we will see any update for Xee? have some problems with leopard for example we i go for look the images in full screen.

Thanks

815 Name: Adobe : 2008-02-15 08:14 ID:aZnFDw3N [Del]

Hi there.
when we will see any update for Xee? have some problems with leopard for example we i go for look the images in full screen.

Thanks

816 Name: Anonymous : 2008-02-15 11:03 ID:Heaven [Del]

817 Name: Kevin : 2008-02-17 18:23 ID:kn8N1vA0 [Del]

Will there be an update to address the color issue? I love the features of Xee, but the colors in Preview are so much better.

818 Name: !WAHa.06x36 : 2008-02-18 04:26 ID:Heaven [Del]

Probably, but don't hold your breath. It's not an easy thing to get right, and I don't have much time at the moment.

819 Name: M : 2008-02-20 14:26 ID:gdZZALbP [Del]

>>739
Hi,
I have exactly the same problem: I rotate my picture and then press Cmd+S or if I go to File -> Save Losslessly then I get an error message: Image saving failed Couldn't save image.

any ideas?

820 Name: !WAHa.06x36 : 2008-02-21 04:50 ID:6THb/Qdo [Del]

>>819

Are the file permissions set so that you are allowed to overwrite that file?

821 Name: Anonymous : 2008-02-21 07:53 ID:gdZZALbP [Del]

>>820
I think so. That are just normal photos from my mobile.
And the funny thing is now:

  • I rotate the picture
  • I press Cmd+S or File -> Save Losslessly
  • I get the error message
  • If I click on left or right to view the next pictures and then come back to the "rotated" picture, it is shown as it was before - not rotated.
  • BUT: if I close the application and reopen it (or open this file with another programm) everything is fine. The picture is rotated!

I'm just wondering now, why I get this error message and why it only get in effect, if I restart the program...

822 Name: !WAHa.06x36 : 2008-02-21 15:37 ID:6THb/Qdo [Del]

>>821

Are the files on a local drive, or on some networked drive?

823 Name: M : 2008-02-21 16:46 ID:gdZZALbP [Del]

on a local drive

824 Name: M : 2008-02-21 16:46 ID:gdZZALbP [Del]

on a local drive

825 Name: X : 2008-02-24 16:48 ID:4UzJ/NIa [Del]

Hi, I was wondering if there was any way to have the sort order be "Date Created" instead of "Date Modified". Or else use the photo date from the EXIF data.

I made the mistake of using Canon's photo browsing utility, which for some reason changed all of the date modified dates to today. That means that Xee (which I really like) is no longer useful for browsing through by date.

Thanks in advance.

826 Name: !WAHa.06x36 : 2008-02-27 10:55 ID:Heaven [Del]

>>825

EXIF date sorting would actually be really nice to have, but it would also be hard to implement fast enough. But I might look into it.

827 Name: Anonymous : 2008-03-09 13:15 ID:j3o20fVZ [Del]

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

828 Name: Raymond : 2008-03-11 17:33 ID:aFo+cbRA [Del]

Xee is a great image browsing software, thanks a lot.
But if the setting could be save will be much better.
Such as the size of the window could be memorized when reopen the software, the zoom ratio could be save when reopen.

829 Name: Edwin : 2008-03-21 02:15 ID:nm38BYj+ [Del]

Great program bit I miss the autosave after a rotate. Is it possible that you make this a preference (autosave on/off after rotating) ?

830 Name: Poo : 2008-03-22 16:47 ID:8/hEivgM [Del]

I used to use ACDSee to browse and view images on my PC. I've missed having something that feels like that application on my mac. Until now that is. Xee works for me just like the way I used to use ACDSee. Thank you very much for this app.

831 Name: Jan : 2008-03-23 15:06 ID:CGVrqv/8 [Del]

Hi, plus one for the auto-save option. I would love this feature, too!
best
Jan

832 Name: Esben : 2008-03-29 03:33 ID:ivtz2hcE [Del]

Fantastic! I had about 400 photos taken with two different cameras that I had to split up into two folders: one for each camera. Oh no, this is going to take a lot of time identifying which photo have been taken with which camera and then copying it into the right folder... but then Xee appeared! Using its Copy function and its Image Info function this took me about ten minutes! Thank you for a great app.

833 Post deleted by moderator.

834 Post deleted by moderator.

835 Post deleted by moderator.

836 Name: Anonymous : 2008-04-28 07:53 ID:1QMDIsc+ [Del]

Xee is awesome.
I've been using a mix of some homemade python scripts
and xee copy/move functionality to sort my photo library
w/o the slowdown of iphoto. However, I noticed if
I try to browse a directory full of symlinked images,
xee follows the links and ends up browsing the directory
the actual files exist in. Is there a way to keep xee
from following the links or do I need to roll my
own version to disable this feature?

thanks again for the incredibly fast app.

837 Post deleted by user.

838 Name: !WAHa.06x36 : 2008-04-28 17:58 ID:Heaven [Del]

>>836

Hmm, I guess that should be fixed. File a bug on the bug tracker.

839 Name: Anonymous : 2008-05-02 22:57 ID:WvpFsU6B [Del]

A possible feature would be to have xee handle finder's thumbnail request for archives (producing a thumbnail for the archive). Great piece of software, btw.

840 Name: fidel : 2008-05-09 12:45 ID:dALlaDPz [Del]

hi,

seems like Xee 2.0 is not able to handle Canons raw format completly.

If i use Canon Raw (.cr2) on a EOS 40D Xee is able to handle the images.
If i switch on the EOS to Canon's S-raw (.cr2) Xee is not able to handle the files.

a) Is that a known issue ?
b) If you are interested i can offer some example files. Just tell me what you need to know in detail.

Best regards and thanks for that great viewer

841 Name: !WAHa.06x36 : 2008-05-10 11:06 ID:BcTCx8CP [Del]

>>840

Xee does raw loading through the OS X built-in functions. If you find a file that does open in Preview but not in Xee, then send me an example. If it opens in neither, that's expected behaviour.

842 Name: nico : 2008-05-16 11:49 ID:YxDRJc78 [Del]

This doesn't seem to be an issue with other folks who use Xee, but i would really like to see an image re-sizing feature in Xee (to shrink down large images from their originals--say make a 3000x2000 pixel image 300x200 pixels, for web use.)

does xee already do this? am i missing a feature? or is this not a needed feature for most folks?

it seems very useful to me, for re-sizing of images for web. if i travel without a computer and use someone else's mac, i often need to resize photos for web use, but if the computer i'm using doesn't have photoshop, i'm outta luck for freeware programs that do image resizing.

843 Name: !WAHa.06x36 : 2008-05-16 13:47 ID:Heaven [Del]

>>842

Well, on the one hand, it's a bit outside the scope of an image viewer to do image editing tasks. On the other hand, firing up Photoshop is a royal pain. So I might add it sooner or later.

844 Name: Anonymous : 2008-05-19 19:43 ID:Heaven [Del]

>>843
Ever try Seashore?

845 Name: !WAHa.06x36 : 2008-05-20 10:16 ID:Heaven [Del]

>>844

I think I tried it once, and concluded like all other similar apps, it is far too much of a toy to ever be of any practical use to me, and keeping it around just to resize images doesn't really win me much over just using Photoshop.

846 Name: Anonymous : 2008-05-20 11:35 ID:Heaven [Del]

I use it to do all the stupid little things that it's just too annoying to load Photoshop for, like quick crop, resize, change format, draw a box, etc. stuff. More often than not I have no use for 99.9% of Photoshop's features and something a bit more lobotomized is quite handy to have around, especially since it loads nearly instantly. That said I grew up doing pixel-editing with MS Paint...

847 Post deleted by user.

848 Post deleted by user.

849 Post deleted by user.

850 Name: prometh : 2008-05-22 07:57 ID:CYj0cbXt [Del]

FEATURE REQUEST:

First off, Xee is an awesome product and I think it's absolutely great! However, like everyone, we have our own tastes, and here are 3 requests I have with stars (asterisks) representing my feeling of importance for each.

***** If you press either the next or previous image buttons, the mouse cursor should move to the new button screen position when Xee's window resizes to the image dimensions. Having to move my mouse every time gets annoying, and I like viewing images at their actual size.

**** When opening the first image (that opens the Xee window), it'd be nice if Xee didn't show up with a black background before the image becomes visible. It just looks sloppy.

** An icon pack that more resembles Preview would be cool, to keep in with the Apple feel. I have manually copied in Preview icons, but if such were already done, that'd be better.

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

> If you press either the next or previous image buttons, the mouse cursor should move to the new button screen position when Xee's window resizes to the image dimensions. Having to move my mouse every time gets annoying, and I like viewing images at their actual size.

Moving the mouse pointer is a big no-no in GUI design. I will not do that. With the default settings, the window should not resize when using the toolbar buttons, unless you explicitly changed that in the settings.

> When opening the first image (that opens the Xee window), it'd be nice if Xee didn't show up with a black background before the image becomes visible. It just looks sloppy.

Progressive loading of the image is a feature, not a bug.

> An icon pack that more resembles Preview would be cool, to keep in with the Apple feel. I have manually copied in Preview icons, but if such were already done, that'd be better.

If you can provide some icons that are colour-coded, badged, and distinguishable down to 16 pixel size, I'll put it up.

852 Name: Anonymous : 2008-05-23 00:57 ID:Heaven [Del]

> When opening the first image (that opens the Xee window), it'd be nice if Xee didn't show up with a black background before the image becomes visible. It just looks sloppy.

When I open huge files I appreciate how it communicates that the app isn't stalled. Do you want to be left 20 seconds without any sort of feedback?

853 Name: Anonymous : 2008-05-30 14:36 ID:lWxNf7bl [Del]

>>663-666

I don't want to install The Unarchiver, and I don't want anything associated with those files.

854 Name: !WAHa.06x36 : 2008-06-01 05:19 ID:Heaven [Del]

>>853

RCDefaultApp can set associations to a dummy app if you absolutely want. That's the only way to stop OS X automatically associating files with apps that can open them.

855 Name: Richard Yapeter : 2008-06-05 21:33 ID:4eZn1Dq4 [Del]

I'm replying about Canon RAW formats (also for other brand camera RAW)

Canon latest camera 40D and 450D raw are saved with .cr2 however it's different compression make them unreadable until update.

Since Xee depending on OSX Raw support. You can download the "Digital Camera RAW Support update" from apple website.

So RAW problem is not there because of Xee but because camera developer keep making new format and using same extention

856 Name: !WAHa.06x36 : 2008-06-06 03:40 ID:Heaven [Del]

>>855

Actually, the format is probably the same, but the problem is that there are differences between the sensors in the different cameras that use the same format, and this data about the sensors is not stored in the file, so the loading program has to be updated for each new camera.

It's not exactly a good design.

857 Name: GlassONionZ : 2008-06-10 18:44 ID:AUsYJ8k/ [Del]

Gracias! Thanks for this great piece of software.

Is it possible to implement in Xee a Lanzcos or a Bicubic interpolation for zooming small images? When Xee3? Thanks again.

858 Name: ConfusedUser : 2008-06-16 18:15 ID:dXfPjx8U [Del]

Why is it when I rotate a jpeg image from my camera and save losslessly that the resulting file is smaller than the original?

859 Name: !WAHa.06x36 : 2008-06-17 04:39 ID:Heaven [Del]

>>858

How much smaller? The embedded thumbnail is re-generated from scratch, so if the camera makes a very high-quality thumbnail, that could be it.

860 Post deleted by user.

861 Post deleted by user.

862 Name: ConfusedUser : 2008-06-17 06:41 ID:dXfPjx8U [Del]

>>859

Before IMG_0398.JPG 1.1 MB (1,126,799)
After IMG_0398.JPG 1.1 MB (1,126,435)

Before IMG_0399.JPG 1.2 MB (1,263,499)
After IMG_0399.JPG 1.2 MB (1,263,422)

The camera is a Canon Powershot A510 3.2 Megapixels.

863 Name: !WAHa.06x36 : 2008-06-17 13:41 ID:Heaven [Del]

>>862

Yeah, a difference that small would just be because of the new thumbnail.

864 Name: !WAHa.06x36 : 2008-06-17 13:42 ID:Heaven [Del]

(Also, I haven't looked into the details, but the Huffman compression step of the JPEG may turn out slightly different after you rotate the image, so that would also affect the file size slightly.)

865 Name: ConfusedUser : 2008-06-17 15:45 ID:dXfPjx8U [Del]

>>864

I guess I was just assuming the term "lossless" meant "lossless" obviously it doesn't mean absolutely "lossless". Thanks.

866 Name: Anonymous : 2008-06-18 01:31 ID:Heaven [Del]

>>865
what do you think "lossless" means if not "not losing any information"?
the thumbnail shouldn't contain any information not in the actual image.

867 Post deleted by user.

868 Name: ConfusedUser : 2008-06-18 13:14 ID:dXfPjx8U [Del]

>>866
Well, if you're rotating an image and it's "lossless" shouldn't the size stay the same? If it's getting smaller, then isn't it losing information? Maybe I'm just not understanding the concept, but to my mind it should stay the same size, shouldn't it?

869 Name: !WAHa.06x36 : 2008-06-18 13:40 ID:Heaven [Del]

>>868

> Well, if you're rotating an image and it's "lossless" shouldn't the size stay the same?

No. First because of the thumbnail, as already explained, and also because JPEG does both lossy and lossless compression. The lossless transforms do not affect the lossy step, but they do affect the lossless step. The lossless compression will output differently sized files with differently transformed input.

870 Name: ConfusedUser : 2008-06-18 13:49 ID:dXfPjx8U [Del]

>>869
To my way of thinking if it does lossless rotation and the only thing you do is rotate the photo then the size shouldn't change. But, since it does, then either is not lossless OR I don't understand OR there's something else going on with a lossless rotation.

871 Name: Anonymous : 2008-06-18 16:45 ID:Mz1m6iS1 [Del]

Ive installed everything correctly but Im getting a problem when I point my browser to domain.com/wakaba.pl

It redirects to wakaba.html (which doesnt exist) and gives me an error. Whats up?

872 Name: Anonymous : 2008-06-19 04:34 ID:Heaven [Del]

>>871
This isn't the wakaba support thread. Learn to read please.

873 Name: flapane : 2008-06-24 00:53 ID:tNlGUPRb [Del]

Hi and thanks for this great app!
Any news on colour management? I still have to use it together with Preview.app and this bothers...
thanks!

874 Name: aabhay : 2008-07-05 17:40 ID:hsaVP2LP [Del]

posted this on the support thread as well, but I dunno which one is checked more often...

I really like your application, I am just wondering if it is possible to assign the trackpad-scroll function to be for moving the image around instead of to move back and forth between pictures. I tried messing with the keyboard assignment configuration, but I was never able to get it to work. I don't even know how to assign a shortcut to left and right scrolling, so that's out of the picture. However, up-and-down scrolling never worked for me, either.

875 Name: andrabr : 2008-07-10 19:52 ID:Hs1QnPTf [Del]

Image resize is the only missing feature.
Please? Pretty please?

876 Name: User : 2008-07-28 17:35 ID:vpQJcfE5 [Del]

Please consider adding the following features:

Set image as wallpaper, as in Justlooking and Safari.

Start the window centered, it is a bit anoying that the window is out of center when a pic is opened.

When closing with X add an option to completely quit the program instead of staying in the background.

877 Name: dfa : 2008-07-29 13:25 ID:O1ykj9tF [Del]

please make it work exactly like the PC app called ACDSee (v.2.45)
k.thx.bye.

878 Name: mike : 2008-08-02 20:05 ID:kA3qJ3aH [Del]

Guys,

How about a new version??? Current one is extremely buggy! A new version is much needed!

879 Name: jan : 2008-08-06 02:13 ID:6Fv6Y3p9 [Del]

would be good to have print support!

880 Name: Lee : 2008-08-25 06:11 ID:GXU/WeOp [Del]

I was looking for a lossless JPEG crop application and this one was very close to what I wanted, but it lacks some critical features to make this usable:

1, Pixel grid co-ordinates. I cannot accurately position the mouse cursor precisely where I need it to make a good crop without referring to X & Y co-ordinates.
2, Crop lock aspect ratio. If I want to crop at 1:1 (i.e. a square), or a custom aspect ratio.
3, Zoom pan. If I'm zoomed into a image to make an accurate crop, I would like to drag the cursor to the opposite end of an image and have the image pan within the application window.

Thanks.

881 Name: !WAHa.06x36 : 2008-08-26 04:37 ID:Heaven [Del]

>>880

For 1, the crop borders are automatically set to the nearest blocks on those edges where it matters when saving (and you get to pick whether it should expand or contract the cropping area). There's no UI for it because I haven't figured out a good and easy-to-use one. Displaying a grid isn't really it - remember that only two of the edges need to be aligned, not all of them, and which two depend on the lossless rotation of the image.

For 3, arrow keys work for panning while cropping as a workaround.

882 Name: Anonymous : 2008-09-08 04:41 ID:qhpSoMGY [Del]

Hello,

I use xee as my primary image viewer, and it is definitly great !

I have on suggestion to make it even greater for my use :
I often have to present images to people using a projector. I don't like having windows and any sort of mess displayed. The screen should be showing a content or black (the background image of the screen is black).

So my suggestion is to add a preference to display fullscreen images on a secondary screen if available.

This would be a really simple modification :

  • An NSMatrix of 2 radio buttons in preference letting the user choose "Display on current window's screen" (tag 0), and "Display on secondary screen if available" (tag 1).
  • The selected ID bounded to use default "fullScreenDestination"
  • in the code, file xeeController, "fullscreen" IBAction,

line :
---------------
[fullscreenwindow setFrame:[[window screen] frame] display:NO];
---------------
and
---------------
SetSystemUIMode(kUIModeAllHidden,kUIOptionAutoShowMenuBar);
---------------

replaced with
---------------
NSScreen *destinationScreen;
if ([[NSUserDefaults standardUserDefaults] integerForKey:@"fullScreenDestination"] == 0)

destinationScreen = [window screen];

else
{

destinationScreen = [[NSScreen screens] lastObject];
SetSystemUIMode(kUIModeAllHidden,kUIOptionAutoShowMenuBar);

}
[fullscreenwindow setFrame:[destinationScreen frame] display:NO];
---------------

and boom, that's done !

For my usage, it would be really great !
Indeed, I compiled a version with this modification for my own usage (I'll use the feature during a presentation next week).

Thanks for this great piece of software !

883 Name: freediverx : 2008-09-16 18:12 ID:bR415B// [Del]

Any chance of an upgrade sometime soon? It's been a long while...

884 Name: DanW : 2008-09-18 12:09 ID:0ie0QcXs [Del]

Just want to let you know that Xee is simply the best image viewer for me. It's faster than any other viewer to load, it allows me to quickly scroll through large images with the arrow keys without any delay, the zoom is instantly responsive...what else can I say...oh yes, please release an updated build with the latest fixes and features :) !!! Thanks ! Well done, keep up the good work !

885 Name: D : 2008-09-24 00:01 ID:+cRsnmKP [Del]

xee won't let me sort the order of the files by date. i went into preferences and changed the default sort order but still comes out sorted by name. could someone please help me?

886 Name: !WAHa.06x36 : 2008-09-24 04:02 ID:Heaven [Del]

>>885

Yeah, that's a known bug, sorry. Hopefully I'll have some time to finish a new version and get that sorted out.

887 Name: D : 2008-09-24 14:43 ID:+cRsnmKP [Del]

thanks for the reply. i'll be looking forward to it.

888 Name: ic0n : 2008-10-04 20:13 ID:krlLv5mn [Del]

>>543
>>547

I'd like to see this too (resize window to fit width only, it'd make viewing comics/manga easier. Other than that, Xee is perfect.

889 Name: starlancer : 2008-10-08 06:49 ID:YtKOwb7M [Del]

I really want to like Xee, but there is one problem.
Xee doesn't support ColorManagement. Like this it is not usable for me and for a lot of other users too.

Please fix this and Xee will be perfect!

890 Name: torben : 2008-10-08 14:49 ID:CNppjerl [Del]

yeah, please, make it colormanaged!

891 Name: Rigido : 2008-10-12 14:29 ID:HX4wHK0s [Del]

Hi,
I'm just another happy Xee user that decided to write here to ask why Xee saves RAW (Canon CR2) files on a wrong, and unusable, way.
I really like how Xee "reads" and shows CR2 files and I think it would be great (for me needs) to use it on a workflow to convert all of the CR2 files on a given directory to JPG or whatever.
Is it a know bug?
Thanks.

892 Name: !WAHa.06x36 : 2008-10-17 07:39 ID:L4e87LFG [Del]

>>891

You're going to have to actually tell me what the problem is before I can answer that.

893 Name: Roger : 2008-10-18 14:47 ID:ONLHR4iP [Del]

I just updated to Xee 2 after I found out that 1.2.1 has a bug when rotating images. At least I found that part of the left side of the image was moved to the right. Xee 2 works like it should, but suddenly the autosave is gone. Can you make this optional?

Another great option would be to be able to browse ODF files (OpenOffice), which are just zips with a specific file structure. Images inside documents are saved as PNG. Same goes for JAR files.

Thanks anyway! I really use it a lot to browse my images.

894 Name: !WAHa.06x36 : 2008-10-19 13:46 ID:Heaven [Del]

> but suddenly the autosave is gone.

I've been meaning to fix this for some time. It'll hopefully be back in the next version as an option.

> Another great option would be to be able to browse ODF files (OpenOffice), which are just zips with a specific file structure. Images inside documents are saved as PNG. Same goes for JAR files.

If so, they should open if you just drop them on the Xee icon, I think.

895 Name: Anonymous : 2008-10-19 14:43 ID:zqcxQThQ [Del]

I'm just curious, will xee get support for multi touch rotation and zoom or is it something only preview supports?

anyways, great app!

896 Name: !WAHa.06x36 : 2008-10-19 16:15 ID:Heaven [Del]

>>895

I'd love to add that, but that would require me to actually have a machine that has a multi-touch pad.

897 Name: Anonymous : 2008-10-23 20:26 ID:Heaven [Del]

>>896
Huh, I thought you had a powerbook...

898 Name: WernerS : 2008-11-04 14:58 ID:ELWgOhez [Del]

I wonder why I can't use Xee 2.0 to delete pictures on CF cards or on a NAS Device. Deleting them with the finder works and deleting files on the local drive works with Xee.
The external volumes have no trashcan...
Nice app though!

899 Name: !WAHa.06x36 : 2008-11-05 09:16 ID:Heaven [Del]

>>898

Yes, that should be fixed in the development version already.

900 Name: Rigido : 2008-11-07 14:59 ID:BR9FT4Nr (Image: 1280x852 png, 2736 kb) [Del]

src/1226098784809.png: 1280x852, 2736 kb

Hi,
I'm the writer of post 891. The attached image is from a CR2 file opened with Xee and saved to PNG from the "File -> Save as.." menu.

901 Name: Rigido : 2008-11-07 15:05 ID:BR9FT4Nr (Image: 1280x853 jpg, 249 kb) [Del]

src/1226099151017.jpg: 1280x853, 249 kb

Just tried with TIFF format (compressed or not) and the results are the same. Just for reference here it is the original jpg image (I shot RAW+JPG)...

902 Name: !WAHa.06x36 : 2008-11-08 05:21 ID:BcTCx8CP [Del]

>>901

I need the actual file that causes the problem in order to find the bug.

903 Name: WernerS : 2008-11-08 09:53 ID:DWcNM3K2 [Del]

>>899

That sounds good. Is the development version already available so I can verify the fix?

904 Name: !WAHa.06x36 : 2008-11-08 15:23 ID:Heaven [Del]

>>903

You can TRY to check it out from SVN and build it, but I can't guarantee it would go smoothly, as the only active developer is myself and I've done zero testing that it builds on other machines than mine.

905 Post deleted by moderator.

906 Name: Fou-Lu!Id1gMYGA52!!UIR4DE3n : 2008-11-09 06:33 ID:9StMqmVK [Del]

>>905 Mother fuck, not spam

907 Name: Anonymous : 2008-11-09 09:44 ID:LwGs9smc [Del]

First I'd like to recommend/request two things regarding zoom:

  • An option to fit the smallest side of a picture to the size of the display. Basically, enlarge or reduce so that the whole screen is filled and the picture can only be scrolled on its longest side. I hope you won't think this is just power-user cruft - with all the pictures in 4:3 and 16:9, and all the displays in 5:4 and 16:10, there would be many possible uses for it.
  • An option to smooth (preferably aggressively) on upscale. I frequently find the 150% zoom useful, but the jaggies are really strong at this specific scale.

And a performance issue problem you probably know about, but which I didn't find ITT: when a folder contains enough image files, the first picture takes a long time to load, and after a deletion or move, going two pictures forward takes just as long (since the 1st is cached).
In my case folders with 3000 pictures are not unusual at all. In such folders each reload takes 6 seconds on a recent Mac Pro: that's difficult to use it for fast manual batch selection of pictures. It's frustrating since the shortcut system, the copy/move shelf, and the "skip 100" options otherwise make Xee so suitable for this kind of heavy lifting.

908 Name: Anonymous : 2008-11-09 10:19 ID:Heaven [Del]

>>905
contrary to what "Fou-Lu" says, that does appear to be spam.

909 Name: Anonymous : 2008-11-09 16:40 ID:Heaven [Del]

>>908
Highly persistent spam, at that. They've been spamming that site for months on various boards, and use different URL redirectors every time.

910 Name: !WAHa.06x36 : 2008-11-09 16:51 ID:Heaven [Del]

>>907

The new version should be a lot faster when there are lots of files, I hope.

As for the others, I'm not sure about the smallest side scaling - I don't even know how to describe that in the UI, which is a sure sign it might not be all that useful. Smoothing on upscale is tricky - the default OpenGL upscale is pretty ugly, and a better algorithm would have to be implemented as a pixel shader. Possible, but probably not something I'd do any time soon.

911 Name: Anonymous : 2008-11-09 18:05 ID:Heaven [Del]

I think "pan & scan" is the accurate way of describing it, but one that most users don't know. Maybe a couple of commands (or modes) to "fit horizontally" or "fit vertically" could be a more intuitive way of describing what I recommended?

912 Name: Samuel : 2008-11-12 19:59 ID:AMOjBBUF [Del]

I have set Xee as my default viewer for GIF's this is what I really need it for. However, it would be nice if there were a quicklook plug-in that accompanied the software so Leopard users could view GIFs in their full animation glory when the need to.

Any chance of a GIF quicklook plug-in?

913 Name: fidel : 2008-11-13 11:16 ID:uIFyPm6j [Del]

Hi,

i am wondering why Xee has no print-dialog.

Xee is my fav. image-viewer, but in some cases it would be great to be able to print something, without being forced to reopen the file in preview or whatever other application to print it.

As i am just writing herE: Thanks for this great application.

914 Name: !WAHa.06x36 : 2008-11-13 14:46 ID:Heaven [Del]

>>913

Main reason? Because I don't have a decent photo printer. Secondary reason? Because printing is hard. Just throwing an image at a printer will not very likely get you a good result. Printing needs lots of tweaking, and I don't really feel like implementing that. You're much better of using a dedicated app for doing that.

Also, you can use the "Open in Editor" option to make it easier to reload in another app.

915 Name: Fou-Lu!Id1gMYGA52!!UIR4DE3n : 2008-11-18 13:10 ID:WKGH3h6/ [Del]

>>908
I was saying "not again".

916 Name: larzon : 2008-11-19 08:08 ID:Mml5vQWB [Del]

any news on the ColorManagement? That would be awesome ;)

917 Name: larzon : 2008-11-19 08:10 ID:Mml5vQWB [Del]

any news on the ColorManagement? That would be awesome ;)

918 Name: 907 : 2008-11-21 04:44 ID:Heaven [Del]

For the zoom up thing, found out it depends on the video card, Intel GMA 950 (macbook) and Nvidia Geforce 8800 GT are jaggy and unfiltered, but ATI Radeon HD 2600 will filter upscales. The result at 150% is definitely nicer than unfiltered, but over 200% it is arguably worse. (So my having both cards in my machine "solves" my "problem", lol)

>>912

> Any chance of a GIF quicklook plug-in?

That's not related to Xee I think. But from looking inside the QL generators I use it looks like they output HTML, so if you care to do it yourself it may be pretty trivial to do.

919 Post deleted by user.

920 Name: !WAHa.06x36 : 2008-12-02 12:51 ID:BcTCx8CP [Del]

>>919

Xee already has configurable keyboard shortcuts, and several different keys for going backwards.

921 Name: sijitsma : 2008-12-05 15:12 ID:eFyu9MtL [Del]

Excellent app, thanks so much. I've been recently hacking through Preview with Applescript to allow me to navigate through a folder and look at images without having to preload the whole directory, and Xee does it perfectly!

Well done, keep up the great work!

922 Name: phc : 2008-12-07 08:14 ID:wzQsxd1y [Del]

Would be nice to have EXIF info (date shot, GPS...) displayed (optional) somewhere in tehh status bar (cumbersome to open CMD-I each time)

923 Name: Anonymous : 2008-12-11 08:12 ID:eC2ojgP2 [Del]

I'd like to put in another vote for recursive subdirectory loading. I sometimes do

find . -type d -exec open -a Xee {} \;

but that doesn't work very well with large directory trees.

924 Name: Anonymous : 2008-12-11 19:07 ID:Heaven [Del]

>>923

find . -type d -print0 | xargs -0 open -a Xee

Much more efficient, as it spawns a lot fewer processes.

925 Name: Anonymous : 2008-12-12 06:05 ID:Heaven [Del]

>>923-924

find . -type d -exec open -a Xee {} + \;

926 Name: Joshua : 2009-01-08 00:28 ID:f0lXWUzH [Del]

I'm a former ACDSee user having a devil of a time finding these two features that I enjoyed so much in ACDSee v5:

1. Separate panes for viewing folders vs files ... so you can click on an expandable file directory list in the left pane, and, in the right pane, see all the relevant thumbnails for the selected folder.

It's amazing how much time this saves, having two panes (one for browsing and one for previewing) when you're looking for a particular photograph. Yet I can't find it anywhere in the Mac world.

2. A slideshow with cross-fade, variable delay between images, and the ability to choose a sub-set of images (by command-clicking on the filenames) to be shown in the sideshow.

I've been looking for days for anything that meets these fairly basic criteria, but can't find it anywhere in one application.

One thing I have found is hundreds of people clamoring -- begging, really -- for more ACDSee-like functionality on the Mac. And actually ACDSee says they're releasing a beta version of their Pro software for the mac, but it's likely to cost well over $100 once it gets released.

It will also be filled with tons of image editing options that I could care less about, as a Photoshop user. I just want a better interface for enjoying my final photos -- which means finding and viewing them in a slideshow.

So I started wondering how hard it would be to just write the damned thing myself. I design interfaces and code PHP professionally but have no experience with Cocoa or desktop applications.

And then I realized your software was open source, and you've got about 50% of the features I'm looking for already. What you have so far looks clean and performs well, so maybe you're the perfect person to team up with.

So with that in mind, what's the chance that I could either:

1. Get some tips and coaching about how to add these features myself, or

2. Pay you or someone else a reasonable fee to add these features to your software

Please let me know.

You an reach me directly at joshua at atlaswebdev dawt com.

Having tried a half-dozen image viewers over the past week, I can say yours is probably the most elegant I've found. I'd love to see these new features get added soon.

927 Name: Anonymous : 2009-01-09 04:21 ID:LwGs9smc [Del]

I hope you're not talking about the sort of "features" that mean I'll have to cling to my Xee 2.0 version in the same way I make sure to always have an Acdsee 3 archive available.

928 Name: mike : 2009-01-10 00:20 ID:kA3qJ3aH [Del]

Is Xee dead? Xee 2 was released over a year ago, there's a ton of unresolved issues in the bug tracker and there's simply no updates.

Xee is pretty nifty but it crashes a lot! I've been using it for 2 months and I've had about 4 crashes PER DAY with it. Simply awful.

Here's one of the crash reports I saw few minutes ago: http://pastie.org/357220

The developer should just come out and say that this app is dead and not leave us waiting for YEARS.

929 Name: !WAHa.06x36 : 2009-01-11 05:22 ID:Heaven [Del]

>>928

I am a single developer, and I have a job and university to deal with too. Have some patience.

Also, that's a bug from exifparse, which causes crashes on broken EXIF data. It's fixed in the development version, but if you really get a lot of crashes from it you should find out where you are getting images with broken EXIF data.

930 Name: mike : 2009-01-15 01:08 ID:kA3qJ3aH [Del]

I'm sorry! I was just frustrated so I might have come off harshly :(

I just compiled Xee myself (from SVN) and there's no more crashes! Thanks!

If anyone else is having EXIF crashes, you can grab this version: http://rapidshare.com/files/183548361/Xee_2.1Aplha4.zip

Until the official one comes out...

931 Name: !WAHa.06x36 : 2009-01-15 09:31 ID:Heaven [Del]

There are obviously no guarantees that that version will work as it's supposed to, but I don't think there are any major stumbling blocks right now.

932 Name: mike : 2009-01-15 23:32 ID:kA3qJ3aH (Image: 427x512 jpg, 57 kb) [Del]

src/1232091174945.jpg: 427x512, 57 kb

Me again :)

I found a crash in the SVN version. It seems that EXIF is to blame again. Here's the crash log:

http://pastie.org/362205

and the pic that's causing it is here: http://img133.imageshack.us/img133/7659/1231560289391fy8.jpg

But this version is MUCH, MUCH more stable than the 2.0! It's now a pleasure to use. :)

Thanks again!

933 Name: Poison : 2009-01-16 06:12 ID:Mlj6qKhQ [Del]

In my opinion, Xee is a nice app except the icon. XD
For some special needed, I do a bit modification in the svn source to add remote controller support and prevent my mac from sleeping while it is performing slideshow.
Remote controller function:
Play: Slideshow
Menu: Fullscreen
Vol+: Slideshow delay +
Vol-: Slideshow delay -
Next: Next image
Previous: Previous image
Xee-svn-r28+patch Usernal Binary
Source Patch:
Source Patch File

934 Post deleted by user.

935 Name: Mario : 2009-01-18 13:39 ID:j8WVFyet [Del]

I installed Xee on my brother's G3 500MHz Dual USB iBook but it crashes stating:

iBook:~ mladen$ /Applications/Xee.app/Contents/MacOS/Xee; exit
dyld: incompatible cpu-subtype
Trace/BPT trap
logout
[Process completed]

Is there any way to fix it so that Xee can ride on G3? I'd really like to show him Xee as he's new to Mac and Xee is my only weapon of choice :)

936 Name: Anonymous : 2009-01-19 04:29 ID:Heaven [Del]

he's new to macs and all he's got is a G3?

937 Name: Mario : 2009-01-19 15:12 ID:j8WVFyet [Del]

It's really a secondary computer to him, and I bought it for like $50 :)

938 Name: baron : 2009-01-25 12:17 ID:LSl//nWm [Del]

>>930

> Xee_2.1Aplha4.zip

works fine. i had issues before with the following things:

  • open files in directories with alot of other files - it needed minutes... (faster now)
  • the dustbin-sound when deleting is gone :)
  • i wasn't able to compile it myself, xcode muttered about libraries. maybe add a foolproof description how to do this ;)

the small icon (only an eye?) looks creepy in the finder - maybe something colourful would look better (one color per filetype).

thx,
n.

939 Name: !WAHa.06x36 : 2009-01-26 12:31 ID:f+W/lezk [Del]

>>938

Those are not the standard icons. Them not being colour-coded is one reason for that.

940 Name: nakko : 2009-01-30 18:52 ID:WweLwVr1 [Del]

Cool app dude, thanks for all your hard work. It's highly, highly appreciated. You have no idea how much I use Xee; far more than I use FFView or Preview, I can tell you that!! =)

941 Name: kaelvin : 2009-02-02 06:44 ID:uJIDuhPe [Del]

just going to say, i love Xee.

942 Name: Bob : 2009-02-11 09:35 ID:/fvhde4c [Del]

Love that software. Only one thing bothers me. There's no way to turn off the alpha channel. Great job!

943 Name: frereroy : 2009-02-12 01:06 ID:AFfZhXW0 [Del]

> Xee_2.1Aplha4.zip

I cannot make "Get Info" to show the IPTC for data that has been saved in Latn1 but it displays just fine if it is in UTF8.

944 Post deleted by user.

945 Name: !WAHa.06x36 : 2009-02-15 14:46 ID:Heaven [Del]

>>943

If you want anything fixed, you need to post example files.

946 Name: ooglek : 2009-02-16 08:39 ID:+FCdwIJw [Del]

I would LOVE it if Saving Losslessly, such as when I rotate photos (my camera, Fujifilm F30 doesn't provide correct orientation data in the EXIF, so I have to rotate them), that the Updated Timestamp on the file would remain the same. I love having my raw images having the creation date on them, rather than the date I rotated the image. Maybe add that as an Option, so people can turn it on to retain the Updated Timestamp on the file during Lossless file saving.

947 Name: Anonymous : 2009-02-16 12:17 ID:Heaven [Del]

>>946
You know, filesystems do keep track of file creation time as well as last-modified time.

948 Name: Sam Ho : 2009-02-17 05:42 ID:JAt1MWUm [Del]

Thank you very much for this great application.

I do respect that you personally don't see any use of browsing capabilities (subfolders etc.) and since you do the work, it is up to you to decide what to do. However, as pointed out by countless other people, it would be great if you could include browse functionality, similar to "gqview" on Linux. Again, it's up to you, and I have read your previous replies; just trying to provide feedback.

949 Name: Anonymous : 2009-02-19 15:41 ID:Heaven [Del]

>>948
you know, it is open source... if you want that, why not fork it and make your own version?

950 Name: Anonymous : 2009-02-19 17:37 ID:Heaven [Del]

>>948
gqview dates from a time where browsing pictures with normal file browsers was a laughable proposition. It's not the case in OS X today.
I think many requests for a browser are solved when you realize you can bind "Reveal in Finder" to a single key, set Xee as your default viewer, and a bind key to open in an editor. I find this workflow just as fast as acdsee, and I like not having to rely on a half-assed browser (how could a built-in browser compete with the finder? what would it have the finder lacks?)
If Xee or a fork stops being lightweight, I'm afraid I wouldn't be able to use it in the no-bullshit way I like anymore, with the pictures in fullscreen, absolutely no interface overlaid, and all the commands available from single keystrokes.

951 Post deleted by user.

952 Name: freediverx : 2009-02-22 07:00 ID:bR415B// [Del]

>>950
Finder's thumbnail view has many limitations. You are limited in how large you can make the thumbnails and how tightly you can set the grid spacing, and there is no slider control to change these settings on the fly. There is also no way to link image navigation between the Finder window and the image viewer app (in this case, Xee) with the result being that you can never really switch back and forth between a large image view and the thumbnail view without losing your place in the thumbnail view (unless you always do your navigation in the finder and close Xee after viewing each individual image). And there is no convenient keyboard toggle between thumbnail and single image viewing (ie, tapping the Enter key in thumbnail mode to open the image.)

I agree that Xee's primary benefits include speed and low memory/resource consumption, and I would certainly not want to turn it into a bloated application. But I really wish there was a better way to browse and analyze images while easily toggling between single image and thumbnail modes.

In essence, I'm not so much trying to duplicate Finder functionality as I am trying to wean myself from my reliance on iPhoto - which is useless in many situations due to its requirement that you import images before viewing/working with them.

953 Name: freediverx : 2009-02-22 07:24 ID:bR415B// [Del]

>>950
BTW, I realize you can bind a shortcut key for "reveal in finder", but with this method, the Xee window remains open when you go to the Finder, and if you then open another image, it spawns a new Xee window.

And yes, you can set Xee to open all images in a single window, but then that eliminates the option to open more than one image at a time.

So again, there are tons of workarounds available but none of them deliver a smooth and efficient workflow.

954 Post deleted by user.

955 Name: Anonymous : 2009-02-22 14:05 ID:Heaven [Del]

>>952
You could give Picasa a try. I'll use that or Xee depending on what I'm trying to do with my images.

956 Name: Skye : 2009-02-27 20:42 ID:tFu5GyEx [Del]

Xee is awesome! The only thing I would add, is that if you are in Crop mode and hold down the Shift key, the crop marquee is constrained to be square. This is standard Photoshop behaviour and would cover 95% of all my image editing tasks to make icons for websites and whatnot. Thanks for the great app!!

957 Name: Anonymous : 2009-03-04 00:49 ID:FeDFWck+ [Del]

>>926
As good as Xee is, it sounds like you might be interested in JustLooking

http://chipmunkninja.com/article/justlooking32

and/or Picasa (Beta)

http://picasa.google.com/mac/

Both fill-in niches lacking in Xee. Good Luck

958 Name: Anonymous : 2009-03-04 00:50 ID:FeDFWck+ [Del]

>>926
As good as Xee is, it sounds like you might be interested in JustLooking

http://chipmunkninja.com/article/justlooking32

and/or Picasa (Beta)

http://picasa.google.com/mac/

Both fill-in niches lacking in Xee. Good Luck

959 Name: ad : 2009-03-16 12:12 ID:yvf+Q4EX [Del]

I'm new to this program. Will it do this: I have a bunch of sequentially named files in a folder. I would like to collect them by certain EXIF date tag and put them into folders which are named by the respective date (like 20090303, 20090304, etc). Sort of like most camera download programs.

I'm not good enough to write a script so I ask if this or another program will do this. I have a mac os 10.4.11.

thank you,

960 Name: Anonymous : 2009-03-17 04:57 ID:Heaven [Del]

Xee won't. There's no file management features at all in it, it's a viewer.

961 Name: klw : 2009-03-24 19:38 ID:2FbvOnjO [Del]

I just installed Xee to check it out. I clicked four file types to associate with it, and then wanted to go back to Preview. So I unchecked them in Xee Preferences, and now they all open in CoreImage Fun House!? What the What? How do I get these back to being associated Preview, and why didn't Xee take care of this for me? Bad Xee, bad!

962 Name: Anonymous : 2009-03-25 05:05 ID:Heaven [Del]

File associations being a mess is only OS X's fault. Get Info in Finder, Open With Preview, Change All - do this on one file of each major filetype you use (JPG, PNG, PSD, GIF, etc.)

963 Name: !WAHa.06x36 : 2009-03-25 06:03 ID:Heaven [Del]

What >>962 said.

964 Name: klw : 2009-03-25 18:34 ID:2FbvOnjO [Del]

I don't see why Xee is off the hook, the Xee UI let me associate a file type with it, it should set it back to what it was when I uncheck that association. It shouldn't be too difficult to see what the filetype is associated with before it takes that association on, store that info someplace out of the way and restore that original association if gets unchecked. Thankfully I didn't Select All =D

965 Name: !WAHa.06x36 : 2009-03-26 07:53 ID:Heaven [Del]

>>964

It shouldn't be, no. But it is. OS X does not provide a reliable way to do this. The filetype association system is quite broken, and the APIs for programs to access it is even more broken.

966 Name: klw : 2009-03-26 19:02 ID:2FbvOnjO [Del]

Ahh, that more detailed explanation makes better sense then. So I retract and reassign my original chastisement .... Innocent Xee, Bad Apple Baaaad!

967 Name: Mike : 2009-03-29 14:54 ID:GcnxA9FO [Del]

First: Xee is excellent! There is one feature I would love to see: mouse gestures. There used to be http://www.cocoasuite.com/ but it causes some trouble at least with OS X 10.5.6.

968 Name: Anonymous : 2009-03-31 16:58 ID:iirfWhxi [Del]

I have recently moved from a PC to a Mac. I was a massive fan of Irfanview and spent ages looking for a Mac equivalent. That is, until I found Xee.

One feature I would like to see however (the reason why I'm on this website), is the ability to apply colour labels to files as I browse through them. I'm a photographer and this would make picking out the best shots (for further editing) a breeze.

Keep up the good work!

969 Name: !WAHa.06x36 : 2009-04-01 04:25 ID:Heaven [Del]

>>968

That's not a bad idea, I suppose. If you file a bug for it I am less likely to forget about it.

970 Name: Anonymous : 2009-04-17 05:06 ID:LwGs9smc [Del]

>>967
Try xGestures. It's very cheap, powerful, and works for the whole OS, not just cocoa apps.

971 Name: MARTiN : 2009-04-17 16:03 ID:CgzlQTvf [Del]

I would REALLY like Xee to have pan zoom capabilities in slide show mode.
Actually, I cant find any OSX picture viewing application that has auto pan zoom in slideshow.... and I think its great!

Hope I see it in a future realease.

972 Name: Anonymous : 2009-04-19 07:37 ID:Heaven [Del]

>>971
Well... iPhoto does that, and it's certainly for OS X. ;)

973 Name: Peter : 2009-04-24 20:58 ID:sbTqfSNH [Del]

I downloaded the source and tried to compile it. It failed to compile with a duplicate symbol error in XeeTypes.h (over 40 errors). Removing the duplicate it still fails to compile with a 'Framework not found XADMaster' error.

974 Name: !WAHa.06x36 : 2009-04-29 04:38 ID:Heaven [Del]

>>973

Get XADMaster from The Unarchiver.

975 Post deleted by moderator.

976 Name: james : 2009-04-30 17:40 ID:pqKAtOYI [Del]

Hi, can you post an entire list of formats supported?

thanks.

James

977 Name: synonymous : 2009-05-05 09:38 ID:oGNMp4k2 [Del]

http://blogs.adobe.com/jnack/2009/05/some_thoughts_about_psd.html

reply to your "adobe rant" in xee source-code (it's nice they actually replied)

978 Name: Anonymous : 2009-05-05 16:44 ID:Heaven [Del]

>>977
it'd be nicer if their reply included something like http://libpsd.graphest.com/files/Photoshop%20File%20Formats.pdf...

979 Name: Rudolfo : 2009-05-06 15:23 ID:LIncJUp+ [Del]

Would be awesome if there was some way to hide the mouse cursor in fullscreen mode...

that's the only thing I'm really missing! Great work :)

980 Name: Anonymous : 2009-05-08 00:51 ID:7akGeY9O [Del]

has the default sort order been fixed? it won't use the "same as in the finder" option. i've had this problem since i first started using xee.

981 Name: keng : 2009-05-08 08:21 ID:aswY7YO3 [Del]

great stuff but i am new to mac and don't know how to set it as my default viewer if there is a way? thanks for any help

982 Name: Anonymous : 2009-05-08 16:19 ID:+WZX/B8B [Del]

To set Xee as the default App for a particular file type, 'right-click' on a file of that type to bring up the contextual menu, then where it says "Open with:" select Xee.app from the drop-down list, then click "Change all..." and click "Continue". All files of that type will then open with Xee.

983 Name: Anonymous : 2009-05-08 16:26 ID:+WZX/B8B [Del]

To set Xee as the default App for a particular file type, 'right-click' on a file of that type to bring up the contextual menu, click on "Get info" then where it says "Open with:" select Xee.app from the drop-down list, then click "Change all..." and click "Continue". All files of that type will then open with Xee.

984 Name: Anonymous : 2009-05-08 16:29 ID:+WZX/B8B [Del]

FOR MODERATOR: Could you please delete this, and post 982 as I forgot to mention a step and have posted a corrected version (983). Thank you.

985 Name: Anonymous : 2009-05-08 16:37 ID:Heaven [Del]

>>984
Click the [Del] button.

986 Name: Anonymous : 2009-05-09 22:06 ID:Heaven [Del]

987 Post deleted by moderator.

988 Name: Aaron : 2009-05-23 11:35 ID:p1OnSsGa [Del]

Been using Xee as my default image viewer for a long time. It works almost perfectly for me, I only have a few requests:

  1. antialias zoomed in images
  2. an option to view as fit on screen when in full screen mode
  3. an option to hide the mouse cursor in full screen mode

Thanks

989 Post deleted by user.

990 Post deleted by user.

991 Name: Peter : 2009-05-31 13:38 ID:M1tqRDLU [Del]

Hi there,
great and fast ProgrAM.

I would like to see a zoom/magnifier option for left click as you can configure for exaple in FastStone viewer (on PC).

Thanks

992 Name: Geza : 2009-06-01 12:50 ID:wA9/+OXG [Del]

Wonderful little program, thank you.

I'm using .PEF files (Pentax RAW format) which Xee can apparently read, but does not consider, when going from image to image in a folder. Any way to add PEF as one of the extensions Xee looks at?

Thanks, best,

Geza

993 Name: anon : 2009-06-07 07:25 ID:7Rn6QHUo (Image: 833x1200 jpg, 294 kb) [Del]

src/1244384707155.jpg: 833x1200, 294 kb

Just a bug report with a jpeg file that causes Xee to hang miserably on my machine. I have attached the image with this post.

Intel GMA 950, OSX 10.5.7

994 Name: !WAHa.06x36 : 2009-06-07 14:22 ID:Heaven [Del]

>>993

Seems to be fixed already in the dev version.

995 Name: freediverx : 2009-06-11 16:32 ID:bMfAD7As [Del]

Not sure if this has been reported, but after saving a lossless rotation, the app doesn't properly redisplay the rotated image until it's been restarted.

BTW, any idea when the next release is due?

996 Name: !WAHa.06x36 : 2009-06-11 17:47 ID:Heaven [Del]

>>995

That should not happen. Is that on a windows share or something?

The next release will be out... sometime. I need to get The Unarchiver 2.0 done first, for one.

997 Name: krenshaw : 2009-06-15 06:51 ID:hYrv8TKO [Del]

great app not many .iff viewers out there is there any way of seeing the alpha channel with no colour for comp and maya purposes, it tells you it can see the rgba can you switch between them oh and open exr wow

998 Name: alaind : 2009-07-03 20:40 ID:6GUopTyM [Del]

I second Geza's request. It would be great to be able to browse PEF files as opposed to needing to open each one individually.

999 Name: muts : 2009-07-16 16:09 ID:ngbn4Z/m [Del]

On windows I used acdsee32 (the classic viewer from the 90s).
Xee is comparable, a very nice and light weight viewer with good zooming/resizing options.

One question, maybe missing: Is it possible to resize the window and have the image shrink with it?

1000 Name: mrt : 2009-07-21 11:20 ID:VkDDpL7W [Del]

Please fix support for sRGB. Currently pictures exported from Lightroom turn out looking washed out. Preview seems to handle same photos correctly.

Thanks for the much needed software though!

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