<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to feature-requests</title><link>https://sourceforge.net/p/jpegdeux/feature-requests/</link><description>Recent changes to feature-requests</description><atom:link href="https://sourceforge.net/p/jpegdeux/feature-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Thu, 30 Aug 2012 11:21:13 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/jpegdeux/feature-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>Album Shuffle</title><link>https://sourceforge.net/p/jpegdeux/feature-requests/9/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I've never seen this valuable feature in an app, only in my old MP3 CD player.&lt;/p&gt;
&lt;p&gt;This is certainly not valid code, but it's how I imagine the flow control would work:&lt;/p&gt;
&lt;p&gt;@allDirs = recursivelyFindAllDirs;&lt;br /&gt;
@dirList = shuffle(@allDirs);&lt;br /&gt;
foreach(@dirList) {&lt;br /&gt;
if (dirContainsNoImageFiles) {&lt;br /&gt;
skip;&lt;br /&gt;
} else {&lt;br /&gt;
playImagesInOrder;&lt;br /&gt;
}&lt;br /&gt;
}&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Peter Fagan</dc:creator><pubDate>Thu, 30 Aug 2012 11:21:13 -0000</pubDate><guid>https://sourceforge.net15cfd572ea0c8b73c574c6880570c74038448f85</guid></item><item><title>Larger Title Font on Photos?</title><link>https://sourceforge.net/p/jpegdeux/feature-requests/8/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Is it possible to be able to make the title font larger? I'm using the titles to contain cataloging and sorting information, as well as for labels, and making it easier to read when projected on a screen would make it more useful.&lt;/p&gt;
&lt;p&gt;Thanks for a terrificly usable program, BTW.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 22 Apr 2009 20:01:17 -0000</pubDate><guid>https://sourceforge.net7037b3b2cb9cc6a8c1c5012fd0f8a5fb909bd1b9</guid></item><item><title>Variable Pause between images</title><link>https://sourceforge.net/p/jpegdeux/feature-requests/7/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Set the length of a pause between images (effect: blank background between images for the specified time), with 0 (zero) seconds = no pause.&lt;/p&gt;&lt;/div&gt;</description><pubDate>Fri, 10 Oct 2008 09:48:04 -0000</pubDate><guid>https://sourceforge.net2d30f9019b39035dcb6c762aaa70a2dc73e570cf</guid></item><item><title>Visible Timer Countdown in Slideshow</title><link>https://sourceforge.net/p/jpegdeux/feature-requests/6/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I am using the slideshow to do drawing exercises: set the timer to 30 or 60 seconds and then quickly draw from photos of human beings in various poses. A similar exercise can be found at posemaniacs.com, but they use Poser models. Now, to be more useful, I would need a visible countdown clock to show me how much time I have left and not be surprised by the image change.&lt;/p&gt;&lt;/div&gt;</description><pubDate>Tue, 07 Oct 2008 19:04:50 -0000</pubDate><guid>https://sourceforge.net9d06faeab2d3510137f23c1b7ed5494fa2a4c5b1</guid></item><item><title>universal binary!</title><link>https://sourceforge.net/p/jpegdeux/feature-requests/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;after all these years jpegdeux is still the best, most performing image viewer. i love to see further development. one request would be to make it universal. the second is more special. while in the presentation mode i would love to have a shortcut to toggle between random and regular order. i would pay for this feature!&lt;/p&gt;
&lt;p&gt;best regards,&lt;br /&gt;
marc&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">hellmachine</dc:creator><pubDate>Sat, 08 Sep 2007 09:03:47 -0000</pubDate><guid>https://sourceforge.net27c19a565b6dc2a3117b761492b4a690d65cfe9c</guid></item><item><title>Autorotate via Exif information</title><link>https://sourceforge.net/p/jpegdeux/feature-requests/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;If you use libexif (http://libexif.sourceforge.net/) you can read the exif header information and look for the "Orientation" item.  This field will be populated with one of eight values, though only four of which is actually valid for most digital photography (per this URL: &lt;a href="http://www.impulseadventure.com/photo/exif-orientation.html\" rel="nofollow"&gt;http://www.impulseadventure.com/photo/exif-orientation.html\&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;It would be great to be able to have images automatically rotated to the correct orientation based on the EXIF header information.&lt;/p&gt;
&lt;p&gt;Basically the values are: 6-rotate 90 CCW, 3-rotate 180, 8-rotate 270 CCW.&lt;/p&gt;
&lt;p&gt;Sample code using would be something like:&lt;/p&gt;
&lt;p&gt;// in the main:&lt;br /&gt;
#include &amp;lt;exif.h&amp;gt;&lt;/p&gt;
&lt;p&gt;// somewhere at the top of main:&lt;br /&gt;
exif_init ( malloc, free, realloc );&lt;/p&gt;
&lt;p&gt;// where you read the jpeg&lt;br /&gt;
exif_data_t* ed;&lt;br /&gt;
exif_record_t* er;&lt;br /&gt;
ed = exif_parse_file ( argv[--argc] );&lt;br /&gt;
er = exif_find_record ( ed, "Orientation" );&lt;br /&gt;
switch ( er-&amp;gt;rec_data.l )&lt;br /&gt;
{&lt;br /&gt;
case 8:&lt;br /&gt;
myRotation = 270;&lt;br /&gt;
break;&lt;br /&gt;
case 3:&lt;br /&gt;
myRotation = 180;&lt;br /&gt;
break;&lt;br /&gt;
case 6:&lt;br /&gt;
myRotation = 90;&lt;br /&gt;
break;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;Caveat on libexif.  I downloaded the tarball release and found that exif.c and exif.h were missing from the release, and I had to manually download those two files from the SourceForge CVS repository.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ivans Chou</dc:creator><pubDate>Mon, 25 Jun 2007 17:48:40 -0000</pubDate><guid>https://sourceforge.net97e268cd2b34b944ed2d84778f24e0c4bc93db9d</guid></item><item><title>Use CoreGraphics transitions</title><link>https://sourceforge.net/p/jpegdeux/feature-requests/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Since the cross fade transition doesn't work, maybe you can use the CoreGraphics transition instead.&lt;/p&gt;
&lt;p&gt;I've been trying, with limited success, to implement the CoreGraphics transitions.  Please refer to the following URL:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://dev.lipidity.com/feature/tutorial/xcode-transitions-core-graphics-image-2" rel="nofollow"&gt;http://dev.lipidity.com/feature/tutorial/xcode-transitions-core-graphics-image-2&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I have been trying combinations of [myCoveringWindow windowNumber] and [myOtherCoveringWindow windowNumber] as parameters to spec.wid but all it ever does is transition from one image to the same image, and then advance the image, and repeat.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ivans Chou</dc:creator><pubDate>Mon, 25 Jun 2007 17:40:49 -0000</pubDate><guid>https://sourceforge.netea907163c708ca738f6ca36c205cea8bffb728c0</guid></item><item><title>Get a clean compile (no warnings)</title><link>https://sourceforge.net/p/jpegdeux/feature-requests/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The code is currently compiling with several warnings. Look at &lt;br /&gt;
solutions for getting rid of the compile warnings.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kevin Erickson</dc:creator><pubDate>Mon, 13 Jun 2005 05:01:56 -0000</pubDate><guid>https://sourceforge.net273f4bc819b5da467c8f1cfccca26db1cf37d56f</guid></item><item><title>Update code from Apple</title><link>https://sourceforge.net/p/jpegdeux/feature-requests/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The 'MoreFilesX.c' is a file from Apple. The application is currently &lt;br /&gt;
using v1.0 of this file while it looks as though 1.02 has been released &lt;br /&gt;
recently. Also, take a look at other code to find out which one's are &lt;br /&gt;
from Apple and can be updated as well.&lt;/p&gt;
&lt;p&gt;Any chance that any calls to these methods can be replaced by &lt;br /&gt;
calls to the Cocoa libraries to avoid having to include them?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kevin Erickson</dc:creator><pubDate>Mon, 13 Jun 2005 05:00:45 -0000</pubDate><guid>https://sourceforge.net7f68ac2f252faa63cdd8cc2e7e204afd0a072f02</guid></item></channel></rss>