Tue Nov 28 13:17:18 2006 John Ellis <johne@verizon.net>
[geeqie.git] / ChangeLog
1 Tue Nov 28 13:17:18 2006  John Ellis  <johne@verizon.net>
2
3         * image.c: When resuming a previous color adjustment, set the display
4         to update incrementally to avoid user confusion of why half of image
5         is color adjusted.
6
7 Tue Nov 28 11:54:30 2006  John Ellis  <johne@verizon.net>
8
9         * color-man.[ch]: Allow color manager to work with GdkPixbufs not
10         linked to an ImageWindow. Fix missing embedded dummy function when
11         compiling without color profile support.
12         * image.c: When embedded color profiles is enabled and EXIF ColorSpace
13         is set to 1 use sRGB color profile for the image. Also fixed order of
14         starting the image read-ahead when color profiles are in use.
15         * typedefs.h (ImageWindow): Use gpointer definition correctly so that
16         cm is a pointer and not a pointer to a pointer.
17         * utilops.c: Pass 0 to vertical fill arg of gtk_table_attach() instead
18         of FALSE.
19
20 Mon Nov 27 01:23:23 2006  John Ellis  <johne@verizon.net>
21
22         * bar_exif.c, cache-loader.c, pan-view.c: Pass new arg for exif_read().
23         * color-man.[ch]: Add color_man_new_embedded for using in-memory color
24         profiles.
25         * exif.[ch]: Add support for extracting color profiles embedded in jpeg
26         and tiff images. This resulted in a rewrite of the jpeg parser; both
27         to allow searching for any marker type, and to make the code readable.
28         * format_raw.c: Add color profile tag to the debug code.
29         * image.c, layout.c: Use embedded color profiles when found and
30         enabled, also add toggle for the option in color profile menu.
31
32 Fri Nov 24 21:37:01 2006  John Ellis  <johne@verizon.net>
33
34         * configure.in: Add test for lcms (little cms).
35         * Makefile.am: Add color-man.[ch]:
36         * color-man.[ch]: New files for color management support.
37         * globals.c, gqview.h, main.c, rcfile.c, typedefs.h: Add color profile
38         variables and option saving.
39         * image.[ch]: Add color profile functions.
40         * layout.c, layout_image.[ch]: Add color profile icon, popup menu, and
41         fix sort menu to use radio buttons.
42         * menu.c: Use radio buttons for sort menu when appropriate.
43         * preferences.c: Add color profile options to preferences.
44         * ui_menu.[ch]: Add menu_item_add_radio() for radio item menus.
45         * ui_misc.c: Fix gtk_table_attach() arg for vertical expansion.
46         * view_file_icon.c, view_file_list.c: Check for active state in sort
47         menu callbacks.
48         * README: Add info about lcms, and how to disable.
49
50 Fri Nov 17 19:06:19 2006  John Ellis  <johne@verizon.net>
51
52         * ui_fileops.[ch]: Add path_list_lstat() to obtain a path listing that
53         does not follow symbolic links.
54         * utilops.[ch]: Add file_util_delete_dir(), and support functions.
55         * view_dir_list.c: Add delete to folder popup menu.
56         * view_dir_tree.c: Add delete to folder popup menu, and set rename and
57         delete sensitive only when parent folder is writable.
58
59 Wed Nov 15 02:05:27 2006  John Ellis  <johne@verizon.net>
60
61         * view_file_icon.c: Fix odd crash when removing files, it seems the
62         high priority idle sync is no longer called before the treeview tries
63         to redraw itself, so fix the cleanup of removed pointers so that they
64         are always valid or NULL (I wonder if the priorities used by
65         GtkTreeView have changed in newer versions of GTK?).
66         * view_file_list.c: Fix progress bar warning when files are removed
67         before thumbnail generation is finished.
68
69 Tue Nov 14 15:36:14 2006  John Ellis  <johne@verizon.net>
70
71         * exif.[ch]: Fix memory alignment issues, bug #1593252.
72
73 Fri Nov 10 18:11:54 2006  John Ellis  <johne@verizon.net>
74
75         * image.c: Fix up initial scroll offset into image when auto rotated
76         by exif info, and keep same center point when rotating otherwise.
77
78 Fri Nov 10 16:11:28 2006  John Ellis  <johne@verizon.net>
79
80         * format_fuji.c (format_fuji_raw): Use exif_byte_get_int32() to get
81         the value, as when that is eventually fixed to be alignment safe,
82         the so shall this.
83
84 Thu Nov  9 20:27:47 2006  John Ellis  <johne@verizon.net>
85
86         * exif.[ch]: Rename exif_byte_swab..() to exif_byte_put..() as that is
87         more in line with their counterparts of exif_byte_get..()
88
89 Thu Nov  9 17:43:06 2006  John Ellis  <johne@verizon.net>
90
91         * pan-view.c: Break this monstrosity of code into smaller files.
92         * pan-calendar.c, pan-folder.c, pan-grid.c, pan-timeline.c: Move the
93         layout types into their own files (for now flower is with folder tree).
94         * pan-item.c: PanItem creation, drawing, actions, and maintenance.
95         * pan-types.h: Defines, data types, function prototypes.
96         * pan-util.c: Various utilities.
97         * src/Makefile.am: Add new files above.
98
99 Wed Nov  8 16:59:14 2006  John Ellis  <johne@verizon.net>
100
101         * pixbuf-renderer.[ch]: Give image overlays their own child GdkWindow,
102         and use a buffer when drawing to those windows to avoid flicker.
103         Scrolling with the info [I] visible in full screen is now much
104         smoother. Only one regression that will be fixed later: overlapping
105         overlays are now ugly.
106
107 Wed Nov  8 11:36:58 2006  John Ellis  <johne@verizon.net>
108
109         * format_nikon.h: For the pentax test, use tiff make instead of a magic
110         string that can move location.
111
112 Tue Nov  7 19:54:44 2006  John Ellis  <johne@verizon.net>
113
114         * pan-view.c: For calendar view only show months that contain an image.
115         Allow choice of size when displaying an image with the info popup.
116
117 Tue Nov  7 15:35:59 2006  John Ellis  <johne@verizon.net>
118
119         * exif.c: Use new format_raw_exif_offset() function to find Exif in
120         raw files.
121         * filelist.c: Add orf and pef to displayed file types.
122         * format_canon.h, format_fuji.h: Update to new #define format.
123         * format_fuji.c: Use same offset for Exif as the jpeg image as the
124         Exif is always embedded in the jpeg and assuming offset of 12 is
125         just broken.
126         * format_nikon.h: Update to new #define format, and add pentax here
127         as finding the jpeg will be same code.
128         * format_olympus.[ch]: Support Olympus raw files with embedded jpegs,
129         not all raw files will have a jpeg, but all appear to have Exif tags.
130         * format_raw.[ch]: Add new camera types, and add a debugging facility
131         to easily list all tags within tiff files (see format_raw.h to enable).
132
133 Mon Nov  6 20:53:22 2006  John Ellis  <johne@verizon.net>
134
135         * format_olympus.c: Fix olympus makernote tag types to match image
136         sample: Olympus.Bracket, Olympus.FocusDistance, Olympus.SerialNumber,
137         and Olympus.FlashBias.
138
139 Sat Nov  4 17:14:47 2006  John Ellis  <johne@verizon.net>
140
141         * pan-view.c: Always recalculate canvas size when displaying popups.
142         * README: Updates.
143         * po/eo.po: Mark translation for 'Command Line' not fuzzy.
144         * configure.in: Release 2.1.4 (quick bug fix for pan view).
145
146 Sat Nov  4 16:55:08 2006  John Ellis  <johne@verizon.net>
147
148         * pan-view.c: Only print things to console when debug is enabled.
149         * pixbuf-renderer.c: Fix pixbuf_renderer_set_tiles_size() so that
150         canvas will not treat scroll position as if a new image was set, this
151         fixes popups in the Pan View from causing a scroll to the top left or
152         center when scroll_reset_method is not set to 'no change'. Also clean
153         up pr_pixbuf_set() and pr_zoom_sync() arguments, some were unused or
154         always set TRUE as they were old cruft.
155
156 Sat Nov  4 10:31:51 2006  John Ellis  <johne@verizon.net>
157
158         * README: Updates.
159         * icons/Makefile.am: Remove icon files that no longer exist.
160         * configure.in: Release 2.1.3
161
162 Fri Nov  3 21:15:40 2006  John Ellis  <johne@verizon.net>
163
164         * pan-view.c: Fix shortcuts to work regardless of what has the focus.
165         Make [Control]+F (in addition to [/] show the find bar and [Control]+G
166         go to next match. Add folder location field to info popup.
167
168 Fri Nov  3 11:40:48 2006  John Ellis  <johne@verizon.net>
169
170         * bar_exif.[ch]: Make list of general exif tags available to rest of
171         application.
172         * pan-view.c: Add option to display exif information in info popup.
173         Clean up the info popup text alignment. Make displaying the full size
174         image below the info popup optional (off by default).
175         * pixbuf-renderer.c (pr_source_tile_changed): Guard against
176         width/height less than 1.
177         * pixbuf_util.c (pixbuf_draw_layout): Guard against width/height less
178         than 1.
179
180 Thu Nov  2 17:51:31 2006  John Ellis  <johne@verizon.net>
181
182         * collect.c, img-view.c: Make [Shift]+P printing shortcut work for
183         collections and view windows.
184         * layout_util.c: Fix shortcuts [Control]+N and [Shift]+P, broken
185         by the previous keypress handler code cleanup. Add [Control]+V to
186         view current image in a new image window.
187
188 Thu Nov  2 14:38:54 2006  John Ellis  <johne@verizon.net>
189
190         * view_file_list.c: Fix slow re-sort when updating list by clearing the
191         list and adding items in the new order instead of simply moving them.
192         Fixes bug #1451200.
193
194 Thu Nov  2 06:46:14 2006  John Ellis  <johne@verizon.net>
195
196         * po/eo.po: Add Esperanto translation,
197         submitted by Antonio C. Codazzi <f_sophia@libero.it>.
198         * configure.in (ALL_LINGUAS): Add new translation.
199         * README: Update credits for above.
200
201 Wed Nov  1 11:39:48 2006  John Ellis  <johne@verizon.net>
202
203         * gqview.h, main.c (window_set_icon): Change to use inline pixbufs
204         instead of xpms.
205         * collect.c, img-view.c, layout.c, preferences.c: Use new icons.
206         * pixbuf_util.[ch]: Add new icons.
207         * icons/Makefile.am: Update generated inline pixbufs.
208         * icons/collect.xpm, icons/config.xpm, icons/icon.xpm, icons/tools.xpm,
209         icons/view.xpm: Remove old xpm icons.
210         * icons/gqview_icon.png, icons/icon_book.png, icons/icon_config.png,
211         icons/icon_tools.png, icons/icon_view.png: The new icons in png format.
212         * icons/svg/*.svg: Add svg sources for icons, they are not used or
213         anything, but this way I can not misplace them again.
214
215 Tue Oct 31 18:06:42 2006  John Ellis  <johne@verizon.net>
216
217         * info.c: Increase default info window size to 600x400.
218         * po/be.po: Update Belarusian translation,
219         submitted by Pavel Piatruk <berserker@neolocation.com>.
220         * gqview.desktop: Add additional formats to MimeType list.
221
222 Sat Oct 28 14:41:10 2006  John Ellis  <johne@verizon.net>
223
224         * img-view.c: Use correct method to close the window using Escape key,
225         fixes bug #1231845. Also added more robust method to update window
226         list when a window is closed so this doesn't happen again.
227         * slideshow.c: Add sanity checks to exported functions to check for
228         NULL SlideShow pointers, to match rest of coding style.
229
230 Fri Oct 27 19:45:32 2006  John Ellis  <johne@verizon.net>
231
232         * layout.c, ui_menu.c, ui_misc.c: Use g_object_ref_sink when
233         gtk_object_sink is not available as it is deprecated.
234
235 Wed Oct 25 15:17:38 2006  John Ellis  <johne@verizon.net>
236
237         * pixbuf-renderer.c (pixbuf_renderer_scroll): Fix long standing bug
238         where obstructed portions of an image were not always generating an
239         expose event when scrolling the image.
240
241 Mon Oct 23 05:34:29 2006  John Ellis  <johne@verizon.net>
242
243         * img-view.c, layout_image.c, layout_util.c, pan-view.c: Make F11 also
244         toggle fullscreen.
245
246 Fri Oct 20 09:20:10 2006  John Ellis  <johne@verizon.net>
247
248         * collect-table.c, collect.c, dupe.c, pan-view.c, search.c,
249         view_file_icon.c: Keypress signal handler code clean-up round 2: the
250         remaining files. Make control and shift logic easier to follow.
251
252 Fri Oct 20 08:00:08 2006  John Ellis  <johne@verizon.net>
253
254         * img-view.c, layout_image.c, layout_util.c: Keypress signal handler
255         code clean-up round 1: the main windows. Also fixes [Shift]+[F] from
256         deactivating full screen [F].
257
258 Thu Oct 19 15:20:51 2006  John Ellis  <johne@verizon.net>
259
260         * image.c, typedefs.h: Add ALTER_DESATURATE alteration type.
261         * img-view.c, layout_image.c, layout_util.c, menu.c: Allow to grayscale
262         the display of current image with [Shift]+[G] keyboard shortcut and
263         'adjust' submenu item. Also fixed bug of [Shift]+[R] shortcut from also
264         activating refresh [R].
265         * pixbuf_util.[ch] (pixbuf_desaturate_rect): Implement grayscale
266         function.
267
268 Thu Oct 19 09:35:18 2006  John Ellis  <johne@verizon.net>
269
270         * layout.[ch] (layout_new_with_geometry): New function to create a
271         layout sized to an X geometry string.
272         * main.c: Add support for --geometry on the command line.
273
274 Thu Oct 19 07:42:38 2006  John Ellis  <johne@verizon.net>
275
276         * utilops.c: Fix minimum allowed auto-rename value to be zero again,
277         but keep the default at 1.
278
279 Thu Oct 19 07:23:37 2006  John Ellis  <johne@verizon.net>
280
281         * cache_maint.c, thumb_standard.[ch]: Use .thumblocal when saving
282         local thumbnails as per the freedesktop.org thumbnail spec.
283         * filelist.c: Add .thumblocal to list of ignored folders (those we
284         never show user).
285         * main.c: Fix bug in recent command line parser changes, a single
286         folder on the command line was not processed by parse_out_relatives().
287
288 Sun Oct 15 12:36:06 2006  John Ellis  <johne@verizon.net>
289
290         * pan-view.c: For now, also display the full size image under the
291         thumbnail's information bubble. Make clicking the info box close it.
292
293 Sun Oct 15 10:45:14 2006  John Ellis  <johne@verizon.net>
294
295         * pan-view.c: Recalc the size of the layout when popping up new images
296         in the calendar so that all new images can be scrolled into view.
297         * pixbuf-renderer.[ch] (pixbuf_renderer_set_tiles_size): Add ability
298         to resize a tile canvas without the need for a complete reset/render.
299
300 Sun Oct 15 04:03:41 2006  John Ellis  <johne@verizon.net>
301
302         * main.c: Fix command line parser to work with any combination of files
303         and/or folders on the command line.
304
305 Sun Oct 15 02:50:22 2006  John Ellis  <johne@verizon.net>
306
307         * eu.po: Add Basque translation,
308         submitted by Piarres Beobide <pi@beobide.net>.
309         * configure.in (ALL_LINGUAS): Add eu.
310         * README: Update credits.
311
312 Sat Oct 14 09:38:08 2006  John Ellis  <johne@verizon.net>
313
314         * po/*.po: Make distcheck touches these.
315         * gqview.spec.in: Fix to use License: instead of obselete Copyright:.
316         * configure.in: Release 2.1.2
317
318 Sat Oct 14 08:26:38 2006  John Ellis  <johne@verizon.net>
319
320         * vi.po: Update Vietnamese translation,
321         submitted by pclouds <pclouds@vnlinux.org>.
322         * README: Updates.
323
324 Sat Oct 14 05:44:40 2006  John Ellis  <johne@verizon.net>
325
326         * ar.po, be.po, bg.po, ca.po, cs.po, de.po, es.po, fi.po, hu.po,
327         it.po, ja.po, nl.po, pl.po, pt_BR.po, ro.po, ru.po, sk.po, sv.po,
328         vi.po, zh_TW.po: Fix punctuation of "Allow enlargement of image for
329         zoom to fit" translations, and unmark as fuzzy when only the change in
330         punctuation caused the fuzzy state.
331         * README: Updated po-stats list.
332
333 Sat Oct 14 05:18:45 2006  John Ellis  <johne@verizon.net>
334
335         * utilops.c: Mark string for translation.
336         * fi.po: Update Finnish translation [merge from 2.0.2],
337         submitted by Lauri Nurmi <lanurmi@iki.fi>.
338         * README: Updates.
339
340 Fri Oct 13 12:18:01 2006  John Ellis  <johne@verizon.net>
341
342         * ru.po: Update Russian translation [merge from 2.0.2],
343         submitted by Vitaly Lipatov <lav@altlinux.ru>.
344
345 Fri Oct 13 10:27:22 2006  John Ellis  <johne@verizon.net>
346
347         * cache_maint.c, ui_fileops.c, ui_pathsel.c, ui_tabcomp.c: Remove use
348         of the d_ino > 0 test as all files listed by readdir should be valid.
349         dirent.d_ino is not guanteed by POSIX, and at one recent point is
350         not implemented on cygwin.
351
352 Fri Oct 13 09:25:25 2006  John Ellis  <johne@verizon.net>
353
354         * pl.po: Update Polish translation,
355         submitted by Wit Wilinski <madman@linux.bydg.org>.
356         * README: Updates.
357
358 Fri Oct 13 05:22:43 2006  John Ellis  <johne@verizon.net>
359
360         * bar_sort.c, pan-view.c, preferences.c: Mark strings for translation,
361         plus punctuation fix.
362         * utilops.c: Change auto rename start number to default to 1.
363         * configure.in (ALL_LINGUAS): Add be, ca, ko translations.
364         * gqview.spec.in: Add Italian translation to RPM spec file,
365         submitted by HappyCactus <happycactus@people.it>.
366         * be.po: Add Belarusion translation,
367         submitted by Pavel Piatruk <berserker@neolocation.com>.
368         * ca.po: Add Catalan translation [merge from 2.0.2],
369         submitted by catux.org <mecatxis@ya.com>.
370         * de.po: Update German translation [merge from 2.0.2],
371         submitted by Ronny Steiner <Post@SIRSteiner.de>.
372         * fr.po: Update French translation,
373         submitted by Ã‰ric Lassauge <lassauge@users.sourceforge.net>.
374         * it.po: Update Italian translation,
375         submitted by Kostantino <ciclope10ATalice.it>.
376         * ko.po: Add Korean translation (mostly menus),
377         submitted by Hyun-Jin Moon <moonhyunjin@gmail.com>.
378         * pt_BR.po: Update Brazilian Portuguese translation,
379         submitted by Herval Ribeiro de Azevêdo <heraze@gmail.com>.
380         * sk.po: Update Slovak translation,
381         submitted by Mgr. Peter Tuharsky <tuharsky@misbb.sk>.
382         * zh_TW.po: Update Traditional Chinese translation,
383         submitted by S.J. Luo <crystal@mickey.ee.nctu.edu.tw>
384
385 Fri Sep  1 02:12:45 2006  John Ellis  <johne@verizon.net>
386
387         * collect-io.c, thumb_standard.c: Do not ignore return value from
388         g_list_append as newer versions of gtk now set a warning flag.
389         * utilops.c: Add new auto rename option to enter formatted text, which
390         uses * and # characters to symbolize original filename and numerical
391         value (respectively) in new filenames.
392
393 Mon Aug 15 18:27:38 2005  John Ellis  <johne@verizon.net>
394
395         * cache.c: Make cache loader tolerant of unknown line values, so that
396         a cache written by newer/older versions of GQview does not result in
397         recreating data that is actually there.
398
399 Mon Aug 15 17:13:57 2005  John Ellis  <johne@verizon.net>
400
401         * collect-table.c, dupe.c, exif.c, img-view.c info.c, layout_image.c,
402         md5-util.[ch], pan-view.c, remote.c, search.c, thumb_standard.c,
403         ui_bookmark.c, ui_misc.c, ui_pathsel.c, view_dir_list.c,
404         view_dir_tree.c, view_file_icon.c, view_file_list.c: Fix signedness
405         warnings in gcc 4.0.
406
407 Mon Aug 15 16:35:15 2005  John Ellis  <johne@verizon.net>
408
409         * view_dir_tree.c (vdtree_set_path): Do not force reading folder
410         contents, to allow the check for a changed timestamp do it's job.
411         * doc/10_options.html: Fix page link in docs.
412
413 Thu Jun 16 01:21:43 2005  John Ellis  <johne@verizon.net>
414
415         * cache-loader.c (cache_loader_process): When converting Exif date
416         string to time_t, tell mktime DST is unknown (-1).
417
418 Mon Jun 13 20:22:58 2005  John Ellis  <johne@verizon.net>
419
420         * image.c (image_zoom_cb): If needed, update window title when
421         zoom changes.
422         * pixbuf-renderer.c (pr_size_sync): Send zoom signal when new window
423         size results in a new scale value.
424         * README: Updates.
425         * configure.in: Release 2.1.1
426
427 Mon Jun 13 17:31:46 2005  John Ellis  <johne@verizon.net>
428
429         * editors.[ch]: Add "%w" macro to disable full screen deactivation when
430         running an editor command.
431         * img-view.c, layout_image.c, pan-view.c: Honor %w editor flag to
432         prevent exit of full screen.
433         * image-load.c (image_load_begin): Fix to not treat short reads as
434         end of file condition.
435         * README, doc/10_5_editor_commands.html: Document %w macro for editor
436         commands.
437         * po/it.po: Update Italian translation,
438         submitted by Kostantino <inverness1ATvirgilio.it>.
439
440 Sun Jun 12 19:25:26 2005  John Ellis  <johne@verizon.net>
441
442         * format_canon.[ch]: Reimplement canon raw parser to use convenience
443         functions from exif.c, also separated parsers into one per file type.
444         For the cr2 format also verify compression type in tiff field 0x0103.
445         * format_raw.c: Add FIXME comment noting current shortcomings.
446
447 Sat Jun 11 01:06:49 2005  John Ellis  <johne@verizon.net>
448
449         * exif.c, format_nikon.c, format_olympus.c: Fix memory leaks,
450         exif_text_list_find_value() will always return newly allocated text.
451
452 Fri Jun 10 20:57:42 2005  John Ellis  <johne@verizon.net>
453
454         * exif.c (exif_parse_IFD_table): Fix offset count before testing
455         against buffer size.
456         * exif.h: Make exif_text_list_find_value available.
457         * format_canon.c: Fix copy's length when duping Canon.SerialNumber, and
458         adjust several text descriptions.
459         * format_fuji.c: Remove "MkN." text from tag names.
460         * format_nikon.c: Fix offset count before testing against buffer size,
461         and remove "MkN." text from tag names. Add several new tags.
462         * format_olympus.[ch]: New files for olympus makernote.
463         * format_raw.c: Add exif olympus hook.
464         * src/Makefile.am: Add format_olympus.[ch].
465
466 Fri Jun 10 02:19:26 2005  John Ellis  <johne@verizon.net>
467
468         * pan-view.c: Add exif date sorting option to right click menu, and
469         change 'reading dimensions...' message to be more generic as it may now
470         also be reading embedded exif dates, or both date and dimensions.
471
472 Thu Jun  9 23:22:01 2005  John Ellis  <johne@verizon.net>
473
474         * exif.c (exif_parse_JPEG): Use memcmp as strncmp is inadequate when
475         bytes with values of 0 are actually in the data to compare.
476
477 Thu Jun  9 22:23:18 2005  John Ellis  <johne@verizon.net>
478
479         * exif.[ch]: A lot of code clean up, add generic tiff header parser,
480         remove use of packed structures to interpret tiff file format,
481         fix possible endless loops in tiff parser with corrupt IFD tables,
482         and fix possible overflow in jpeg exif parser.
483         * format_canon.[ch]: Add additional makernote values, plus a few
484         spelling fixes. Header update.
485         * format_fuji.[ch]: Header update.
486         * format_nikon.[ch]: Updates to use new tiff parsing utils in exif.c,
487         code cleanup. Header update.
488         * format_raw.[ch]: Add pathname argument to file descriptor version of
489         raw parser to quickly rule out non-raw files based on file extension.
490         Add raw header match type to check for tiff "make" field value.
491         * image-load.c (image_loader_begin): Add image filename for raw parser.
492
493 Tue Jun  7 03:47:03 2005  John Ellis  <johne@verizon.net>
494
495         * filelist.c (filter_add_defaults): Add Nikon file extension for nef.
496         * format_canon.[ch], format_fuji.[ch]: Add comment tile, and
497         description field for MakerNote parser.
498         * format_nikon.[ch]: Add support for jpegs embedded in Nikon nef files.
499         * format_raw.c: Add debug description output and Nikon raw parser hook.
500
501 Sun Jun  5 03:05:39 2005  John Ellis  <johne@verizon.net>
502
503         * filelist.c (path_list_recursive_append): Fix memory leak by using
504         correct function to free path list.
505
506 Sat Jun  4 22:24:00 2005  John Ellis  <johne@verizon.net>
507
508         * exif.[ch]: Use glib provided data types and byte order functions for
509         consistency with rest of application. Made several more functions
510         available in the header. Use MakerNote parsing from format_raw.c.
511         * format_canon.[ch]: Changes to match exif.h and format_raw.h.
512         * format_fuji.[ch]: Add support for Fuji EXIF MakerNote.
513         * format_nikon.[ch]: New files, add support for Nikon EXIF MakerNote.
514         * format_raw.[ch]: Add EXIF MakerNote parser functions to gather all
515         camera formats here (similar to existing raw format list).
516         * src/Makefile.am: Add format_nikon.[ch].
517
518 Sat Jun  4 04:02:04 2005  John Ellis  <johne@verizon.net>
519
520         * README: Update credits.
521
522         Apply fix from Daniel M. German:
523
524         * format_canon.c (canon_read_int): Fixed error which caused a
525         segfault under OS X. It was a casting a number as a 32
526         bit, when it was 16. it works in little endian, but not in big
527         endian machines.
528         
529 Fri Jun  3 20:02:23 2005  John Ellis  <johne@verizon.net>
530
531         * format_canon.c (canon_mknote_parse_convert): For serial number
532         conversion, use the value of the data - not the value of the pointer.
533
534 Fri Jun  3 18:43:46 2005  John Ellis  <johne@verizon.net>
535
536         * bar_exif.c: Set a default size for the EXIF data column in the
537         advanced view, and allow resizing of that column to allow more data to
538         be visible when needed.
539         * format_canon.c: Fix data type for Canon MakerNote Serial Number.
540
541 Fri Jun  3 01:49:20 2005  John Ellis  <johne@verizon.net>
542
543         * exif.[ch]: Export several parsing functions for use by the exif
544         makernote parsers, and add hook for MakerNote data parsing.
545         * format_canon.[ch]: Add Canon EXIF MakerNote support.
546         * format_raw.c: Fix warning printf grammar.
547
548 Thu May 26 22:14:53 2005  John Ellis  <johne@verizon.net>
549
550         * format_raw.c (format_raw_parse): Use unsigned int to match arguments.
551
552 Thu May 26 13:57:19 2005  John Ellis  <johne@verizon.net>
553
554         * format_raw.[ch]: Move camera specific code to manufacturer specific
555         format_*.c files. Change code so that file descripter version is now a
556         separate functions that wraps the standard parser by using mmap.
557         * format_canon.[ch]: Moved Canon specific raw support here, removed
558         file descriptor versions of parser. This Canon raw file parser written
559         by Daniel M. German.
560         * format_fuji.[ch]: Move Fuji specific raw support here, parser written
561         by Lars Ellenberg.
562         * exif.c: Update for change to format_raw_img_exif_offsets.
563         * filelist.c: Add cr2 extension to Canon raw format list.
564         * image-load.c: Fixes for changes to format_raw_img_exif_offset_fd so
565         that buffer is refilled using new offset of file descriptor.
566         * src/Makefile.am: Add format_canon.[ch], format_fuji.[ch] to build.
567
568 Wed May 18 19:36:49 2005  John Ellis  <johne@verizon.net>
569
570         * utilops.[ch] (file_util_rename_dir): New utility to rename a folder,
571         does proper checking for existing folder to avoid clobbering an
572         existing folder.
573         * view_dir_list.c, view_dir_tree.c: Use new utility above when renaming
574         a folder to fix possible clobbering of an existing folder with the
575         same name as the requested name.
576
577 Sun May 15 21:40:26 2005  John Ellis  <johne@verizon.net>
578
579         * format_raw.[ch]: New files to parse image data and exif offsets for
580         the raw camera formats.
581         * exif.c, image-load.c: Add support calls to format_raw.c functions
582         above.
583         * filelist.c: Add Fujifilm raw file extension to known formats.
584         * thumb_standard.c (thumb_loader_std_start): Check for existing
585         thumbnail file before checking for a failure mark.
586         * src/Makefile.am: Add format_raw.[ch].
587
588 Sat May 14 13:04:23 2005  John Ellis  <johne@verizon.net>
589
590         * po/cs.po: Update Czech translation,
591         submitted by Jan Raska <jan.raska@tiscali.cz>
592         * de.po, fr.po: Typo and spelling fixes.
593
594 Sat May 14 12:23:19 2005  John Ellis  <johne@verizon.net>
595
596         * image.c, pixbuf-renderer.c: Fix sending of complete signal.
597         * ui_pathsel.c: Guard against strcmp of NULL dd->path, fixes crash.
598         * utilops.c: Additional validation for destination of copy/move
599         dialogs, and do not include extension when conveniently selecting
600         filename text in rename dialogs.
601
602 Wed Apr 27 15:17:57 2005  John Ellis  <johne@verizon.net>
603
604         * bar_info.c, bar_sort.c: Update for new pref_toolbar_button args.
605         * fullscreen.c, layout.c: Remove use of GDK_HINT_USER_SIZE as we
606         never actually set these dimensions. Increase default size of main
607         window.
608         * layout_util.c: Use GTkToolbar for the main window toolbar.
609         * pixbuf_util.[ch]: Add inline pixbufs for thumb and float icons.
610         * rcfile.c: Add note to config file that it is autogenerated.
611         * typedefs.h: Remove no longer used tooltip in LayoutWindow.
612         * ui_misc.[ch]: pref_toolbar additions.
613         * icons/icon_float.png, icons/icon_thumb.png: Icons in png format.
614         * icons/icon_float.xpm, icons/icon_thumb.xpm: Remove xpm versions.
615         * icons/Makefile.am: Add above icons to inline pixbuf list.
616
617 Sat Apr 16 12:29:42 2005  John Ellis  <johne@verizon.net>
618
619         * pan-view.c: Add option to ignore symbolic links to folders when
620         creating file list (no gui control yet), and do not allow listing
621         the root folder as this introduces too many issues (for instance
622         how do we ignore special filesystems such as /proc using only stat
623         attributes?). Add fix to not show empty folders in the flower view.
624         * thumb_standard.c (thumb_loader_std_finish): Fix logic that caused
625         thumbnails to be saved for images with a size between normal and large
626         when using large thumbnails.
627         * ui_fileops.[ch]: Add utilities lstat_utf8 and islink.
628
629 Thu Apr 14 10:44:00 2005  John Ellis  <johne@verizon.net>
630
631         * cache.c (cache_sim_data_load): Fix to return CacheData if any data
632         type exists.
633         * pan-view.c: Fix slow merging of embedded dates into file list;
634         includes optimizing pan_cache_sync_date and plugging a memory leak.
635
636 Thu Apr 14 04:49:57 2005  John Ellis  <johne@verizon.net>
637
638         * pixbuf-renderer.c (pixbuf_renderer_move): Clear the correct draw
639         queue (source). Fixes crash introduced by Apr 12 changes.
640
641 Wed Apr 13 18:16:14 2005  John Ellis  <johne@verizon.net>
642
643         * cache-loader.[ch]: New utility to load cache-able data.
644         * cache.[ch]: Add embedded (exif) date caching.
645         * pan-view.c: Use new cache loading mechanism. Add exif date support
646         to timeline and calendar view.
647         * src/Makefile.am: Add cache-loader.[c,h].
648
649 Tue Apr 12 07:59:20 2005  John Ellis  <johne@verizon.net>
650
651         * pan-view.c: Use mostly neutral (gray) colors in the pan view to avoid
652         tainting user perspective of image hues.
653         * pixbuf-renderer.c (pixbuf_renderer_move): Free tile cache of source
654         to avoid wasteful memory allocation, this will reduce memory waste
655         when in full screen.
656
657 Fri Apr  8 15:31:38 2005  John Ellis  <johne@verizon.net>
658
659         * pan-view.c: Optimize pan_layout_intersect by dividing object list
660         into smaller sets (of ~ 1000 each) grouped by coordinates, this makes
661         drawing tiles much faster when the window contains > 100,000 images.
662         This adds the complexity of walking two lists when searching for a
663         specific item, but the speed increase is worth it.
664
665 Thu Apr  7 08:42:54 2005  John Ellis  <johne@verizon.net>
666
667         * pixbuf-renderer.c (pr_queue_to_tiles): Fix logic in test for
668         only_existing argument.
669
670 Wed Apr  6 06:41:25 2005  John Ellis  <johne@verizon.net>
671
672         * pan-view.c: Move pixbuf drawing into pixbuf_util.c.
673         * pixbuf-renderer.c: Rename util_clip_region to pr_clip_region to fix
674         namespace conflict with util in pixbuf_util.h.
675         * pixbuf_util.[ch]: Moved pixbuf drawing utils here from pan-view.c
676
677 Wed Apr  6 02:43:40 2005  John Ellis  <johne@verizon.net>
678
679         * pan-view.c: Reimplement pixbuf_draw_triangle for efficiency.
680         * pixbuf-renderer.c: Fix pr_queue_to_tiles only_existing argument to
681         only have effect on tiles that not currently visible. Remove use of
682         hard coded PR_TILE_SIZE from tile size calculations, as it is only
683         supposed to be used as the default value.
684
685 Tue Apr  5 05:09:29 2005  John Ellis  <johne@verizon.net>
686
687         * pixbuf-renderer.c: Add argument to pr_queue_to_tiles to only redraw
688         the parts of the image that have an existing tile, fixes slow loading
689         of images when zoomed in because it was generating a tile for even
690         off screen parts of the image.
691
692 Mon Apr  4 12:07:05 2005  John Ellis  <johne@verizon.net>
693
694         * pan-view.c: Optimize pixbuf_draw_line, and use pixbuf_set_rect_fill
695         to draw the background.
696
697 Sun Apr  3 00:36:22 2005  John Ellis  <johne@verizon.net>
698
699         * image.c (image_options_set): Only enable PixbufRenderer 'window_fit'
700         when both the ImageWindow and global setting are both enabled.
701         * pan-view.c (pan_window_image_scroll_notify_cb): Add call to
702         gtk_adjustment_value_changed to fix performance hit when scrolling.
703         * pixbuf-renderer.c: Set tile render_todo flags to RENDER_ALL when
704         invalidating so that there is no chance it will be used with old data.
705         Only emit 'scroll-notify' signal when the value or range changes.
706         Fix copy of zoom value in pixbuf_renderer_move.
707
708 Sat Apr  2 17:28:16 2005  John Ellis  <johne@verizon.net>
709
710         * image.c (image_options_set): Update PixbufRenderer parent window so
711         that changing 'fit window to image' option works.
712         * pan-view.c (pan_window_image_zoom_cb): Use same zoom text display as
713         for main windows.
714         * pixbuf-renderer.c: Fix (re-implement) check for maximized window
715         state. Fix pr_source_tile_visible() calculation which was using the x
716         axis where it should be y. Add redrawn return value to pr_zoom_clamp()
717         and use that value in pr_zoom_sync() to pass pr_redraw correct args.
718         * gqview.1: Fix spelling of vertical in man page.
719
720 Mon Mar 28 20:23:34 2005  John Ellis  <johne@verizon.net>
721
722         * image.[ch]: Add utility to sync image settings to user preferences.
723         * pixbuf-renderer.c: Fix rounding errors.
724         * preferences.c: Call image_options_sync() when applying changes.
725
726 Fri Mar 25 22:39:30 2005  John Ellis  <johne@verizon.net>
727
728         * image.c: Connect to 'zoom' signal of pixbuf-renderer and notify
729         listener to update. Fix delay flip by listening for 'render_complete'.
730         * pixbuf-renderer.[ch]: Add complete property and and emit a
731         'render-complete' signal when changing complete back to TRUE.
732         * view_dir_tree.c (vdtree_row_expanded): Populate a folder node
733         whenever it is expanded.
734
735 Wed Mar 23 00:22:28 2005  John Ellis  <johne@verizon.net>
736
737         * image.c (image_change_from_image): Fix and use pixbuf_renderer_move.
738         * pan-view.c: Convert back to ImageWindow from PixbufRenderer, so that
739         focus and full screen work again.
740         * pixbuf-renderer.[ch] (pixbuf_renderer_move): Add this function.
741
742 Fri Mar 18 19:52:38 2005  John Ellis  <johne@verizon.net>
743
744         * pixbuf-renderer.c: Fix broken 2pass queueing so it merges a single
745         queue item for each tile, and now that a tile holds a queue pointer
746         there is no need to walk the tile list to find a possible merge victim.
747
748 Thu Mar 17 19:23:56 2005  John Ellis  <johne@verizon.net>
749
750         * image.c, pixbuf-renderer.[ch]: More progress, and 2 pass zoom now
751         works again (mostly).
752
753 Tue Mar 15 23:17:41 2005  John Ellis  <johne@verizon.net>
754
755         * image.[ch]: Start conversion to use of PixbufRenderer.
756         * pixbuf-renderer.[ch]: Additions and fixes for use by ImageWindow.
757         * fullscreen.c, image-overlay.c, img-view.c, info.c, layout.c,
758         layout_image.c, print.c: Changes for above ImageWindow conversion.
759         * typedefs.h: Remove unused ImageWindow variables.
760
761 Mon Mar 14 20:45:50 2005  John Ellis  <johne@verizon.net>
762
763         * pan-view.c: Convert to using new PixbufRenderer.
764         * pixbuf-renderer.[ch]: Clean up and fixes.
765
766 Sun Mar 13 10:21:35 2005  John Ellis  <johne@verizon.net>
767
768         * image.c (image_scroller_start): Unref scroller pixbuf after adding it
769         as an overlay to avoid leaking it.
770         * pixbuf-renderer.[ch]: All functions defined in header file are now
771         implemented.
772
773 Fri Mar 11 17:05:36 2005  John Ellis  <johne@verizon.net>
774
775         * pixbuf-renderer.[ch]: Set up object properties and additional.
776
777 Mar 10 19:22:18 2005  John Ellis  <johne@verizon.net>
778
779         * pixbuf-renderer.[ch]: FIx scrolling to use old method of gdk_draw and
780         not gdk_scroll, as scroll often invalidates the entire window (!). Also
781         merged in source tiles code from image.c.
782         * pan-view.c: Change picked up when testing PixbufRender zoom.
783
784 Tue Mar  8 23:26:00 2005  John Ellis  <johne@verizon.net>
785
786         * pixbuf-renderer.[ch]: Start of turning image drawing portion of
787         ImageWindow into an actual GtkWidget.
788         * src/Makefile.am: Add pixbuf-renderer.[ch].
789         * pan-view.c: Added temporary hack button and callback for testing
790         PixbufRenderer widget.
791
792 Sat Mar  5 16:23:32 2005  John Ellis  <johne@verizon.net>
793
794         * README: Updates.
795         * configure.in: Release 2.1.0
796
797 Sat Mar  5 16:02:52 2005  John Ellis  <johne@verizon.net>
798
799         * main.c: Enable the beta message at startup.
800         * po/fr.po: Update French translation (from stable branch),
801         submitted by Eric Lassauge.
802
803 Sat Mar  5 15:51:07 2005  John Ellis  <johne@verizon.net>
804
805         * pan-view.c: Make date search work in calendar view, plus calendar
806         fixes. Make '/' search key refocus search entry.
807
808 Fri Mar  4 21:53:03 2005  John Ellis  <johne@verizon.net>
809
810         * pan-view.c: Add calendar view. Make mouse wheel scroll.
811         * po/POTFILES.in: Add pan-view.c for translation.
812
813 Thu Mar  3 17:57:46 2005  John Ellis  <johne@verizon.net>
814
815         * pan-view.c: Make subsequent searches for same string step through all
816         matches, also show match index and count in search result label.
817
818 Thu Mar  3 14:24:58 2005  John Ellis  <johne@verizon.net>
819
820         * filelist.c, info.c, preferences.c, utilops.c: Use doubles instead of
821         floats whenever possible.
822         * ui_utildlg.c (generic_dialog_add_message): Enable line wrap for
823         message body so specifying newlines is no longer needed.
824         * pan-view.c: Display info dialog when thumbnail caching settings are
825         not optimal.
826
827 Thu Mar  3 01:16:23 2005  John Ellis  <johne@verizon.net>
828
829         * pan-view.c: Add 'dots' image size option, fix up border size at edge
830         of grid, and make drag and drop work to/from the window.
831
832 Wed Mar  2 23:34:30 2005  John Ellis  <johne@verizon.net>
833
834         * globals.c, gqview.h, rcfile.c: Add thumbnail_fast option variable.
835         * image-load.c, typedefs.h: Add shrunk flag to determine if an image
836         was scaled down using image_loader_set_requested_size.
837         * image.c: Make panning with mouse scroll more when holding shift key.
838         * preferences.c: Add option for 'Fast jpeg thumbnailing' and disabled
839         xvpics option in the gui - now a hidden option.
840         * thumb.c, thumb_standard.c: Add support for thumbnail_fast option..
841
842 Tue Mar  1 21:39:42 2005  John Ellis  <johne@verizon.net>
843
844         * image.[ch] (image_scroll_to_point): Add alignment for location of
845         point within visible region.
846         * pan-view.c: Use alignment for scrolling above, and fix date search
847         to only search thumbs and images.
848
849 Tue Mar  1 11:32:26 2005  John Ellis  <johne@verizon.net>
850
851         * src/Makefile.am: Add pan-view.[ch]:
852         * image.[ch]: Add support for using a grid of tiles as soource image.
853         Added scroll_notify callback for when the viewable regionis scrolled.
854         Added ability to set min and max for the zoom range. Removed
855         unnecessary gtk_widget_size_request from image_size_sync. Added
856         image_scroll_to_point.
857         * layout_util.c: Add menu item and callback for the new 'Pan view'.
858         * pixbuf_util.c (pixbuf_draw_layout): Fix for when offset is non-zero.
859         * typedefs.h: Add source tile stuff for ImageWindow.
860         * ui_tabcomp.c: Fix tab completion pop-up menu placement.
861         * pan-view.[ch]: New files for pan view - 2.1 is officially started :)
862
863 Sat Feb 26 14:42:42 2005  John Ellis  <johne@verizon.net>
864
865         * README: Updates.
866         * configure.in: Release 2.0.0
867
868 Sat Feb 26 14:06:41 2005  John Ellis  <johne@verizon.net>
869
870         * po/bg.po: Update Bulgarian translation,
871         submitted by Vladimir Petrov.
872         * po/it.po: Update Italian translation,
873         submitted by Costantino, with additions from Marco Colombo.
874         * po/nl.po: Update Dutch translation,
875         submitted by Tino Meinen.
876         * po/pl.po: Update Polish translation,
877         submitted by Wit Wilinski.
878
879 Fri Feb 25 11:10:19 2005  John Ellis  <johne@verizon.net>
880
881         * doc/11_1_command_line.html: Small fix.
882
883 Wed Feb 23 20:19:38 2005  John Ellis  <johne@verizon.net>
884
885         * po/es.po: Update Spanish translation,
886         submitted by Ariel Fermani.
887         * po/it.po: Update Italian translation,
888         submitted by Costantino.
889         * po/ja.po: Update Japanese translation,
890         submitted by Takeshi Aihana.
891         * po/ru.po: Update Russian translation,
892         submitted by Sergey Pinaev.
893
894 Wed Feb 23 09:02:49 2005  John Ellis  <johne@verizon.net>
895
896         * configure.in, src/Makefile.am, main.c: Clean up define for localedir.
897
898 Tue Feb 15 07:35:50 2005  John Ellis  <johne@verizon.net>
899
900         * main.c: Disable startup beta message.
901         * po/it.po: Update Italian translation,
902         submitted by Costantino <inverness1ATvirgilio.it>.
903         * README: Updates.
904         * configure.in: Release 1.5.9
905
906 Mon Feb 14 14:47:32 2005  John Ellis  <johne@verizon.net>
907
908         * search.c (search_file_next): Ignore case for keyword search.
909
910 Fri Feb 11 15:32:28 2005  John Ellis  <johne@verizon.net>
911
912         * view_file_list.c (vflist_thumb_do): Fix big thumbnail leak, no need
913         to ref the pixbuf as thumb_loader_get_pixbuf does this for us.
914
915 Wed Feb  9 10:27:00 2005  John Ellis  <johne@verizon.net>
916
917         * cache.c (cache_sim_data_save): Print a warning when a save fails.
918         * search.c: Fix search saving the cached data by first creating the
919         directory for the location of the data, fixes search caching bug.
920
921 Wed Feb  9 09:43:02 2005  John Ellis  <johne@verizon.net>
922
923         * search.[ch]: Add ability to set the default image used for similarity
924         in a search.
925         * layout_util.c: Set the default image in a search to the visible
926         image.
927
928 Tue Feb  8 18:17:51 2005  John Ellis  <johne@verizon.net>
929
930         * layout_util.c: Correct wrong main window keyboard shortcuts for the
931         editor slots.
932
933 Tue Feb  8 16:16:30 2005  John Ellis  <johne@verizon.net>
934
935         * pixbuf_util.c: Change to GTK's gdk-pixbuf for saving pngs.
936         * src/Makefile.am: Remove png libs from LDADD.
937         * README: Updates.
938         * configure.in: Remove libpng checks, release 1.5.8
939
940 Tue Feb  8 15:19:20 2005  John Ellis  <johne@verizon.net>
941
942         * globals.c: Change default thumbnail mechanism to shared thumbnails.
943         * po/it.po: Update Italian translation,
944         submitted by Costantino <inverness1ATvirgilio.it>.
945         * po/ru.po: Update Russian translation,
946         submitted by Sergey Pinaev <dfo@antex.ru>.
947         * po/sv.po: Update Swedish translation,
948         submitted by Hans Ã–fverbeck <hans.ofverbeck@home.se>.
949         * doc/10_6_advanced.html: Describe option 'Store keywords and comments
950         local to source image'.
951         * doc/11_4_management.html: Add list describing all folders and files
952         used by GQview, and purpose.
953         * doc/9_printing: Clarify a description.
954
955 Tue Feb  8 09:03:27 2005  John Ellis  <johne@verizon.net>
956
957         * bar_sort.c (bar_sort_collection_list_build): Blank the collection
958         key before setting the bookmark list to that key, fixes incorrect list
959         when collection folder is now empty.
960         * ui_bookmark.[ch]: Allow bookmark lists to have a blank default.
961
962 Tue Feb  8 07:45:15 2005  John Ellis  <johne@verizon.net>
963
964         * bar_info.[ch]: Use the cache find utility instead of only looking for
965         metadata in one place. If an a metdata file exists when writing,
966         use it's location. Porperly update the keyword sidebar when renaming or
967         moving a file to that the delayed save mechanism does not lose changes.
968         * cache.c: Make cache_get_location honor enable_metadata_dirs, and
969         removed duplicate isfile check in cache_find_location.
970         * cache_maint.c: Change order of maintenance calls so that metadata is
971         moved before the views are updated.
972         * globals.c, gqview.h, preferences.c, rcfile.c: Add option to save
973         metadata local to source image.
974         * layout_image.c, layout_util.[ch]: Hook up keyword sidebar to maint.
975         * thumb_standard.c (thumb_std_maint_move_validate_cb): Fix saving
976         of moved thumbnails - thumb_loader_std_save requires a NULL path.
977
978 Sun Feb  6 06:07:30 2005  John Ellis  <johne@verizon.net>
979
980         * search.c: Fix initial keywords matching state to be same as menu.
981
982 Fri Feb  4 21:54:16 2005  John Ellis  <johne@verizon.net>
983
984         * view_file_list.c: Update vfl->select_cb when populating the list and
985         add a sanity check to vflist_select_image.
986
987 Wed Feb  2 10:57:15 2005  John Ellis  <johne@verizon.net>
988
989         * print.c: Added picas option for units. Made the default for units be
990         metric for anything but the US,PR locales. Fixed default custom printer
991         text to use <printer name> instead of the format string with %s.
992
993 Mon Jan 31 12:59:57 2005  John Ellis  <johne@verizon.net>
994
995         * src/Makefile.am: Add INTLLIBS to cmpile libs.
996         * po/*.po: Make distcheck, ahem if LINGUAS is set it really messes up
997         the make dist target - it took me an hour to figure out why pos were
998         not updateing >-/
999         * README: Updates, including new translation status list.
1000         * configure.in: Release 1.5.7
1001
1002 Mon Jan 31 11:04:20 2005  John Ellis  <johne@verizon.net>
1003
1004         * preferences.c: Use new ui_misc utilities for radio buttons.
1005         * po/es.po: Update Spanish translation,
1006         submitted by Ariel Fermani <arielfermani@yahoo.com>.
1007         * po/fr.po: Update French translation,
1008         submitted by Ã‰ric Lassauge <lassauge@users.sourceforge.net>.
1009         * po/it.po: Update Italian translation,
1010         submitted by Costantino <inverness1ATvirgilio.it>.
1011
1012 Mon Jan 31 10:42:04 2005  John Ellis  <johne@verizon.net>
1013
1014         * preferences.c: Change Options dialog title to Preferences.
1015         * doc/*.html: Update documentation.
1016         * doc/11_4_management.html: Add page for Cache and Data Management.
1017
1018 Mon Jan 31 06:31:00 2005  John Ellis  <johne@verizon.net>
1019
1020         * cache_maint.c: Improve dialog descriptions.
1021         * dupe.c: Add fix for delayed status text update.
1022         * image-overlay.[ch] (image_overlay_update): New functions to schedule
1023         an update of an image info overlay, and fix incorrect dimensions when
1024         image has delayed flip enabled.
1025         * img-view.c, layout.c, layout_image.[ch]: Update image info overlay
1026         whenever the file count changes.
1027
1028 Mon Jan 31 03:30:41 2005  John Ellis  <johne@verizon.net>
1029
1030         * preferences.c, print.c, search.c: Updates for functions deprecated
1031         in GTK 2.4, phase 2, mostly moves to new GtkComboBox.
1032         * ui_bookmark.c, ui_tabcomp.c: When creating new history type combo
1033         boxes with NULL text set the GtkComboBox active item to 0.
1034
1035 Sun Jan 30 09:37:24 2005  John Ellis  <johne@verizon.net>
1036
1037         * bar_info.c, bar_sort.c, cache_maint.c, collect-table.c, dupe.[ch],
1038         fullscreen.c, image-load.c, image.c, slideshow.c, thumb.c, utilops.c,
1039         view_dir_list.c, view_dir_tree.c, view_file_icon.c, view_file_list.c:
1040         Updates for functions deprecated in GTK 2.4, phase 1. Mostly fixes
1041         for using glib idle and timeout functions and to use new GtkComboBox.
1042         * ui_misc.[ch]: Add toolbar utilities.
1043
1044 Sun Jan 30 06:10:25 2005  John Ellis  <johne@verizon.net>
1045
1046         * layout.c, layout_util.[ch], typedefs.h: Convert menus to use
1047         GtkUIManager, this has a nice side effect of fixing the broken
1048         shortcuts when the tools are floating.
1049
1050 Sat Jan 29 11:36:10 2005  John Ellis  <johne@verizon.net>
1051
1052         * configure.in: Increase GTK+ requirement to 2.4.
1053         * README: Note above new requirement.
1054         * collect-table.c, view_file_icon.c: Fix filename tooltip window
1055         placement when using GTK 2.4.
1056         * fullscreen.c: Removed gtk version check for 'Stay above' option.
1057         * layout.c: Changes for new combobox used in GTK 2.4.
1058         * ui_bookmark.c, ui_fileops.c, ui_pathsel.c, ui_spinner.c,
1059         ui_tabcomp.c, ui_tree_edit.c: Convert to new GtkComboBox and
1060         GtkComboBoxEntry, plus fixes for functions now deprecated in GTK 2.4.
1061         * ui_misc.[ch]: Gtk 2.4 fixes, and added signal blocking utils.
1062
1063 Thu Jan 27 10:23:33 2005  John Ellis  <johne@verizon.net>
1064
1065         * bar_sort.c: Make add button show new collection dialog when in
1066         collection mode.
1067
1068 Tue Jan 25 04:47:35 2005  John Ellis  <johne@verizon.net>
1069
1070         * Makefile.am, autogen.sh, configure.in, gqview.spec.in: Updates for
1071         newer autoconf macros (no more acconfig.h). Update to use glib's
1072         gettext instead gettext directly. Change documentation install
1073         location to $prefix/share/doc/gqview-#version.
1074         * acconfig.h, BUGS: Removed, not used.
1075         * doc/Makefile.am: Install docs to new location.
1076
1077 Wed Jan 19 23:30:24 2005  John Ellis  <johne@verizon.net>
1078
1079         * bar_sort.c: Add option to choose current image or all selected files
1080         when adding images to a collection in the sort manager.
1081         * ui_bookmark.c: Small fixes to bookmark properties dialog, and do not
1082         allow adding to a bookmark list that is not editable via drag and drop.
1083         * ui_tabcomp.c: Add heading to path entry selection dialog.
1084
1085 Wed Jan 19 03:13:07 2005  John Ellis  <johne@verizon.net>
1086
1087         * collect-dlg.c: Allow saving empty collections.
1088         * collect-io.c: Remove erroneous warning about failed removes.
1089         * collect.c (collection_remove): Mark collection changed even when
1090         resulting collection is empty.
1091
1092 Wed Jan 19 02:48:25 2005  John Ellis  <johne@verizon.net>
1093
1094         * bar_sort.c: Change default view of sort manager to folders, and fix
1095         widget packing. Fix collection list to be sorted.
1096
1097 Wed Jan 19 02:14:23 2005  John Ellis  <johne@verizon.net>
1098
1099         * print.c: Add checkbox to remember print settings. Set a signal
1100         handler to catch a SIGPIPE when printing to a pipe, not pretty but it
1101         works. Do not allow printing to a file that already exists. Add print
1102         error dialog to tell user why printing did not complete.
1103
1104 Mon Jan 17 23:27:19 2005  John Ellis  <johne@verizon.net>
1105
1106         * bar_sort.c: Add collection option to sort manager.
1107         * collect-io.[ch]: Add collection manager add and remove utilities.
1108         * collect.[ch] (collection_window_find_by_path): New function.
1109         * ui_bookmark.[ch]: Add ability to change key used for a bookmark list,
1110         and to make a list not editable. Also made bookmark buttons compact.
1111
1112 Mon Jan 17 06:36:50 2005  John Ellis  <johne@verizon.net>
1113
1114         * bar_info.c (bar_info_new): Divide available space so that 2/3 goes to
1115         keywords entry and remaining 1/3 to comment entry.
1116
1117 Sun Jan 16 22:43:46 2005  John Ellis  <johne@verizon.net>
1118
1119         * cache.c: Metadata for keywords/comments no longer has the option to
1120         be stored locally to the source file.
1121         * cache_maint.[ch]: Add metadata mode for cache_maintain_home, and
1122         change the dialog to have a stop and close button so that the dialog
1123         remains displayed for the user until it is user closed.
1124
1125 Sun Jan 16 07:15:44 2005  John Ellis  <johne@verizon.net>
1126
1127         * fullscreen.[ch], preferences.c: Add full screen location option
1128         'Determined by Window Manager' which is now the default. This option
1129         sets the _NET_WM_STATE_FULLSCREEN window manager hint, it also requests
1130         the size and position like 'active monitor' but the window manager may
1131         completely ignore the request. Also removed old #if 0'ed out code.
1132         * globals.c (fullscreen_screen): Set the default screen to be the new
1133         option above 'Determined by Window Manager'.
1134
1135 Wed Jan 12 17:54:51 2005  John Ellis  <johne@verizon.net>
1136
1137         * image.c: Revert change to attempt to keep unkown icon unscaled, as it
1138         interferes when a pixbuf is specifically set.
1139         * icons/folder_open.png: Adjust width of the graphic in the open
1140         folder icon.
1141
1142 Wed Jan 12 02:41:05 2005  John Ellis  <johne@verizon.net>
1143
1144         * icons/folder_*.xpm: Remove unused files.
1145         * icons/folder_*.png: Add new folder icons.
1146         * icons/Makefile.am: Changes for above.
1147         * pixbuf_util.[ch]: Add folder icons to inline pixbuf set.
1148         * layout_util.c, typedefs.h, view_dir_list.c: Use new folder icons, and
1149         change the folder list view so that current folder uses the open icon
1150         and the parent folder uses the 'up' icon.
1151
1152 Tue Jan 11 23:44:50 2005  John Ellis  <johne@verizon.net>
1153
1154         * icons/Makefile.am: Move the inline pixbuf generation to src/icons.
1155         * src/Makefile.am: Removed unused files.
1156         * globals.h, logo.xpm, scroller.png, icons/img_unknown: Removed unused
1157         files.
1158         * gobals.c, image.c, layout.c, preferences.c, thumb.c,
1159         thumb_standard.c: Use new pixbuf_inline utility.
1160         * pixbuf_util.[ch] (pixbuf_inline): New function to retrieve pixbuf
1161         icons.
1162         * icons/gqview_logo.png, icons/scroller.png, icons/sheet_broken.png:
1163         The new or moved png images to be made inline.
1164
1165 Tue Jan 11 21:08:23 2005  John Ellis  <johne@verizon.net>
1166
1167         * cache_maint.c: Only manage shared thumbnails when the option is
1168         enabled, since this is a time consuming task.
1169         * preferences.c: Fix sensitivity of thumbnail options that are disabled
1170         when the shared thumb cache is in use. Removed clear cache button, as
1171         it is now in the maintenance window.
1172         * thumb_standard.c: Add notes about implementation and what it lacks.
1173         * ui_misc.[ch]: Add pref_table_button_new and
1174         pref_button_link_sensitivity_swap.
1175
1176 Tue Jan 11 02:23:32 2005  John Ellis  <johne@verizon.net>
1177
1178         * dupe.c: Fix widget spacings in find dupes window.
1179         * fullscreen.c: Set full screen window WM_CLASS to "fullscreen.GQview".
1180
1181 Fri Jan  7 02:33:50 2005  John Ellis  <johne@verizon.net>
1182
1183         * src/main.c: Make message about being a beta sound less ominous.
1184         * README: Updates.
1185         * configure.in: Release 1.5.6
1186
1187 Fri Jan  7 01:57:28 2005  John Ellis  <johne@verizon.net>
1188
1189         * doc/6_collections.html: Add note that $HOME/.gqview/collections is
1190         now updated when moving or renaming files.
1191         * doc/10_1_general.html: Explain "Use shared thumbnail cache" option.
1192         * doc/10_6_advanced.html: Explain "Stay above other windows" option.
1193         * doc/10_options.html, 2_5_folder_pane.html, 8_1_slideshow.html:
1194         Apparently I have a habit of type "the" twice, and not noticing.
1195         * doc/12_credits.html: Update copyright year.
1196
1197 Fri Jan  7 01:21:03 2005  John Ellis  <johne@verizon.net>
1198
1199         * search.c: Clean up appearance of search window.
1200         * po/fr.po: Update French translation,
1201         submitted by Ã‰ric Lassauge <lassauge@users.sourceforge.net>.
1202         * po/ru.po: Update Russian translation,
1203         submitted by Sergey Pinaev <dfo@antex.ru>.
1204         * preferences.c, README: Update copyright year.
1205
1206 Thu Jan  6 23:22:05 2005  John Ellis  <johne@verizon.net>
1207
1208         * fullscreen.c, globals.c, gqview.h, preferences.c, rcfile.c: Add
1209         option to try to keep full screen window above other windows. Since
1210         this uses a GTK 2.4 function, it is disabled on GTK 2.2.
1211         * main.c: Issue warning when running with a GTK library with an older
1212         minor version than what GQview was compiled with.
1213
1214 Wed Jan  5 19:59:41 2005  John Ellis  <johne@verizon.net>
1215
1216         * cache_maint.c: Hook up new shared thumbnails to maintenance utils.
1217         * main.c: When it takes time to get a connection to a remote GQview
1218         because it is still starting up, print progress dots (.) to the
1219         console to indicate we are waiting, and not hung.
1220         * thumb_standard.[ch]: Move core of thumb cache path building to
1221         thumb_std_cache_path. Added thumb_std_maint_* utilities for moving
1222         or deleting thumbnails to match changes to the source image.
1223
1224 Wed Jan  5 03:51:19 2005  John Ellis  <johne@verizon.net>
1225
1226         * collect-io.c (collection_save_private): Use a temp file when saving
1227         a collection so that if an error occurs during write the original is
1228         not lost. The only disadvantage with temp files is group and user ids
1229         of the original are not guaranteed to be preserved by chown, oh well.
1230         * preferences.c: Remove silly EXPERIMENTAL text from description of
1231         shared thumbnails cache option.
1232         * ui_fileops.[ch] (copy_file_attributes): Add arguments to select
1233         which attributes we want to copy.
1234
1235 Tue Jan  4 22:49:19 2005  John Ellis  <johne@verizon.net>
1236
1237         * image-load.[ch], typedefs.h: Add image_load_set_requested_size which
1238         will allow images to loader faster if you know you only need at most
1239         width by height image. Since only the jpeg gdk-pixbuf loader supports
1240         it, this only effects jpegs.
1241         * thumb.c, thumb_standard.c: These changes are currently disabled, but
1242         it would set the requested size when loading thumbnails for a speed
1243         improvement on jpegs.
1244
1245 Tue Jan  4 20:39:47 2005  John Ellis  <johne@verizon.net>
1246
1247         * cache_maint.c: Implemented local thumbnail rendering option, and
1248         only enable it when the standard thumb cache is active.
1249         * filelist.c (path_list_filter): When filtering a dir list remove
1250         .thumbnails and .metadata.
1251         * preferences.c: Do not allow focus on progress entry in safe delete
1252         clear dialog.
1253         * thumb.[ch]: Add thumb_loader_set_cache to control cache options on a
1254         per loader basis instead of using the global setting.
1255         * thumb_standard.[ch]: Same as thumb.c above. Also moved code that was
1256         duplicated in three places into thumb_loader_std_next_source. Added
1257         retry flag to force a retry on images that are flagged as a failure.
1258         * typedefs.h (ThumbLoader): Changes for gqview thumb loader in thumb.c.
1259
1260 Tue Jan  4 01:33:01 2005  John Ellis  <johne@verizon.net>
1261
1262         * cache_main.c: Reset list to NULL before using in next path_list.
1263
1264 Mon Jan  3 23:22:36 2005  John Ellis  <johne@verizon.net>
1265
1266         * cache_maint.[ch]: Add maintenance window to select various thumbnail
1267         cache operations for removing old thumbnails, deleting thumbnails, and
1268         to create thumbnails for a folder. Creating thumbnails local option is
1269         not yet implemented. Also move clear cache confirm dialog here.
1270         * layout_util.c: Change thumbnails menu item name, and open the
1271         maintenance window instead of purge utility.
1272         * preferences.c: Move clear cache confirm dialog out of here.
1273         * thumb_standard.[ch]: Make local thumb caches use permissions of the
1274         source images. Local thumbnails should not store failures. Added a
1275         thumb validate utility for use by the new thumb cache manager.
1276
1277 Sat Jan  1 23:02:49 2005  John Ellis  <johne@verizon.net>
1278
1279         * Makefile.am (gqview_sources): Add thumb_standard.[ch].
1280         * collect-io.c: Use new thumb loader functions.
1281         * collect-table.c: Use doubles instead of floats in most places.
1282         * collect.c: Remove unnecessary include of thumb.h.
1283         * dupe.[ch]: Use double for rank values, and updates for new thumb
1284         functions.
1285         * globals.c: Change default thumb size to 96x72, add
1286         thumbnail_spec_standard to toggle use of new thumbnail cache.
1287         * gqview.h, main.c: Add extern for thumbnail_spec_standard and change
1288         use of float to double.
1289         * image-load.[ch]: Use doubles instead of floats for progress value.
1290         * image.[ch]: Use doubles everywhere in place of floats, hence zoom is
1291         now a double.
1292         * layout.[ch], layout_image.[ch]: More float to double changes.
1293         * preferences.c: Change selection of thumbnail sizes offered to user,
1294         and allow a custom item when the thumbnail size configured in the
1295         rc file does not match the predefined list. Added toggle for new
1296         shared thumbnail standard (option needs a better description?)
1297         * print.c: Update for image zoom now being a double.
1298         * rcfile.c: Save and restore thumbnail_spec_standard.
1299         * search.c: More float to double change madness, and update for new
1300         thumb functions.
1301         * similar.[ch]: More floats to doubles.
1302         * thumb.[ch]: Updated the thumb function API to something a bit more
1303         sane, but mostly to match that of thumb_standard.h. When the standard
1304         thumb loaders are enabled thumb_loader_new will now return a loader
1305         from thumb_loader_std_new - the function access to thumb loaders is the
1306         same but the structures are completely different - don't access the
1307         structure directly. Also removed unused utility functions in thumbs.c.
1308         * thumb_standard.[ch]: New utilities for a thumb loader that implements
1309         the proposed thumbnail management standard on freedesktop.org.
1310         * typedefs.h: ThumbLoader is now treated as an opaque structure (but
1311         no attempt is made to hide it) because there are now two thumb loader
1312         implementations (thumb.c and thumb_standard.c). We check which loader
1313         and structure is in use with the standard_loader flag common to each. 
1314         * view_file_icon.[ch], view_file_list.[ch]: Change floats to doubles
1315         and updates for new thumb functions.
1316
1317 Fri Dec 31 02:30:28 2004  John Ellis  <johne@verizon.net>
1318
1319         * main.c (help_browser_command): Only print info when debug is on.
1320         * collect-io.[ch]: Reduce collection manager timer to 10 seconds, and
1321         offset this by setting the idle function to low priority.
1322
1323 Thu Dec 30 22:30:19 2004  John Ellis  <johne@verizon.net>
1324
1325         * layout.c (layout_status_update_progress): Fix progressbar height from
1326         changing status bar size by setting text to a space instead of NULL.
1327
1328 Thu Dec 30 16:51:40 2004  John Ellis  <johne@verizon.net>
1329
1330         * bar_exif.c, bar_info.c, collect-table.c, dupe.c, layout_config.c,
1331         preferences.c, search.c, utilops.c, view_dir_list.c, view_dir_tree.c,
1332         view_file_icon.c, view_file_list.c: Specifically enable or disable
1333         the search feature of the GTkTreeViews, as it interferes with shortcuts
1334         for the main window and elsewhere, also when it is enabled set the
1335         search column.
1336
1337         Fooey: GTK+ 2.6/4 may be binary compatible with 2.2, but the behavior
1338         of the treeview search feature has changed such that it can now get
1339         in the way when it is not specifically disabled.
1340
1341 Thu Dec 30 00:17:31 2004  John Ellis  <johne@verizon.net>
1342
1343         * collect-io.c: Keep a pointer to the tail of the pending action list
1344         so that each append does not require walking the list.
1345
1346 Wed Dec 29 23:08:01 2004  John Ellis  <johne@verizon.net>
1347
1348         * collect-io.[ch]: Add collection manager to update collections
1349         contained in $HOME/.gqview/collections when files are moved. Made
1350         collection loading abort after too many errors.
1351         * collect.[ch]: Add collection_add_check to allow adding files to a
1352         collection that do not exist, attach collection manager to maintenance
1353         move functions.
1354         * main.c (gqview_exit_final): Flush pending collection manager changes
1355         before exit.
1356
1357 Mon Dec 27 16:50:50 2004  John Ellis  <johne@verizon.net>
1358
1359         * doc/5_1_search.html, 5_2_finding_duplicates.html, 6_collections.html:
1360         Add print context menu item to relevant sections of manual.
1361         * README: Updates.
1362         * configure.in: Release 1.5.5
1363
1364 Mon Dec 27 15:38:56 2004  John Ellis  <johne@verizon.net>
1365
1366         * collect-table.c: Make context menu have same number of items, making
1367         the ones that do not apply insensitive. Add print menu item.
1368         * collect.[ch] (collection_list_get_path_list): Add utility to get a
1369         path list from a colletion list.
1370         * dupe.c, search.c: Add print to context menus.
1371
1372 Sun Dec 26 19:53:13 2004  John Ellis  <johne@verizon.net>
1373
1374         * bar_info.c: Allow sizing of keyword sidebar when insensitive.
1375         * bar_sort.c, collect.c, preferences.c: Use gtk_window_present to
1376         raise windows instead of direct gdk_window_raise.
1377         * image.c: Fix broken redraws when sizing image view with NULL image,
1378         and fix clamping of scroller overlay within the new window size.
1379         * main.c: Raise remote main window when --remote is the only command
1380         line option. Fix crash when quitting from a remote --quit command.
1381         * remote.c (remote_server_client_cb): No need to check for error when
1382         return from g_io_channel_read_line is G_IO_STATUS_NORMAL.
1383
1384 Fri Dec 24 15:03:12 2004  John Ellis  <johne@verizon.net>
1385
1386         * main.c: Add -sr<folder> remote command for recursive slideshows,
1387         based on patch submitted by Henry Minsky.
1388         * po/fr.po: Update French translation,
1389         submitted by Ã‰ric Lassauge <lassauge@users.sourceforge.net>.
1390         * po/it.po: Update Italian translation,
1391         submitted by Kostantino <inverness1ATvirgilio.it>.
1392         * po/sv.po: Update Swedish translation,
1393         submitted by Hans Ofverbeck <hans.ofverbeck@home.se>.
1394         * doc/11_1_command_line.html: Document new remote -sr command.
1395
1396 Fri Dec 24 01:47:04 2004  John Ellis  <johne@verizon.net>
1397
1398         * image-load.c: Properly initialize load_fd to -1 in image_loader_new
1399         so that an immediate call to image_loader_free does not do bad things.
1400         Protect against calling image_loader_start more than once on a loader.
1401
1402 Wed Dec 22 22:44:57 2004  John Ellis  <johne@verizon.net>
1403
1404         * bar_exif.c, bar_info.c, bar_sort.c: Make sidebar titles bold.
1405         * print.c: Retain print settings used in print dialog.
1406         * ui_misc.[ch]: Add pref_list_*_get/set() utilites for saving int,
1407         double, or string values in the history for future use.
1408
1409 Wed Dec 22 16:44:38 2004  John Ellis  <johne@verizon.net>
1410
1411         * main.c: Change remote quit description to quit (from exit).
1412         * doc/10_1_general.html, 10_2_image.html, 10_3_window.html,
1413         10_6_advanced.html, 10_7_hidden.html, 11_1_command_line.html,
1414         11_2_keyboard_shortcuts.html, 2_2_menus.html, 2_6_image_pane.html,
1415         4_1_copy_move.html, 8_2_fullscreen.html, 9_printing.html: Update
1416         documentation for recent dialog and preference window changes, and
1417         do any doc updates pending in TODO.
1418
1419 Wed Dec 22 03:26:53 2004  John Ellis  <johne@verizon.net>
1420
1421         * fullscreen.c, layout_config.c, preferences.c: Update preferences
1422         window to match newer dialog padding and style, moved several options
1423         to different tabs, and removed the dithering option from the ui.
1424         * ui_misc.[ch]: New convenience functions for preference window.
1425         * ui_utildlg.[ch]: Make generic_dialog_get_alternative_button_order
1426         utility available for use outside this file.
1427
1428 Mon Dec 20 19:56:28 2004  John Ellis  <johne@verizon.net>
1429
1430         * collect-dlg.c, main.c, utilops.c: Add mnemonics to all dialog
1431         buttons.
1432         * img-view.c, layout_image.c, main.c: Make control+arrow key jump to
1433         respective edge of image.
1434         * layout_util.c: Rename Exit menu item to Quit.
1435         * preferences.c: Update about dialog to match other dialogs.
1436         * ui_utildlg.c: Make dialog button order honor gtk 2.6 setting for
1437         gtk-alternative-button-order.
1438
1439 Sun Dec 19 22:43:37 2004  John Ellis  <johne@verizon.net>
1440
1441         * layout.c: Increase default window width, add fix to make image pane
1442         visible (non-zero initial width) in one specific condition.
1443
1444 Sun Dec 19 21:57:08 2004  John Ellis  <johne@verizon.net>
1445
1446         * print.c: Set LC_NUMERIC portion of locale to "C" when using fprintf
1447         to format floating point numbers in postscript output.
1448         * gqview.png: Change desktop icon.
1449
1450 Thu Dec 16 19:19:09 2004  John Ellis  <johne@verizon.net>
1451
1452         * bar_exif.c, bar_info.c, bar_sort.c, layout_util.c: Adjust padding
1453         and appearance of the sidebars.
1454         * info.c: Update property window appearance.
1455         * ui_help.c: Adjust help window padding.
1456         * ui_misc.c (pref_table_new): Support parent_box == NULL.
1457
1458 Thu Dec 16 02:44:06 2004  John Ellis  <johne@verizon.net>
1459
1460         * bar_info.c: Dialog heading fix.
1461         * collect-dlg.c, collect.c: Dialog heading fixes, and changed close
1462         button to a discard button when confirming close of changed collection.
1463         * main.c: Heading fix for exit dialog with unsaved collection.
1464         * print.c: Fix layout indenting broken by fix in pref_table_label.
1465         * ui_bookmark.c: Give dialog to edit bookmarks a heading.
1466         * ui_misc.[ch]: Be consistent with GTK stock button padding, even
1467         though it seems to violate GNOME HIG. FIx pref_table_label packing.
1468         * ui_utildlg.c: Align dialog message icon vertically to top of dialog.
1469         * utilops.c: Clean up rename/copy/move/delete/overwrite/error dialogs.
1470         Fix missing error dialog when a file copy fails, and fixed (null)
1471         filename for destination in copy/move error dialog.
1472
1473 Tue Dec 14 17:03:16 2004  John Ellis  <johne@verizon.net>
1474
1475         * slideshow.c (generate_random_list): Fix crash when return value of
1476         rand == RAND_MAX.
1477
1478 Tue Dec 14 10:23:49 2004  John Ellis  <johne@verizon.net>
1479
1480         * bar_info.c, bar_sort.c, cache_maint.c, collect-dlg.c, collect.c,
1481         dupe.c, editors.c, main.c, preferences.c, search.c, ui_bookmark.c,
1482         ui_fileops.c, ui_pathsel.c, ui_tabcomp.c, view_dir_list.c,
1483         view_dir_tree.c, view_file_list.c: Updates and fixes for dialog
1484         utility changes and additions, use padding defines for widget spacing.
1485         * print.c: Move pref_* stuff out of here.
1486         * ui_misc.[ch]: Move pref_* stuff here.
1487         * ui_utildlg.[ch]: Added generic_dialog_add_message(), removed message
1488         arg from generic_dialog_new(), cleaned up button utilities into a
1489         single general purpose utility. Change widget spacing, dialog layout,
1490         and dialog button order to match GNOME HIG 2.0 (ie backwards).
1491         * utilops.[ch]: Changes for above utility dialog alterations.
1492
1493 Mon Dec  6 22:08:18 2004  John Ellis  <johne@verizon.net>
1494
1495         * print.c: More updates for HIG utils, added image scale to reduce
1496         image size on page.
1497         * ui_misc.c: Fix incorrect namespace used for callback.
1498
1499 Fri Dec  3 21:41:08 2004  John Ellis  <johne@verizon.net>
1500
1501         * main.c: Make -l command line option now include collections that are
1502         specified on the command line, also link the first collection on the
1503         command line to the main window so that -s and -f with a collection
1504         will work as expected.
1505         * print.c: Change margin to margins.
1506
1507 Wed Dec  1 19:59:46 2004  John Ellis  <johne@verizon.net>
1508
1509         * print.c: Play with widget spacing and group styling to match HIG,
1510         get it and utils right here for when we use them to update rest of app.
1511
1512 Tue Nov 30 22:19:28 2004  John Ellis  <johne@verizon.net>
1513
1514         * print.c: Implement postscript text placement, still needs to convert
1515         utf8 to a proper postscript encoding. Fixed landscape orientation for
1516         postscript output.
1517
1518 Tue Nov 30 17:50:09 2004  John Ellis  <johne@verizon.net>
1519
1520         * pixbuf_util.c(pixbuf_draw_layout): Clip layout to pixbuf before draw.
1521         * print.c: Fix drawing of text onto pixbufs. Update preview when
1522         changing the text options. Added red preview lines to indicate image
1523         grid when selecting proof sheet layout.
1524
1525 Wed Nov 17 19:08:11 2004  John Ellis  <johne@verizon.net>
1526
1527         * image.c: Assume any request to resize the top window (per fit window
1528         to image option) will fail, and request a direct redraw - this works
1529         because we also changed the idle redraw handler's priority from
1530         G_PRIORITY_HIGH_IDLE to GDK_PRIORITY_REDRAW so that it now has a lower
1531         priority than the resize signal. This fixes the fvwm2 maximized window
1532         does not redraw bug - the fault never was with fvwm2, although it would
1533         be nice if it set the maximized flag when windows are maximized :/.
1534
1535 Tue Nov 16 03:44:30 2004  John Ellis  <johne@verizon.net>
1536
1537         * image.c, typedefs.h: Remove GtkEventbox used for image displays, as
1538         it is not necessary with GtkDrawingArea. Also removed GTK double
1539         buffering of the image display, fixes flicker when resizing window -
1540         double buffer is useless to us anyway since GQview's images are not
1541         displayed/drawn synchonously with GTK expose events.
1542         * img-view.c: Fix use of removed image eventbox.
1543
1544 Tue Nov  9 17:32:23 2004  John Ellis  <johne@verizon.net>
1545
1546         * README, TODO: Updates.
1547         * po/*.po: make distcheck touches these.
1548         * configure.in: Release 1.5.4
1549
1550 Tue Nov  9 16:18:26 2004  John Ellis  <johne@verizon.net>
1551
1552         * po/it.po: Update Italian translation,
1553         submitted by Kostantino <inverness1ATvirgilio.it>.
1554         * po/ja.po: Update Japanese translation,
1555         submitted by Takeshi AIHANA <aihana@gnome.gr.jp>.
1556         * po/fr.po: Update French translation,
1557         submitted by Ã‰ric Lassauge <lassauge@users.sourceforge.net>.
1558         * po/sv.po: Update Swedish translation,
1559         submitted by Hans Ofverbeck <hans.ofverbeck@home.se>.
1560         * po/es.po, gqview.spec.in, gqview.desktop: Update Spanish translation,
1561         submitted by Ariel Fermani <the_end@bbs.frc.utn.edu.ar>.
1562         * po/ar.po: Add Arabic translation,
1563         submitted by Youssef Assad <youssef@devcabal.org>.
1564         * configure.in (ALL_LINGUAS): Add AR translation.
1565         * README: Updates.
1566
1567 Mon Nov  8 19:48:43 2004  John Ellis  <johne@verizon.net>
1568
1569         * bar_info.c, bar_sort.c, cache_maint.c, collect-dlg.c,
1570         collect-table.c, collect.[ch], dupe.c, editors.c, img-view.c,
1571         layout_image.c, layout_util.c, main.c, preferences.c, print.[ch],
1572         search.c, ui_bookmark.c, ui_fileops.c, ui_pathsel.c, ui_tabcomp.c,
1573         ui_utildlg.[ch], utilops.[ch], view_dir_list.c, view_dir_tree.c,
1574         view_file_icon.c, view_file_list.c: Set dialogs as a transient of the
1575         calling window. Some dialogs in utilops.c are still not set. Also
1576         fixed missing break in switch case causing Control+S to also close the
1577         collection window.
1578
1579 Sat Nov  6 18:26:24 2004  John Ellis  <johne@verizon.net>
1580
1581         * doc/11_1_command_line.html, 2_5_folder_pane.html, index.html: Format
1582         fixes and grammar.
1583
1584 Sat Nov  6 18:03:32 2004  John Ellis  <johne@verizon.net>
1585
1586         * doc/11_3_thumbnails.html, 9_printing.html: More documentation.
1587
1588 Mon Nov  1 19:23:56 2004  John Ellis  <johne@verizon.net>
1589
1590         * collect.c: Fix untitled (n) counter start number and Control+S
1591         shortcut to save collection as...
1592         * dupe.[ch]: Add Control+T to toggle thumbnails.
1593         * search.c: Add Control+T to toggle thumbnails, and Control+W to close
1594         search window.
1595         * doc/5_1_search.html, 5_2_finding_duplicates.html, 6_collections.html:
1596         More documentation.
1597
1598 Mon Nov  1 16:41:03 2004  John Ellis  <johne@verizon.net>
1599
1600         * collect-dlg.c, collect-table.c, dupe.c, img-view.c, layout_util.c,
1601         preferences.c, ui_pathsel.c, view_dir_list.c, view_dir_tree.c: Refer to
1602         directories as folders in all places.
1603         * image.c (util_clip_region): Fix clipping bounds check to return FALSE
1604         on 0 width or height.
1605         * search.c: Reduce flush size to update search count when over 100
1606         instead of 101.
1607         * doc/10_1_general.html: Update docs to use the term folder when
1608         referring to directories.
1609
1610
1611 Fri Oct 29 18:51:49 2004  John Ellis  <johne@verizon.net>
1612
1613         * fullscreen.c (fullscreen_start): Rethink full screen geometry and
1614         window manager hints after referring to the icccm. Seems to work with
1615         all tested window managers, even twm :) . Still have to figure out
1616         which hint to use to tell the window managers to place a full screen
1617         window above panels and docks.
1618         * layout.c: Tell window managers not to request window position from
1619         user when 'save window positions' is enabled.
1620
1621 Sat Oct 23 00:09:18 2004  John Ellis  <johne@verizon.net>
1622
1623         * thumb.c: Fix possible endless loop between error and done handlers,
1624         clean up image loader free/setup.
1625
1626 Fri Oct 22 23:41:30 2004  John Ellis  <johne@verizon.net>
1627
1628         * main.c, preferences.c, slideshow.[ch]: Use #defines to set min and
1629         max slideshow delay, and increase the max delay to 3600 seconds.
1630         * doc/11_1_command_line.html, 11_2_keyboard_shortcuts.html,
1631         2_4_file_pane.html, 2_5_folder_pane.html, 2_6_image_pane.html,
1632         3_1_image_window.html, 3_2_image_properties.html, 5_1_search.html,
1633         5_2_finding_duplicates.html, 8_2_fullscreen.html, index.html:
1634         Documentation updates.
1635
1636 Fri Oct 22 13:32:04 2004  John Ellis  <johne@verizon.net>
1637
1638         * globals.c (fullscreen_screen): Change default full screen location to
1639         active monitor.
1640
1641 Mon Oct 18 17:55:11 2004  John Ellis  <johne@verizon.net>
1642
1643         * main.c (gr_slideshow_delay): Remove use of non-portable round().
1644
1645 Fri Oct 15 15:54:43 2004  John Ellis  <johne@verizon.net>
1646
1647         * fullscreen.c: Turn off decorations for the full screen window, as the
1648         window manager may not yet support full screen hints.
1649         * img-view.c: Hook up R key to refresh displayed image.
1650         * layout_image.c: Hook up R refresh key to full screen.
1651
1652 Fri Oct  8 16:58:15 2004  John Ellis  <johne@verizon.net>
1653
1654         * bar_exif.[ch], bar_info.[ch], info.c, layout_util.c: Add sizer
1655         handle to EXIF and Keywords sidebars.
1656         * image.c (image_size_cb): Fix return value, size_allocate prototype
1657         return is void, not gint.
1658         * ui_misc.[ch]: Implement sizer handle widget.
1659
1660 Wed Oct  6 21:45:18 2004  John Ellis  <johne@verizon.net>
1661
1662         * doc/3_1_image_window.html, 3_2_image_properties.html,
1663         3_other_windows.html: Add Chapter 3 documentation (Other Windows).
1664         * doc/4_1_copy_move.html, 4_2_rename.html, 5_1_search.html: Formatting
1665         and grammar fixes.
1666         * doc/Makefile.am: Add new files above.
1667
1668 Tue Oct  5 00:45:41 2004  John Ellis  <johne@verizon.net>
1669
1670         * doc/4_1_copy_move.html, 4_2_rename.html, 4_3_delete.html,
1671         4_4_external_editing.html, 4_image_management.html, 5_1_search.html,
1672         5_2_finding_duplicates.html, 5_image_search.html, 6_collections.html:
1673         More pages of documentation.
1674         * doc/Makefile.am: Add above.
1675         * doc/index.html: Update missing page (m) markers.
1676
1677
1678 Sun Oct  3 00:03:56 2004  John Ellis  <johne@verizon.net>
1679
1680         * dupe.c: Fix missing status messages in the Find Dupes window
1681         introduced by last set of speed optimizations. Fix progress counters
1682         for checksums and dimensions.
1683
1684 Fri Oct  1 19:53:42 2004  John Ellis  <johne@verizon.net>
1685
1686         * doc/7_1_exif.html,7_2_sort_manager.html,7_3_keywords.html,
1687         7_sidebars.html: Add documentation for sidebars.
1688         * doc/Makefile.am: Add above.
1689         * doc/2_3_layout.html, 2_5_folder_pane.html: Updates.
1690
1691 Thu Sep 30 21:10:32 2004  John Ellis  <johne@verizon.net>
1692
1693         * main.c (html_browsers): Change key used to determine GNOME browser to
1694         /desktop/gnome/url-handlers/http/command, as .../unknown/command seems
1695         to be no longer used or changed when setting Preferred Applications.
1696
1697 Thu Sep 30 20:54:08 2004  John Ellis  <johne@verizon.net>
1698
1699         * doc/2_1_navigation.html, 2_3_layout.html, 2_4_file_pane.html,
1700         2_5_folder_pane.html: Fill in missing pages of the Main Window chapter.
1701         * doc/Makefile.am: Install new files above.
1702
1703 Tue Sep 28 14:17:15 2004  John Ellis  <johne@verizon.net>
1704
1705         * gqview.desktop: Add supported mime types, disable startup
1706         notification, and add Viewer to Categories.
1707
1708 Tue Sep 28 11:47:09 2004  John Ellis  <johne@verizon.net>
1709
1710         * image-load.[ch] (image_loader_get_format): New util to query the
1711         mime type of the active image.
1712         * info.c: Add (mime) file type field to image properties dialog, and
1713         increase the dialogs default height to 350 (from 300).
1714
1715 Mon Sep 27 21:33:42 2004  John Ellis  <johne@verizon.net>
1716
1717         * pixbuf_util.c (pixbuf_copy_font): Update alpha channel when writing
1718         text onto a pixbuf with an alpha channel.
1719         * print.c: Add image text info output, implement RGB and Preview text
1720         writers - PS text is still to be done.
1721         * view_file_icon.c (vficon_maint_removed): When removing a file from
1722         the grid, set the pointer NULL to avoid possible access before the
1723         idle sync. This is an attempt to fix a seemingly random crash when
1724         deleting files from the find dupes window.
1725
1726 Sun Sep 26 02:49:16 2004  John Ellis  <johne@verizon.net>
1727
1728         * image-overlay.c: Fix overlay to counter to account for slide show.
1729         * image.c: Fix overlay date and time display for preloaded images by
1730         setting them before calling image_new_util().
1731         * img-view.c: Fix overlay counter by setting list_pointer before
1732         changing the image, and to account for slide show.
1733
1734 Sat Sep 25 17:59:44 2004  John Ellis  <johne@verizon.net>
1735
1736         * image.c: Fix to draw overlays when image is set to NULL.
1737
1738 Sat Sep 25 17:45:40 2004  John Ellis  <johne@verizon.net>
1739
1740         * print.c: Allow user to set the DPI to use for printing.
1741
1742 Sat Sep 25 16:47:12 2004  John Ellis  <johne@verizon.net>
1743
1744         * image-overlay.c (image_overlay_info_render): Process the image count
1745         value returned for view windows.
1746
1747 Sat Sep 25 15:10:45 2004  John Ellis  <johne@verizon.net>
1748
1749         * image.[ch], typedefs.h: Add function callback for notification of
1750         a new image.
1751         * image-overlay.[ch]: New utils for image info overlays.
1752         * img-view.[ch]: Add image overlay to stand alone image window.
1753         * layout.[ch] (layout_find_by_image): New util to find LayoutWindow
1754         given an ImageWindow.
1755         * layout_image.c: Move overlay utils to new image-overlay.c.
1756
1757 Sat Sep 25 13:53:17 2004  John Ellis  <johne@verizon.net>
1758
1759         * layout_image.c: Move pixbuf_draw_layout() to pixbuf_util.c.
1760         * pixbuf_util.[ch]: Move pixbuf drawing utils here from layout_image.c
1761         and ui_pixbuf_ops.c.
1762         * print.c: Close the current print job when closing the print window,
1763         so we don't crash when closing while preview is not complete.
1764         * ui_pixbuf_ops.[ch]: Removed, most was not used, stuff that is used is
1765         now in pixbuf_util.c.
1766
1767 Fri Sep 24 19:36:35 2004  John Ellis  <johne@verizon.net>
1768
1769         * layout_image.c: Display more information in full screen overlays.
1770
1771 Fri Sep 24 17:07:07 2004  John Ellis  <johne@verizon.net>
1772
1773         * layout_util.c (layout_key_press_cb): Fix broken keyboard scrolling
1774         when tools are hidden/float - bug introduced by removing focus border.
1775
1776 Thu Sep 23 23:59:25 2004  John Ellis  <johne@verizon.net>
1777
1778         * fullscreen.c (fullscreen_image_update_cb): Only start the busy timer
1779         if the loading image is not the currently visible image. Fixes stuck
1780         busy cursor case #2.
1781         * image.c: Increase scroller timer to 30 updates per second.
1782
1783 Thu Sep 23 18:38:15 2004  John Ellis  <johne@verizon.net>
1784
1785         * image.c: Fix stuck busy cursor when initially displaying an image
1786         that is still loading and smooth flip is enabled. Actually, this is the
1787         result - the fix is to only sync the pixbuf image if it has changed.
1788
1789 Thu Sep 23 17:07:12 2004  John Ellis  <johne@verizon.net>
1790
1791         * image.[ch]: Fix overlay updates when over border, fix overlay test
1792         on expose event.
1793         * layout.c, layout_image.c, typedefs.h: Added full screen overlay to
1794         display image information, enabled with the I key.
1795         * print.c: Use pixbuf_set_*() to initialize pixbufs.
1796         * ui_pixbuf_ops.[ch]: New utils for setting a pixel, and drawing
1797         rectangles by directly setting values.
1798
1799 Wed Sep 22 13:43:55 2004  John Ellis  <johne@verizon.net>
1800
1801         * image.[ch]: Remove alpha level parameter from image overlay, since it
1802         seems gdk_pixbuf_render_to_drawable_alpha only uses the alpha component
1803         to create the render mask, and not when rendering over existing pixels
1804         like gdk_pixbuf_composite...
1805
1806 Wed Sep 22 13:29:49 2004  John Ellis  <johne@verizon.net>
1807
1808         * image.[ch], typedefs.h: Added ability to set overlays onto the image
1809         display in the form of GdkPixbufs. Change the scroller to display
1810         itself using an overlay.
1811
1812 Tue Sep 21 14:29:56 2004  John Ellis  <johne@verizon.net>
1813
1814         * bar_info.c (bar_keyword_list_sync): Fix to translate the default
1815         keyword list.
1816
1817 Mon Sep 20 19:35:28 2004  John Ellis  <johne@verizon.net>
1818
1819         * ui_misc.c: Fix month value when setting/retrieving from GtkCalendar.
1820         * README: Updates.
1821         * configure.in: Release 1.5.3
1822
1823 Mon Sep 20 11:01:18 2004  John Ellis  <johne@verizon.net>
1824
1825         * print.c: Make text tab insensitive, to indicate it does nothing.
1826         * po/ja.po: Updated Japanese translation,
1827         submitted by Takeshi AIHANA <aihana@gnome.gr.jp>.
1828         * po/sv.po: Updated Swedish translation,
1829         submitted by Hans Ofverbeck <hans.ofverbeck@home.se>.
1830         * po/it.po: Updated Italian translation,
1831         submitted by Kostantino <inverness1ATvirgilio.it>.
1832         * README: Update Italian translation credits.
1833
1834 Sat Sep 18 23:00:08 2004  John Ellis  <johne@verizon.net>
1835
1836         * search.c: Change date entries to new util from ui_misc.h, which
1837         includes convenient date selection popup.
1838         * ui_misc.[ch]: New files for the above date entry widget.
1839
1840 Sat Sep 18 13:55:43 2004  John Ellis  <johne@verizon.net>
1841
1842         * img-view.c: Fix broken file management operations when full screen.
1843         * layout_util.c: Fix V key test for full screen.
1844
1845 Sat Sep 18 02:25:12 2004  John Ellis  <johne@verizon.net>
1846
1847         * view_dir_list.c: Remove redundant NULL path checks.
1848         * view_dir_tree.c: Make a copy of the path so that we do not free the
1849         original, fixes crash with slideshows started with folder tree view
1850         right click menu.
1851
1852 Fri Sep 17 20:16:20 2004  John Ellis  <johne@verizon.net>
1853
1854         * bar_exif.c: Added ability for user to add additional items to the
1855         standard exif view by toggling the checkmark for items listed in the
1856         advanced view.
1857
1858 Fri Sep 17 16:43:31 2004  John Ellis  <johne@verizon.net>
1859
1860         * print.c: Do not allow printing when margins or proof size result in
1861         no output, grey out the print button to indicate this. Close the
1862         print window when finished printing. Postscript image data is scaled
1863         down to a max of 300 dpi to reduce spool size (hmm, this dpi value
1864         should probably be user selectable).
1865
1866 Fri Sep 17 14:45:26 2004  John Ellis  <johne@verizon.net>
1867
1868         * image.[ch] (image_zoom_set_fill_geometry): New util to adjust zoom
1869         so that the image will fill the window vertically or horizontally.
1870         * img-view.c, layout_image.[ch], layout_util.c: Assign W and H keys to
1871         set the zoom to fill window width and height, respectively. Changed
1872         hide tools shortcut to [Control] + H.
1873         * README, doc/11_2_keyboard_shortcuts.html: Document above shortcuts.
1874         * doc/gqview_faq.html: New manual page for the FAQ.
1875
1876 Fri Sep 17 13:15:25 2004  John Ellis  <johne@verizon.net>
1877
1878         * gqview.desktop: Change exec command to "gqview -r %F", per desktop
1879         spec 0.9.4 at freedesktop.org.
1880         * img-view.c (view_window_new): Support directories and collection
1881         files passed in as the path.
1882         * main.c: Added remote command view:filename to open filename in
1883         a new window, describe file: so it shows up in remote help list.
1884         * ui_fileops.[ch]: Move file_extenstion_match() util here.
1885
1886 Thu Sep 16 14:56:20 2004  John Ellis  <johne@verizon.net>
1887
1888         * image.c: Fix remaining scroller bugs: Properly draw it onto the
1889         border, and move scroller scrolling updates into image_scroll_real()..
1890
1891 Wed Sep 15 18:58:45 2004  John Ellis  <johne@verizon.net>
1892
1893         * print.c: Begin postscript output, needs page orientation fixed.
1894         * md5-util.c (md5_digest_to_text): Use '\0' instead of 0 to clarify
1895         NULL terminated string.
1896
1897 Wed Sep 15 10:19:56 2004  John Ellis  <johne@verizon.net>
1898
1899         * bar_info.c, info.c, layout_util.c: Change 'Image details' sidebar
1900         and property tab to be 'Keywords' to better describe what they do.
1901         * doc/11_2_keyboard_shortcuts.html, 2_2_menus.html,
1902         8_image_presentation.html, index.html: Update docs to use 'Keywords'.
1903
1904
1905 Tue Sep 14 19:30:40 2004  John Ellis  <johne@verizon.net>
1906
1907         * Makefile.am, globals.c, gqview.h, layout.c, preferences.c, thumb.c:
1908         Move icon declarations to globals.h, and allow use of inline pixbufs
1909         created from pngs.
1910         * globals.h: New header to include image declarations.
1911         * image.c, typedefs.h: Add Shift+Click smooth scroller, and fix area
1912         clamping in image_queue().
1913         * scroller.png: New image for scroller icon.
1914
1915 Mon Sep 13 23:10:13 2004  John Ellis  <johne@verizon.net>
1916
1917         * main.c: Fix handling of more than one file on the command line with
1918         the remote option, so that is works the same as no remote.
1919
1920 Mon Sep 13 21:26:55 2004  John Ellis  <johne@verizon.net>
1921
1922         * layout.c: Fix crash when selecting dropdown history with NULL layout
1923         path, fix layout_tools_float_set to support NULL lw for main window.
1924         * main.c: Push all remote commands to server regardless of order,
1925         implement remote passing of command line filenames.
1926         * remote.c: Mark noisy printfs for debug.
1927
1928 Mon Sep 13 17:48:13 2004  John Ellis  <johne@verizon.net>
1929
1930         * globals.c, gqview.h, rcfile.c: Add variable to store maximized status
1931         and save the status to the rc file.
1932         * image.c (image_top_window_sizable): Do not attempt to automatically
1933         resize a window when it is maximized, since a maximized window is not
1934         really sizable.
1935         * layout.c: FIx layout_valid to actually check if the layout pointer
1936         is valid. Restore maximized window state.
1937         * main.c: New window_maximized() utility to check said state. Save
1938         maximized state on exit, and do not set update stored window geometry
1939         if the main window is maximized.
1940
1941 Thu Sep  9 17:40:16 2004  John Ellis  <johne@verizon.net>
1942
1943         * print.c: Fix page count display when result is no pages, make 1:1
1944         zoom button change zoom to fit when zoom is already 1:1, attempt to
1945         avoid slow bilinear pixbuf scaling when scale is under 0.01.
1946
1947 Thu Sep  9 11:41:11 2004  John Ellis  <johne@verizon.net>
1948
1949         * print.c: Add preview to print job render types, so that the preview
1950         uses the same render path as printing. Cleanup unused code.
1951
1952 Thu Sep  9 09:32:25 2004  John Ellis  <johne@verizon.net>
1953
1954         * print.c: Fill custom printer list using lpstat -p.
1955
1956 Wed Sep  8 22:52:18 2004  John Ellis  <johne@verizon.net>
1957
1958         * globals.c: Change default thumbnail quility to tiles and default
1959         zoom quality to bilinear.
1960
1961 Wed Sep  8 19:58:09 2004  John Ellis  <johne@verizon.net>
1962
1963         * globals.c, gqview.h, image.c, rcfile.c: Added rc option
1964         scroll_reset_method, to adjust visible area behavior when changing
1965         to a new image.
1966         * doc/10_7_hidden.html: Document new scroll_reset_method option.
1967
1968 Wed Sep  8 17:31:19 2004  John Ellis  <johne@verizon.net>
1969
1970         * dupe.[ch]: Fix md5sum comparison and return value in dupe_match().
1971         Increase comparison speed by limiting number of expensive progress bar
1972         updates per second.
1973
1974 Wed Sep  8 15:15:40 2004  John Ellis  <johne@verizon.net>
1975
1976         * cache.[ch]: Add support for md5sums to sim cache.
1977         * dupe.[ch]: Use md5sums for checksums.
1978         * md5-util.[ch]: New files with md5sum utilities.
1979         * ui_fileops.[ch]: Move several includes to header file.
1980
1981 Sat Sep  4 13:48:31 2004  John Ellis  <johne@verizon.net>
1982
1983         * layout.c, view_file_icon.c: Fix missing thumbnails when showing a
1984         hidden tool window for the first time.
1985         * view_file_icon.h: Remove extra semicolon.
1986
1987 Wed Sep  1 18:23:17 2004  John Ellis  <johne@verizon.net>
1988
1989         * remote.[ch]: New utils for sending and receiving ipc commands.
1990         * main.c: Add command line options to control an existing GQview
1991         process (-r, --remote, -rh, --remote-help).
1992         * Makefile.am: Add remote.[ch].
1993
1994 Sat Aug 28 08:01:46 2004  John Ellis  <johne@verizon.net>
1995
1996         * fullscreen.c, globals.c, gqview.h, img-view.c, layout_image.c,
1997         layout_util.c, preferences.c, rcfile.c: Remove 'full screen ignores
1998         window manager' option - the new full screen behavior is correct, and
1999         no longer grabs the keyboard interfering with an xscreensaver lock.
2000         * doc/10_6_advanced.html, 8_2_fullscreen.html: Remove above option
2001         from help manual.
2002
2003
2004 Sat Aug 28 07:25:11 2004  John Ellis  <johne@verizon.net>
2005
2006         * layout_config.c (layout_config_list_order_set): Fix transposed src
2007         and dest variable causing inconsistent layout order.
2008         * layout_image.c (layout_image_new): Remove focus border from image
2009         when it is the only thing displayed in the main window.
2010
2011 Sat Aug 28 07:09:43 2004  John Ellis  <johne@verizon.net>
2012
2013         * collect-table.c: Attempted focus fix on item removal.
2014         * view_file_icon.c: Fix focus behavior when removing items, by ensuring
2015         row and column coordinates match the actual focus.
2016
2017 Thu Aug 26 04:45:34 2004  John Ellis  <johne@verizon.net>
2018
2019         * README: Updates.
2020         * doc/Makefile.am: Add help_DATA to EXTRA_DIST.
2021         * configure.in: Release 1.5.2
2022
2023 Thu Aug 26 04:05:33 2004  John Ellis  <johne@verizon.net>
2024
2025         * doc/index.html, 1_introduction.html, 2_main_window.html: Doc fixes,
2026         note the many missing sections in table of contents.
2027         * print.c: Add note to print dialog that printing is not functional.
2028
2029 Sun Aug 22 09:15:48 2004  John Ellis  <johne@verizon.net>
2030
2031         * bar_info.c (comment_read): Fix mem leak by freeing key variable.
2032
2033 Sat Aug 21 08:01:18 2004  John Ellis  <johne@verizon.net>
2034
2035         * ui_fileops.c (copy_file): Check if source and target are hardlinks to
2036         the same file, and if so simply return success for the copy request.
2037
2038 Tue Aug 17 07:04:17 2004  John Ellis  <johne@verizon.net>
2039
2040         * editors.c: Dump popen and use genuine fork and execvp to run
2041         editor commands when we need to display the command's output, this
2042         fixes verbose editor commands that were hanging GQview until they
2043         finished.
2044         * main.c: Clean up html help browser exec code.
2045         * doc/2_2_menus.html, 2_6_image_pane.html, 2_7_status_bar.html: More
2046         documentation.
2047
2048 Mon Aug 16 07:27:34 2004  John Ellis  <johne@verizon.net>
2049
2050         * filelist.c (text_from_time): Fix to convert strftime result to utf-8.
2051
2052 Sun Aug 15 22:18:42 2004  John Ellis  <johne@verizon.net>
2053
2054         * ui_fileops.c: Fix the utf-8 filename warning dialog to always display
2055         even if gtk was not yet initialized by attaching the dialog to an idle
2056         loop called by a gtk_init_add() function.
2057
2058 Thu Aug 12 23:51:54 2004  John Ellis  <johne@verizon.net>
2059
2060         * bar_info.c: Add favorite keywords list for faster keyword selection,
2061         added dialog to edit the list.
2062         * layout_util.c: Change print shortcut to [Shift] + P.
2063         * doc/11_2_keyboard_shortcuts.html, README: Update print shortcut.
2064
2065 Mon Aug  9 22:31:10 2004  John Ellis  <johne@verizon.net>
2066
2067         * docs/10_options.html, 11_3_thumbnails.html, 11_reference.html,
2068         8_1_slideshow.html, 8_2_fullscreen.html, 8_image_presentation.html,
2069         9_printing.html: More docmentation.
2070         * docs/10_6_advanced.html, 11_1_command_line.html, 12_credits.html,
2071         Makefile.am, index.html: Updates.
2072
2073 Mon Aug  9 07:00:05 2004  John Ellis  <johne@verizon.net>
2074
2075         * fullscreen.c, globals.c, gqview.h, preferences.c, rcfile.c,
2076         typdefs.h: Added option to disable screen saver during full screen.
2077         * doc/Makefile.am, 10_1_general.html, 10_2_image.html,
2078         10_3_window.html, 10_4_filtering.html, 10_5_editor_commands.html,
2079         10_6_advanced.html, 10_7_hidden.html, 11_1_command_line.html,
2080         11_2_keyboard_shortcuts.html: More documentation.
2081         * doc/index.html: Fixes.
2082
2083 Fri Aug  6 04:41:54 2004  John Ellis  <johne@verizon.net>
2084
2085         * acconfig.h, configure.in: Setup doc dir and GQVIEW_HTMLDIR define.
2086         * doc/[Makefile.am, *.html, gnu_fdl.txt]: Setup framework User Manual.
2087         * POTFILES.in: Added print.c.
2088         * layout_util.c, main.c: Add help contents menu item, add utility to
2089         launch user's preferred HTML browser for User Manual.
2090         * print.c: Start adding text settings to print dialog.
2091
2092 Mon May 31 16:52:44 2004  John Ellis  <johne@verizon.net>
2093
2094         * pixbuf_util.[ch] (pixbuf_to_file_as_jpg): Add jpeg pixbuf writer.
2095         * print.c: Add jpeg writing, free job_pixbuf when job is done.
2096
2097 Tue May 25 19:39:26 2004  John Ellis  <johne@verizon.net>
2098
2099         * print.c: Added print job path, can now print to png files - at least
2100         it can actually do something now...
2101
2102 Wed May 19 19:59:31 2004  John Ellis  <johne@verizon.net>
2103
2104         * print.c: Fleshed out print progress dialog - still no actual print..
2105
2106 Tue May 18 16:47:38 2004  John Ellis  <johne@verizon.net>
2107
2108         * print.c: Add output device selection - still no actual printing.
2109
2110 Mon May 17 21:18:18 2004  John Ellis  <johne@verizon.net>
2111
2112         * print.c: Organize print dialog - still no actual printing.
2113
2114 Fri May 14 17:41:47 2004  John Ellis  <johne@verizon.net>
2115
2116         * print.c: Implement single image preview - still no actual printing.
2117
2118 Thu May 13 17:05:23 2004  John Ellis  <johne@verizon.net>
2119
2120         * print.c: Add entry for proof thumbnail size, and use the size to
2121         layout the preview.
2122
2123 Tue May 11 19:10:43 2004  John Ellis  <johne@verizon.net>
2124
2125         * print.c: Add print preview page navigation, zoom controls - still no
2126         printing.
2127
2128 Mon May 10 22:09:25 2004  John Ellis  <johne@verizon.net>
2129
2130         * print.c: Add source selection, layout selection (not hooked up),
2131         scale down the preview pixbuf to a sane size, and account for  margins
2132         in the preview - still no actual printing.
2133         * ui_pixbuf_ops.[ch]: New utils for drawing onto a pixbuf.
2134
2135 Sat May  8 14:33:47 2004  John Ellis  <johne@verizon.net>
2136
2137         * print.c: Add orientation, margins, units - still no actual printing.
2138
2139 Fri May  7 15:57:20 2004  John Ellis  <johne@verizon.net>
2140
2141         * image.[ch] (image_area_changed): New util to notify image widget that
2142         an area of the image has changed, and needs a redraw.
2143         * layout_util.c: Add a print menu item (temporary shortcut is P).
2144         * print.[ch]: New files for (eventually) printing images. Currently a
2145         not so useful dialog.
2146
2147 Thu May  6 19:33:05 2004  John Ellis  <johne@verizon.net>
2148
2149         * image.c (image_load_done_cb): Use correct, and much faster, method to
2150         set the completed pixbuf when delay_flip is enabled.
2151
2152 Thu May  6 18:59:32 2004  John Ellis  <johne@verizon.net>
2153
2154         * fullscreen.[ch], globals.c, gqview.h, preferences.c, rcfile.c:
2155         Add option to delay page flips until image is completeley loaded when
2156         in full screen.
2157         * image.[ch], typedefs.h: Add and implement  image_set_delay_flip().
2158
2159 Thu May  6 13:53:00 2004  John Ellis  <johne@verizon.net>
2160
2161         * globals.c, preferences.c, rcfile.c, slideshow.[ch]: Change
2162         slideshow_delay to have subsecond precision. Set that precision
2163         to 10ths of a second (use #define in slideshow.h to change precision).
2164         Change minimum slideshow delay to 0.10.
2165
2166 Tue May  4 18:32:55 2004  John Ellis  <johne@verizon.net>
2167
2168         * bar_info.[ch] (keyword_list_pull): Let this function also support
2169         pulling keywords from a GtkEntry.
2170         * fullscreen.c: Make the screen debug output honor debug flag.
2171         * preferences.c: Add path selection dialog buttons to path entries.
2172         * search.c: Change the keyword TextView into an Entry, show dimensions
2173         in results whenever possible. Allow sorting of results by column.
2174         * ui_bookmark.c: Fix crash in history_list_find_by_key with NULL key,
2175         add path selection dialog buttons to path and icon entries.
2176         * ui_tabcomp.[ch] (tab_completion_add_select_button): New utility to
2177         add button to a tab completion to pop up a path selection dialog.
2178
2179 Sat May  1 18:40:38 2004  John Ellis  <johne@verizon.net>
2180
2181         * exif.c (exif_get_formatted_by_key): For fShutterSpeed, the use of
2182         ExposureTime has priority over ShutterSpeedValue, as calculating the
2183         original exposure setting from an APEX value can introduce error.
2184
2185 Sat May  1 16:24:01 2004  John Ellis  <johne@verizon.net>
2186
2187         * layout.c, layout_util.[ch]: Connect the keypress signal handler to
2188         the floating tool window, to fix tool window keyboard handling.
2189
2190 Fri Apr 30 15:07:01 2004  John Ellis  <johne@verizon.net>
2191
2192         * ui_tree_edit.[ch]: Fix incorrect position of pop-up rename window
2193         (merge from 1.4.3).
2194
2195 Thu Apr 29 20:03:00 2004  John Ellis  <johne@verizon.net>
2196
2197         * po/ro.po: Updated Romanian translation (from 1.4.3),
2198         submitted by Harald Ersch <harald@ersch.ro>.
2199         * po/ru.po: Updated Russian translation,
2200         submitted by Sergey Pinaev <dfo@antex.ru>.
2201
2202 Thu Apr 29 19:20:31 2004  John Ellis  <johne@verizon.net>
2203
2204         * editors.c (editor_verbose_start): Set our end of pipe non blocking,
2205         so that complex editor commands that, for instance have if;then and for
2206         loops, do not hang GQview until completion.
2207
2208 Fri Apr 23 19:31:44 2004  John Ellis  <johne@verizon.net>
2209
2210         [merge from stable branch] 
2211         * cache.[ch] (cache_time_valid): New util to check if a thumbnail is up
2212         to date, includes a workaround for utime's inabality to change
2213         timestamps when the user is not the owner of the file.
2214         * thumb.c (thumb_loader_start): Use new cache_time_valid(), above, to
2215         check if the thumbnail is current.
2216
2217 Fri Apr 23 15:06:28 2004  John Ellis  <johne@verizon.net>
2218
2219         [merge from stable branch]
2220         * image.[ch], typedefs.h: Support horizontal wheel scrolling, changed
2221         button callbacks into a single callback with a button argument, added
2222         scroll callback.
2223         * img-view.c, layout_image.c: Changes for above, and add support for
2224         horizontal scrolling.
2225         * info.c, utilops.c: Changes for new image button and scroll callbacks.
2226
2227 Mon Apr 12 09:01:32 2004  John Ellis  <johne@verizon.net>
2228
2229         * collect-table.c (collection_table_file_remove): Update selection when
2230         removing a selected item, fixes crash when removing items from a
2231         collection window.
2232         * dupe.c: Fix rank calculation on orphaned items. Fix list focus
2233         behavior when changing selection or removing items.
2234         * search.c: Maintain correct state when removing items while still
2235         searching or generating thumbnails. Fix list focus behavior when
2236         changing selection or removing rows.
2237         * ui_tree_edit.[ch]: Fix tree_edit_by_path() to show popup instantly,
2238         and the popup window size when column is offscreen. Add
2239         tree_view_move_cursor_away() utility.
2240         * ui_utildlg.c (generic_dialog_default_key_press_cb): Fix access of
2241         freed GenericDialog when auto_close is TRUE, and only attempt to close
2242         the dialog once.
2243         * view_file_icon.c (vficon_sync): Update row count so that focus can
2244         not move beyond the last row.
2245         * view_file_list.c: Fix list focus behavior when changing selection or
2246         removing rows.
2247
2248 Mon Apr  5 06:54:32 2004  John Ellis  <johne@verizon.net>
2249
2250         * README: Updates.
2251         * po/ja.po: Updated Japanese translation,
2252         submitted by Takeshi AIHANA <aihana@gnome.gr.jp>.
2253         * configure.in: Release 1.5.1
2254
2255 Mon Apr  5 04:55:27 2004  John Ellis  <johne@verizon.net>
2256
2257         * collect-table.c, collect.c, fullscreen.c, image.c, info.c, layout.c,
2258         layout_util.c, main.c, view_dir_list.c, view_file_icon.c: Fixes to
2259         compile with GDK_DISABLE_DEPRECATED defined.
2260         * ui_bookmark.c, ui_fileops.c, ui_help.c, ui_spinner.c,
2261         ui_tree_edit.[ch]: Fixes from SLIK, includes change to support
2262         G_BROKEN_FILENAMES, added center option to tree_view_row_make_visible.
2263         * utilops.c: Fix auto update of preview column when dragging rows to
2264         reorder them.
2265         * view_dir_tree.c: Center new path when it is not visible.
2266         * view_file_list.c: When scrolling to display new row, center the row.
2267
2268 Sun Apr  4 18:22:59 2004  John Ellis  <johne@verizon.net>
2269
2270         * search.c (search_file_load_process): Fix swapped paths on a call to
2271         filetime_set, fixes ugly bug causing source file timestamps to be
2272         changed when using search by content similarity or dimensions!
2273
2274 Sun Apr  4 16:13:09 2004  John Ellis  <johne@verizon.net>
2275
2276         * fullscreen.[ch]: Added support for multiple screens and monitors,
2277         removed broken Xinerama usage, we use the gtk screen/monitor utils now.
2278         * globals.c, gqview.h, img-view.c, layout_image.c, layout_util.c,
2279         preferences.c, rcfile.c: Added option to not ignore the window manager
2280         fullscreen handling. Added selection of screen and/or monitor to use
2281         for display of the full screen window.
2282         * image.c: Set the wallpaper on the root window that the window belongs
2283         to, remove #include of gdkx.h.
2284         * configure.in, src/Makefile.am: Remove test for Xinerama, remove
2285         Xinerama and Xlib from link stage.
2286
2287 Sat Apr  3 05:39:11 2004  John Ellis  <johne@verizon.net>
2288
2289         * utilops.c (file_util_delete_multiple_ok_cb): Show correct dialog.
2290
2291 Tue Mar 23 00:46:18 2004  John Ellis  <johne@verizon.net>
2292
2293         * preferences.c: Make the entry in the clear trash dialog non editable
2294         instead of insensitive.
2295
2296 Mon Mar 22 22:41:15 2004  John Ellis  <johne@verizon.net>
2297
2298         * bar_exif.c (bar_exif_new): Connect after the destroy signal to free
2299         the ExifBar structure, as layout_util.c accesses this data from
2300         within a destroy signal callback.
2301
2302 Mon Mar 22 21:49:12 2004  John Ellis  <johne@verizon.net>
2303
2304         * bar_info.[ch]: Add size request utility.
2305         * layout_util.c: Fix clipping of labels in Image Details sidebar, by
2306         changing the size request method (see above).
2307         * img-view.c: Change folder popup menu to match rest of application.
2308         * search.c: Fix gettext warning by setting specific string format,
2309         increase year spin button width, fix compile error by correcting
2310         declaration location.
2311         * utilops.c: Fix dialog titles, use folder instead of directory when
2312         communicating with user.
2313         * po/bg.po: Updated Bulgarian translation,
2314         submitted by Vladimir Petrov <vladux@mail.bg>
2315
2316 Fri Mar 12 02:00:54 2004  John Ellis  <johne@verizon.net>
2317
2318         * bar_info.c (bar_info_update): Use nondeprecated gtk_label_set_text.
2319         * po/*.po: Make distcheck updates.
2320         * src/Makefile.am (gqview_SOURCES): Its bar_info.h, not bar_ingo.h.
2321         * configure.in: Release 1.5.0.
2322
2323 Fri Mar 12 01:53:44 2004  John Ellis  <johne@verizon.net>
2324
2325         * bar_info.c: Modified toolbar (added space to separate save).
2326         * layout_util.c: Fix initial selection count sent to details sidebar.
2327
2328 Fri Mar 12 01:01:29 2004  John Ellis  <johne@verizon.net>
2329
2330         * search.c: Add results search type, to search current results list.
2331         * README, TODO: Updates.
2332
2333 Thu Mar 11 23:17:06 2004  John Ellis  <johne@verizon.net>
2334
2335         * search.c: Add option to search all files with comments (metadata).
2336         * ui_tabcomp.c: Set completion button size allocation height to that
2337         of the entry.
2338
2339 Thu Mar 11 21:11:15 2004  John Ellis  <johne@verizon.net>
2340
2341         * layout_util.c: Set initial search path to the current path. Fix
2342         initial display of the details sidebar with more than one selection.
2343
2344 Wed Mar 10 20:39:51 2004  John Ellis  <johne@verizon.net>
2345
2346         * ChangeLog, README, gqview.desktop, po/hu.po, main.c, view_dir_tree.c:
2347         Merge in fixes and updates from 1.4.1 stable, One ChangeLog entry
2348         remains out of order (2/29/04) - but it _is_ inline with version order.
2349
2350 Wed Mar 10 15:50:54 2004  John Ellis  <johne@verizon.net>
2351
2352         * bar_info.[ch]: Make the "set/replace all" buttons sensitive based
2353         on what we are told. Added option to only display metadata info.
2354         * info.c: Added Details tab for displaying metadata, merged permissions
2355         tab into the general tab.
2356         * layout.c, layout_util.[ch]: Notify the details sidebar of selection
2357         count changes.
2358
2359 Wed Mar 10 03:36:24 2004  John Ellis  <johne@verizon.net>
2360
2361         * bar_info.[ch], layout_util.c: Add functions to set keywords to the
2362         current file selection.
2363         * cache_maint.[ch], utilops.[ch]: Copy metadata along with the files.
2364
2365 Wed Mar 10 01:50:14 2004  John Ellis  <johne@verizon.net>
2366
2367         * cache.[ch], gqview.h: Changed cache get and find functions to take
2368         a CacheType, so that metadata location can be seperate from thumbnails.
2369         * cache_maint.c: Add support for meta cache to maintenance.
2370         * image.c, preferences.c, rcfile.c: Remove GDK_PIXBUF_TILE_BROKEN hack,
2371         as it has long been fixed.
2372         * ui_fileops.[ch] (filetime_set): New util to set a file's time stamp.
2373         * bar_info.c, dupe.c, filelist.c, main.c, search.c, thumb.c: Fixes
2374         for all the above changes.
2375
2376 Tue Mar  9 05:27:23 2004  John Ellis  <johne@verizon.net>
2377
2378         * bar_info.c: Clean up comment format.
2379         * info.c, preferences.c: Set the properties, options, and about
2380         windows to type dialog.
2381
2382 Tue Mar  9 01:46:12 2004  John Ellis  <johne@verizon.net>
2383
2384         * bar_info.c: Fix details bar display when no image is present.
2385
2386 Tue Mar  9 01:08:36 2004  John Ellis  <johne@verizon.net>
2387
2388         * bar_exif.c, collect-table.c, dupe.c, editors.c, layout_config.c,
2389         preferences.c, ui_help.c, ui_pathsel.c, utilops.c, view_dir_list.c,
2390         view_dir_tree.c, view_file_icon.c, view_file_list.c: Set a border
2391         for all GtkTreeViews to make them look better.
2392         * bar_info.c, layout_util.c: Make details bar cleaner, and give it a
2393         default size.
2394
2395 Tue Mar  9 00:32:58 2004  John Ellis  <johne@verizon.net>
2396
2397         * search.c: Implement similarity match type.
2398
2399 Mon Mar  8 22:07:32 2004  John Ellis  <johne@verizon.net>
2400
2401         * search.c: Fix statusbar label size twitching, fix selection idle
2402         update bug, increase default search window size - sorry 640x480 users.
2403
2404 Mon Mar  8 21:07:35 2004  John Ellis  <johne@verizon.net>
2405
2406         * search.c: Implement dimensions matching, add dimensions 'between',
2407         overload FileData passed to search_result_append(), so that it also
2408         holds dimensions and similarity fields, and display dimensions if
2409         available. Fix memory leak in search_result_change_path(). Also make it
2410         work with 'between' input swapped (first is higher than second).
2411
2412 Mon Mar  8 17:45:35 2004  John Ellis  <johne@verizon.net>
2413
2414         * search.c: Change a few default values, make search parameters
2415         insensitive during search, reorder status bar items, change start/stop
2416         button into two distinct stock buttons (find and stop).
2417
2418 Mon Mar  8 00:21:49 2004  John Ellis  <johne@verizon.net>
2419
2420         * search.c: Add search options for match case, recurse search path,
2421         and 'between' for file size. Hide unused widgets when match type is
2422         not 'between'.
2423
2424 Sun Mar  7 02:10:10 2004  John Ellis  <johne@verizon.net>
2425
2426         * search.[ch]: Implement maintenance utils.
2427         * utilops.c: Hook up search maintenance.
2428
2429 Sun Mar  7 01:10:26 2004  John Ellis  <johne@verizon.net>
2430
2431         * search.c: Implement thumbnails, clean up the status bar.
2432         * TODO: Updates.
2433
2434 Sat Mar  6 03:40:22 2004  John Ellis  <johne@verizon.net>
2435
2436         * search.c: Sort directories as they are searched. Use list buffer and
2437         only flush to the result GtkTreeView every 100 iterations or so, to
2438         reduce tree view internal updates that take time, thereby significantly
2439         increasing search speed when returning many results.
2440         * po/POTFILES.in: Added bar_sort.c and search.c.
2441
2442 Fri Mar  5 23:31:04 2004  John Ellis  <johne@verizon.net>
2443
2444         * search.c: More work: selections, context menu, keyboard shortcuts,
2445         status bar, drag and drop.
2446
2447 Fri Mar  5 03:32:24 2004  John Ellis  <johne@verizon.net>
2448
2449         * bar_info.[ch]: Export the comment/keyword read/write utilities.
2450         * dupe.[ch] (cell_renderer_height_override): Export this hack.
2451         * filelist.[ch] (file_data_new_simple): New util in easy to use form.
2452         * layout_util.c: Hook up search window to menu.
2453         * search.[ch]: New files, started the image search window. Basically
2454         works, but can not do anything with the results yet.
2455
2456 Tue Mar  2 12:57:39 2004  John Ellis  <johne@verizon.net>
2457
2458         * bar_info.[ch]: Add details sidebar for display/entry of keywords and
2459         comments per image.
2460         * bar_sort.c: Fix text capitalization of Link.
2461         * info.[ch]: Export table_add_line utlity (for use in bar_info.c).
2462         * layout_util.[ch]: Support details sidebar, not sure header needs to
2463         export it though, not used anywhere else.
2464         * typedefs.h: Add bar_info vars to LayoutWindow.
2465
2466 Sun Feb 29 13:51:38 2004  John Ellis  <johne@verizon.net>
2467
2468         * bar_sort.c: Add symbolic linking option sort manager.
2469         * main.c: Notify of beta software on startup.
2470         * ui_fileops.[ch]: Add symlink_utf8() util.
2471         * configure.in: Branch/merge for 1.5 devel cycle.
2472
2473 Mon Mar  1 16:00:36 2004  John Ellis  <johne@verizon.net>
2474
2475         * README, TODO: Updates.
2476         * po/*.po: make distcheck touches these.
2477         * configure.in: Release 1.4.1
2478
2479 Mon Mar  1 15:49:28 2004  John Ellis  <johne@verizon.net>
2480
2481         * hu.po: Updated Hungarian translation,
2482         submitted by Koblinger Egmont <egmont@uhulinux.hu>
2483         * gqview.desktop: Updated, convert to utf-8.
2484         * README: Update credits.
2485
2486 Wed Feb 25 21:15:42 2004  John Ellis  <johne@verizon.net>
2487
2488         * view_dir_tree.c: Fix crash when encountering a folder named
2489         (sigh, wait for it...) "empty". Fix is twofold: check success of
2490         vdtree_populate_path_by_iter() before accessing something it may free,
2491         and use a zero length string ("") for the placeholder node path/name,
2492         as there shouldn't be any folders with that name to encounter...
2493
2494 Tue Feb 24 19:27:54 2004  John Ellis  <johne@verizon.net>
2495
2496         * main.c (main): Move gtk_init and friends before any code that may
2497         cause a warning dialog that needs gtk to be initialized. This
2498         specifically fixes crash when attempting warning about invalid home
2499         directory filename encoding.
2500
2501 Fri Feb 20 18:29:12 2004  John Ellis  <johne@verizon.net>
2502
2503         * po/*.po: Make distcheck updates these.
2504         * README: Update translation status.
2505         * configure.in: Release 1.4.0
2506
2507 Fri Feb 20 18:11:23 2004  John Ellis  <johne@verizon.net>
2508
2509         * README: Add overview of changes since last stable 1.2.2 release,
2510         update email address, some clean up.
2511         * gqview.1: Update email address.
2512         * TODO: Clean up.
2513
2514 Fri Feb 20 16:56:04 2004  John Ellis  <johne@bellatlantic.net>
2515
2516         * po/fr.po: Updated French translation,
2517         submitted by Nicolas Bonifas <nicolas_bonifas@users.sf.net>,
2518         with additional updates from Eric Lassauge <lassauge@mail.dotcom.fr>.
2519
2520 Fri Feb 20 16:02:32 2004  John Ellis  <johne@bellatlantic.net>
2521
2522         * po/bg.po: Updated Bulgarian translation,
2523         submitted by Vladimir Petrov <vladux@mail.bg>.
2524         * po/cs.po: Updated Czech translation,
2525         submitted by Jan Raska <jan_raska@hotmail.com>.
2526         * po/de.po: Updated German translation,
2527         submitted by Danny Milosavljevic <danny_milo@yahoo.com>.
2528         * po/es.po: Updated Spanish translation,
2529         submitted by "Ariel G. Fermani" <arielfermani@yahoo.com>.
2530         * po/fi.po: Updated Finnish translation,
2531         submitted by Lauri Nurmi <lanurmi@iki.fi>.
2532         * po/nl.po: Updated Dutch translation,
2533         submitted by Tino Meinen <a.t.meinen@chello.nl>.
2534         * po/sk.po: Updated Slovak translation,
2535         submitted by Ivan Priesol <priesol@iris-sk.sk>.
2536         * po/zh_TW.po: Updated Traditional Chinese (Big5) translation,
2537         submitted by S.J. Luo <crystal@mickey.ee.nctu.edu.tw>.
2538         * README: Credit updates.
2539
2540 Thu Feb 12 22:58:12 2004  John Ellis  <johne@bellatlantic.net>
2541
2542         * cache_maint.c(cache_maintain_home): Set the entry that displays
2543         the working path as not editable instead of insensitive, as at least
2544         the Galaxy theme shows no text in insensitive entries (fg == bg color).
2545
2546 Thu Feb 12 22:47:31 2004  John Ellis  <johne@bellatlantic.net>
2547
2548         * view_file_icon.c(vficon_find_data): Validate row/col (not negative)
2549         before attempting access into list model.
2550
2551 Sun Feb  8 11:15:17 2004  John Ellis  <johne@bellatlantic.net>
2552
2553         * layout_config.c: Fix to display translations of layout_title strings.
2554
2555 Fri Feb  6 12:23:30 2004  John Ellis  <johne@bellatlantic.net>
2556
2557         * exif.c(exif_read): Fix for gcc 3.3.2 warning.
2558
2559 Tue Feb  3 12:51:45 2004  John Ellis  <johne@bellatlantic.net>
2560
2561         * README: Updates.
2562         * gqview.desktop: Fix Encoding field "Legacy-Mixed".
2563         * po/*.po: make distcheck touches these.
2564         * configure.in: Release 1.3.9
2565
2566 Tue Feb  3 12:42:13 2004  John Ellis  <johne@bellatlantic.net>
2567
2568         * README: Updates.
2569         * *.[ch]: Update copyright year in file headers.
2570         * main.c: Remove start up print of beta notice.
2571
2572 Tue Feb  3 11:21:38 2004  John Ellis  <johne@bellatlantic.net>
2573
2574         * po/bg.po: Updated Bulgarian translation,
2575         submitted by Vladimir Petrov <vladux@mail.bg>
2576         * po/es.po: Updated Spanish translation,
2577         submitted by Ariel Fermani <the_end@bbs.frc.utn.edu.ar>
2578         * po/fi.po: Updated Finnish translation,
2579         submitted by Lauri Nurmi <lanurmi@iki.fi>
2580         * po/fr.po: Updated French translation,
2581         submitted by Nicolas Bonifas <nicolas_bonifas@users.sf.net>
2582         * po/pl.po: Updated Polish translation,
2583         submitted by Emil Nowak <emil5@go2.pl>
2584         * po/ru.po: Updated Russian translation,
2585         submitted by Sergey Pinaev <dfo@antex.ru>
2586         * po/sv.po: Updated Swedish translation,
2587         submitted by Hans Ofverbeck <hans.ofverbeck@home.se>
2588         * po/vi.po: Updated Vietnamese translation,
2589         submitted by pclouds <pclouds@vnlinux.org>
2590         * README: Update translation credits where necessary.
2591
2592 Tue Feb  3 09:33:55 2004  John Ellis  <johne@bellatlantic.net>
2593
2594         * README: Updates.
2595         * gqview.1: Updated man page.
2596         * img-view.c, layout_image.c, layout_util.c: Added back V to toggle
2597         fullscreen, F is still the official key but V was currently unused and
2598         it helps the upgraders migrate with less pain.
2599
2600 Tue Feb  3 09:01:18 2004  John Ellis  <johne@bellatlantic.net>
2601
2602         * exif.c: Translate return strings, include config.h so intl.h works..
2603         * ui_fileops.c: Include config.h.
2604
2605 Mon Feb  2 13:54:59 2004  John Ellis  <johne@bellatlantic.net>
2606
2607         * exif.c (parse_IFD_entry): Fix walk past end of list when encountering
2608         unsupported format id values.
2609         * configure.in: Add --disable-xinerama configure switch.
2610         * gqview.desktop: Fixes, update to new (0.9.4) desktop spec.
2611
2612 Mon Jan 26 02:51:21 2004  John Ellis  <johne@bellatlantic.net>
2613
2614         * layout.c: Removed unused code.
2615         * main.c: Move print_term out of here, fix terminal message encoding,
2616         disable listing of 'experimental' command line options.
2617         * rcfile.c, thumb.c, ui_bookmark.c: Fix terminal message encoding.
2618         * ui_fileops.[ch]: Move print_term() here.
2619
2620 Mon Jan 26 01:59:33 2004  John Ellis  <johne@bellatlantic.net>
2621
2622         * utilops.c: Remove Preview button from batch rename dialog, and fixed
2623         the preview column to auto update. BUG: rows-reordered signal of a tree
2624         model is never sent, so reordering with drag and drop will not update
2625         the preview column - this appears to be a GTK 2.2.4 bug.
2626
2627 Fri Jan 23 05:06:27 2004  John Ellis  <johne@bellatlantic.net>
2628
2629         * utilops.c (file_util_unlink): Connect to destroy (destroyed is wrong)
2630         event, also check if file exists, if not simply return false instead
2631         of doing the whole attempt which will fail anyway.
2632
2633 Fri Jan 23 02:27:02 2004  John Ellis  <johne@bellatlantic.net>
2634
2635         * po/*.po: Make distcheck touches these.
2636         * README: Update translation table. Fix release year (re make dist).
2637         * configure.in: Release 1.3.8
2638
2639 Fri Jan 23 02:00:56 2004  John Ellis  <johne@bellatlantic.net>
2640
2641         * preferences.c: Changed the copyright string such that changes to
2642         (c) year, website address, and email address will no longer break the
2643         translations.
2644         * README: Updates.
2645
2646 Thu Jan 22 06:22:07 2004  John Ellis  <johne@bellatlantic.net>
2647
2648         * info.c, utilops.c: Marked additional strings for translation.
2649         * po/fi.po: Updated Finnish translation,
2650         submitted by Lauri Nurmi <lanurmi@iki.fi>
2651         * po/ja.po: Updated Japanese translation,
2652         submitted by Takeshi AIHANA <aihana@gnome.gr.jp>
2653         * po/sv.po: Updated Swedish translation,
2654         submitted by Hans Ofverbeck <hans.ofverbeck@home.se>
2655         [note: es and fr are awaiting a resend in gzip form, unless I can
2656         figure out what netscape 4.x does to po files sent as plain text...]
2657
2658 Thu Jan 22 05:21:20 2004  John Ellis  <johne@bellatlantic.net>
2659
2660         * cellrenderericon.[ch]: Changed function and structure names to avoid
2661         using the gtk namespace.
2662         * collect-table.c, view_file_icon.c: Use new names (above).
2663         * img-view.c, layout_image.c: Allow 'N' key to step to next image.
2664         * layout_util.c: Revert to old behavior where page up/down are now
2665         global to the window for stepping through images. Use Ctrl-Up/Dn to
2666         scroll file/folder views a page at a time.
2667
2668 Sun Jan 18 21:48:16 2004  John Ellis  <johne@bellatlantic.net>
2669
2670         * dupe.c: Apply patch to fix char pointer array overrun,
2671         submitted by Richard Curnow <rc@rc0.org.uk>.
2672
2673 Sun Jan 18 09:46:02 2004  John Ellis  <johne@bellatlantic.net>
2674
2675         * view_file_icon.c, view_file_list.c: Disabled double click to go to
2676         full screen - control clicking for mulitple selection too fast can
2677         activate fullscreen - need to revisit strategy.
2678
2679 Sun Jan 18 09:29:50 2004  John Ellis  <johne@bellatlantic.net>
2680
2681         * collect-table.c: Fix division by zero when all thumbnails fail to
2682         generate resulting in initial zero row count.
2683         * dupe.[ch], filelist.[ch], info.c, layout.[ch], typedefs.h,
2684         ui_fileops.[ch], utilops.c, view_file_icon.[ch], view_file_list.[ch]:
2685         Use 64 bit integer to store and count file sizes, to properly display
2686         >2 Gigabyte counts. Glib 2.2 docs claim type gint64 is guaranteed to be
2687         available, also use work-around to avoid %lld for printf conversions.
2688
2689 Sun Jan 18 07:35:38 2004  John Ellis  <johne@bellatlantic.net>
2690
2691         * image.c: NULL initialize function pointers.
2692         * view_file_icon.c, view_file_list.c: Set double click in icon and list
2693         view to start fullscreen.
2694
2695 Sun Jan 18 02:27:57 2004  John Ellis  <johne@bellatlantic.net>
2696
2697         * image.[ch], typedefs.h: Added image load completed function, it will
2698         be called when the current image is finished rendering to screen and
2699         when the image preload is complete. Only tested with --debug.
2700
2701 Sun Jan 18 01:32:51 2004  John Ellis  <johne@bellatlantic.net>
2702
2703         * dupe.c: Mark column title strings for translation.
2704         * editors.c: Translate command name field for the default editors.
2705         * menu.c: Fix sort menu grammar.
2706
2707 Wed Jan 14 19:09:45 2004  John Ellis  <johne@bellatlantic.net>
2708
2709         * exif.c: Fix spelling error of fluorescent.
2710         * info.c: Make filename entry non-editable in place of non-sensitive.
2711         * main.c: Use the locale's preferred encoding when printing --help text
2712         to the terminal.
2713         * preferences.c: Make entire filter editor non-sensitive when filtering
2714         is disabled.
2715         * utilops.c: Grammar, newline fixes.
2716
2717 Tue Jan 13 00:43:51 2004  John Ellis  <johne@bellatlantic.net>
2718
2719         * ui_help.c (help_window_load_text): When encountering invalid utf-8,
2720         insert a blank line in place of broken text, removed warnings.
2721         * README: Convert encoding to proper utf-8.
2722
2723 Sun Jan 11 03:27:17 2004  John Ellis  <johne@bellatlantic.net>
2724
2725         * layout_util.c (layout_bar_exif_sized): Fix signal handler,
2726         size_allocate has no return value.
2727
2728 Sun Jan 11 02:11:32 2004  John Ellis  <johne@bellatlantic.net>
2729
2730         * cache.c: Fixes to initialize char variables before use.
2731         * dupe.c: Reset opposing group list when clearing a list. Fixes crash
2732         when clearing main list, then adding new files in 'compare two file
2733         sets' mode.
2734
2735 Sat Jan 10 08:31:04 2004  John Ellis  <johne@bellatlantic.net>
2736
2737         * view_file_list.c (vflist_select_by_path): Set the focus to this row,
2738         so that up/down moves to the expected image when the list has focus.
2739
2740 Sat Jan 10 07:29:25 2004  John Ellis  <johne@bellatlantic.net>
2741
2742         * bar_exif.[ch]: Allow exif info to start in advanced view, added
2743         utility to retrieve advanced state.
2744         * info.c: Fix for change to bar_exif_new().
2745         * layout.c, layout_util.c, typedefs.h: Layout now remembers the exif
2746         sidebar size and advanced state, note this per window, and is not
2747         saved on exit.
2748
2749 Sat Jan 10 06:38:09 2004  John Ellis  <johne@bellatlantic.net>
2750
2751         * img-view.c: Fix image stepping bug when same image path is in the
2752         list more than once.
2753
2754 Sat Jan 10 05:49:00 2004  John Ellis  <johne@bellatlantic.net>
2755
2756         * thumb.c: Do not scale unknown image icon larger than orginial size.
2757
2758 Sat Jan 10 01:43:34 2004  John Ellis  <johne@bellatlantic.net>
2759
2760         * view_dir_tree.c: Added workaround so that user entered hidden paths
2761         are displayed even when 'display hidden files' option is disabled.
2762
2763 Sat Jan 10 00:25:39 2004  John Ellis  <johne@bellatlantic.net>
2764
2765         * view_dir_tree.c (vdtree_rename_row_cb): Force refresh of renamed
2766         new folders, so that the name sticks immediately in the view.
2767
2768 Thu Jan  8 04:47:35 2004  John Ellis  <johne@bellatlantic.net>
2769
2770         * view_file_list.c (vflist_select_cb): Remove unnecessary check for
2771         previous button click row that was interfering with image selection.
2772
2773 Mon Jan  5 03:01:35 2004  John Ellis  <johne@bellatlantic.net>
2774
2775         * info.c (info_tab_general_image): Fix 'Image size' calculation.
2776
2777 Mon Dec 29 18:04:34 2003  John Ellis  <johne@bellatlantic.net>
2778
2779         * thumb.c (thumb_loader_mark_failure): Fix use of freed memory.
2780         * view_file_icon.c, view_file_list.c: Fix thumb generation stall on
2781         unknown images.
2782
2783 Mon Dec 22 17:58:01 2003  John Ellis  <johne@bellatlantic.net>
2784
2785         * README: Updated.
2786         * po/*.po: Make distcheck updates.
2787         * configure.in: Release 1.3.7
2788
2789 Mon Dec 22 17:25:10 2003  John Ellis  <johne@bellatlantic.net>
2790
2791         * cellrenderericon.h: Fix show_text to be type boolean.
2792         * collect-table.c: Fix progressbar height changes by always setting the
2793         text of the widget to contain at least one character.
2794         * dupe.c, view_file_list.c: Fix warninga about invalid height
2795         parameter when setting cell height over 100, this hack simply changes
2796         maximum of the height property on GtkCellRenderer.
2797         * configure.in (ALL_LINGUAS): Added sv, Swedish language.
2798         * po/sv.po: Added Swedish translation,
2799         submitted by Hans Ã–fverbeck <hans.ofverbeck@home.se>.
2800         * po/ru/po: Updated Russian translation,
2801         submitted by Sergey Pinaev <dfo@antex.ru>.
2802         * README, TODO: Updates.
2803
2804 Sun Dec 21 22:50:54 2003  John Ellis  <johne@bellatlantic.net>
2805
2806         * collect-table.c, dupe.c, img-view.c, layout_image.c, layout_util.c,
2807         menu.c, ui_bookmark.c, ui_pathsel.c, view_dir_list.c, view_dir_tree.c,
2808         view_file_icon.c, view_file_list.c: Added mnemonics to all of the
2809         pop up menus. FIxed a few key bindings, notably fullscreen toggle is
2810         now F, New folder is Ctrl-F (and was renamed from Create dir), removed
2811         binding for set as wallpaper (conflicted with new window), and Float
2812         file list is now L.
2813         * README: Documented new key bindings.
2814
2815 Sun Dec 21 21:25:46 2003  John Ellis  <johne@bellatlantic.net>
2816
2817         * image.c: Increase minimum size when dropping scale quality to
2818         GDK_INTERP_NEAREST (3 to 8).
2819         * TODO: Updates.
2820
2821 Sun Dec 21 20:55:03 2003  John Ellis  <johne@bellatlantic.net>
2822
2823         * collect-table.c, view_file_icon.c: Fix pageup/down increment when
2824         text is enabled; fix keyboard popup menu placement; fix image view
2825         selection when clicking file already selected with multiple selection.
2826
2827 Sat Dec 20 14:01:35 2003  John Ellis  <johne@bellatlantic.net>
2828
2829         * exif.c: Fix return value (actually return something, oddly with -O2
2830         gcc 3.2.2 is not giving a warning about this). Plus a few changes
2831         to avoid casting confusion.
2832
2833 Fri Dec 19 18:08:39 2003  John Ellis  <johne@bellatlantic.net>
2834
2835         * exif.c (exif_item_get_data_as_text): Fix read beyond data buffer by
2836         using correct casting of data to sizeof char.
2837
2838 Fri Dec 19 01:40:56 2003  John Ellis  <johne@bellatlantic.net>
2839
2840         * collect-table.c, view_file_icon.c: Hide the focus line drawn by the
2841         GtkTreeView by setting the focus to a column with zero width. (We draw
2842         the focus ourselves by setting the "has-focus" property of the
2843         GtkCellRendererIcon.
2844
2845 Fri Dec 19 01:18:22 2003  John Ellis  <johne@bellatlantic.net>
2846
2847         * view_file_icon.c: Use GtkCellRendererIcon as in collect-table.c
2848
2849 Fri Dec 19 00:08:06 2003  John Ellis  <johne@bellatlantic.net>
2850
2851         * collect-table.c: Hook up Control-T to toggle filename text, set the
2852         mode of the cellrenderer to ACTIVITY so that the keyboard focus is not
2853         shown. Fixed border padding (again).
2854
2855 Thu Dec 18 23:22:41 2003  John Ellis  <johne@bellatlantic.net>
2856
2857         * cellrenderericon.[ch], collect-table.c: Seems to be getting there,
2858         works as expected, anyway...
2859
2860 Thu Dec 18 18:32:59 2003  John Ellis  <johne@bellatlantic.net>
2861
2862         * cellrenderericon.[ch], collect-table.c: More fixes and work, added
2863         ability to toggle display of filename text.
2864
2865 Thu Dec 18 16:54:17 2003  John Ellis  <johne@bellatlantic.net>
2866
2867         * cellrenderericon.[ch]: Implements rough GtkCellRendererIcon, so that
2868         icon views can show the filename under the icon.
2869         * collect-table.c: Use GtkCellRendererIcon (above), for testing, needs
2870         work...
2871         * Makefile.am: Added cellrenderericon.[ch].
2872
2873 Tue Dec 16 12:20:14 2003  John Ellis  <johne@bellatlantic.net>
2874
2875         * view_file_list.c (vflist_populate_view): Fix a gtk_list_store_set by
2876         supplying missing comma in command - fixes crash on refresh.
2877
2878 Mon Dec 15 17:10:44 2003  John Ellis  <johne@bellatlantic.net>
2879
2880         * TODO: Updates.
2881         * configure.in: Release 1.3.6
2882
2883 Mon Dec 15 17:02:46 2003  John Ellis  <johne@bellatlantic.net>
2884
2885         * dupe.c: Do not unref a GtkStyle we never refed.
2886         * collect-table.c, globals.c, gqview.h, preferences.c, rcfile.c:
2887         Removed "Insert file drops at pointer location" option for collections,
2888         now this is always the behavior. Moved a few options to the advanced
2889         tab, removed the collections tab.
2890         * main.c: Make the printed beta release note on startup a one liner.
2891         * README: Updates.
2892         * TODO: Updated.
2893
2894 Sun Dec 14 20:58:28 2003  John Ellis  <johne@bellatlantic.net>
2895
2896         * ui_tree_edit.c, view_dir_list.c, view_file_list.c: Fix warnings by
2897         checking that GtkTreeView is realized before attempting to scroll.
2898         This was a problem when the tools are hidden.
2899
2900 Sun Dec 14 19:26:37 2003  John Ellis  <johne@bellatlantic.net>
2901
2902         * exif.c, preferences.c, ui_pathsel.c, view_file_list.c: Fix typo and
2903         a few strings.
2904
2905 Sun Dec 14 02:51:47 2003  John Ellis  <johne@bellatlantic.net>
2906
2907         * dnd.[ch] (dnd_set_drag_icon): New utility dnd thumbnails.
2908         * collect-table.c, view_file_icon.c, view_file_list.c: Set the drag
2909         icon when beggining a dnd operation.
2910         * dupe.c: Set drag icon, fix progress bar value warning when starting
2911         thumbnail loading.
2912         * view_dir_tree.c (vdtree_press_cb): Fix use of free GtkTreePath (move
2913         free to correct place).
2914
2915 Sat Dec 13 15:26:15 2003  John Ellis  <johne@bellatlantic.net>
2916
2917         * bar_exif.c, bar_sort.c, cache_maint.c, collect-table.c, collect.c,
2918         dupe.c, fullscreen.c, image.c, img-view.c, info.c, layout.c,
2919         layout_config.c, layout_image.c, layout_util.c, main.c, menu.c,
2920         preferences.c, ui_bookmark.c, ui_fileops.c, ui_help.c, ui_menu.[ch],
2921         ui_pathsel.c, ui_tabcomp.c, ui_tree_edit.c, ui_utildlg.c, utilops.c,
2922         view_dir_list.c, view_dir_tree.c, view_file_icon.c, view_file_list.c:
2923         Remove use of deprecated GTK functions
2924         (as of GTK 2.2.4 with -DG_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED)
2925
2926 Fri Dec 12 17:49:37 2003  John Ellis  <johne@bellatlantic.net>
2927
2928         * collect-table.c: Fix removal of right clicked, but non selected
2929         items.
2930
2931 Fri Dec 12 16:43:32 2003  John Ellis  <johne@bellatlantic.net>
2932
2933         * ui_clist_edit.[ch]: Removed, clist is deprecated.
2934         * ui_tree_edit.[ch]: Move the ui_glist_XXX utils here (from above).
2935         * collect-table.c, collect.c, ui_pathsel.c: Fix includes for above.
2936
2937 Fri Dec 12 16:31:14 2003  John Ellis  <johne@bellatlantic.net>
2938
2939         * collect-table.c, typedefs.h: Fixed the marker positioning, made the
2940         drop placement more intuitive, and removed ugly popup window for
2941         display of marker position.
2942         * ui_tree_edit.c(widget_auto_scroll_cb): Only send the notify when the
2943         adjustment will change.
2944         * icons/marker.xpm: Gave marker a black border for some contrast on
2945         red images/themes.
2946
2947 Thu Dec 11 21:45:22 2003  John Ellis  <johne@bellatlantic.net>
2948
2949         * collect-io.c, collect.[ch], typedefs.h: Collection thumbnails are
2950         now stored as pixbufs instead of pixmaps...
2951         * collect-table.c: Port clist to GtkTreeView, using view_file_icon.c
2952         as a guide, so it now has the same selection behavior.
2953         * view_file_icon.c: Remove cruft, fix thumbnail pixbuf leak.
2954
2955 Wed Dec 10 12:59:37 2003  John Ellis  <johne@bellatlantic.net>
2956
2957         * view_file_icon.c: Fix centering of icons in columns, set keyboard
2958         cursor when moving focus.
2959
2960 Tue Dec  9 22:58:11 2003  John Ellis  <johne@bellatlantic.net>
2961
2962         * globals.c, gqview.h, rcfile.c, typedefs.h, view_file_icon.c: Added
2963         option show_icon_names - for future ability to display filnames in the
2964         icon view. (this will need a custom gtkcellrenderer, on TODO).
2965
2966 Tue Dec  9 16:48:51 2003  John Ellis  <johne@bellatlantic.net>
2967
2968         * typedefs.h, view_file_icon.c: Change the icon view to a GtkTreeView.
2969         * ui_tree_edit.h: Fix function description.
2970         * view_dir_list.c, view_dir_tree.c, vire_file_list.c: Fix incorrectly
2971         unrefed style pointers, guard against possible button release event
2972         on drop event (not sure what is causing this).
2973
2974 Wed Dec  3 16:01:24 2003  John Ellis  <johne@bellatlantic.net>
2975
2976         * ui_bookmark.[ch]: Added history_combo utilities.
2977         * ui_utildlg.c: Use default history length for file dialogs.
2978         * utilops.c: When auto renaming single file, show preview of new name.
2979         Added drop down history for numerical rename prefix and suffixes. Fixed
2980         bug with numerical rename when anything but first row was selected.
2981         Gave prefix and suffix entries all available room, packed the image
2982         preview into a pane so image does not resize with window. Fixed
2983         incorrect lower value (1 -> 0) in start number selection.
2984         * view_file_list.c: Fixed incorrect resort when renaming files.
2985         * TODO: Major todo list cleanup.
2986
2987 Wed Dec  3 00:38:41 2003  John Ellis  <johne@bellatlantic.net>
2988
2989         * dnd.[ch], ui_bookmarks.[ch]: Proper uri drag and drop escape encodes.
2990         * dupe.c, img-view.c, info.c, layout_image.c, ui_pathsel.c,
2991         view_dir_list.c, view_dir_tree.c, view_file_icon.c, view_file_list.c:
2992         Use new dnd, fix dnd bugs. Ignore button release event when it resulted
2993         from a drag end (event x = y = 0). Dnd to/from nautilus/konquerer
2994         now works.
2995
2996 Tue Dec  2 15:57:03 2003  John Ellis  <johne@bellatlantic.net>
2997
2998         * typedefs.h, view_dir_tree.c: Set busy pointer when loading paths.
2999         Fix bug when updating nodes via timestamp change. Force refresh when
3000         setting a path, to ensure new folders appear (in automounted folders).
3001
3002 Mon Dec  1 17:50:37 2003  John Ellis  <johne@bellatlantic.net>
3003
3004         * cache_maint.c (cache_maintain_home_cb): Use correct path when
3005         attempting to remove old thumbnails.
3006         * view_dir_list.c: Check access with R_OK | X_OK.
3007         * view_dir_tree.c: Fix icon states, population by expander click.
3008
3009 Mon Dec  1 01:50:29 2003  John Ellis  <johne@bellatlantic.net>
3010
3011         * image.c (image_change_from_image): Remove string/loader/pixbuf leaks.
3012         * ui_pathsel.c: Remove while(events) hack.
3013         * ui_tree_edit.c: Move the while(events) hack here, so that tree is
3014         in consistent state before showing popup.
3015         * view_dir_tree.c: Fix new folder command.
3016
3017 Mon Dec  1 00:59:07 2003  John Ellis  <johne@bellatlantic.net>
3018
3019         * intl.h: Fix compile error when gettext is disabled.
3020         * layout_util.c, typedefs.h: Remove pixmap/masks from PixmapFolders.
3021         * view_dir_tree.c: Fixed node leaks when removing rows, destroy.
3022
3023 Sat Nov 29 11:06:03 2003  John Ellis  <johne@bellatlantic.net>
3024
3025         * layout.c: Set the default keybaord focus to the image pane.
3026         * layout_util.c: Make the image zoom/traversal keys only work when the
3027         image has the keyboard focus.
3028         * view_dir_tree.c: Many fixes for expansion, population, sorting,
3029         dnd hovering expansion, expander display, expander clicks, and
3030         removed unused cruft.
3031
3032 Sat Nov 29 08:18:52 2003  John Ellis  <johne@bellatlantic.net>
3033
3034         * view_dir_tree.c: Fixed so clicking expanders does not select row,
3035         remove flicker caused by column AUTOSIZE, us GROW_ONLY instead.
3036
3037 Fri Nov 28 21:38:50 2003  John Ellis  <johne@bellatlantic.net>
3038
3039         * typedefs.h, view_dir_tree.c: Started change from ctree to treeview,
3040         compiles cleanly - but has 'issues'.
3041         * view_dir_list.c: Minor fixes done when using as reference for above.
3042
3043 Mon Nov 24 15:08:00 2003  John Ellis  <johne@bellatlantic.net>
3044
3045         * utilops.c: Convert multiple rename clist to a treeview, added preview
3046         for autorename results.
3047         * view_file_list.c: Fix update errors after a rename.
3048
3049 Mon Nov 24 13:18:11 2003  John Ellis  <johne@bellatlantic.net>
3050
3051         * view_file_list.c: Fix loss of selection when changing sort order, fix
3052         incorrect next row selection when deleting files, and add fix to
3053         maintain row position when toggling thumbnails.
3054
3055 Wed Nov 19 02:17:25 2003  John Ellis  <johne@bellatlantic.net>
3056
3057         * view_file_list.c(vflist_populate_view): Fix incorrect iter advance
3058         that leaves old rows behind, eventually causing crash on autorefresh.
3059
3060 Tue Nov 18 07:33:36 2003  John Ellis  <johne@bellatlantic.net>
3061
3062         * dupe.c: Fix keyboard menu placement on second_listview, set middle
3063         mouse button to toggle row selection.
3064         * typedefs.h, view_file_list.c: Fix in place renaming option, fix menu
3065         placement from keyboard pop-up, set middle button to toggle row
3066         selection, and fix image display on a select-all.
3067
3068 Mon Nov 17 16:19:46 2003  John Ellis  <johne@bellatlantic.net>
3069
3070         * dupe.c: Consistently handle button press/release pairs.
3071         * ui_tree_edit.[ch]: Fixed the visibility utility, added a scroll util
3072         based on current visibility.
3073         * view_dir_list.c: Correctly scroll to and set focus to highlight
3074         previous path when going up the tree.
3075         * view_file_list.c: Allow dnd with button 1, fix selection behavior,
3076         fix auto scrolling.
3077
3078 Mon Nov 17 14:14:39 2003  John Ellis  <johne@bellatlantic.net>
3079
3080         * filelist.c, typedefs.h: Added pixbuf pointer for FileData to store
3081         thumbnails. Changes for file list move to GtkTreeView.
3082         * ui_tree_edit.[ch]: Added tree_view_row_get_visibility, needs work.
3083         * view_dir_list.c: Set the cursor focus when clicking a row, change
3084         selection mode to NONE.
3085         * view_file_list.c: Change from GtkCList to GtkTreeView for main
3086         file list, needs cleanup.
3087
3088 Sun Nov 16 23:10:04 2003  John Ellis  <johne@bellatlantic.net>
3089
3090         * layout_config.c: Change clist to treeview for layout order.
3091         * layout_util.c, typedefs.h: Added pixbuf versions to PixmapFolders.
3092         * preferences.c: Remove include of ui_clist_edit.h.
3093         * ui_pathsel.c: Fixes for leaking GtkTreePaths.
3094         * ui_tree_edit.c: Placement fix, crash fix, grab keyboard.
3095         * view_dir_list.c: Add folder icons back, porting this widget complete?
3096
3097 Sat Nov 15 12:32:22 2003  John Ellis  <johne@bellatlantic.net>
3098
3099         * ui_tree_edit.c: Make start of scroll smoother when starting from
3100         edges of widget by slowly ramping up speed.
3101
3102 Sat Nov 15 12:12:18 2003  John Ellis  <johne@bellatlantic.net>
3103
3104         * ui_tree_edit.[ch]: Added generic autoscroll for dnd, etc.
3105         * view_dir_list.c: use above auto scroll for dnd.
3106
3107 Fri Nov 14 21:10:45 2003  John Ellis  <johne@bellatlantic.net>
3108
3109         * collect-table.c, img-view.c, layout_image.c, view_dir_tree.c,
3110         view_file_icon.c, view_file_list.c: Fixes for new menu popup utility.
3111         * dupe.c: Fixed keyboard popup menu placement, dnd cleanup.
3112         * ui_menu.[ch](popup_menu_position_clamp): Added height flag, when non
3113         zero region is avoided.
3114         * ui_tree_edit.[ch]: Added utils to retrieve cell coordinates.
3115         * view_dir_list.c: Added keyboard popup menu placement, fix menu crash,
3116         set correct dnd behavior (when source, disable dnd dest). Also removed
3117         ".." folder when root is listed.
3118
3119 Fri Nov 14 13:25:42 2003  John Ellis  <johne@bellatlantic.net>
3120
3121         * dupe.c: Use shift_color from ui_tree_edit.h, update cached static
3122         GdkColor when the widget changes.
3123         * typedefs.h, view_dir_list.c: Port clist to tree view, needs polish.
3124         * ui_tree_edit.[ch]: Make shift_color available to rest of app.
3125
3126 Fri Nov 14 03:11:13 2003  John Ellis  <johne@bellatlantic.net>
3127
3128         * dupe.c, fullscreen.c, image.c, view_dir_tree.c: Use gdk_cursor_unref
3129         instead of a direct gdk_cursor_destroy (still leaks though).
3130
3131 Thu Nov 13 08:59:01 2003  John Ellis  <johne@bellatlantic.net>
3132
3133         * dupe.c: Fixed slowness when updating thumbnails. Also set a busy
3134         cursor on listview while comparing/sorting.
3135
3136 Wed Nov 12 15:30:36 2003  John Ellis  <johne@bellatlantic.net>
3137
3138         * dupe.c: Row height is now correct when thumbnails is on, set the
3139         unknown pic for broken thumbnails, properly set alignment on date
3140         and size columns, and fixed keyboard popup menu placement.
3141         * thumb.[ch]: Added new function thumb_loader_get_pixbuf(), which
3142         has option to return unknown image if thumbnail is broken.
3143
3144 Wed Nov 12 12:15:22 2003  John Ellis  <johne@bellatlantic.net>
3145
3146         * dupe.c: Reimplement the alternating row color per match group,
3147         learning how to manipulate a gtktreeview sure is fun :-P
3148
3149 Wed Nov 12 10:10:36 2003  John Ellis  <johne@bellatlantic.net>
3150
3151         * dupe.c: Fix dnd and selection, allow button 1 to initiate dnd.
3152
3153 Tue Nov 11 14:24:19 2003  John Ellis  <johne@bellatlantic.net>
3154
3155         * dupe.c: Change GtkClists to GtkTreeView. Still needs work.
3156         * TODO: List things needed to be done to complete above conversion.
3157
3158 Mon Nov 10 21:01:21 2003  John Ellis  <johne@bellatlantic.net>
3159
3160         * utilops.c: Show safe delete status in delete dialogs (off or on).
3161
3162 Sun Nov  9 14:56:19 2003  John Ellis  <johne@bellatlantic.net>
3163
3164         * README: Updates.
3165         * src/Makefile.am: Create ui_icons.h in builddir, not srcdir.
3166         * configure.in: Release 1.3.5
3167
3168 Sun Nov  9 11:45:49 2003  John Ellis  <johne@bellatlantic.net>
3169
3170         * bar_exif.c: Add padding to right of advanced view checkbutton.
3171         * exif.c: Use correct key when retrieving ApertureValue for fAperture.
3172
3173 Sun Nov  9 11:09:50 2003  John Ellis  <johne@bellatlantic.net>
3174
3175         * exif.c: string_append_raw_bytes() character replacement fix, added
3176         description for GPSInfo.
3177
3178 Sun Nov  9 10:51:13 2003  John Ellis  <johne@bellatlantic.net>
3179
3180         * exif.c: Added Exif 2.2 specific tags. Fixed fFlash and
3181         fSubjectDistance to return properly formatted data per 2.2 specs.
3182
3183 Sun Nov  9 07:29:26 2003  John Ellis  <johne@bellatlantic.net>
3184
3185         * exif.[ch]: Fix incorrect orientation order by swapping
3186         BOTTOM_LEFT and BOTTOM_RIGHT in the enum.
3187         * globals.c, gqview.h, image.c, preferences.c, rcfile.c: Added auto
3188         rotate image per exif info option (off by default).
3189         * image.c: Add missing include of ui_fileops.h.
3190
3191 Sun Nov  9 06:41:48 2003  John Ellis  <johne@bellatlantic.net>
3192
3193         * bar_exif.c: Fix incorrect column number setup in advanced view.
3194         * exif.c: Added additional tags (to misc section), and altered a few
3195         things after checking exif.org PDF spec sheet.
3196
3197 Sat Nov  8 20:51:37 2003  John Ellis  <johne@bellatlantic.net>
3198
3199         * bar_exif.c: Added advanced view for exif data.
3200         * exif.c: Fix capitalization, mark relevent (standard view) strings for
3201         translation.
3202         * info.c: Use a paned widget to allow expansion of properties window
3203         without expanding image view size.
3204
3205 Sat Nov  8 10:49:55 2003  John Ellis  <johne@bellatlantic.net>
3206
3207         * bar_exif.c: Fix alignments when adding labels to table, so that
3208         entries with mulitple lines will be top aligned.
3209
3210 Sat Nov  8 10:44:43 2003  John Ellis  <johne@bellatlantic.net>
3211
3212         * README, TODO: Updates.
3213
3214 Sat Nov  8 10:38:40 2003  John Ellis  <johne@bellatlantic.net>
3215
3216         * ui_fileops.c: When converting filenames to utf-8 fails, display
3217         clear warning to user, and simply allow the broken strings through.
3218
3219 Sat Nov  8 06:07:09 2003  John Ellis  <johne@bellatlantic.net>
3220
3221         * src/Makefile.am: Added exif.c back to build list.
3222         * exif.[ch]: Moved necessary declarations out to header file, a few
3223         namespace changes, added access functions (still need: (uns)byte,
3224         undefined, float, double, and the multiple data element ones).
3225         * bar_exif.c: Fixes to use exif.h instead of exif.c.
3226
3227 Fri Nov  7 17:27:35 2003  John Ellis  <johne@bellatlantic.net>
3228
3229         * bar_exif.c: Removed remnants of old exif parser.
3230         * info.[ch]: Removed unnecessary tab updates, avoid reloading things
3231         like exif data every time the window size changes.
3232
3233 Fri Nov  7 16:46:41 2003  John Ellis  <johne@bellatlantic.net>
3234
3235         * exif.c: Allow support for unknown IDF tags.
3236         * bar_exif.c: Convert ASCII strings of exif to UTF-8, added description
3237         and copyright fields.
3238
3239 Fri Nov  7 14:30:22 2003  John Ellis  <johne@bellatlantic.net>
3240
3241         * exif.c: Fix shutter speed bugs... problem 1: wrong calculation,
3242         problem 2: retrieving invalid key name! :-/
3243
3244 Fri Nov  7 13:51:01 2003  John Ellis  <johne@bellatlantic.net>
3245
3246         * bar_exif.c, exif.c: Added formatting utility to get the commonly
3247         used data tags in a user meaningful format, output now matches previous
3248         versions, however the Shutter speeds differ a bit, will need to
3249         check (off by one?).
3250
3251 Fri Nov  7 11:03:57 2003  John Ellis  <johne@bellatlantic.net>
3252
3253         * exif.c: Rewrite EXIF parser so that data is stored in list format,
3254         such that adding additional tags will be easy, and ExifData will not
3255         need to be touched. Very rough, human readable output for exif keys
3256         is yet to be added.
3257         * bar_exif.c: Changed to work with new exif.c, temporarily include
3258         exif.c instead of exif.h, since exif.h has not been updated yet.
3259         * src/Makefile.am: Temporarily remove exif.c from build, as bar_exif.c
3260         includes it directly.
3261
3262 Wed Nov  5 08:03:41 2003  John Ellis  <johne@bellatlantic.net>
3263
3264         * editors.c(editor_verbose_io_cb): Use count returned from read when
3265         validating/converting text.
3266
3267 Wed Nov  5 07:21:57 2003  John Ellis  <johne@bellatlantic.net>
3268
3269         * README: Updates, and converted encoding format to utf-8.
3270
3271 Wed Nov  5 06:16:57 2003  John Ellis  <johne@bellatlantic.net>
3272
3273         * cache.c, cache_maint.c, collect-io.c, dupe.c, editors.c, exif.c,
3274         filelist.c, image-load.c, main.c, rcfile.c, thumb.c, ui_bookmark.c,
3275         ui_fileops.c, ui_pathsel.c, ui_tabcomp.c: Fix up the crashes when on
3276         a system claiming to be UTF-8, but the filesystem is not UTF-8. Spew
3277         warning to user when such conditions occur. Editor command result text
3278         is now validated before use in verbose window.
3279
3280 Tue Nov  4 15:07:51 2003  John Ellis  <johne@bellatlantic.net>
3281
3282         * ui_spinner.png: Changed order of frames for smoother start..
3283
3284 Tue Nov  4 12:01:14 2003  John Ellis  <johne@bellatlantic.net>
3285
3286         * filelist.[ch]: The filter listing is now retrieved from gdk-pixbuf,
3287         so that newly installed loaders are automatically added to the filters.
3288         * preferences.c, rcfile.c: Changes for new filter keys. Changed rcfile
3289         keys from filter to filter_ext, since the values are not backward
3290         compatible. Jumping between old and new releases will reset the list.
3291
3292 Tue Nov  4 10:49:23 2003  John Ellis  <johne@bellatlantic.net>
3293
3294         * filelist.c(filter_add_defaults): Added svg format, if you have
3295         librsvg installed, chances are you have the gdkpixbuf loader too.
3296
3297 Tue Nov  4 09:46:47 2003  John Ellis  <johne@bellatlantic.net>
3298
3299         * icon_config.xpm icon_home.xpm icon_reload.xpm icon_zoom_fit.xpm
3300         icon_zoom_in.xpm icon_zoom_norm.xpm icon_zoom_out.xpm: Removed old
3301         unused icon files.
3302         * Makefile.am: Remove references to above.
3303         * layout_util.c: Really remove references to above.
3304
3305 Tue Nov  4 09:40:01 2003  John Ellis  <johne@bellatlantic.net>
3306
3307         * cache_maint.c: Added spinner to purge old/clear thumbnails dialog.
3308
3309 Tue Nov  4 09:25:03 2003  John Ellis  <johne@bellatlantic.net>
3310
3311         * Makefile.am: Build details to create ui_icons.h (inline pixbufs).
3312         * ui_spinner.[ch]: New activity spinner and icon utils.
3313         * ui_spinner.png, ui_tabcomp.png: New icon files.
3314         * ui_tabcomp.xpm: Removed, using pngs now.
3315         * ui_tabcomp.c: Use inline pixbuf data from ui_spinner.
3316         * editors.c: Added spinner to verbose window.
3317
3318 Fri Oct 31 11:34:42 2003  John Ellis  <johne@bellatlantic.net>
3319
3320         * editors.c: Include editors.h. (-Wmissing-prototypes warning)
3321         * ui_fileops.[ch]: Move sys/stat.h include to header file. (same)
3322         * utilops.c: Made file_util_unlink static. (same)
3323         * README: Updated.
3324         * po/*.po: Make distcheck touches these.
3325         * configure.in: Release 1.3.4
3326
3327 Fri Oct 31 10:57:51 2003  John Ellis  <johne@bellatlantic.net>
3328
3329         * utilops.c(file_util_safe_number): Fix mem leaks, includes using
3330         correct utility to free the list (path_list_free -> filelist_free).
3331         Also avoid sorting list more than once.
3332
3333 Fri Oct 31 10:35:34 2003  John Ellis  <johne@bellatlantic.net>
3334
3335         * editors.c(editor_command_one): Free path removed from list, fixes
3336         memory leak.
3337         * image.c(image_free): Set post buffer NULL before destroying image
3338         window, fixes mem leak.
3339         * thumb.c(thumb_loader_done_cb): Fix pixbuf leak when scaling for
3340         thumbnails [yeek! has this always been here?].
3341
3342 Sun Oct 26 06:14:07 2003  John Ellis  <johne@bellatlantic.net>
3343
3344         * README: Updates:
3345         * image.c(image_tile_render): Add hack to avoid crash in the pixbuf
3346         scalers when image window size is less than 3 in any direction.
3347         (debian BUG# 209365)
3348
3349 Sun Oct 26 03:59:45 2003  John Ellis  <johne@bellatlantic.net>
3350
3351         * cache.c, cache_main.c, collect-io.c, collect.c, dupe.c, editors.c,
3352         exif.c, filelist.[ch], image-load.c, img-view.c, info.c, layout.c,
3353         layout_image.c, layout_util.c, main.c, menu.c, pixbuf_util.c,
3354         rcfile.c, thumb.c: Fixes for utf8 <--> locale conversion, all paths
3355         are now held in utf8 strings. Paths are now converted to locale prior
3356         to use in a library function.
3357         * dnd.c: Simply make this a wrapper for the ui_bookmark.c functions.
3358         * ui_bookmark.[ch]: utf8 fixes.
3359         * ui_fileops.[ch]: utf8 fixes, added utf8 path string utils.
3360         * ui_help.c: Removed old comments no longer needed.
3361         * ui_menu.[ch]: Added menu_item_add_simple, for filenames as menu text.
3362         * ui_pathsel.c, ui_tabcomp.c: utf8 fixes.
3363         * utilops.c: utf8 fixes, also fixed broken auto rename option when
3364         copy/move a single file.
3365         * view_dir_list.c, view_dir_tree.c: utf8 fixes.
3366         * view_file_icon.c, view_file_list.c: utf8 fixes, plus drag and drop
3367         selection fixes.
3368
3369 Fri Oct 24 08:00:12 2003  John Ellis  <johne@bellatlantic.net>
3370
3371         * editors.c: Added stop button to allow aborting midway through
3372         multiple file operations.
3373         * preferences.c: Added help button for the command macros to the editor
3374         preferences tab, added credits button to the about dialog.
3375         * README: Added editors section describing macros, marked credits
3376         section to be found by about credits button.
3377         * po/POTFILES.in: Added editors.c
3378
3379 Fri Oct 24 06:16:32 2003  John Ellis  <johne@bellatlantic.net>
3380
3381         * editors.[ch]: Moved the editor command stuff here, added window to
3382         display results of a command. Window only shown when command prefixed
3383         by %v.
3384         * gqview.h, main.c: Removed above functions.
3385         * collect-table.c, collect.c, dupe.c, img-view.c, layout_image.c,
3386         layout_util.c, preferences.c, view_file_icon.c, view_file_list.c:
3387         Include editors.h.
3388         * ui_fileops.[ch]: Moved path_list_copy here.
3389
3390 Mon Oct 21 00:05:03 2003  John Ellis  <johne@bellatlantic.net>
3391
3392         * README, TODO: Updates.
3393         * po/*.po: make distcheck changes.
3394         * configure.in: Release 1.3.3
3395
3396 Mon Oct 20 10:16:12 2003  John Ellis  <johne@bellatlantic.net>
3397
3398         * preferences.c: Clean up the editor slot entry alignments, removed
3399         extra frame from inside each tab.
3400
3401 Mon Oct 20 08:26:05 2003  John Ellis  <johne@bellatlantic.net>
3402
3403         * gqview.h, main.c, globals.c, rcfile.c, preferences.c: Make the number
3404         of editor slots adjustable by a define, instead of hard coding it
3405         everywhere. Increase the slot count to 10. Add lossless jpeg rotation
3406         to the defaults (uses jpegtran).
3407         * collect.c, dupe.c, img-view.c, layout_image.c, layout_util.c,
3408         menu.c: Connect the ctrl+9/0 keys to the new 9 and 10 editor slots.
3409         * view_file_icon.c: Fix loss of selection of changed files on refresh.
3410         * README: Updates.
3411
3412 Sat Oct 18 21:06:10 2003  John Ellis  <johne@bellatlantic.net>
3413
3414         * exif.[ch]: Flash display patch to work with more cameras, based on
3415         gqview-devel post by Eric Swalens <eric.swalens@easynet.be>
3416         * de.po: Updated German translation,
3417         submitted by Unseld@t-online.de (Rainer Unseld).
3418         * es.po: Updated Spanish translation,
3419         submitted by Ariel Fermani <the_end@bbs.frc.utn.edu.ar>
3420         * preferences.c: Some cleanup fo duplicated code, set the options
3421         insensitive that can be disabled by another.
3422         * view_dir_list.c: Added the '.' folder back so that users can drop
3423         images into the current path with dnd.
3424         * dupes.c: Added ability to select all group 1 (parent) and all
3425         group 2 (child) duplicates. Very handy when comparing two file sets.
3426         * info.c: Make the properties window remember its size when expanded.
3427         * layout_util.c(layout_key_press_cb): Small fix.
3428         * layout.c(layout_selection_list): Return active image when in
3429         collection view mode.
3430
3431 Sat Oct 18 12:09:35 2003  John Ellis  <johne@bellatlantic.net>
3432
3433         * utilops.c: Fix incorrect test for file_util_unlink return value.
3434
3435 Sat Oct 18 04:02:56 2003  John Ellis  <johne@bellatlantic.net>
3436
3437         * utilops.c: Added debug printf.
3438         * README: Updated changes list.
3439
3440 Sat Oct 18 03:01:40 2003  John Ellis  <johne@bellatlantic.net>
3441
3442         * globals.c, gqview.h, main.c, preferences.c, rcfile.c, utilops.[ch]:
3443         Added a safe delete feature (trash folder), location and max size can
3444         be set in preferences. By default trash is off (normal delete). Let's
3445         just say the developer wishes he had the safe delete option only a
3446         few hours ago...
3447         * layout.c, view_file_icon.[ch], view_file_list.[ch]: Make the file
3448         views return if they were affected by the maintenance call. Use this
3449         info when resetting the autorefresh time stamp for the layout.
3450
3451 Fri Oct 17 23:53:13 2003  John Ellis  <johne@bellatlantic.net>
3452
3453         * dupe.c(dupe_item_set_path): Correctly update the lists when the
3454         second list is enabled.
3455
3456 Fri Oct 17 20:04:54 2003  John Ellis  <johne@bellatlantic.net>
3457
3458         * image.c, typedefs.h: When read ahead is enabled, also buffer the
3459         previous image.
3460
3461 Fri Oct 17 19:11:02 2003  John Ellis  <johne@bellatlantic.net>
3462
3463         * dupe.c, similar.c: Moved the alternate enabled check to similar.c, so
3464         that there is only one place to check for it.
3465
3466 Fri Oct 17 08:59:57 2003  John Ellis  <johne@bellatlantic.net>
3467
3468         * cache.[ch], dupe.c, main.c, similar.[ch]: Changes to the alternate
3469         'algorithm' layout to make adjustments easier (only from similar.c).
3470
3471 Thu Oct 16 21:40:45 2003  John Ellis  <johne@bellatlantic.net>
3472
3473         * dupe.c: Fixed up the compare two file sets option, results now
3474         include which list the image is from.
3475
3476 Thu Oct 16 20:48:43 2003  John Ellis  <johne@bellatlantic.net>
3477
3478         * dupe.c: Fixups, and make item removal work.
3479
3480 Thu Oct 16 01:37:38 2003  John Ellis  <johne@bellatlantic.net>
3481
3482         * dupe.c: Added debug thumbprint window to display what is going
3483         on with the similarity thumbprints.
3484
3485 Thu Oct 16 00:23:33 2003  John Ellis  <johne@bellatlantic.net>
3486
3487         * dupe.c: More fixes for sort/group by rank. Still need to work on
3488         the removal and second list functions.
3489
3490 Wed Oct 15 20:20:29 2003  John Ellis  <johne@bellatlantic.net>
3491
3492         * dupe.[ch]: Major reorganization, started change to rank based
3493         sorting and grouping of matches.
3494
3495 Wed Oct 15 02:27:26 2003  John Ellis  <johne@bellatlantic.net>
3496
3497         * cache.c: Fixups to string comparison logic (eek!).
3498         * similar.c: Added (unused) utility to stretch the contrast of a
3499         color channel, may use this for the grey mode.
3500
3501 Tue Oct 14 23:15:19 2003  John Ellis  <johne@bellatlantic.net>
3502
3503         * cache.[ch], dupe.c, similar.[ch]: Added experimental greyscale
3504         similarity algorithm.
3505         * main.c: Added command line option --greysims to enable the greyscale
3506         algorithm.
3507
3508 Fri Oct  3 20:03:40 2003  John Ellis  <johne@bellatlantic.net>
3509
3510         * collect.c, filelist.c, preferences.c, rcfile.c, view_dir_tree.c,
3511         view_file_list.c: Made case sensitive sorting optional.
3512         * ui_fileops.[ch]: Add case sensitive sort option utility.
3513         * ui_pathsel.c, ui_tabcomp.c: Support case sensitive sort option in
3514         file dialogs.
3515
3516 Fri Oct  3 18:40:52 2003  John Ellis  <johne@bellatlantic.net>
3517
3518         * collect.c, filelist.c, ui_pathsel.c, ui_tabcomp.c: Changed sorting
3519         of filenames to be case insensitive.
3520         * view_dir_tree.c: Ditto, but required a bit more than simply changing
3521         strcmp to strcasecmp, sorting was using the internal compare of clist.
3522
3523 Fri Sep 26 20:53:27 2003  John Ellis  <johne@bellatlantic.net>
3524
3525         * utilops.c: Added image preview panes for the delete and rename
3526         dialogs.
3527
3528 Fri Sep 26 18:35:01 2003  John Ellis  <johne@bellatlantic.net>
3529
3530         * bar_sort.c: use GtkToolbar for bottom buttons. For undo, refresh the
3531         file list before selecting the undone source image so that the
3532         selection matches the viewed image.
3533
3534 Fri Sep 26 18:22:33 2003  John Ellis  <johne@bellatlantic.net>
3535
3536         * bar_exif.c: Added sizing arrows to this sidebar.
3537         * bar_sort.c: Added (1 level) undo to the sort manager.
3538
3539 Fri Sep 26 15:40:45 2003  John Ellis  <johne@bellatlantic.net>
3540
3541         * image.c (image_size_sync): Remove redundant image redraw causing
3542         flicker when going fullscreen. Still flickers  on other ops though.
3543
3544 Mon Jul 28 11:41:26 2003  John Ellis  <johne@bellatlantic.net>
3545
3546         * globals.c, gqview.h, preferences.c, rcfile.c: Added option to disable
3547         the auto update features (update_on_time_change).
3548         * image.c, layout.c: Honor the update_on_time_change option.
3549
3550 Fri Jun 13 22:42:29 2003  John Ellis  <johne@bellatlantic.net>
3551
3552         * nl.po: Updated Dutch translation,
3553         submitted by Tino Meinen <a.t.meinen@chello.nl>
3554         * es.po: Updates Spanish translation,
3555         submitted by Ariel Fermani <the_end@bbs.frc.utn.edu.ar>
3556         * id.po: Added Indonesian translation,
3557         submitted by Tedi Heriyanto <tedi_h@gmx.net>
3558         * bg.po: Added Bulgarian translation,
3559         submitted by Vladimir Petrov <vladux@mail.bg>
3560         * README: Updates.
3561         * configure.in: Release 1.3.2
3562
3563 Fri Jun 13 22:05:24 2003  John Ellis  <johne@bellatlantic.net>
3564
3565         * bar_sort.c, ui_bookmark.c: Hook up enter as default to ok button.
3566         * ui_tabcomp.c: When enter signal is not connected do not claim
3567         the keypress.
3568         * README: Updates.
3569
3570 Fri Jun 13 17:30:29 2003  John Ellis  <johne@bellatlantic.net>
3571
3572         * layout.c: Increased zoom label width.
3573         * layout_util.c: Added separator in view menu for sidebar items.
3574
3575 Fri Jun 13 17:10:02 2003  John Ellis  <johne@bellatlantic.net>
3576
3577         * bar_sort.[ch]: Moved the sort manager stuff here (from manager.c).
3578         * bar_exif.[ch]: Moved the exif display here from info.c and made it
3579         more generic, also to be used in a sidebar format.
3580         * manager.[ch]: Removed these files (see bar_sort).
3581         * exif.c: Fixed major file descriptor leak in exif reader.
3582         * info.c: Use new exif display utlity in bar_exif.c.
3583         * layout.c: New exif sidebar, updates to sort sidebar.
3584         * layout_image.c: Hook sidebar into image changes.
3585         * layout_util.[ch]: Updates to sidebar management, sidebar namespace
3586         changes. Added exif sidebar.
3587         * typedefs.h: Sidebar items added to LayoutWindow struct.
3588         * po/POTFILES.in: Updated for new/removed files.
3589
3590 Fri Jun 13 14:05:47 2003  John Ellis  <johne@bellatlantic.net>
3591
3592         * info.c: Apply patch to fix display of exif exposure time,
3593         * po/fi.po: Update translated string.
3594         both submitted by Tuomo Kohvakka <takohvak@cc.jyu.fi>.
3595
3596 Thu Jun 12 21:10:38 2003  John Ellis  <johne@bellatlantic.net>
3597
3598         * manager.[ch]: New files for sort manager utility.
3599         * layout.c, layout_util.[ch], typedefs.h: Incorporate sort manager.
3600         * po/POTFILE.in: Added manager.c
3601
3602 Thu Jun 12 17:23:28 2003  John Ellis  <johne@bellatlantic.net>
3603
3604         * main.c (setup_default_options): Register the default bookmarks.
3605
3606 Fri May  9 15:34:32 2003  John Ellis  <johne@bellatlantic.net>
3607
3608         * image.[ch], typedefs.h: Added auto refresh utilities.
3609         * fullscreen.c: Honor auto refresh setting in full screen.
3610         * img-view.c, layout_image.c: Set auto image refresh enabled.
3611
3612 Tue Apr  1 18:35:36 2003  John Ellis  <johne@bellatlantic.net>
3613
3614         * ui_pathsel.c: Fixed keyboard popup menu placement, removed excess
3615         columns in the path selection table when used as a directory chooser.
3616
3617 Tue Apr  1 17:29:10 2003  John Ellis  <johne@bellatlantic.net>
3618
3619         * ui_bookmark.[ch]: New files, contains new bookmark utils and moved
3620         the history list handling here.
3621         * ui_tree_edit.[ch]: New files, adds treeview version of the cell text
3622         editing of ui_clist_edit.[ch].
3623         * ui_pathsel.c: Replace clists with treeview/model. Added bookmarks,
3624         allow drag and drop from the lists. Padding fixes.
3625         * ui_utildlg.c: Packing and padding fixes.
3626         * ui_tabcomp.[ch]: Fixes from SLIK.
3627         * main.c, layout.c, layout_util.c: Include ui_bookmark.h, as this is
3628         the new location fo the history_list utils.
3629
3630 Sun Mar  9 14:41:51 2003  John Ellis  <johne@bellatlantic.net>
3631
3632         * exif.c: Changed the #include for stdint.h to inttypes.h, as some
3633         libcs do not seem to have the former (solaris 9).
3634
3635 Mon Mar  3 20:37:22 2003  John Ellis  <johne@bellatlantic.net>
3636
3637         * README: Updates.
3638         * po/*.po: distcheck touches these.
3639         * po/POTFILES.in: Added exif.c
3640         * configure.in: Release 1.3.1
3641
3642 Mon Mar  3 19:40:08 2003  John Ellis  <johne@bellatlantic.net>
3643
3644         * utilops.c: Further fixes for copy/move overwrite dialogs.
3645         * po/es.po: Updated Spanish translation,
3646         submitted by Ariel Fermani <the_end@bbs.frc.utn.edu.ar>.
3647         * po/fr.po: Updated French translation,
3648         submitted by Eric Lassauge <lassauge@mail.dotcom.fr>.
3649         * po/vi.po: Added Vietnamese translation,
3650         submitted by pclouds <pclouds@gmx.net>.
3651         * configure.in(ALL_LINGUAS): Added vi (Vietnamese).
3652         * README: Updated a few credits.
3653
3654 Mon Mar  3 18:25:25 2003  John Ellis  <johne@bellatlantic.net>
3655
3656         * utilops.c: Fixed the skip/skip_all logic in the copy/move overwrite
3657         dialogs.
3658
3659 Mon Mar  3 15:13:36 2003  John Ellis  <johne@bellatlantic.net>
3660
3661         * info.c, exif.c: Marked the exif strings for translation, they will be
3662         the same even in the event of exif API rewrite.
3663
3664 Mon Mar  3 14:54:03 2003  John Ellis  <johne@bellatlantic.net>
3665
3666         * info.c: Exif fixups,
3667         in patch from Eric Swalens <eric.swalens@easynet.be>.
3668
3669 Mon Mar  3 14:10:54 2003  John Ellis  <johne@bellatlantic.net>
3670
3671         * main.c: Bind the textdomain to the UTF-8 codeset, fixes broken
3672         menus and strings display for the translations.
3673         * preferences.c: Moved to GtkListStore/TreeView for the filter
3674         listing, based on patch by pclouds <pclouds@users.sourceforge.net>.
3675
3676 Sun Feb 23 10:45:13 2003  John Ellis  <johne@bellatlantic.net>
3677
3678         * layout.c: Removed tooltip form the path entry.
3679         * layout_util.c(layout_key_press_cb): When the path entry has the
3680         focus, try sending it the keypress event first. This fixes the menu
3681         accelorators from having precedence over input to the entry.
3682
3683 Thu Feb 13 12:27:26 2003  John Ellis  <johne@bellatlantic.net>
3684
3685         * image.c: Fixed flicker when the image focus state changes.
3686
3687 Tue Feb  4 15:41:22 2003  John Ellis  <johne@bellatlantic.net>
3688
3689         * preferences.c: Added close button to about window.
3690         * ui_help.c: Changed close button to a stock button.
3691
3692 Tue Feb  4 09:17:09 2003  John Ellis  <johne@bellatlantic.net>
3693
3694         * README: Updates.
3695         * configure.in: Release 1.3.0
3696
3697 Tue Feb  4 08:49:58 2003  John Ellis  <johne@bellatlantic.net>
3698
3699         * README, ChangeLog: Updates, typos.
3700         * fr.po: Updated french translation,
3701         submitted by Nicolas Boos <nicolas.boos@wanadoo.fr>
3702         * exif.[ch]: Removed comment babble.
3703         * preferences.c: Marked about window title string for translation,
3704         fixed a label indent.
3705
3706 Tue Feb  4 07:57:14 2003  John Ellis  <johne@bellatlantic.net>
3707
3708         * view_dir_tree.c: Set the tree view to GTK_SELECTION_SINGLE, so that
3709         keyboard users are not stuck viewing every single path between where
3710         they are and where they want to be.
3711         * view_file_list.c: Pass a valid row when highlighting a context menu
3712         key press.
3713
3714 Tue Feb  4 07:32:43 2003  John Ellis  <johne@bellatlantic.net>
3715
3716         * collect-table.c, dupe.c, img-view.c, layout_image.[ch],
3717         layout_util.c, view_dir_list.c, view_dir_tree.c, view_file_icon.c,
3718         view_file_list.c: Hooked up context menu key, to show right click
3719         menus, F10 will also work for the collection, dupes, and image windows.
3720         Also now explicitely destroy pop up menus when the underlying view is
3721         destroyed, since the menu does not go away when menu items are toggled
3722         with the spacebar (no selection done is sent in this case).
3723         * ui_menu.[ch](popup_position_clamp): Given a GtkMenu, ensure the
3724         passed coordinates will position the menu so that it is entirely on
3725         screen, adjusting the x,y values if needed.
3726
3727 Sat Feb  1 23:10:23 2003  John Ellis  <johne@bellatlantic.net>
3728
3729         * TODO: Updates.
3730         * info.c: Some exif display cleanups.
3731
3732 Fri Jan 31 04:01:24 2003  John Ellis  <johne@bellatlantic.net>
3733
3734         * exif.[ch]: Added a util, some cleanup.
3735         * info.c: Fixed up exif info display, added missing fields. Also hooked
3736         up mouse buttons/wheel on the image for moving within the image list.
3737         * layout.c: Added temporary tooltip warning beta users of brokenness.
3738
3739 Wed Jan 29 06:29:15 2003  John Ellis  <johne@bellatlantic.net>
3740
3741         * ui_menu.c, ui_pathsel.c, ui_tabcomp.c: Merges from SLIK 0.13.0
3742
3743 Wed Jan 29 06:05:36 2003  John Ellis  <johne@bellatlantic.net>
3744
3745         * dupe.c, view_file_icon.c, view_file_list.c: When mulitple files
3746         are selected, pass entire selection to the new view window.
3747
3748 Wed Jan 29 05:04:32 2003  John Ellis  <johne@bellatlantic.net>
3749
3750         * exif.[ch]: New files for EXIF support.
3751         * Makefile.am: Added exif files, above.
3752         * info.c: Added Exif properties tab, missing a few fields though.
3753         * main.c: Enabled startup beta warning.
3754
3755 Wed Jan 29 02:15:00 2003  John Ellis  <johne@bellatlantic.net>
3756
3757         * info.c: Use stock buttons/icons for file info window.
3758         * layout_util.[ch]: Use stock icons for the toolbar where available.
3759         * preferences.c: Update copyright in about.
3760         * po/*.po: Updated strings for the new copyright year.
3761
3762 Wed Jan 29 00:58:25 2003  John Ellis  <johne@bellatlantic.net>
3763
3764         * collect-dlg.c, collect-table.c, collect.c, dupe.c, img-view.c,
3765         layout.c, layout_image.c, layout_util.c, main.c, preferences.c,
3766         view_dir_list.c, view_dir_tree.c, view_file_icon.c, view_file_list.c:
3767         Added stock icons for menu items and dialog buttons.
3768         * utilops.c: Same, also fixed big where skipping a file during
3769         copy/move operations, when the source and dest are the same, does not
3770         actually skip to the next file.
3771         * ui_menu.[ch], ui_pathsel.c, ui_utildlg.[ch]: Added gtk stock menu
3772         and dialog button support.
3773
3774 Tue Jan 28 22:06:50 2003  John Ellis  <johne@bellatlantic.net>
3775
3776         * globals.c, layout.c: Fix default window/pane values to match the
3777         slightly larger padding of gtk2 buttons. Fixed the sort popup menu.
3778         * image.[ch], img-view.c, layout_image.c, typedefs.h: Fix for gtk2's
3779         new support of scroll_event on the mouse wheel.
3780         * ui_help.c: Use a mark to scroll, since scroll to iter does not work
3781         when the textview is not yet visible.
3782         * view_dir_tree.c: Increase folder tree view row height by 1.
3783         * gqview.spec.in: Remove gdk-pixbuf requires, up gtk to gtk2 >= 2.0.1.
3784
3785 Tue Jan 28 19:57:46 2003  John Ellis  <johne@bellatlantic.net>
3786
3787         * [GTK2 port]
3788         * merged in latest release.
3789
3790 Thu Jan 23 23:43:28 2003  John Ellis  <johne@bellatlantic.net>
3791
3792         * README, TODO: Updates.
3793         * po/*.po: Distcheck always touches these.
3794         * configure.in: Release 1.2.1
3795
3796 Thu Jan 23 23:06:57 2003  John Ellis  <johne@bellatlantic.net>
3797
3798         * image.c: Added file chunk size throttling when reading image files
3799         larger than 1 MB (current throttle is 4x).
3800         * ru.po: Updated Russian translation,
3801         submitted by Oleg Andryuschenko <oandr@itek.com.ua>
3802         * fr.po: Updated French translation,
3803         submitted by Pascal Bleser <pascal.bleser@atosorigin.com>
3804         * ja.po: Updated Japanese translation, submitted
3805         by Ryan Murray on behalf of Junichi Uekawa <dancer@debian.org>
3806
3807 Thu Jan 23 22:48:56 2003  John Ellis  <johne@bellatlantic.net>
3808
3809         * README, TODO: Updates.
3810         * globals.c, preferences.c, rcfile.c: Removed the 'place dialogs under
3811         mouse' option from the general user. Can be enabled by editing the
3812         gqviewrc file, see README. The option is also reset to it's new default
3813         on upgrade by renaming rc key to display_dialogs_under_mouse.
3814         * layout_util.c: The editor slots now use the current file selection
3815         when selected from the main menu, instead of only the viewed image.
3816
3817 Tue Jan 14 21:41:49 2003  John Ellis  <johne@bellatlantic.net>
3818
3819         * view_file_icon.c(vficon_sync): Properly remove _all_ rows that are
3820         no longer valid when updating the icon view. FIXES bug causing remnant
3821         images to be displayed after delete/move operations.
3822
3823 Tue Jan 14 21:53:36 2003  John Ellis  <johne@bellatlantic.net>
3824
3825         * [GTK2 port]
3826         * merged in 1.2.0 stable.
3827
3828 Thu Dec 12 21:36:51 2002  John Ellis  <johne@bellatlantic.net>
3829
3830         * README, TODO: Updates.
3831         * configure.in: Release 1.2.0
3832
3833 Thu Dec 12 21:17:13 2002  John Ellis  <johne@bellatlantic.net>
3834
3835         * po/de.po: Updated German translation,
3836         submitted by Thomas Klausner <wiz@danbala.tuwien.ac.at>
3837         * po/fi.po: Updated Finnish translation,
3838         submitted by Lauri Nurmi <lanurmi@iki.fi>
3839         * po/cs.po: Updated Czech translation,
3840         submitted by Michal Bukovjan <bukm@centrum.cz>
3841
3842 Thu Nov 14 17:02:43 2002  John Ellis  <johne@bellatlantic.net>
3843
3844         * configure.in: Set the locale path to that of datadir instead of the
3845         prefix.
3846         * gqview.spec.in: Ditto.
3847
3848 Tue Oct 15 14:44:45 2002  John Ellis  <johne@bellatlantic.net>
3849
3850         * [GTK2 port]
3851         * merged in latest codebase.
3852         * src/Makefile.am: Added X_LIBS to ld flags (for -LXinerama to work).
3853         * ui_tabcomp.c: Fixed merge conflict dealing with (gdk_)time stuff.
3854         * view_file_icon.c(tip_schedule_cb): In GTK 2, window_has_focus has
3855         been renamed to has_focus in the GtkWindow structure.
3856
3857 Thu Sep 26 10:25:01 2002  John Ellis  <johne@bellatlantic.net>
3858
3859         * po/sl.po,tr.po: Fixe for fuzzy header and/or incorrect encoding name.
3860         * po/*.po: Make distcheck touches these.
3861         * README: Updated.
3862         * configure.in: Release 1.1.6.
3863
3864 Thu Sep 26 09:36:50 2002  John Ellis  <johne@bellatlantic.net>
3865
3866         * po/et.po: Updated Estonian translation,
3867         submitted by Ilmar Kerm <ikerm@hot.ee>.
3868         * po/fi.po: Updated Finnish translation,
3869         submitted by Lauri Nurmi <lanurmi@iki.fi>.
3870         * po/fr.po: Updated French translation,
3871         submitted by Eric Lassauge <lassauge@mail.dotcom.fr>
3872         * po/ro.po: Added Romanian translation,
3873         submitted by Harald Ersch <hersch@romatsa.ro>.
3874         * configure.in(ALL_LINGUAS): Added tro.
3875
3876 Wed Sep 25 11:52:13 2002  John Ellis  <johne@bellatlantic.net>
3877
3878         * info.c: Fixed display of arrow buttons in properties window, some
3879         themes do not work with GTK_SHADOW_NONE...
3880
3881 Wed Sep 25 11:22:49 2002  John Ellis  <johne@bellatlantic.net>
3882
3883         * globals.c: Thumbnail caching is now _on_ by default.
3884         * layout.c, layout_util.c: The list and icon views are now a radio
3885         group in the menus. Now Ctrl-L display list view and Ctrl-I displays
3886         the icon view. Also grouped the related file view options in the menus.
3887         * README: Updates to the key shortcuts.
3888
3889 Tue Sep 24 16:46:10 2002  John Ellis  <johne@bellatlantic.net>
3890
3891         * view_file_icon.c: Do not pop up the filename tooltip if the window
3892         does not have the focus (fixes popping up when in fullscreen).
3893         * layout_image.c: The window and tools window should always be
3894         sensitive, even in fullscreen, since some users have Xinerama and could
3895         therefore still be able to use the main/tools window.
3896
3897 Tue Sep 24 16:14:22 2002  John Ellis  <johne@bellatlantic.net>
3898
3899         * image.c, img-view.c, layout_image.c, layout_util.c: Fixed window
3900         title to remove the " - " part when no image is viewed. Also made the
3901         exit using control-Q consitent, hooked up control-P for image
3902         properties, and fixed it to drop out of full screen when showing the
3903         image properties window. (note that fullscreen is not intended for
3904         'file management' use, therefore new windows will not work correctly
3905         when displayed from fullscreen, so the mode is exited.)
3906         * collect.c, dups.c: Hooked up Control-P to properties.
3907         * README: Documented Ctrl-P properties window shortcut.
3908
3909 Tue Sep 24 14:20:15 2002  John Ellis  <johne@bellatlantic.net>
3910
3911         * ui_pathsel.c, ui_tabcomp.c, ui_utildlg.c: Fixed merged from SLIK.
3912
3913 Mon Sep 23 16:51:28 2002  John Ellis  <johne@bellatlantic.net>
3914
3915         * fileutils.c(filters_add_default): Removed pcx (not supported by
3916         gdk-pixbuf), and added raster (.ras) to default filter group.
3917
3918 Sat Sep 21 08:02:22 2002  John Ellis  <johne@bellatlantic.net>
3919
3920         * thumb.c: Broken images are now marked with a 0 byte thumb file, so
3921         that regeneration is not reattempted until the timestamp changes.
3922         Also added (better) debugging output for thumb code.
3923
3924 Sat Sep 21 06:45:28 2002  John Ellis  <johne@bellatlantic.net>
3925
3926         * view_file_icon.c: Syn the view in an idle call when removing multiple
3927         files, for speed/clean view.
3928         * typedefs.h(ViewFileIcon): Added sync_idle_id var, for above.
3929
3930 Sat Sep 21 06:17:47 2002  John Ellis  <johne@bellatlantic.net>
3931
3932         * view_dir_list.c: Removed '.' from the dir list, and added a 'up to
3933         parent' popup menu item in it's place.
3934         * view_dir_tree.c: Added 'up to parent' menu item, for consistency.
3935
3936 Fri Sep 20 11:46:57 2002  John Ellis  <johne@bellatlantic.net>
3937
3938         * image.c: Retain zoom setting even when no image is present. Also
3939         fixed string on no image from returning infinite zoom text.
3940
3941 Fri Sep 20 11:24:24 2002  John Ellis  <johne@bellatlantic.net>
3942
3943         * rcfile.c: Fixed editing commands to allow quotes in the command.
3944         * main.c: Use %f in some example (default) commands.
3945
3946 Fri Sep 20 11:06:56 2002  John Ellis  <johne@bellatlantic.net>
3947
3948         * filelist.[ch]: Reimplemented the file filter lists.
3949         * globals.c, gqview.h: Removed global vars for specific file types.
3950         * main.c: Setup new file filters.
3951         * preferences.c: Added new file filter editor, also added missing
3952         cancel button to clear thumbnails confirm dialog.
3953
3954 Sun Aug  4 03:48:52 2002  John Ellis  <johne@bellatlantic.net>
3955
3956         * view_file_icon.c(vficon_maint_removed): If the removed file is the 1
3957         actively being thumbnailed, set the thumbnail pointer to NULL so that
3958         the thumb routines will ignore this cycle (instead of trying to use it
3959         along with the freed memory!).
3960         * view_file_list.c(vflist_maint_removed): Ditto.
3961
3962 Wed Jul  3 08:08:41 2002  John Ellis  <johne@bellatlantic.net>
3963
3964         * Makefile.am, configure.in: Changes for upgrade to gettext 0.11.1
3965         * autogen.sh: More gettextize command line options.
3966         * po/Makevars: New file for the new gettext - MANY cursing and
3967         complaint lines removed from ChangeLog that could have been simply
3968         avoided by adding upgrade notes to the gettext README!
3969         * po/*.po: Make distcheck with new gettext did this, plus a few fixes
3970         that the new gettext complains about (and fails on).
3971
3972 Tue Jul  2 08:41:15 2002  John Ellis  <johne@bellatlantic.net>
3973
3974         * main.c: Removed printing of beta warning message at startup.
3975         * README: Updates.
3976         * po/*.po: make distcheck touches these.
3977         * configure.in: Release 1.1.5
3978
3979 Tue Jul  2 07:49:26 2002  John Ellis  <johne@bellatlantic.net>
3980
3981         * po/et.po: Updated Estonian translation,
3982         submitted by Ilmar Kerm <ikerm@hot.ee>
3983         * po/uk.po: Updated Ukrainian translation,
3984         submitted by Volodymyr M. Lisivka <lvm@mystery.lviv.net>
3985
3986 Tue Jul  2 07:28:24 2002  John Ellis  <johne@bellatlantic.net>
3987
3988         * layout.c: When syncing window paths, pass full image path to the file
3989         list for correct scroll point.
3990         * view_file_list.c: Fixed refresh causing odd scroll point jumping.
3991         * view_file_icon.c: 0 -> NULL pointer fix, plus scroll after the clist
3992         is thawed.
3993
3994 Fri Jun 14 16:19:41 2002  John Ellis  <johne@bellatlantic.net>
3995
3996         * ui_tabcomp.c, ui_pathsel.c: Set gtk_combo to use case sensisitive
3997         compares for the directory/filter history lists.
3998
3999 Sun Jun  9 23:27:07 2002  John Ellis  <johne@bellatlantic.net>
4000
4001         * image.c(image_change_from_image): Maintain scroll offset. 
4002
4003 Sun Jun  9 23:03:08 2002  John Ellis  <johne@bellatlantic.net>
4004
4005         * ui_utildlg.[ch]: Fixed addition of cancel button in a way that
4006         resulted in the window resizing onscreen when first showed.
4007         * utilops.c: Added a "Skip all" button to the move and copy overwrite
4008         dialog.
4009
4010 Sun Jun  9 21:49:09 2002  John Ellis  <johne@bellatlantic.net>
4011
4012         * globals.c, gqview.h, layout.c, rcfile.c: Added lazy_image_sync for
4013         classic behavior of changing the path not effecting the displayed
4014         image. The new behavior is now to view the first image in the new
4015         path (many users wanted this - to enable old behavior set
4016         lazy_image_sync to true in gqviewrc).
4017         * main.c(main): Fixes to work with new non lazy image changing.
4018
4019 Sun Jun  9 20:26:47 2002  John Ellis  <johne@bellatlantic.net>
4020
4021         * layout_image.c: Set the main window (and tools) insensitive when
4022         showing full screen.
4023         * view_file_icon.c(tip_schedule_cb): Do not show the tooltip when the
4024         top level window is insensitive (fixes bug that tooltip can show up
4025         when switching to fullscreen).
4026         * view_dir_tree.c(vdtree_set_path): Expand the node of the new path to
4027         display the subdirectories.
4028
4029 Sun Jun  9 19:30:07 2002  John Ellis  <johne@bellatlantic.net>
4030
4031         * layout.c: Fixed broken 'fit window to image when tools float' option
4032         for the main window. Also fixed pane positioning bug causing panes to
4033         move to 1,1 when user holds down h or f to hide or float the tools.
4034
4035 Wed Jun  5 19:38:40 2002  John Ellis  <johne@bellatlantic.net>
4036
4037         * configure.in: Added test for Xinerama.
4038         * fullscreen.c: Added Xinerama support based on patch from
4039         "Jörg Mensmann" <joerg.mensmann@gmx.de>
4040         (untested - do not have Xinerama display - NVidia's twinview does not
4041         support it with tv out as the second device - crash :/ )
4042         * Makefile.am(LD_ADD): Added Xinerama lib var.
4043         * view_file_list.c: Some crash fixes when refreshing the file view. Of
4044         note make sure nothing is selected until the clist is completely
4045         synced, and guard against vflist_index_get_data returning NULL,
4046         although that should no longer happen during the refresh.
4047
4048 Fri May 24 18:39:03 2002  John Ellis  <johne@bellatlantic.net>
4049
4050         * layout.c(layout_style_set): NULL widget pointers before destroying
4051         them, as the group box destruction will cause attempts to update
4052         widgets that may already be flagged for destruction.
4053
4054 Tue May 14 19:20:48 2002  John Ellis  <johne@bellatlantic.net>
4055
4056         * info.c: Added drag and drop support to info window (as source only).
4057
4058 Tue May 14 18:59:12 2002  John Ellis  <johne@bellatlantic.net>
4059
4060         * layout_config.c: Made the window layout selection look better.
4061
4062 Wed May  1 21:28:55 2002  John Ellis  <johne@bellatlantic.net>
4063
4064         * README, TODO: Updated.
4065         * po/*.po: Make distcheck always touches these.
4066         * configure.in: Release 1.1.4
4067
4068 Wed May  1 21:04:10 2002  John Ellis  <johne@bellatlantic.net>
4069
4070         * layout.c: Fixed delete event signal handler parameters (oops), and
4071         unref the gtk_tooltips on window close to avoid leaking them.
4072         * layout_util.[ch]: Added new window menu item to create another main
4073         window, along with the companion close window menu item.
4074         * README: Updates.
4075
4076 Wed May  1 19:52:58 2002  John Ellis  <johne@bellatlantic.net>
4077
4078         * img-view.[ch]: Added maintenance support for deleted/moved files.
4079         * utilops.c: Hooked up the new img-view maintenance functions (above).
4080
4081 Wed May  1 19:18:04 2002  John Ellis  <johne@bellatlantic.net>
4082
4083         * dnd.[ch]: Removed image specific dnd functions (moved to img-view.c,
4084         as that is the only place that used them).
4085         * img-view.c: Dropping a list a of files onto the window now remembers
4086         the entire list, they can be navigated as in the main window and used
4087         to start a slideshow for that window. Dropped directories also pop up
4088         a menu requesting the actions, similar to the duplicates and
4089         collection window drag and drop stuff.
4090         * img-view.h: Added view_window_new_from_list.
4091
4092 Wed May  1 16:45:22 2002  John Ellis  <johne@bellatlantic.net>
4093
4094         * image.c(image_zoom_adjust_real): Removed the rounding hack when
4095         incrementing the zoom from the 'fit to window' (zoom == 0.0) state. It
4096         was a broken attempt to clamp the zoom to the increment size, which,
4097         upon further review is really just unexpected behavior and breaks
4098         when the increment size is larger than the resulting fit window scale.
4099         (surprised no one saw this earlier, it has been this way since pre 1.0)
4100         * preferences.c(zoom_increment_cb): Fix for converting float to int.
4101
4102 Mon Apr 29 22:04:56 2002  John Ellis  <johne@bellatlantic.net>
4103
4104         * utilops.c: Added the ability to auto-rename files numerically from
4105         within the rename (multiple) files dialog.
4106
4107 Mon Apr 29 18:05:59 2002  John Ellis  <johne@bellatlantic.net>
4108
4109         * info.c: Added display of image transparency (yes or no).
4110         * layout_image.c(layout_image_maint_removed): Move to the next closest
4111         image within a collection when deleting files, and a collection member
4112         is the actively viewed image.
4113         * view_file_icon.c, view_file_list.c: In the maintenance removed utils
4114         consider that the viewed image may be a collection member.
4115
4116 Mon Apr 29 16:18:13 2002  John Ellis  <johne@bellatlantic.net>
4117
4118         * main.c: Added support of %f escape to insert filenames anywhere
4119         within the editor command line.
4120         * rcfile.c(save_options): Remove brain dead fprintf that could result
4121         in writing random memory to the config file by simply specifying an
4122         printf format escape in an editor slot (oops).
4123
4124 Mon Apr 29 15:12:02 2002  John Ellis  <johne@bellatlantic.net>
4125
4126         * [GTK2 port]
4127         * image.c: Changed focus drawing a bit to remove the frame when the
4128         focus is active, and removed some crufty #if 0 sections.
4129         * view_file_icon.c: Grab the focus for the clist on a button 1 press.
4130
4131 Fri Apr 26 00:32:59 2002  John Ellis  <johne@bellatlantic.net>
4132
4133         * [GTK2 port]
4134         * collect-table.c: Fixes for removal of gtk_widget_popup.
4135         * dupe.c: Fixes for removal of gdk_time_get.
4136         * image-load.c: Fixes for pixbuf_loader castings, and gdk_pixbuf...
4137         * image.c: Fixes to find size of a pixmap, focus drawing, and
4138         gdk_pixbuf_(un_)referencing.
4139         * layout.c: Fixes for gdk_time_get and remove setting of paned handle
4140         size.
4141         * main.c: gdk_pixbuf_new_from_file now has a gerror parameter, and the
4142         gtk_item_factory_dump_rc plus friends seem to be gone, so disabled it.
4143         * preferences.c: Fixes button box spacing and about label justify.
4144         * ui_help.c, ui_tabcomp.c, ui_utildlg.c: Fixes needed copied from the
4145         slik GTK2 port.
4146         * view_dir_list.c: Fixes for pulling the GdkFont from a style.
4147         * view_file_icon.c: Fixes for gtk_widget_popup removal and to return
4148         values so that drag and drop works.
4149         * view_file_list.c: Fixes for pulling the GdkFont from a style.
4150         * configure.in: Use new gtk2 checks.
4151         * src/Makefile.am: Removed gdk-pixbuf flags as it is now part of gtk2.
4152
4153 Fri Apr 26 00:30:02 2002  John Ellis  <johne@bellatlantic.net>
4154
4155         * img-view.c, layout_util.c, preferences.c, view_dir_list.c,
4156         view_file_icon.c, view_file_list.c: Proper signal handler casts, and
4157         use of const gchar * where appropriate (for clean gtk2 compile).
4158
4159 Wed Apr 24 21:19:00 2002  John Ellis  <johne@bellatlantic.net>
4160
4161         * layout.c, layout_util.c, slideshow.c: Removed no longer needed FIXME
4162         printfs and comments.
4163
4164 Wed Apr 24 20:34:26 2002  John Ellis  <johne@bellatlantic.net>
4165
4166         * image.[ch]: Alterations now retain the center point of the image.
4167         Also added image_zoom_adjust_at_point(), which will keep the same
4168         point x,y in position after the zoom.
4169         * img-view.c, layout_image.c: Use the nre image_zoom_adjust_at_point
4170         so that ctrl-mouse wheel zooming stays relative to the mouse position.
4171
4172 Sun Apr 21 01:16:53 2002  John Ellis  <johne@bellatlantic.net>
4173
4174         * layout.c, typedefs.h: The active path of the main window is now
4175         checked for a timestamp change, is so call a refresh.
4176         * view_file_list.c: Fixed bug causing a jump to end of the list during
4177         a refresh or toggling thumbnails.
4178
4179 Thu Apr 18 20:40:08 2002  John Ellis  <johne@bellatlantic.net>
4180
4181         * README: Updates.
4182         * po/*.po: Make distcheck will touch these.
4183         * configure.in: Release 1.1.3
4184
4185 Thu Apr 18 20:15:53 2002  John Ellis  <johne@bellatlantic.net>
4186
4187         * pixbuf_util.c: Compile cleanup.
4188         * po/POTFILES.in: Added info.c.
4189         * po/cs.po: Updated Czech translation,
4190         submitted by Jan Raska <jan_raska@hotmail.com>
4191
4192 Thu Apr 18 13:00:07 2002  John Ellis  <johne@bellatlantic.net>
4193
4194         * info.c: Added a misc. tab to the properties dialog for permissions.
4195
4196 Wed Apr 17 19:48:11 2002  John Ellis  <johne@bellatlantic.net>
4197
4198         * info.c (info_window_new): Remove unused vbox variable.
4199         * pixbuf_util.c: Made some small optimizations for the pixbuf rotation
4200         functions (appears roughly 2-3x faster, could probably be further
4201         improved by making clockwise and counter-clockwise specific versions,
4202         to remove the if statements from the inner loops).
4203
4204 Wed Apr 17 15:13:11 2002  John Ellis  <johne@bellatlantic.net>
4205
4206         * image.c: Ignore two pass zoom when imd->scale is 1.0 (not zoomed).
4207
4208 Wed Apr 17 14:30:40 2002  John Ellis  <johne@bellatlantic.net>
4209
4210         * globals.c, gqview.h, preferences.c, rcfile.c: Added two pass zoom
4211         option, on by default.
4212         * image.c, typedefs.h: Implemented two pass zooming, also tried to
4213         throttle the image buffer size for larger image files - but left it
4214         #defined out for now, the buffer size needs to be calcualted better
4215         than mulitplying by 8 :)
4216
4217 Wed Apr 17 12:50:11 2002  John Ellis  <johne@bellatlantic.net>
4218
4219         * image.c: Removed the old debugging defines.
4220
4221 Wed Apr 17 12:02:36 2002  John Ellis  <johne@bellatlantic.net>
4222
4223         * info.c: When image is unkown flaged, do not display image attributes.
4224         * layout.c: When an image has no read access, display this fact.
4225         * layout_image.c, layout_util.c: Some menu fixes to remove the ugly
4226         (and poor design) (Un)float, etc. menu text.
4227         * view_dir_list.c: Scroll to show previous directory when walking up
4228         the path tree.
4229         * view_file_list.c: Fix broken filename text alignment when turning
4230         off thumbnails in the middle of loading the thumbnails.
4231
4232 Mon Apr 15 12:46:08 2002  John Ellis  <johne@bellatlantic.net>
4233
4234         * typedefs.h, view_dir_list.c, view_dir_tree.c: Disconnect the drag
4235         and drop autoscroller callback when the widget is destroyed.
4236
4237 Sat Apr 13 12:22:24 2002  John Ellis  <johne@bellatlantic.net>
4238
4239         * globals.c, gqview.h, rcfile.c, main.c: Added toolbar_hidden variable.
4240         * layout.[ch], layout_util.c, main.c, typedefs.h: Added menu option to
4241         hide the toolbar buttons,
4242         based on patch from Trevor Harmon <trevor@vocaro.com>
4243
4244 Wed Apr 10 12:24:00 2002  John Ellis  <johne@bellatlantic.net>
4245
4246         * slideshow.c(generate_list): Fix non random list generation. (it was
4247         reversing the list after adding each index - with fun results).
4248
4249 Tue Apr  9 23:54:52 2002  John Ellis  <johne@bellatlantic.net>
4250
4251         * dupe.c: Fixed the reversed addition of matches that has been around
4252         since the beginning of time. (Fix absolutely needed now for the rank
4253         numbers to make any real sense.)
4254
4255 Tue Apr  9 23:17:38 2002  John Ellis  <johne@bellatlantic.net>
4256
4257         * info.c: Added compression ratio display to image properties. This is
4258         the real ratio of disk size to memory size.
4259         * dupe.[ch], globals.c, gqview.h, preferences.c, rcfile.c: Added
4260         display of the similarity rankings to the find dupes window. Also added
4261         a user adjustable 'custom threshold' for similarity.
4262
4263 Tue Apr  9 18:34:33 2002  John Ellis  <johne@bellatlantic.net>
4264
4265         * info.[ch]: Added an image properties dialog, only shows basic info
4266         at this time...
4267         * collect-table.c, dupe.c, img-view.c, layout_image.c, layout_util.c,
4268         view_file_icon.c, view_file_list.c: Added a 'Properties' item to all
4269         the menus to show the new dialog.
4270
4271 Tue Apr  9 01:34:42 2002  John Ellis  <johne@bellatlantic.net>
4272
4273         * similar.c: Did some optimizing, quick timing with stopwatch shows
4274         improvements in compares from 2 to 3.5 times faster. Tried to improve
4275         similarity data generation, but I doubt it helped much (if at all).
4276
4277 Mon Apr  8 14:35:18 2002  John Ellis  <johne@bellatlantic.net>
4278
4279         * README: Updates.
4280         * po/*.po: Make distcheck touched these.
4281         * po/th.po: Removed duplicate translation of "Overwrite file"
4282         * configure.in: Release 1.1.2.
4283
4284 Mon Apr  8 14:03:48 2002  John Ellis  <johne@bellatlantic.net>
4285
4286         * po/et.po, gqview.desktop: Updated Estonian translation,
4287         submitted by Ilmar Kerm <ikerm@hot.ee>.
4288         * po/fr.po: Updated French translation,
4289         submitted by Eric Lassauge <lassauge@mail.dotcom.fr>.
4290         * po/th.po: Added Thai translation,
4291         submitted by Phanumas Thanyaboon <maskung@hotmail.com>.
4292         * README: Added translator credit.
4293
4294 Mon Apr  8 13:33:23 2002  John Ellis  <johne@bellatlantic.net>
4295
4296         * layout.c: Fixed mem leak.
4297         * ui_fileops.[ch]: Added unique_filename_simple() to deal with the
4298         extensions for us. Also added extension_from_path() util.
4299         * ui_utildlg.[ch]: Functions to add buttons to a dialog now return a
4300         pointer to the button.
4301         * utilops.c: Added auto/rename options to the file overwrite dialogs.
4302
4303 Mon Apr  8 11:14:16 2002  John Ellis  <johne@bellatlantic.net>
4304
4305         * image-load.c: Spew a warning if area_update happens with a NULL
4306         pixbuf.
4307
4308 Sat Apr  6 13:10:03 2002  John Ellis  <johne@bellatlantic.net>
4309
4310         * globals.c, gqview.h, rcfile.c, preferences.c: Added option to allow
4311         imge backgrounds to be set to black.
4312         * image.[ch]: Added background color setting support, black or any
4313         other color (at this time app does not have custom color option).
4314         * fullscreen.c: Use new image_background_set_black (above) to set
4315         fullscreen images to black background.
4316         * img-view.[ch]: Added util to sync the color preferences, also all
4317         open windows are now kept in a list.
4318         * layout.[ch], layout_image.c: Support for color syncing to user
4319         setting.
4320
4321 Fri Apr  5 15:58:33 2002  John Ellis  <johne@bellatlantic.net>
4322
4323         * layout_util.c: Added ctrl-i and ctrl-t shortcuts for icon and tree
4324         views, respectively. 'Remove old thumbnails' no longer has a shortcut.
4325         Also added menu items for these (view menu), and made thumbnails menu
4326         and button insensitive when icon view is active.
4327         * ui_fileops.[ch]: Maintain file attributes during a file copy. Added
4328         copy_file_attributes util.
4329         * view_file_icon.c: Fix vficon_sync bug causing missing thumbnails
4330         after delete operation.
4331
4332 Fri Apr  5 14:24:06 2002  John Ellis  <johne@bellatlantic.net>
4333
4334         * layout.[ch]: The tools float and hide seem to be working well now.
4335         * layout_image.c, layout_util.c: Use the 'smart'
4336         layout_tools_{float|hide}_toggle() functions.
4337         * main.c: Pull the tools information before saving the rc file.
4338         * typedefs.h(LayoutWindow): Added slots to store the divider positions.
4339         * view_file_icon.c (destroy_cb): Unschedule the tip window when
4340         the view is destroyed (fixes crash).
4341
4342 Mon Apr  1 12:18:35 2002  John Ellis  <johne@bellatlantic.net>
4343
4344         * globals.c, gqview.h, rcfile.c: Added float_window_divider to store
4345         the divider position of the tools window.
4346         * layout.[ch], layout_image.c, layout_util.c, main.c, typedefs.h:
4347         Started implementation of the float/hide tools option. Sort of works,
4348         but does not properly restore divider positions in some cases. Also
4349         get an X badwindow when holding down hide or float keys (hmm, race?).
4350
4351 Mon Apr  1 07:05:40 2002  John Ellis  <johne@bellatlantic.net>
4352
4353         * gqview.h, image.c, preferences.c, rcfile.c: When using gdk-pixbuf
4354         0.16.0 or higher enable the TILES zoom quality option.
4355         * ui_clist_edit.c: Fix broken auto-scroll to make cell visible.
4356         * ui_help.[ch]: Added hbox accessor, plus prototype signal fixes.
4357         * ui_pathsel.c: Added divider between dir and file lists.
4358
4359 Thu Mar 28 06:45:38 2002  John Ellis  <johne@bellatlantic.net>
4360
4361         * collect-table.c: Use drag_leave signal to stop the autoscroller.
4362         * view_file_icon.c: File refresh and removal positioning fixes.
4363
4364 Thu Mar 28 03:07:18 2002  John Ellis  <johne@bellatlantic.net>
4365
4366         * view_dir_tree.c: Fix highlight dnd bug.
4367
4368 Tue Mar 26 05:03:42 2002  John Ellis  <johne@bellatlantic.net>
4369
4370         * configure.in: Use datadir for the GNOME icon and desktop entry, so
4371         that prefix is honored.
4372
4373 Tue Mar 26 05:00:25 2002  John Ellis  <johne@bellatlantic.net>
4374
4375         * collect-table.c, dupe.c, img-view.c, layout.c, layout_image.c,
4376         layout_util.c, menu.c, view_dir_list.c, view_dir_tree.c,
4377         view_file_icon.c, view_file_list.c: More proper signal casting (menus).
4378
4379 Tue Mar 26 01:15:59 2002  John Ellis  <johne@bellatlantic.net>
4380
4381         * collect-table.c, collect.c, dnd.c, fullscreen.c, image-load.c,
4382         image.c, img-view.c, layout.c, layout_config.c, layout_image.c,
4383         layout_util.c, main.c, menu.c, preferences.c, ui_help.c,
4384         view_dir_list.c, view_dir_tree.c, view_file_icon.c, view_file_list.c:
4385         Signal connection, prototype, and return value clean ups.
4386
4387 Fri Mar 22 21:06:41 2002  John Ellis  <johne@bellatlantic.net>
4388
4389         * view_dir_tree.c: Unset the click_node and drop_node if they match the
4390         removed node.
4391
4392 Wed Mar  6 01:57:26 2002  John Ellis  <johne@bellatlantic.net>
4393
4394         * dupe.c, thumb.c: Update the thumbnail/sim if the mtime does not match
4395         the source file ( > just does not work), then set the mtime of the
4396         thumbnail/sim to that of the source file. You probably needed to
4397         re-generate those thousands of thumbnails anyway ;)
4398         * view_file_icon.c, view_file_list.c: Fix maintenance bugs where when
4399         deleting an image the next is not automatically selected/viewed.
4400
4401 Mon Feb 25 01:01:14 2002  John Ellis  <johne@bellatlantic.net>
4402
4403         * ui_*.c: Fixes from SLIK (0.7.0).
4404
4405 Mon Feb 18 14:56:40 2002  John Ellis  <johne@bellatlantic.net>
4406
4407         * main.c: Set the current worrking path to that of the file before
4408         calling the editor command. For multiple files, the first path in the
4409         list is used.
4410
4411 Mon Feb 18 02:21:31 2002  John Ellis  <johne@bellatlantic.net>
4412
4413         * rcfile.c: Fix buffer over-runs y using strncpy.
4414
4415 Thu Feb 14 15:17:31 2002  John Ellis  <johne@bellatlantic.net>
4416
4417         * view_dir_tree.c: Compile clean ups.
4418         * README, TODO: Updated.
4419         * po/*.po: Pretty sure make dist(check) is gonna touch these.
4420         * configure.in: Release 1.1.1
4421
4422 Thu Feb 14 11:05:13 2002  John Ellis  <johne@bellatlantic.net>
4423
4424         * ui_fileops.[ch]: Added concat_dir_and_file() util, it handles case
4425         of base == "/" to avoid paths like "//name".
4426         * main.c, ui_pathsel.c, ui_utildlg.c, view_dir_list.c, view_dir_tree.c,
4427         view_file_list.c: Use new concat_dir_and_file where appropriate.
4428         * utilops.c: The move/cop_simple calls now correctly determine single
4429         file operations, such that they are not treated as multiple files.
4430         * img-view.c, layout_image.c, layout_util.c: Added 9, 8, 7 keyboard
4431         shortcust for zooms of -2, -3, and -4, respectively.
4432
4433 Wed Feb 13 21:16:43 2002  John Ellis  <johne@bellatlantic.net>
4434
4435         * layout.c(layout_list_new): Pass NULL as path when creating lists.
4436         * ui_clist_edit.c(clist_edit_by_row): Account for offset if clist is
4437         really a ctree.
4438         * view_dir_list.c, view_dir_tree.c: Added new folder and rename options
4439         to the right click menus, check access perms before allowing in menus.
4440         * view_file_icon.c: More fixes.
4441
4442 Wed Feb 13 14:49:49 2002  John Ellis  <johne@bellatlantic.net>
4443
4444         * view_file_icon.c: Fixed sync() update when removing files from table.
4445         Wasted 30 minutes trying to fix focus handling for sync, discovered I
4446         was trying to re-invent what 1 call to vficon_update_focus() already
4447         does :-/
4448
4449 Tue Feb 12 21:59:12 2002  John Ellis  <johne@bellatlantic.net>
4450
4451         * filelist.[ch]: Added text_from_size_abrev(), returns size in bytes,
4452         K, or MB.
4453         * image.c: Increased BUFFER_COUNT from 4 to 8, this results in twice
4454         as many bytes read from the image file per idle cycle.
4455         * layout.c: Fix sort sync bug. size totals are now displayed for the
4456         file list.
4457         * layout_util.[ch]: Added folder pixmap utilities.
4458         * typedefs.h: Added PixmapFolders struct (for above), and additional
4459         vars for the dir views.
4460         * view_dir_list.c, view_dir_tree.c: Added folder icons for the standard
4461         list for consistency, several fixes/cleanups, also allow drops on the
4462         std list for move/copy.
4463         * view_file_list.c: Fixes, selected images are passed to the image
4464         handler when idle (to avoid multiple selection mess).
4465
4466 Tue Feb 12 15:28:23 2002  John Ellis  <johne@bellatlantic.net>
4467
4468         * filelist.[ch]: Added filelist_insert_sort. util.
4469         * layout.[ch], layout_image.[ch]: Added maintenance support.
4470         * preferences.c, rcfile.c: The tree_descend_subdirs option is now
4471         user adjustable, and saved.
4472         * utilops.c: Hooked up layout maintenance.
4473         * view_dir_tree.c: Refresh now updates active path.
4474         * view_file_icon.[ch], view_file_list.[ch]: Added maintenance, fixed
4475         selection retention on refresh, and possible crashes when syncing the
4476         icon view.
4477
4478 Mon Feb 11 21:47:52 2002  John Ellis  <johne@bellatlantic.net>
4479
4480         * icons/folder_deny.xpm: New folder icon for dirs with no permissions.
4481         * view_dir_tree.c: Show the deny (locked) folder icon for dirs that do
4482         not pass a call to access().
4483
4484 Mon Feb 11 19:37:31 2002  John Ellis  <johne@bellatlantic.net>
4485
4486         * icons/folder_[open|close]/xpm: New icons for folders.
4487         * view_dir_tree.c: Us folder icons in the ctree's view.
4488
4489 Mon Feb 11 16:20:07 2002  John Ellis  <johne@bellatlantic.net>
4490
4491         * po/POTFILES.in: Added view_dir_tree.c and view_file_icon.c.
4492         * filelist.c, ui_fileops.c: Fixed reading of file list so that top
4493         level paths (this in root dir) do not return //path (note double slash)
4494         * globals.c, gqview.h: Added tree_descend_subdirs option vars.
4495         * typedefs.h(ViewDirTree): Filled in needed vars.
4496         * layout.c: Hooked up vdtree_* stuff.
4497         * utilops.[ch]: Added file_util_[copy|move]_simple() funcs to bypass
4498         location dialog when you do not need it.
4499         * view_dir_tree.[ch]: Implemented tree view.
4500         * view_file_list.c: Fixed crash on refresh after moving selected files.
4501         (the refresh stuff still needs work)
4502
4503 Sun Feb 10 15:35:32 2002  John Ellis  <johne@bellatlantic.net>
4504
4505         * globals.c, gqview.h, main.c, rcfile.c: Added state saving of icon
4506         and tree view options.
4507         * image.c: When image is set to NULL, still call the update function.
4508         * layout.[ch]: Support view as icons and tree, fix leak on layout
4509         style change.
4510         * typedefs.h: More needed vars to structs.
4511         * view_dir_list.c: Disconnect popup menu destroy signal when the main
4512         widget is destroyed, as it may be gone before the popup is done.
4513         * view_file_list.c: Added 'View as icons' popup menu option, also
4514         same fix as above.
4515         * view_file_icon.c: More work, selections states, dnd, menus, more.
4516
4517 Fri Feb  8 16:17:29 2002  John Ellis  <johne@bellatlantic.net>
4518
4519         * layout.c: Added the necessary vficon_xxx calls.
4520         * typedefs.h: Added necessary stuff to ViewFileIcon struct.
4521         * view_file_icon.[ch]: Started as collect-table.c, then edited to
4522         use FileData instead of CollectInfo... Sort of works.
4523
4524 Wed Feb  6 19:54:48 2002  John Ellis  <johne@bellatlantic.net>
4525
4526         * filelist.c, layout.c, layout_config.c, layout_image.c, layout_util.c,
4527         slideshow.c, view_dir_list.c, view_file_list.c: Compile cleanups from
4528         make CFLAGS="-g -Wall -O2 -Wmissing-prototypes -Werror"
4529         * README: Updates.
4530         * po/POTFILES.in: Updated.
4531         * po/*.po: Make distcheck touched these.
4532         * configure.in: Released 1.1.0
4533
4534 Wed Feb  6 18:32:23 2002  John Ellis  <johne@bellatlantic.net>
4535
4536         * layout_config.c(layout_config_set): Fixed src<->dest swap thinko
4537         when setting syncing clist order.
4538
4539 Wed Feb  6 16:11:17 2002  John Ellis  <johne@bellatlantic.net>
4540
4541         * menu.[ch]: Allow sort menu to indicate current sort type.
4542         * main.c: Correctly set and save sort options.
4543         * collect-table.c: Fix for layout sort API change.
4544         * layout.[ch], view_file_list.[ch]: Implemented sort ui, also added
4545         sort to the file list pop up menu.
4546         * typedefs.h: Added sort widget (info_sort) to LayoutWindow.
4547
4548 Wed Feb  6 14:40:09 2002  John Ellis  <johne@bellatlantic.net>
4549
4550         * layout.[ch], layout_image.[ch], layout_util.c, preferences.c,
4551         slideshow.c, view_dir_list.c, view_file_list.c: Status bar is now
4552         working. Applying settings in config window now updates the layout
4553         of the main window - this seems to be ok, but I still cross my fingers
4554         when I press apply ;)
4555
4556 Tue Feb  5 16:22:57 2002  John Ellis  <johne@bellatlantic.net>
4557
4558         * layout.c: Fixed (most of) the tab completion and history.
4559         * layout_util.c: Keyboard shortcuts should all work now.
4560         * main.c: Removed old keyboard handler (to layout_util.c).
4561         * layout_image.c, dnd.c: Main window image dnd hooked up.
4562         * ui_tabcomp.c: Enabled tab completion helper popup menu, and fixed
4563         entry cursor positioning when selecting from the menu.
4564
4565 Tue Feb  5 08:53:02 2002  John Ellis  <johne@bellatlantic.net>
4566
4567         * layout_image.c, slideshow.c: Fixed read ahead issues (was double
4568         loading the file, sequentially)
4569         * menu.c: Removed include for window.h, file no longer exists.
4570
4571 Mon Feb  4 18:22:33 2002  John Ellis  <johne@bellatlantic.net>
4572
4573         * global.c, gqview.h, rcfile.c: Added horizontal divider var.
4574         * layout.[ch], layout_image.c, layout_util.[ch], main.c, typedefs.h,
4575         view_dir_list.[ch], view_file_list.[ch]: Most things now work, it now
4576         resembles a useable interface again.
4577         * slideshow.c: Fixes.
4578         * menu.c: Removed all old menu stuff, clean now.
4579         * window.[ch]: Removed files.
4580
4581 Mon Feb  4 14:31:25 2002  John Ellis  <johne@bellatlantic.net>
4582
4583         * img-main.[ch]: Dumped.
4584         * layout_image.[ch]: New files, contains image code adapted from
4585         above img-main files.
4586         * typedefs.h: Move all public structures here.
4587         * fullscreen.h, slideshow.h: Move structures out (to above).
4588         * collect-table.c, collect.c, dups.c, window.c: Include fixes.
4589         * dnd.c, menu.c: Removed unused code.
4590         * gqview.h, main.c: start_editor_* fixes.
4591         * layout.[ch], view_file_list.[ch]: More work.
4592
4593 Sun Feb  3 15:36:31 2002  John Ellis  <johne@bellatlantic.net>
4594
4595         * typedefs.h: Moved layout, list struct headers here.
4596         * filelist.h, layout.h, layout_util.h, preferences.c, view_dir_list.h:
4597         Changes for above.
4598         * layout.c, view_file_list.[ch]: The file listing now sort of works.
4599         * slideshow.c: Fixed crash from wrong test placement.
4600
4601 Sat Feb  2 16:47:19 2002  John Ellis  <johne@bellatlantic.net>
4602
4603         * dnd.[ch]: Made drop types public.
4604         * collect-table.c, dupe.c: Removed enum now duplicated in dnd.h.
4605         * filelist.[ch]: Fixes.
4606         * layout.[ch]: Added dir list view plus more work.
4607         * menu.c: Removed old dir popup menu code.
4608         * view_dir_list.[ch]: Impemented, pretty much done except for reporting
4609         back to the layout.
4610
4611 Sat Feb  2 12:48:49 2002  John Ellis  <johne@bellatlantic.net>
4612
4613         * layout_config.[ch]: Added new files, includes util to select window
4614         layout and to convert the selected layout to/from simple format for
4615         saving in an rc file.
4616         * globals.c, gqview.h, main.c: Added layout variables for default view.
4617         * rcfile.c: Save/restore these variables.
4618         * layout.c, layout_util.c: More work, mainly all for configuration.
4619         * preferences.c: Added layout configuration to window tab.
4620
4621 Fri Feb  1 13:19:19 2002  John Ellis  <johne@bellatlantic.net>
4622
4623         * layout.[ch]. main.c, view_file_list.h: Well, we got the window back..
4624         Also worked on the layout code, seems it should be done in a simpler
4625         way....
4626
4627 Thu Jan 31 14:30:21 2002  John Ellis  <johne@bellatlantic.net>
4628
4629         * layout_util.[ch]: Added utils for layouts (menus, toolbar, +misc).
4630         * collect-io.c, collect-table.c, collect.c, dupe.c, preferences.c:
4631         Fixed for new layout structure.
4632         * filelist.ch, globals.c, gqview.h: Fixes, and removed global vars.
4633         * dnd.c, img-main.h, main.c, menu.[ch], window.c: Made these compile
4634         (mostly by #if 0-ing out offending code).
4635         * layout.[ch]: More fleshing out.
4636         * view_file_list.[ch]: Well it compiles...
4637         * slideshow.[ch]: Fixed to use new layout window, should be ok.
4638         * Makefile.am: Updates, well it now compiles without warnings - just
4639         don't run it -- there's no window :)
4640
4641 Wed Jan 30 12:13:35 2002  John Ellis  <johne@bellatlantic.net>
4642
4643         * filelist.[ch]: Stripped out old file list code, only list utils are
4644         to remain here (no GUI stuff).
4645         * layout.[ch]: This will be the functions to generate the main window.
4646         * view_file_list.[ch]: Began new file list code (much of it is just
4647         making original file list self-contained (no globals, etc.)
4648         * view_file_icon.[ch]: The is will be a wrapper around the collection
4649         table to view the file list as a collection layout. (currently empty).
4650         * view_dir_list.[ch]: Will be new directory list (currently empty).
4651         * view_dir_tree.[ch]: Will be new tree view of dirs (curently empty,
4652         will probal start with using tree code from old bitgrazer app).
4653         * Makefile.am: Added above new files, note that no compiling has been
4654         attempted - it wont work anyway for a quite a while.
4655
4656 Fri Jan 11 01:15:04 2002  John Ellis  <johne@bellatlantic.net>
4657
4658         * main.c: Removed pre-1.0 compatibility code (very old versions
4659         placed gqviewrc and thumbnail dir in top of $HOME, this checked
4660         for and moved them to current location $HOME/.gqview/.)
4661         * TODO: Updated.
4662         * ChangeLog: added marker for start of post-2.0 Changes.
4663
4664 Fri Jan 11 00:40:45 2002  John Ellis  <johne@bellatlantic.net>
4665
4666         * *.[ch]: Update copyright year.
4667         * main.c(main): Print blurb about devel beta etc.
4668         * configure.in: Removed useless test.
4669
4670 =======================================================================
4671
4672   GQview 1.1.x series started.  (1.1 marker)
4673
4674 =======================================================================
4675
4676 Tue Jan 29 05:36:32 2002  John Ellis  <johne@bellatlantic.net>
4677
4678         * README: Updated.
4679         * configure.in: Release 1.0.2
4680
4681 Sun Jan 27 08:34:13 2002  John Ellis  <johne@bellatlantic.net>
4682
4683         * po/*.po: Make distcheck touched these.
4684         * README: Updated.
4685
4686 Sun Jan 27 08:04:36 2002  John Ellis  <johne@bellatlantic.net>
4687
4688         * po/[cs, de, pt_BR].po: Fixed warnings for incorrect or no charset.
4689         * po/cs.po: Updated Czech translation,
4690         submitted by Jan Raska <jan_raska@hotmail.com>
4691         * po/zh_CN.GB2312.po: Updated Chinese translation,
4692         submitted by Charles Wang <charlesw1234cn@yahoo.com.cn>
4693         * po/pl.po: Minor Polish translation tweak.
4694
4695 Wed Jan 16 02:16:38 2002  John Ellis  <johne@bellatlantic.net>
4696
4697         * dupe.c(dupe_window_remove_selected): Copy the selection list before
4698         removing files, because clist->selection may change as items are
4699         removed. Fixes BUG where not all files selected were being removed
4700         from the list.
4701
4702 Tue Jan  1 12:32:52 2002  John Ellis  <johne@bellatlantic.net>
4703
4704         * gqview.1: Updated contact info in man page.
4705         * configure.in: Release 1.0.1
4706
4707 Tue Jan  1 12:23:26 2002  John Ellis  <johne@bellatlantic.net>
4708
4709         * preferences.c, README: Old gqview@email.com changed to
4710         gqview@users.sourceforge.net.
4711         * po/*.po: Some patching to update e-mail (above).
4712
4713 Tue Jan  1 11:24:19 2002  John Ellis  <johne@bellatlantic.net>
4714
4715         * cs.po: Added Czech translation,
4716         submitted by Jan Raska <jan_raska@hotmail.com>
4717         * uk.po: Updated Ukrainian translation,
4718         submitted by Volodymyr M. Lisivka <lvm@mystery.lviv.net>
4719         * configure.in (ALL_LINGUAS): Added cs.
4720         * README: small update.
4721
4722 Sat Dec 15 12:21:02 2001  John Ellis  <johne@bellatlantic.net>
4723
4724         * po/hu.po: Updated Hungarian translation,
4725         submitted by Egmont Koblinger <egmont@suselinux.hu>
4726         * po/nl.po: Updated Dutch translation,
4727         submitted by Tino Meinen <a.t.meinen@chello.nl>
4728         * README: Updated.
4729         * configure.in: Released 1.0
4730
4731 Mon Dec 10 13:26:24 2001  John Ellis  <johne@bellatlantic.net>
4732
4733         * po/nl.po: Updated from Tino Meinen.
4734         * README, TODO: Updated.
4735         * configure.in: Release 0.99.3 (release candidate 1)
4736
4737 Mon Dec 10 12:54:03 2001  John Ellis  <johne@bellatlantic.net>
4738
4739         * po/nl.po: Updated Dutch translation,
4740         submitted by Tino Meinen <a.t.meinen@chello.nl>
4741
4742 Sun Dec  9 11:54:19 2001  John Ellis  <johne@bellatlantic.net>
4743
4744         * po/no.po: Fixed fuzzy caused by make dist.
4745         * po/ru.po: Minor format change from a make dist (no translation
4746         changed, however).
4747         * po/*.po: Make dist updated the POT creation date for the others.
4748
4749 Sun Dec  9 11:43:26 2001  John Ellis  <johne@bellatlantic.net>
4750
4751         * preferences.c: Fixed the license statement in the about dialog.
4752         * po/*.po: Adjusted translation lines for above, where I could - to
4753         avoid fuzzies.
4754
4755 Sun Dec  9 11:03:46 2001  John Ellis  <johne@bellatlantic.net>
4756
4757         * po/et.po: Updated Estonian translation,
4758         submitted by Ilmar Kerm <ilmar.kerm@mail.ee>
4759         * po/es.po: Updated Spanish translation,
4760         submitted by Rodrigo Sancho Senosiain <ruy_ikari@bigfoot.com>
4761         * po/fr.po: Updated French translation,
4762         submitted by Eric Lassauge <lassauge@mail.dotcom.fr>
4763         * po/ru.po: Updated Russian translation,
4764         submitted by Sergey Pinaev <dfo@antex.ru>
4765         * po/no.po: Added Norwegian translation,
4766         submitted by Torgeir Ness Sundli <torgeir@mp3bil.no>
4767         * po/it.po: Added Italian translation, submitted
4768         by Di Maggio Salvatore <Salvatore.Dimaggio@bologna.marelli.it>
4769         * configure.in (LINGUAS): Added no.
4770
4771 Wed Dec  5 18:31:47 2001  John Ellis  <johne@bellatlantic.net>
4772
4773         * README: Updated.
4774         * po/*.po: Make distcheck touched these.
4775         * configure.in: Release 0.99.2
4776
4777 Wed Dec  5 18:04:37 2001  John Ellis  <johne@bellatlantic.net>
4778
4779         * README, TODO, gqview.1: Minor updates.
4780         * configure.in (LINGAUS): Changed zh_TW.Big5 to zh_TW.
4781         * po/zh_TW.po: Updated Traditional Chinese translation,
4782         submitted by Abel Cheung <deaddog@deaddog.ws>
4783         * po/zh_TW.Big5.po: Removed, renamed without Big5 at submitter's
4784         request - not sure of any possible problems this may cause?
4785         * po/fi.po: Updated Finnish translation,
4786         submitted by Lauri Nurmi <lanurmi@iki.fi>
4787         * po/de.po: Updated German translation,
4788         submitted by Thomas Klausner <wiz@danbala.ifoer.tuwien.ac.at>
4789         * po/fr.po: Updated French translation,
4790         submitted by Eric Lassauge <lassauge@mail.dotcom.fr
4791         * po/sk.po: Updated Slovak translation,
4792         submitted by Ivan Priesol <priesol@frki.utc.sk>
4793         * po/pt_BR.po: Updated Brazilian Portuguese translation,
4794         submitted by Guilherme M. Schroeder <slump@linuxall.org>
4795
4796 Sun Nov 25 10:46:00 2001  John Ellis  <johne@bellatlantic.net>
4797
4798         * README: Updated.
4799         * configure.in: Release 0.99.1
4800
4801 Sun Nov 25 10:36:00 2001  John Ellis  <johne@bellatlantic.net>
4802
4803         * po/*.po: Make distcheck updated these.
4804         * po/pt_BR.po: Many entries marked fuzzy were fine, plus a few fixes.
4805
4806 Sun Nov 25 09:55:03 2001  John Ellis  <johne@bellatlantic.net>
4807
4808         * da.po: Added Danish translation,
4809         submitted by Birger Langkjer <birger.langkjer@image.dk>.
4810         * pt_BR.po: Updated Brazilian Portuguese translation,
4811         submitted by Guilherme M. Schroeder <slump@ieg.com.br>
4812         * configure.in: Added da to LINGUAS.
4813         * README: Updates.
4814
4815 Sun Nov 25 09:44:14 2001  John Ellis  <johne@bellatlantic.net>
4816
4817         * README, gqview.spec.in, po/fr.po: Updated French translation,
4818         submitted by Eric Lassauge <lassauge@mail.dotcom.fr>
4819         * filelist.c: When entering a directory with no read acces, still clear
4820         the file/dir lists. Also add . and .. to allow exit of said dir.
4821         * img-view.c, window.c: The " - GQview" string really should not be
4822         marked for translation.
4823
4824 Mon Nov 19 12:02:19 2001  John Ellis  <johne@bellatlantic.net>
4825
4826         * README: Updated.
4827         * configure.in: Release 0.99.0
4828
4829 Mon Nov 19 11:54:09 2001  John Ellis  <johne@bellatlantic.net>
4830
4831         * po/fr.po, gqview.spec.in, gqview.desktop: Updated French translation
4832         submitted by Eric Lassauge <lassauge@mail.dotcom.fr>
4833
4834 Mon Nov 19 09:15:23 2001  John Ellis  <johne@bellatlantic.net>
4835
4836         * image.c(image_tile_render): Use the simple render when scale is also
4837         1.0. This speeds up renders when zoom is auto, but the scale is 1.0.
4838         Also removed crufty #if 0'ed lines.
4839
4840 Mon Nov 19 09:00:00 2001  John Ellis  <johne@bellatlantic.net>
4841
4842         * image.c: Finally fixed the window shrinking bug with zoom_to_fit,
4843         needed to add a 'new image' flag to a few funcs for this.
4844
4845 Mon Nov 19 07:30:29 2001  John Ellis  <johne@bellatlantic.net>
4846
4847         * filelist.c: The history menu text is now truncated using the
4848         available space in the GtkOptionMenu instead of forcing to 32 chars.
4849
4850 Sun Nov 18 07:02:23 2001  John Ellis  <johne@bellatlantic.net>
4851
4852         * Makefile.am, configure.in, acconfig.h: Install README to a share
4853         dir.
4854         * README: Added section keys.
4855         * gqview.spec.in: Added README of share dir.
4856         * POTFILES.in: Added ui_help.c
4857         * gqview.h, main.c, menu.c: Added simple help window to display README.
4858         * ui_help.[ch]: New files for utils to display a help window.
4859
4860 Fri Nov 16 10:28:44 2001  John Ellis  <johne@bellatlantic.net>
4861
4862         * main.c, slideshow.c: Went back to rand()/srand() [from (s)random],
4863         as it is more portable.
4864
4865 Thu Nov 15 02:32:17 2001  John Ellis  <johne@bellatlantic.net>
4866
4867         * README: Updated.
4868         * cache_maint.c(cache_maintain_home_c): Fixed == to = (oops);
4869         * po/POTFILES.in: cache_main.c is actually cach_maint.c.
4870         * configure.in: Release 0.13.0
4871
4872 Wed Nov 14 13:33:57 2001  John Ellis  <johne@bellatlantic.net>
4873
4874         * cache_maint.[ch]: Moved cache maintenance stuff here, and added a
4875         dialog displaying 'purge thumbnails' progress - it also no longer
4876         blocks the app.
4877         * cache.[ch]: Moved above out of here.
4878         * Makefile.am, filelist.c, menu.c, preferences.c, utilops.c: Used new
4879         functions and/or include cache_maint.h.
4880         * po/POTFILES.in: Added cache_maint.c
4881
4882 Tue Nov 13 07:04:38 2001  John Ellis  <johne@bellatlantic.net>
4883
4884         * icons/marker.xpm, Makefile.am: Moved the marker.xpm file to the icons
4885         dir.
4886         * collect-table.c: Update include of marker.xpm.
4887
4888 Tue Nov 13 06:23:29 2001  John Ellis  <johne@bellatlantic.net>
4889
4890         * Makefile.am, marker.xpm: Added marker icon file.
4891         * collect-table.c: Added marker to display insertion point of a dropped
4892         image in collection windows, same for moving. Also dropped directories
4893         are sorted before adding to the collection, and honor the
4894         collection_drop_inserted option. Also if the mouse is outside the
4895         clist window, shut down the autoscroll cb.
4896         * filelist.[ch]: Made path_list_sort() public.
4897
4898 Mon Nov 12 20:58:18 2001  John Ellis  <johne@bellatlantic.net>
4899
4900         * main.c: Changed exit dialog title.
4901         * window.c: Fixed delete_event handlers to return TRUE (was void).
4902
4903 Mon Nov 12 20:45:02 2001  John Ellis  <johne@bellatlantic.net>
4904
4905         * collect-dlg.[ch]: Added type to close collection window after save.
4906         * collect-io.c, collect-table.c, collect.[ch], typedefs.h: Added a
4907         changed flag to collections, and use it to remind user a collection
4908         was modified before closing the window.
4909         * main.c: Remind user at least one open collection has been modified,
4910         with option to cancel exit.
4911
4912 Mon Nov 12 19:22:05 2001  John Ellis  <johne@bellatlantic.net>
4913
4914         * gqview.spec.in: Updated the RPM spec file.
4915         * po/nl.po: Updated Dutch translation,
4916         submitted by Hette J Visser <hette@linux.nl>
4917         * po/uk.po: Added Ukrainian translation,
4918         submitted by Volodymyr M. Lisivka <lvm@mystery.lviv.net>
4919         * configure.in: Added uk to LINGUAS.
4920         * README: Updates.
4921         * po/{all_others}.po: Make dist did this while testing RPM build.
4922
4923 Mon Nov 12 06:54:04 2001  John Ellis  <johne@bellatlantic.net>
4924
4925         * collect-table.[ch], collect.[ch], typedefs.h: Implemented collection
4926         insert, and added moving of images within a collection using dnd.
4927         * dupe.[ch]: Changed color coding for duplicate list, alternate colors
4928         are now 10% darker instead of inverted fg and bg.
4929         * globals.c, gqview.h, preferences.c, rcfile.c: Added option to insert
4930         dropped files into a collection at the drop point.
4931         * main.c, slideshow.c: Use random instead of rand.
4932         * ui_clist_edit.[ch]: Added utils for g_lists and clist row styles.
4933         * ui_pathsel.c: Moved uig_list_insert_link() out to ui_clist_edit.
4934
4935 Thu Nov  8 23:35:53 2001  John Ellis  <johne@bellatlantic.net>
4936
4937         * ui_menu.[ch]: Added more menu item utils.
4938
4939 Thu Nov  8 20:59:20 2001  John Ellis  <johne@bellatlantic.net>
4940
4941         * preferences.c: Made ok, apply, and cancel button sizes consistent.
4942         * collect-dlg.c: Changed Load to more consistent Open.
4943
4944 Thu Nov  8 19:47:47 2001  John Ellis  <johne@bellatlantic.net>
4945
4946         * ui_utildlg.c: Changed the vertical spacing on dialogs (same dialog
4947         size, moved some space from above the buttons to top of window).
4948         Also aligned buttons right and made them bigger.
4949
4950 Thu Oct 25 14:10:47 2001  John Ellis  <johne@bellatlantic.net>
4951
4952         * ui_pathsel.c: Fixed incorrect strncmp in dest_filter_list_sync() to
4953         check entire string (strcmp). Ordered filter addition so that they are
4954         listed in descending order, but keep All Files ( * ) filter at the
4955         bottom of the list.
4956
4957 Fri Oct 19 20:09:44 2001  John Ellis  <johne@bellatlantic.net>
4958
4959         * ui_clist_edit.c: Explicitely set the focus for the text entry to
4960         fix missing cursor.
4961         * README: Updated.
4962         * configure.in: Release 0.12.0
4963
4964 Fri Oct 19 18:47:16 2001  John Ellis  <johne@bellatlantic.net>
4965
4966         * README, TODO: updated.
4967         * po/et.po: Added Estonian translation,
4968         submitted by Ilmar Kerm <ikerm@hot.ee>
4969         * configure.in: Added et to ALL_LINGUAS.
4970
4971 Tue Sep 18 21:53:04 2001  John Ellis  <johne@bellatlantic.net>
4972
4973         * collect.c: Added keyboard shortcuts for copy/move/rename/delete, also
4974         fixed control-key test.
4975         * README: Credit updates.
4976
4977 Tue Sep 18 21:19:46 2001  John Ellis  <johne@bellatlantic.net>
4978
4979         * collect.c, filelist.[ch], globals.c, gqview.h, main.c, menu.c,
4980         rcfile.c, typedefs.h, window.c: Added sort files ascending/descending
4981         option. Also added compile-time feature to sort names numerically
4982         (numerical sort based on patch from Martin Pool <mbp@samba.org>)
4983         * README, gqview.1: Documented the I keyboard shortcut for collections.
4984
4985 Tue Sep 18 20:06:30 2001  John Ellis  <johne@bellatlantic.net>
4986
4987         * utilops.c (file_util_create_dir_cb): Support dir names entered as an
4988         absolute path.
4989
4990 Tue Sep 18 19:05:52 2001  John Ellis  <johne@bellatlantic.net>
4991
4992         * cache.[ch], dupe.c, gqview.h, thumb.c: The local (home) thumb dirs
4993         are created with mode 0755 (as before), but the .thumbnails dirs
4994         created near the images are now 0775 (so that others in the group can
4995         update the thumbs).
4996         * ui_clist_edit.[ch]: Added clist_edit_set_highlight (remember to fix
4997         filelist.c to use this in future), also fixed the clist_moveto calls
4998         to use a valid column number (-1).
4999         * ui_pathsel.c: Added right click menus to rename dirs and files, and
5000         to delete files. Also added a New Directory button to create new
5001         directories from within the dialog.
5002
5003 Tue Sep 18 15:33:41 2001  John Ellis  <johne@bellatlantic.net>
5004
5005         * po/ja.po: Updated Japanese translation,
5006         submitted by Yuuki NINOMIYA <gm@debian.or.jp>
5007         on behalf of SATO Satoru <ss@gnome.gr.jp>
5008         * po/pl.po: Updated Polish translation,
5009         submitted by Zbigniew Chyla <cyba@gnome.pl>
5010         * po/nl.po: Added Dutch translation,
5011         submitted by "H.J.Visser" <H.J.Visser@harrie.mine.nu>
5012         * po/fi.po: Added Finnish translation,
5013         submitted by Lauri Nurmi <lanurmi@iki.fi>
5014
5015 Fri Sep 14 15:43:53 2001  John Ellis  <johne@bellatlantic.net>
5016
5017         * filelist.[ch]: Added text_from_time and text_from_size utils for
5018         file attribute display. Added size and date to the file list.
5019         * window.c: Changes for above.
5020         * dupe.c: Removed text_from_time, use new one as well as one for byte
5021         size from filelist.h.
5022         * collect-table.c: Fixed a style leak on clist cell selections.
5023
5024 Sat Sep  8 01:49:04 2001  John Ellis  <johne@bellatlantic.net>
5025
5026         * dupe.c: Fix style leak when re-aligning clist row colors, also made
5027         removing multiple selected rows much faster (it was realigning the
5028         row styles after every line removal, eww).
5029
5030 Sun Jun 24 22:27:40 2001  John Ellis  <johne@bellatlantic.net>
5031
5032         * collect-table.c: Added copy, move, rename, and delete to the pop
5033         up menu of collections (keyboard support not done).
5034
5035 Thu Apr  5 18:21:59 2001  John Ellis  <johne@bellatlantic.net>
5036
5037         * dupe.[ch]: Made the 'compare two file sets' list use less (1/3)
5038         of the window.
5039         * globals.c, gqview.h, main.c, rcfile.c, window.c: Added saving of
5040         the divider position between dirs and files. Also fixed a bug that
5041         attempting to get the tool window size when it was not visible.
5042
5043 Thu Apr  5 16:38:23 2001  John Ellis  <johne@bellatlantic.net>
5044
5045         * filelist.[ch]: Fixed path_list_filter() to do checks on the file
5046         name, not full path. Also added is_dir_list which will not do the
5047         check for the extension on directory lists.
5048         * collect-table.c, dupe.c, menu.c: Fixes for the above, and also added
5049         additional filtering for the duplicates window.
5050
5051 Thu Apr  5 15:41:02 2001  John Ellis  <johne@bellatlantic.net>
5052
5053         * po/de.po: Updated German translation, submitted by
5054         Christian Ullrich <quiana@quiana.net>
5055         * po/ja.po: Updated Japanese translation, submitted by
5056         Yuuki NINOMIYA <gm@debian.or.jp>
5057         * po/fr.po: Updated French translation, submitted by
5058         Eric Lassauge <lassauge@mail.dotcom.fr>
5059         * po/sl.po: Updated Slovene translation, submitted by
5060         Matej Erman <matej.erman@guest.arnes.si>
5061         * po/it.po: Updated Italian translation, submitted by
5062         Christopher R. Gabriel <cgabriel@pluto.linux.it>
5063
5064 Tue Mar 20 13:36:41 2001  John Ellis  <johne@bellatlantic.net>
5065
5066         * README: Updated.
5067         * configure.in: Release 0.11.0
5068
5069 Tue Mar 20 13:25:04 2001  John Ellis  <johne@bellatlantic.net>
5070
5071         * image.c: Added #define option to use faster zooming method. Also
5072         attempted to fix shrinking window bug - failed.
5073         * README: Updated.
5074         * po/zh_TW.Big5.po: Updated Traditional Chinese translation, submitted
5075         by Abel Cheung <deaddog@deaddog.ws>.
5076
5077 Thu Mar 15 16:49:11 2001  John Ellis  <johne@bellatlantic.net>
5078
5079         * dupe.c: Freeze dw->second_clist when adding files.
5080
5081 Thu Mar 15 15:48:57 2001  John Ellis  <johne@bellatlantic.net>
5082
5083         * main.c: Added support for opening collections from the command line.
5084
5085 Thu Mar 15 14:14:26 2001  John Ellis  <johne@bellatlantic.net>
5086
5087         * dupe.c: Minor window file count fix.
5088         * thumb.c: Use xvpics (if enabled) only as a last resort when
5089         searching for a pre-existing thumbnail.
5090
5091 Wed Mar 14 08:50:00 2001  John Ellis  <johne@bellatlantic.net>
5092
5093         * dupe.[ch]: Added option to compare between two different sets of
5094         files (very useful when checking a handful of new files to a known
5095         unique group). Also set the default window width back to 600.
5096
5097 Thu Mar  8 10:35:25 2001  John Ellis  <johne@bellatlantic.net>
5098
5099         * gqview.h, image.c: Went back to 0.10.0 method of using
5100         gdk_pixbuf_composite_color() for every quality except NEAREST for
5101         images without transparency. Also disabled the TILES option for zooming
5102         all together - my little test scenario now crashes with the new
5103         gdk-pixbuf (0.10.0).  -- maybe I do have a bug floating around the
5104         scaling compuations somewhere, but damn if I can find it.
5105
5106 Thu Mar  8 10:14:32 2001  John Ellis  <johne@bellatlantic.net>
5107
5108         * configure.in, gqview.h, image.c: Made quick non-public package so
5109         that anyone interested in fixing gdk-pixbuf's gdk_pixbuf_scale() can
5110         try the fixes with GQview. (all broken scaling methods are enabled in
5111         this version).
5112
5113 Thu Mar  8 09:52:01 2001  John Ellis  <johne@bellatlantic.net>
5114
5115         * po/es.po: Updates Spanish translation, from
5116         Rodrigo Sancho Senosiain <ruy_ikari@bigfoot.com>
5117         * dupe.c: Made the default window 20 pixels wider.
5118
5119 Thu Mar  8 09:28:09 2001  John Ellis  <johne@bellatlantic.net>
5120
5121         * configure.in, gqview.spec.in: Require gdk-pixbuf 0.10.0 or newer.
5122         * gqview.h, image.c, preferences.c, rcfile.c: Use the fixed simple
5123         scaling of gdk-pixbuf 0.10.0, also disabled the TILES zoom quality
5124         option until this is fixed in gdk-pixbuf (assuming it is a gdk-pixbuf
5125         bug, as the other qualities work fine - ask for test case of image
5126         sizes if anyone is interested in fixing this).
5127
5128 Wed Feb 28 16:40:02 2001  John Ellis  <johne@bellatlantic.net>
5129
5130         * collect-dlg.c, collect.c, dupe.c, img-view.c, preferences.c,
5131         utilops.c, window.c: Use GQview as the window class, as X man page
5132         encourages capitalization of first letter, and this removes conflict
5133         of gqview for instance of main window.
5134
5135 Mon Feb 26 15:39:15 2001  John Ellis  <johne@bellatlantic.net>
5136
5137         * po/zh_CN.GB2312.po: Added simplified Chinese translation, from
5138         Wu Yulun <migr@operamail.com>.
5139         * README, TODO, gqview.spec.in: Updated.
5140         * configure.in: Release 0.10.1
5141
5142 Sat Feb 24 05:39:53 2001  John Ellis  <johne@bellatlantic.net>
5143
5144         * filelist.c (path_list_recursive): Return NULL, not FALSE.
5145         (it's a pointer)
5146         * img-main.c (main_image_slideshow_start_from_list): Free the
5147         path_list before returning if slideshow is already running.
5148         * slideshow.c (real_slideshow_start): Fix test of path_list before
5149         return of NULL.
5150
5151 Sat Feb 24 03:46:12 2001  John Ellis  <johne@bellatlantic.net>
5152
5153         * image-load.c: Fix to support image loaders that do not have a
5154         pixbuf until the the loader is actually closed. (This should fix
5155         thumbnail generation failures for xpm and tiff).
5156         * similar.c (image_sim_fill_data): Fix to support generation of data
5157         for images with dimensions less than 32 x 32.
5158
5159 Thu Feb 22 08:44:38 2001  John Ellis  <johne@bellatlantic.net>
5160
5161         * cache.c: Added blurb about the SIMcache file format.
5162         * dupe.c: Properly ref/unref clist row styles.
5163
5164 Thu Feb 22 07:54:12 2001  John Ellis  <johne@bellatlantic.net>
5165
5166         * dupe.[ch]: Operations now give a (very rough) estimate of time left
5167         before completion of the comparison stage.
5168
5169 Thu Feb 22 05:47:17 2001  John Ellis  <johne@bellatlantic.net>
5170
5171         * cache.[ch]: New files to handle the caching placement/management
5172         stuff. Also location of reading and writing of the dupe window cache
5173         data.
5174         * dupe.c: Added caching of file data (dimensions, checksum,
5175         and similarity).
5176         * filelist.c, menu.c: Namespace update for cache maintenance.
5177         * globals.c, gqview.h, preferences.c, rcfile.c: Added option to save
5178         cache data into direct subdir of source (.thumbnails support).
5179         * thumb.[ch]: Use new cache functions for locating thumbs.
5180         * utilops.c: Move/remove cache date when doing the same for their
5181         parent files.
5182
5183 Tue Feb 20 19:41:27 2001  John Ellis  <johne@bellatlantic.net>
5184
5185         * ui_fileops.[ch]: Moved include of time.h back to the .c file.
5186         * ui_utildlg.c: #include <sys/types.h>, this should have been the
5187         original fix anyway...
5188         * gqview.h: Added #include <sys/types.h>
5189         * image-load.c: Removed above include.
5190
5191 Mon Feb 19 17:26:23 2001  John Ellis  <johne@bellatlantic.net>
5192
5193         * gqview.1, README: Updates.
5194         * configure.in: Release 0.10.0
5195
5196 Sun Feb 18 08:08:03 2001  John Ellis  <johne@bellatlantic.net>
5197
5198         * ui_utildlg.[ch]: Real fix for enter activating wrong widgets, now
5199         you must set it manually with generic_dialog_attach_default(). Note
5200         that file_dialog_add_path_widgets() does this automatically.
5201         * utilops.c: Added a few attaches, from above.
5202
5203 Sun Feb 18 07:32:04 2001  John Ellis  <johne@bellatlantic.net>
5204
5205         * ui_utildlg.c (generic_dialog_key_press_cb): Only call the default
5206         function upon press of enter while a gtkentry has the focus. (no
5207         longer conflicts with pressing enter while focused on, say a button).
5208
5209 Sun Feb 18 06:52:51 2001  John Ellis  <johne@bellatlantic.net>
5210
5211         * image.c (image_draw_focus): Fixed the focus drawing to follow themes,
5212         since painting merely a black rectangle was very broken with some
5213         theme engines (and did not follow the theme).
5214
5215 Tue Feb 13 02:34:33 2001  John Ellis  <johne@bellatlantic.net>
5216
5217         * ui_fileops.[ch]: Fix #include of time.h (moved it to header).
5218
5219 Mon Feb 12 15:04:51 2001  John Ellis  <johne@bellatlantic.net>
5220
5221         * README, TODO: Updates.
5222         * configure.in: Release 0.9.5.
5223
5224 Mon Feb 12 05:39:30 2001  John Ellis  <johne@bellatlantic.net>
5225
5226         * Makefile.am, gqview.spec.in: Added man page.
5227         * gqview.1: The man page, submitted by
5228         Ryan Murray <rmurray@debian.org>
5229         * README: Credits for man page.
5230
5231 Fri Feb  9 20:26:46 2001  John Ellis  <johne@bellatlantic.net>
5232
5233         * menu.c: Use gdk-pixbuf to generate toolbar images.
5234         * window.c (tollwindow_hide): Retrieve the window's geometry attributes
5235         before hiding the window (else we get a random X BadMatch error).
5236
5237 Fri Feb  9 19:45:26 2001  John Ellis  <johne@bellatlantic.net>
5238
5239         * fullscreen.c: The mouse is now hidden on start of fullscreen instead
5240         of waiting for the 'no-move timeout'.
5241         * dnd.c, filelist.[ch], menu.[ch], window.c: All pop-up menus are now
5242         created as needed, instead of globally at start-up. Right clicking
5243         unselected files in the file list now highlights them. Added a right
5244         click menu to the dir list that includes new slideshow recursive
5245         feature (also standard slideshow, and find duplicates choices).
5246         * globals.c, gqview.h: Removed unused global menu vars (above).
5247         * img-main.[ch]: Added main_image_slideshow_start_from_list().
5248
5249 Fri Feb  9 17:02:07 2001  John Ellis  <johne@bellatlantic.net>
5250
5251         * image.c (image_size_top_window): When checking if a resize is needed,
5252         compare to the window that will actually be resized (the top window).
5253         This was checking the wrong widget's window, and was returning TRUE
5254         incorrectly, subsequently causing no update if the image had the same
5255         size for the main window.
5256         * po/hu.po: Updated Hungarian translation from
5257         Mátyás Tibor <templar@tempi.scene.hu>
5258
5259 Thu Feb  8 18:16:18 2001  John Ellis  <johne@bellatlantic.net>
5260
5261         * configure.in (ALL_LINGUAS): Added hu (Hungarian).
5262         * po/hu.po: Added Hungarian translation from
5263         Mátyás Tibor <templar@tempi.scene.hu>
5264         * po/fr.po: Updated French translation from
5265         Eric Lassauge <ros_at1@muzillac.tls.mms.fr>
5266
5267 Thu Feb  8 17:46:00 2001  John Ellis  <johne@bellatlantic.net>
5268
5269         * image.c (image_change_from_image): Copy all relevent data from
5270         source, now fullscreen toggle while loading an image works. This is
5271         really a move function, it moves most data from source to dest.
5272         Probably should add a copy function that copies pixbuf, or loads from
5273         scratch if still loading source.
5274         * img-main.c, img-view.c: Mouse wheel (b4, b5) now reverses the
5275         'mouse scrolls image' option when holding down shift, and also zooms
5276         when holding down control.
5277         * typedefs.h (ImageWindow): Removed crufty size_idle_id.
5278
5279 Thu Feb  8 16:31:57 2001  John Ellis  <johne@bellatlantic.net>
5280
5281         * filelist.c (file_is_moved): Fixed bug causing moved files not to
5282         removed from the file list.
5283         * image.c (image_scroll_real): Fix race condition between expose_event
5284         and scrolling so that redraws are always called on the correct region.
5285         (This was the cause of missing redraws when scrolling with the mouse).
5286
5287 Thu Feb  8 15:30:14 2001  John Ellis  <johne@bellatlantic.net>
5288
5289         * img-main.c: Connect 'b' and 'p' keys to the full screen as well.
5290
5291 Mon Feb  5 17:37:29 2001  John Ellis  <johne@bellatlantic.net>
5292
5293         * README, TODO: Updates.
5294         * configure.in: Release 0.9.4
5295
5296 Mon Feb  5 17:03:27 2001  John Ellis  <johne@bellatlantic.net>
5297
5298         * dupe.c: Added keyboard shortcuts for the duplicates window.
5299         * image.c (image_change_complete): Call the update function
5300         explicitely if sync if FALSE.
5301
5302 Mon Feb  5 14:06:07 2001  John Ellis  <johne@bellatlantic.net>
5303
5304         * collect-dlg.c, filelist.c, utilops.[ch]: Added wrappers around the
5305         new dialog routines to re-implement place dialogs under mouse option.
5306         * ui_utildlg.h: Fixed #defines for re-definition safety.
5307
5308 Fri Feb  2 15:36:17 2001  John Ellis  <johne@bellatlantic.net>
5309
5310         * dupe.[ch]: Optimized Loading of data when setuping up for a compare.
5311         Also speedups by using the image_sim_compare_fast() (below), and
5312         setting the buffer size of the image loader higher (8).
5313         * similar.[ch] (image_sim_compare_fast): New function that aborts when
5314         the return no longer has the possibility of reaching the minimim
5315         requested value. Significantly faster when used to search for images
5316         that are very close. (say, above .95).
5317
5318 Fri Feb  2 01:02:11 2001  John Ellis  <johne@bellatlantic.net>
5319
5320         * similar.[ch]: New files, provides functions for simple comparison
5321         of images by average area color content.
5322         * dupe.[ch]: Added similarity compare methods (normal, high, and low
5323         accuracy matches.) The cutoff for each is 90, 95, and 85 percent, resp.
5324
5325 Wed Jan 31 19:31:10 2001  John Ellis  <johne@bellatlantic.net>
5326
5327         * image.c: Fixed typo in comparison of window sizes in top_window_size,
5328         also do not call gtk_widget_set_usize in that func, as gdk_window_size
5329         is enough (and avoids duplicate size events). Also only call a redraw
5330         if the top window was not resized, as the size event will do this for
5331         us.
5332         * img-view.c: Attached ctrl-w to close a view window.
5333
5334 Wed Jan 31 16:43:21 2001  John Ellis  <johne@bellatlantic.net>
5335
5336         * dnd.c (get_uri_file_list): Handle file:/// as well, so that drops
5337         with this do not result in "///file" path names.
5338         * img-view.c, main.c: Added following key support: P to toggle pause
5339         of slideshows, B to be same as BackSpace, and 1 - 4 to set zoom level.
5340         Also marked debug printfs with if (debug), and and added --version
5341         command line option.
5342
5343 Tue Jan 30 20:05:36 2001  John Ellis  <johne@bellatlantic.net>
5344
5345         * collect.[ch]: Added maintenance funcs for renamed, moved  files, etc.
5346         * dupe.[ch]: Added maintenance funcs (as above), also added Remove to
5347         the pop-up menu, and fixed the alternating color swap (now that
5348         individual items can be removed, the colors need to be re-synced).
5349         * filelist.[ch]: Added file_is_moved(), and fixes to use the
5350         file_maint_*() stuff.
5351         * img-main.[ch] (main_image_get_collection): Added this accessor.
5352         * utilops.[ch]: Added file_maint_*() funcs, call these when files have
5353         been manipulated (rename, move, delete).
5354
5355 Tue Jan 30 16:04:42 2001  John Ellis  <johne@bellatlantic.net>
5356
5357         * image-load.[ch]: Added ability to set the priority of the image
5358         loader, default is G_PRIORITY_DEFAULT_IDLE (same as g_idle_add).
5359         * typedefs.h (ImageLoader): Added idle_priority (see above).
5360         * image.c: The drawing queue now uses an idle with priority
5361         G_PRIORITY_HIGH_IDLE, so that redraws of the image will occur before
5362         anything else. (this way when scrolling a still-loading image, the
5363         scrolled area is updated faster)
5364
5365 Mon Jan 29 13:48:47 2001  John Ellis  <johne@bellatlantic.net>
5366
5367         * collect-io.[ch], collect.[ch]: Const ify some arguments.
5368         * configure.in: Release 0.9.3
5369
5370 Mon Jan 29 13:35:21 2001  John Ellis  <johne@bellatlantic.net>
5371
5372         * collect.c (collection_window_new): Only load the path if it is
5373         absolute (starts with a '/');
5374         * main.c: Added -l,--list option to open a collection window with the
5375         files from the command line.
5376
5377 Mon Jan 29 12:52:19 2001  John Ellis  <johne@bellatlantic.net>
5378
5379         * menu.c: Applied patch from Zbigniew Chyla <cyba@gnome.pl> to remove
5380         translation markers from item_factory accessors.
5381         * po/pl.po: Updated Polish translation from
5382         Zbigniew Chyla <cyba@gnome.pl>
5383         * po/es.po: Updated Spanish translation (missed for 0.9.2) from
5384         Rodrigo Sancho Senosiain <ruy_ikari@bigfoot.com>
5385         * po/ru.po: Updated Russian translation (missed for 0.9.2) from
5386         Michael Bravo <mbravo@tag-ltd.spb.ru>
5387         * po/sl.po: Added Slovene translation (missed for 0.9.2) from
5388         Matej Erman <matej.erman@guest.arnes.si>
5389
5390 Thu Jan 25 21:09:10 2001  John Ellis  <johne@bellatlantic.net>
5391
5392         * utilops.c: Put the name of the file in the entry of the rename
5393         dialog, and select the text.
5394         * image.c: #ifdef some debugging output.
5395
5396 Thu Jan 25 15:28:08 2001  John Ellis  <johne@bellatlantic.net>
5397
5398         * image-load.c: We do not use gdk_pixbuf_loader's "area_prepared"
5399         signal, so make sure to retrieve the pixbuf before calling our loader's
5400         "area_updated" signal.
5401         * image.c: Added new_data status to debugging info.
5402
5403 Wed Jan 24 12:03:27 2001  John Ellis  <johne@bellatlantic.net>
5404
5405         * collect.c, dupe.c, img-view.c, window.c: Set the wmclass to all
5406         lowercase, and changes for new window_set_icon().
5407         * gqview.h, main.c (window_set_icon): Changed to use gdk_pixbuf.
5408         * preferences.c: Made about it's own window, and made the config window
5409         a little more compact.
5410
5411 Wed Jan 24 11:13:52 2001  John Ellis  <johne@bellatlantic.net>
5412
5413         * filelist.[ch] (path_list_filter): New function, applies filter
5414         options on a path list.
5415         * collect-table.c, dupe.c: Run path lists through the filter (above).
5416
5417 Wed Jan 24 00:11:15 2001  John Ellis  <johne@bellatlantic.net>
5418
5419         * image.c: Use the collection's name field instead of pulling it from
5420         the end of the path field.
5421         * main.c: Multiple files on the command line are now added to a
5422         collection, this collection is then set to the main window viewer.
5423
5424 Tue Jan 23 23:08:45 2001  John Ellis  <johne@bellatlantic.net>
5425
5426         * thumb.c: Fix xvpics support: the done signal was never being sent for
5427         xvpics. Also made xvpics scale to the thumbnail size even when smaller.
5428
5429 Tue Jan 23 21:58:49 2001  John Ellis  <johne@bellatlantic.net>
5430
5431         * image-load.[ch], typedefs.h: Added ability to set the size of the
5432         read buffer. The buffer is always 512 bytes (as before), what this
5433         does is set the number of time to read from the file on each idle call,
5434         in effect increasing the buffer size to 512 x size.
5435         * image.c: Fixed race condition where an image area may be ready to be
5436         queued before the pixbuf is set. Fixed the tile blank flag, it is now
5437         set correctly in all (?) cases. Set the image loader buffer size to 4,
5438         so that more of the image is decoded between render calls. Also removed
5439         unused crufty function argument for image_tile_expose.
5440
5441 Tue Jan 23 13:37:29 2001  John Ellis  <johne@bellatlantic.net>
5442
5443         * image.c: Fix scrolling while partially obscured, and made the focus
5444         drawing code cleaner (removed gtk_signal_disconnect() junk).
5445
5446 Tue Jan 23 11:32:08 2001  John Ellis  <johne@bellatlantic.net>
5447
5448         * globals.c, gqview.h, img-main.c, img-view.c, main.c, preferences.c,
5449         rcfile.c: Made the delete key optional, since this is a dangerous key
5450         with delete confirmation disabled. Also do not come out of fullscreen
5451         when confirm delete is disabled. Based on patch submitted by
5452         Niku Toivola <niku.toivola@iki.fi>
5453
5454 Mon Jan 22 20:32:53 2001  John Ellis  <johne@bellatlantic.net>
5455
5456         * image.c: Fix setting scale when zoom_to_fit_expands is false.
5457         * collect-dlg.c: Fix the missing cancel button in the overwrite confirm
5458         dialog for the save as dialog.
5459         (The good: Easy fixes. The bad: Stupid mistakes.
5460          The ugly: Had not tested these before release.)
5461
5462 Mon Jan 22 12:09:43 2001  John Ellis  <johne@bellatlantic.net>
5463
5464         * README: Updates.
5465         * configure.in: Release 0.9.2.
5466
5467 Sat Jan 20 00:37:47 2001  John Ellis  <johne@bellatlantic.net>
5468
5469         * ui_tabcomp.c (tab_completion_append_to_history): Fix to keep the
5470         same path in the entry when calling this.
5471
5472 Fri Jan 19 22:51:56 2001  John Ellis  <johne@bellatlantic.net>
5473
5474         * *.[ch]: Changed the copyright in all the files to 2001.
5475
5476 Fri Jan 19 22:41:45 2001  John Ellis  <johne@bellatlantic.net>
5477
5478         * gqview.spec.in: Upped gdk-pixbuf req. to 0.9.0
5479         * configure.in: Bump version to 0.9.2
5480         * utilops.c: Fix text in copy/move dialog for multiple files.
5481
5482 Thu Jan 18 19:45:22 2001  John Ellis  <johne@bellatlantic.net>
5483
5484         * dupe.c: When starting a compare set the status text to file count,
5485         gives user idea of how many files are being compared.
5486         * image.c: Compile clean-up.
5487         * po/*.po: Make distcheck touched these.
5488
5489 Thu Jan 18 19:22:40 2001  John Ellis  <johne@bellatlantic.net>
5490
5491         * filelist.c, window.c: Fix drop down history on main window to change
5492         to the selected path after the popup window is hidden.
5493         * image.c (image_pixbuf_sync): Clear the window when set to a NULL
5494         pixbuf.
5495         * utilops.c (generic_dialog_add_images): Implemented this function.
5496
5497 Thu Jan 18 17:25:39 2001  John Ellis  <johne@bellatlantic.net>
5498
5499         * filelist.c: Fix sticky thumbnails when changing to a dir with files
5500         that have similar file names as the previous dir. Fix refresh to
5501         reload thumbnails (it was stalling in the thumb_next checks).
5502         * menu.c: Call filelist_refresh() instead of the hack to refresh by
5503         changing to the same dir.
5504         * preferences.c: Use a button box for the ok, apply, cancel buttons.
5505         * po/POTFILES.in: Added new files, removed missing.
5506
5507 Thu Jan 18 16:38:19 2001  John Ellis  <johne@bellatlantic.net>
5508
5509         * ui_clist_edit.[ch], ui_fileops.[ch], ui_menu.[ch], ui_pathsel.[ch],
5510         ui_tabcomp.[ch], ui_tabcomp.xpm, ui_utildlg.[ch]: New convenience files
5511         from SLIK.
5512         * clist_edit.[ch], fileops.[ch], path.[ch], tabcomp.[ch], tabcomp.xpm,
5513         utildlg.[ch]: Removed (see above).
5514         * collect-dlg.[ch], collect-io.c, collect-table.c, collect.c, dnd.c,
5515         dupe.c, filelist.[ch], gqview.h, image.c, img-main.[ch], img-view.[ch],
5516         menu.[ch], preferences.c, rcfile.c, slideshow.c, thumb.c, typedefs.h,
5517         utilops.[ch], window.c: Use the new convenience functions, constify
5518         things where needed.
5519         * main.c: Moved the file path utils out of here (see above).
5520
5521 Wed Jan 17 15:06:47 2001  John Ellis  <johne@bellatlantic.net>
5522
5523         * image.[ch]: Added fit window to image support (back in).
5524         * fullscreen.c, img-view.c, window.c: Fixes for above (namespaces).
5525         * typedefs.c (ImagwWindow): Changed zoom_enable to top_window_sync.
5526
5527 Tue Jan 16 13:40:29 2001  John Ellis  <johne@bellatlantic.net>
5528
5529         * image.c: Scrolling while decoding a scaled image no longer causes
5530         dropped (black) areas. Also added an tile blank flag so that tiles
5531         with no loaded data simply render a black rectangle for a speed
5532         improvement (this is currrently semi-broken as image_tile_sync() is
5533         currently always called to set the blank flag to FALSE :(.
5534
5535 Mon Jan 15 21:53:25 2001  John Ellis  <johne@bellatlantic.net>
5536
5537         * fullscreen.c: Made the full screen window have a black background
5538         once again.
5539         * img-main.c: Enabled keyboard grab on fullscreen window, and re-grab
5540         the keyboard after a popup menu closes.
5541
5542 Sun Jan 14 17:39:47 2001  John Ellis  <johne@bellatlantic.net>
5543
5544         * image-load.c(image_loader_free): Fix a memory leak.
5545
5546 Sun Jan 14 17:18:47 2001  John Ellis  <johne@bellatlantic.net>
5547
5548         * dupe.c: Create the clist with 6 columns (forgot to increment this
5549         when I added the thumbnail column).
5550         * image.[ch]: Added the update functions, made them work.
5551         * img-main.c, img-view.c: Set the update functions, attach the windows
5552         for the titles.
5553         * window.c: Set the initial image to the logo.
5554
5555 Sun Jan 14 15:26:49 2001  John Ellis  <johne@bellatlantic.net>
5556
5557         * dnd.c: Temporarily disable dnd highlighting for image windows.
5558         * gqview.h, main.c: Minor fixups.
5559         * image.c: Generally works now, borders are cleared, focus is handled,
5560         etc. TODO: Add update callback, window title updating, and window
5561         auto-sizing.
5562         * menu.c: Added missing menu item 'Zoom to fit'. (must have been missed
5563         during convertion to a menu_factory.
5564         * window.c: Moved focus draw/handling code out of here (into image.c).
5565
5566 Sat Jan 13 18:51:20 2001  John Ellis  <johne@bellatlantic.net>
5567
5568         * image.c: Trying to fix scale bugs/crashes in gdk_pixbuf_scale(), here
5569         is what I determined with gdk-pixbuf 0.9.2 (CVS, as of now):
5570         
5571         This only applies when the scale width offset is not zero _and_ the
5572         resulting right edge of the scaled image is also the right side of the
5573         source image. (in other words: when rendering a tile that is aligned
5574         with the right side of the image).
5575
5576         Under the above conditions, gdk_pixbuf_scale() breaks for all
5577         GdkInterpTypes except NEAREST. gdk_pixbuf_compsite_color() is only
5578         broken for TILES (I suspect this is because eog uses it, but does not
5579         have a TILES option, so that was not tested). At this point I was tired
5580         of dealing with this mess, so I _think_ gdk_pixbuf_composite() is
5581         broken the same as gdk_pixbuf_scale() [memory is getting mushy]. Oh,
5582         and breakage means the last 2 columns of pixels are seamingly generated
5583         from some random memory point, at best causing them to be corrupted, at
5584         worst causing a crash.
5585
5586         So what I did: Use gdk_pixbuf_composite_color() since it is the least
5587         broken. It does seem slower than gdk_pixbuf_scale(), since it does
5588         more.
5589
5590         (I hope the gdk-pixbuf included with GTK+ 2.0 has this fixed, as the
5591         gdk-pixbuf in CVS seems to have little maintenance lately - 2 ChangeLog
5592         entries in 3 months...)
5593
5594 Fri Jan 12 12:07:44 2001  John Ellis  <johne@bellatlantic.net>
5595
5596         * image.c, typedefs.h: Well, it now displays the image in all zoom
5597         settings. Still have to add (back) scrolling, set up the update call
5598         function, and work on redrawing the borders (borders currently do not
5599         get cleared to remove the previous image).
5600
5601 Thu Jan 11 13:35:15 2001  John Ellis  <johne@bellatlantic.net>
5602
5603         * image.[ch], typedefs.h: Start towards a new method of rendering the
5604         image to the screen. The image window is now basically _only_ a
5605         gtk_drawing_area, and we do all the scrolling ourselves. Currently I
5606         am lucky if it doesn't crash, and really lucky if part of an image
5607         appears :) Well, at least the namespaces for the functions are at
5608         least a little saner now, so I accomplished something, althought the
5609         whole thing still needs to be re-thought from the tile/render point
5610         of view.
5611         * dnd.c, fullscreen.c, img-main.c, img-view.c, main.c, slideshow.c,
5612         utildlg.c, window.c: Made it at least compile for testing.
5613
5614 Mon Jan  8 22:57:05 2001  John Ellis  <johne@bellatlantic.net>
5615
5616         * dupe.c (dupe_menu_view): Use filelist_change_to_full_path() in place
5617         of main_image_change_to(), so that the file list of the main window
5618         also syncs to the image.
5619
5620 Mon Jan  8 21:55:54 2001  John Ellis  <johne@bellatlantic.net>
5621
5622         * dupe.[ch]: Added thumbnail support.
5623
5624 Mon Jan  8 20:22:12 2001  John Ellis  <johne@bellatlantic.net>
5625
5626         * dupe.[ch]: More work, many fixes, added right click menu, and
5627         generally made it nice to use (useable).
5628         * collect-table.c: Add the collection to the dupe window.
5629         * menu.c: Added 'Find duplicates...' to the file menu.
5630
5631 Sat Dec 30 16:45:51 2000  John Ellis  <johne@bellatlantic.net>
5632
5633         * README, TODO: Updates.
5634         * collect-table.c: Set default duplicate window mask to sort by name.
5635         * dupe.[ch]: Allow change of comparison method by adding drop down
5636         menu, fixed dnd when dragging from the list.
5637         * filelist.c: Only allow rename when new name does not exist.
5638         
5639
5640 Thu Dec 14 20:20:14 2000  John Ellis  <johne@bellatlantic.net>
5641
5642         * globals.c, gqview.h, main.c: Set up menus to use GtkItemFactory and
5643         allow saving of user's accel keys (to ~/.gqview/accels).
5644         * menu.c: Use GtkItemFactory, fix callbacks to (void) for those that
5645         do not use the data (because GtkItemFactory has a weird signal
5646         alignment (gpointer is first).
5647
5648         Sorry translators, menus must be re-translated (and it does not look
5649         like fun with GtkItemFactoryEntry using menu paths)
5650
5651 Thu Nov 30 17:45:08 2000  John Ellis  <johne@bellatlantic.net>
5652
5653         * configure.in: Do more compatible checks for png ?
5654         * tabcomp.c: Sanity checks for adding NULL key/path to list.
5655
5656 Mon Nov 20 12:32:08 2000  John Ellis  <johne@bellatlantic.net>
5657
5658         * image.c: Added render_types to better decrease unnecessary renders.
5659         * main.c, window.c: Save/Restore the window positions like in gimp,
5660         since that seems to work better.
5661         (And gimp programmers can't be wrong :)
5662
5663 Wed Nov  8 09:16:45 2000  John Ellis  <johne@bellatlantic.net>
5664
5665         * dupe.[ch]: Added new files containing 'find duplicates' window.
5666         * collect-table.c: Added 'find duplicates...' to pop-up menu.
5667         * fileops.[ch]: Added checksum_simple(), made some things const.
5668         * collect.[ch]: Added collection_info_valid().
5669         * filelist.[ch], menu.c, pathsel.c: const stuff.
5670         * image-load.[ch]: Added image_load_dimensions(), const stuff.
5671         * Makefile.am: Added dupe.[ch] to objects.
5672
5673 Sun Sep 10 09:55:50 2000  John Ellis  <johne@bellatlantic.net>
5674
5675         * po/*.po: Make distcheck did this.
5676         * configure.in, README: Release 0.9.1.
5677
5678 Fri Sep  8 17:34:37 2000  John Ellis  <johne@bellatlantic.net>
5679
5680         * thumb.[ch](maintain_thumbnail_dir): Added a clear argument for
5681         completely clearing the disk cache.
5682         * filelist.c, menu.c: Changes for above.
5683         * preferences.c: Added a 'Clear cache' button.
5684         * utildlg.c: Allow passing NULL pointer for the cancel callback in
5685         confirm_dialog_new() and confirm_dialog_add().
5686
5687 Fri Sep  8 16:58:20 2000  John Ellis  <johne@bellatlantic.net>
5688
5689         * icons/collect.xpmi: Added wm icon for collection windows.
5690         * collect.c: Use it.
5691
5692 Fri Sep  8 15:55:53 2000  John Ellis  <johne@bellatlantic.net>
5693
5694         * menu.[ch]: Unified the main window image and fullscreen pop-up menu,
5695         and made it consistent with the one for view window. Added 'slideshow
5696         pause'.
5697         * collect-table.c, filelist.c, globals.c, gqview.h: Uses new menus,
5698         4 less global Widget variables now, yay.
5699         * image.c: Reset scroll to 0,0 on new image.
5700         * img-main.[ch]: Used new menus, added necessary accessors for menus.
5701         * img-view.c: Added 'view in new window', and 'slideshow pause'.
5702
5703 Fri Sep  8 13:33:12 2000  John Ellis  <johne@bellatlantic.net>
5704
5705         * utildlg.[ch]: Added class parameter to set windowmanager class for
5706         dialogs. Also added option to set window under the mouse.
5707         * collect-dlg.c, filelist.c, utilops.c: Changed to add class
5708         assignments.
5709         * globals.c, gqview.h, preferences.c, rcfile.c: Added
5710         place_dialogs_under_mouse var.
5711
5712 Fri Sep  8 12:15:08 2000  John Ellis  <johne@bellatlantic.net>
5713
5714         * po/ru.po: Updated Russian translation,
5715         submitted by val <frob@df.ru>.
5716         * po/fr.po: Updated French translation,
5717         submitted by Jean-pierre PEDRON <jppedron@club-internet.fr>.
5718         * po/pl.po: Added Polish translation,
5719         submitted by Grzegorz Kowal <g_kowal@poczta.onet.pl>
5720         (yes, close to a release once I do this).
5721
5722 Fri Sep  8 11:51:52 2000  John Ellis  <johne@bellatlantic.net>
5723
5724         * collect.c, image.c: Removed #warning warnings :)
5725         * fullscreen.c: Make sure the window is set to 0,0.
5726         * preferences.c: Changed the way thumbnail sizes are selected. Now uses
5727         a dynamic drop down menu. Available sizes are now stored in a static
5728         list, and added a few more sizes.
5729
5730 Fri Sep  8 10:25:44 2000  John Ellis  <johne@bellatlantic.net>
5731
5732         * image.[ch]: Added read ahead buffering.
5733         * dnd.c, filelist.c, globals.c, gqview.h, img-main.[ch], img-view.c,
5734         main.c, preferences.c, rcfile.c, slideshow.c, typedefs.h: Hook up all
5735         the necessary read-ahead stuff. Allow verbosity levels for debug: each
5736         --debug on the command line increments verbosity.
5737         * thumb.c: Even on error, attempt to display what we have.
5738
5739 Wed Sep  6 13:52:45 2000  John Ellis  <johne@bellatlantic.net>
5740
5741         * image.c: Fix slow loading when zoomed in rather high. (clamp hack).
5742
5743 Wed Sep  6 12:58:42 2000  John Ellis  <johne@bellatlantic.net>
5744
5745         * image.c: Fix printing of window titles.
5746         * main.c: Changed Gimp default from 'gimp' to 'gimp-remote -n'.
5747         * preferences: Cleaned up window a bit, added tab 'window'.
5748
5749 Wed Sep  6 11:55:32 2000  John Ellis  <johne@bellatlantic.net>
5750
5751         * globals.c, gqview.h, image.c, img-main.c, img-view.c, main.c, menu.c,
5752         preferences.c, rcfile.c, thumb.c, typedefs.c: Added thumbnail quality
5753         option, zoom and dither quality options, adjustable zoom increment.
5754         Fixed menu separators to be insensitive.
5755
5756 Wed Sep  6 07:54:36 2000  John Ellis  <johne@bellatlantic.net>
5757
5758         * image.[ch]: Fix window resizing when zoom is auto, changed a few
5759         image_area options to be standard.
5760         * fullscreen.c, img-view.c, window.c: Use new image_area options that
5761         are now needed.
5762
5763 Thu Aug 31 07:44:38 2000  John Ellis  <johne@bellatlantic.net>
5764
5765         * image.[ch]: Add a image_area_reload() function, and fix zoom_adjust
5766         from autozoom mode (implement it).
5767         * img-main.[ch], menu.c: call image_reload when reload button/menu is
5768         selected.
5769         * utildlg.c: Made Escape key cancel all dialogs.
5770
5771 Thu Aug 31 07:17:10 2000  John Ellis  <johne@bellatlantic.net>
5772
5773         * image.c: Fix image_area_set_from_image to actually copy the pixbuf
5774         and image data.
5775         * img-main.c, img-view.c: Update for slideshow, below.
5776         * slideshow.[ch]: Added arguments to slideshow_start_* functions so
5777         that slideshows start from the current image when no in random mode.
5778         Also added a slideshow_pause set of functions, currently not used
5779         anywhere right now -- will hook to keys/mouse menus later.
5780
5781 Wed Aug 30 10:23:05 2000  John Ellis  <johne@bellatlantic.net>
5782
5783         * collect-table.c, collect.c: Changed 'loading thumbnails..' status to
5784         include a progress bar.
5785         * image.[ch], img-main.[ch], img-view.c, menu.[ch], tydefs.h: Added
5786         rotate options.
5787         * pixbuf_util.[ch]: Added pixbuf rotate 90 / mirror stuff.
5788         * README: Added rotate keys to key summary.
5789
5790 Tue Aug 29 08:26:35 2000  John Ellis  <johne@bellatlantic.net>
5791
5792         * pixbuf_util.[ch]: New files to manipulate pixbufs, currently only
5793         provides save to png function.
5794         * Makefile.am, thumb.c: Used save to png function.
5795         * configure.in: Test for png, now required.
5796         * image.c: Fix bug in queue area computation.
5797         * main.c: Change -help to --help in warning message.
5798         * po/*.po: Fix --help stuff.
5799
5800 Tue Aug 29 06:40:02 2000  John Ellis  <johne@bellatlantic.net>
5801
5802         * collect.[ch], collect-io.c: Make it work with new thumbnail loaders.
5803         * filelist.c, globals.c, gqview.h, image.c: Made the img_unknown.xpm
5804         global data, so it is only included once.
5805         * main.c: Bye bye, Imlib. It is now OFFICIALLY DEAD.
5806         * thumb.h, typedefs.h: Moved all structs to typedefs.h.
5807         * configure.in, gqview.spec.in, Makefile.am, README: Remove imlib
5808         references, added gdk-pixbuf stuff.
5809
5810 Mon Aug 28 13:27:04 2000  John Ellis  <johne@bellatlantic.net>
5811
5812         * thumb.[ch]: Added idle thumbnail generation. Hmm, the pixbuf 0.8.0
5813         GIF loader seems to error out on thumbnail _RE_generation, will have
5814         to look into that.
5815         * filelist.c: Use it.
5816         * collect-table.c: Broken, but at least it compiles to test new
5817         thumbnail code.
5818
5819 Mon Aug 28 08:06:15 2000  John Ellis  <johne@bellatlantic.net>
5820
5821         * image.c: Image loading now works with no black spots on scroll :)
5822         Still a lot of fixes/optimizes/mem cache management to do though...
5823
5824 Sat Aug 19 01:08:08 2000  John Ellis  <johne@bellatlantic.net>
5825
5826         * image.[ch]: Move to a floating point zoom, mor work on queue and
5827         rendering.. still really broken.
5828         * img-main.[ch], img-view.c, menu.c, typedefs.c: Update for new zoom
5829         number type.
5830
5831 Fri Aug 18 01:41:53 2000  John Ellis  <johne@bellatlantic.net>
5832
5833         * filelist.c: Fix crash when deleting files while loading thumbs (this
5834         code will die a horrible death anyway when I move thumb loading to an
5835         idle call that uses image-loader.c stuff.
5836         * image-load.[ch]: Gdk-pixbuf load wrappers to do it in idle calls.
5837         * image.[ch]: Moved to gdk-pixbuf (no caching right now), slow and
5838         error prone, no zoom.
5839         * gqview.h, tydefs.h: Changes for gdk-pixbuf. (Imlib is still used most
5840         places though <-- FIXME.
5841         * configure.in, Makefile.am: Added gdk-pixbuf, new files.
5842         * logo.xpm: Use staandard xmp for logo now, may move to inline pixbufs
5843         (eventually).
5844
5845 Sun Jul 23 21:34:22 2000  John Ellis  <johne@bellatlantic.net>
5846
5847         * img-main.c: Fix file operations from keyboard when coming out of full
5848         screen.
5849         * configure.in, README: release 0.9.0
5850
5851 Sun Jul 23 19:48:56 2000  John Ellis  <johne@bellatlantic.net>
5852
5853         * collect.c, img-view.c: It now compiles cleanly with "-g -Wall -O2
5854         -Wmissing-prototypes -Wmissing-declarations -Werror"
5855
5856 Sat Jul 22 20:46:45 2000  John Ellis  <johne@bellatlantic.net>
5857
5858         * tabcomp.c: Preserver order of keys between load/save.
5859         * filelist.[ch], window.c: Added a path history to the path entry,
5860         combo crashes when changed while popped up, so it does not work as
5861         expected, yet.
5862         * README: Updated.
5863
5864 Fri Jul 21 00:01:33 2000  John Ellis  <johne@bellatlantic.net>
5865
5866         * collect-io.[ch], collect.[ch], typedefs.h: Added saving of collection
5867         window sizes to the collection file. (and restore is 'save window
5868         positions' is enabled)
5869         * gqview.h, main.c: Renamed .gqviewrc to gqviewrc, since we are now
5870         our own hidden .gqview dir, no reason to hide the config file.
5871
5872 Thu Jul 20 22:29:42 2000  John Ellis  <johne@bellatlantic.net>
5873
5874         * collect-dlg.c, collect-io.[ch]: Minor fixes, added append functions.
5875         * collect-table.[ch], collect.c: Added more keyboard commands, more
5876         fixes.
5877         * image.c: Check that image in a collection is valid before using it.
5878         * menu.[ch], typedefs.c: Added SORT_PATH, which allows sorting by
5879         path (well, duh).
5880         * window.c: Changes for additional sort option.
5881
5882 Thu Jul 20 17:32:14 2000  John Ellis  <johne@bellatlantic.net>
5883
5884         * collect-io.c: Change warning printf.
5885         * preferences.c: Open proper tab when showing 'about'.
5886         * po/POTFILES.in: Updated to include collection files, as well ad the
5887         other new ones added since 0.8.2.
5888
5889 Wed Jul 19 19:07:27 2000  John Ellis  <johne@bellatlantic.net>
5890
5891         * clist_edit.c, img-main.c, img-view.c, main.c, tabcomp.c: Added
5892         support for the numeric keypad. Zoom using +, -, /, *; move with
5893         the number keys, etc.
5894         * collect-table.c, typedefs.h: Added support for navigation/selection
5895         in collections with the keyboard.
5896
5897 Tue Jul 11 16:09:14 2000  John Ellis  <johne@bellatlantic.net>
5898
5899         * collect-io.c, collect-table.[ch], collect.c, typedefs.c: Added frame
5900         for displaying status, image/selection count, etc.
5901         * globals.c, gqview.h, preferences.c, rcfile.c: Added collection tab to
5902         options, added selection style option. Save open_recent_max to config.
5903
5904 Tue Jul 11 13:37:00 2000  John Ellis  <johne@bellatlantic.net>
5905
5906         * collect-table.c: Properly set the main image on 'view'.
5907         * dnd.c, main.c: Namespace changes, make dropping collections work on
5908         main window.
5909         * filelist.[ch]: Moved file_next/prev/first/last to img-main.c, more
5910         appropriate there.
5911         * img-main.[ch]: Added (back) slideshow, various minor changes.
5912         * img-view.c: Added slideshow,  make keys work with CAPS on.
5913         * slideshow.c: Make only the main window support filelist slideshows.
5914
5915 Sat Jul  8 11:07:23 2000  John Ellis  <johne@bellatlantic.net>
5916
5917         * Makefile.am, fullscreen.[ch]: Made fullscreen more generic.
5918         * dnd.c, filelist.c, image.c, main.c, menu.c, window.c: Updated to new
5919         names (below).
5920         * img-main.[ch]: Redid fullscreen, slideshow, and namespace changes.
5921         * img-view.[ch]: Added fullscreen, changed way of doing popup menu.
5922         * slideshow.[ch]: Redid slideshow, made it more generic, it now accepts
5923         a path list, collection list, or falls back to filelist.
5924
5925 Thu Jul  6 23:00:10 2000  John Ellis  <johne@bellatlantic.net>
5926
5927         * collect-dlg.c: Don't free the data in the confirm_cancel callback,
5928         it is just a NOP.
5929         * collect-table.c, collect.c: More work on popup menus, added recursive
5930         directory dropping. And more work overall.
5931         * dnd.c, filelist.[ch], main.c, utildlg.[ch]: Used path_list_free
5932         in place of old free_selected_list, Exposed more in the filelist.h
5933         header.
5934         * fileops.[ch]: Added path_list_* functions.
5935         * img-view.[ch]: Added a way to start a new window from a collection.
5936
5937 Wed Jul  5 19:08:58 2000  John Ellis  <johne@bellatlantic.net>
5938
5939         * collect-dlg.c, collect-io.c, collect-table.c, collect.[ch]: Started
5940         popup menus for, sorting, saving, editing. Collections now have
5941         a ref count.
5942         * globals.c, gqview.h, main.c, menu.[ch], typedefs.h, window.c: Added
5943         recent open menu, history saving, popup menu utils.
5944         * pathsel.c: Synced the file list to change as the user types in the
5945         entry. (also fixes it to change when combo-items are selected).
5946         * tabcomp.[ch]: Added history_list features to load/save keys to a
5947         file.
5948
5949 Tue Jul  4 14:40:43 2000  John Ellis  <johne@bellatlantic.net>
5950
5951         * collect.[ch], collect-table.[ch]: Changed the way dnd selection data
5952         is generated, since the case of the same path being in a collection
5953         multiple times broke the old method. Moving between collections seems
5954         to work now. Added collection stepping accessors.
5955         * dnd.c, image.[ch], img-view.c: Added support for collection browsing.
5956         * main.c (filename_from_path): Test that path != NULL.
5957         * typedefs.c: Move collect.h typedefs here.
5958
5959         Its funny, but after this bit of hacking I feel dirty, like I did this
5960         all wrong...
5961
5962 Mon Jul  3 19:44:29 2000  John Ellis  <johne@bellatlantic.net>
5963
5964         * collect-table.c: Added a tooltip to display the filenames, probably
5965         should be an option.
5966
5967 Mon Jul  3 15:23:00 2000  John Ellis  <johne@bellatlantic.net>
5968
5969         * collect-dlg.[ch]: Added load save dialogs for collections.
5970         * collect-io.[ch], collect-table.c, collect.c: More work.
5971         * filelist.[ch]: Added select all routines.
5972         * gqview.h, main.c, rcfile.c, thumb.c: Move to a new config file
5973         hierarchy: Everything is under ~/.gqview now, old locations are moved
5974         to the new ones if found on start-up.
5975         * pathsel.[ch]: Added filtering toggle.
5976         * utildlg.h: Added a generic data pointer for FileDialogs.
5977         * menu.c: Added collection new/open and select all/none menu items.
5978
5979 Mon Jul  3 12:51:29 2000  John Ellis  <johne@bellatlantic.net>
5980
5981         * collect-table.c, collect.h: Added selections, started dnd data set,
5982         and other stuff.
5983         * dnd.[ch]: New function, make_uri_file_list(), put it in header.
5984
5985 Fri Jun 16 04:41:38 2000  John Ellis  <johne@bellatlantic.net>
5986
5987         * collect.[ch], collect-table.[ch]: Actually displays something now
5988         when a file is dragged on the window.
5989
5990 Fri Jun 16 01:56:32 2000  John Ellis  <johne@bellatlantic.net>
5991
5992         * img-main.c: When in fullscreen, hide the mouse cursor after
5993         5 seconds of inactivity.
5994
5995 Tue Jun 13 03:32:33 2000  John Ellis  <johne@bellatlantic.net>
5996
5997         * preferences.c: Fix typo (sorcforge -> sourceforge, boy am I dumb) and
5998         updated netpedia URL, since the old location is often (always) broken.
5999
6000 Tue Jun 13 03:26:39 2000  John Ellis  <johne@bellatlantic.net>
6001
6002         * collect.[ch], collect-io.[ch]: Start of collections, load/saveing
6003         should work, if there was anything that actually used the functions.
6004         Right now a blank window opens :)
6005         * collect-dlg.[ch], collect-table.[ch]: Basically empty right now.
6006         * menu.c, typedefs.h: Added 'Open collection...' menu item, added
6007         SORT_NONE to SortType enum.
6008         * rcfile.[ch]: quoted_value() is now public, it is used in collect-io.c
6009
6010 Thu Jun  8 19:57:54 2000  John Ellis  <johne@bellatlantic.net>
6011
6012         * *.[ch]: All c files now have corresponding .h headers, except
6013         globals.c and main.c, which are in gqview.h.
6014         * src/Makefile.am: Added the headers.
6015         * config.[ch]: renamed to preferences.[ch] to avoid conflict with
6016         autogenerated config.h.
6017
6018 Tue Jun  6 20:45:14 2000  John Ellis  <johne@bellatlantic.net>
6019
6020         * filelist.c, gqview.h, main.c: Added new function to change the
6021         current image through the filelist given pathname. Use it to fix bug
6022         causing filename not to be selected in list on startup and tab
6023         completion entry.
6024
6025 Tue Jun  6 20:04:03 2000  John Ellis  <johne@bellatlantic.net>
6026
6027         * filelist.c, globals.c, gqview.h, main.c, rcfile.c, window.c: Added
6028         basic sorting of files on name, size, or date.
6029
6030 Mon Jun  5 19:39:02 2000  John Ellis  <johne@bellatlantic.net>
6031
6032         * configure.in: Release 0.8.2
6033         * README: Updated.
6034         * utilops.c: Change a \b to a \n.
6035         * po/*.po: Make corresponding change to above.
6036
6037 Mon Jun  5 18:54:46 2000  John Ellis  <johne@bellatlantic.net>
6038
6039         * filelist.c (filelist_change_to): When going up one dir, make previous
6040         place visible in the list.
6041
6042 Tue May  9 00:54:36 2000  John Ellis  <johne@bellatlantic.net>
6043
6044         * clist_edit.c: Fixups for positioning.
6045         * config.c, filelist.c, globals.c, gqview.h, rcfile.c: Made in place
6046         renaming optional.
6047
6048 Mon May  8 23:05:06 2000  John Ellis  <johne@bellatlantic.net>
6049
6050         * clist_edit.[ch]: New files that allow in place editing of a clist.
6051         * filelist.c: Add in place renaming.
6052
6053 Mon May  8 18:08:20 2000  John Ellis  <johne@bellatlantic.net>
6054
6055         * config.c, main.c, utildlg.c, img-view.c, utildlg.c, window.c: Set
6056         icons on windows.
6057         * icons/[config.xpm, dialog.xpm, icon.xpm, tools.xpm, view.xpm],
6058         icons/Makefile.am: Add new icons for windows.
6059         * filelist.c, menu.c, tabcomp.c, thumb.c: -Wall cleanups/bug fixes. 
6060         * gqview.h, image.[ch], img-view.c: Fix image scaling for new views,
6061         GQview title is now after the image filename.
6062
6063 Mon May  8 15:06:35 2000  John Ellis  <johne@bellatlantic.net>
6064
6065         * main.c: Pressing delete now correctly deletes selected files.
6066         * config.c, globals.c, gqview.h, image.c, rcfile.c: Zoom to fit now
6067         expands images too (by default, added config option to have old
6068         behavior.
6069
6070 Mon May  8 13:56:01 2000  John Ellis  <johne@bellatlantic.net>
6071
6072         * po/it.po: Added Italian translation, submitted by
6073         Christopher R. Gabriel <cgabriel@pluto.linux.it>
6074         * po/es.po: Updated Spanish translation, submitted by
6075         Rodrigo Sancho Senosiain <ruy_ikari@bigfoot.com>
6076         * po/pt_BR.po: Updated brazilian translation, submitted by
6077         "Evandro F. Giovanini" <elinux@linuxave.net>
6078         * configure.in: Added it to ALL_LINGUAS
6079
6080 Fri Apr 14 15:50:22 2000  John Ellis  <johne@bellatlantic.net>
6081
6082         * README: Updated.
6083         * configure.in: release 0.8.1
6084
6085 Thu Apr 13 10:50:43 2000  John Ellis  <johne@bellatlantic.net>
6086
6087         * config.c, globals.c, gqview.h, image.c, img-main.c, img-view.c: Added
6088         support for mouse wheel (4,5) to scroll image or flip through images.
6089
6090 Thu Apr 13 09:38:25 2000  John Ellis  <johne@bellatlantic.net>
6091
6092         * configure.in, po/sk.po: Added Slovak translation, submitted by
6093          "Sandokan" <cortex@nextra.sk>
6094
6095 Thu Apr 13 09:35:36 2000  John Ellis  <johne@bellatlantic.net>
6096
6097         * configure.in, po/es.po: Added Spanish translation, subbmitted by
6098         Rodrigo Sancho Senosiain <ruy_ikari@bigfoot.com>
6099
6100 Thu Apr 13 09:32:42 2000  John Ellis  <johne@bellatlantic.net>
6101
6102         * confgure.in, po/fr.po: Added French translation, submitted by
6103          Jean-pierre PEDRON <jppedron@club-internet.fr>
6104
6105 Thu Apr 13 09:28:04 2000  John Ellis  <johne@bellatlantic.net>
6106
6107         * Makefile.am, configure.in: Include gqview.spec in make distcheck so
6108         that rpm -tb will work.
6109         * po/tr.po, gqview.desktop: Update Turkish translation, from
6110         Fatih Demir <kabalak@gmx.net>
6111
6112 Thu Apr  6 19:03:04 2000  John Ellis  <johne@bellatlantic.net>
6113
6114         * README: Release 0.8.0.
6115
6116 Wed Apr  5 11:35:52 2000  John Ellis  <johne@bellatlantic.net>
6117
6118         * filelist.c (rebuild_filter): Fix bug that hacked on the wrong string,
6119         causing custom_filter to only have one entry max.
6120         * utilops.c: Removed unused code, fix rename description.
6121
6122 Wed Apr  5 11:19:31 2000  John Ellis  <johne@bellatlantic.net>
6123
6124         * filelist.c, gqview.h, window.c: File list now scrolls to display
6125         the first file that matches the path entry box during tab completion.
6126         The directory changes to follow the completion too.
6127
6128 Wed Apr  5 10:30:51 2000  John Ellis  <johne@bellatlantic.net>
6129
6130         * filelist.c, gqview.h, main.c, menu.c, rcfile.c, slideshow.c: Added:
6131         Save thumnbnail mode to rcfile; add command line option for slideshow,
6132         rename other long options; make next/prev work properly during
6133         slideshow.
6134
6135 Tue Apr  4 15:00:15 2000  John Ellis  <johne@bellatlantic.net>
6136
6137         * po/zh_TW.Big5.po, configure.in: Added Traditional Chinese (Big5),
6138         translation from Kam Tik <kamtik@hongkong.com>
6139
6140 Tue Apr  4 13:20:43 2000  John Ellis  <johne@bellatlantic.net>
6141
6142         * *.[ch]: Update copyrights to 2000.
6143         * configure.in: Bumper version to 0.8.0 ('bout time)
6144         * README, TODO: Updates
6145
6146 Tue Apr  4 12:21:27 2000  John Ellis  <johne@bellatlantic.net>
6147
6148         * image.c, img-main.c: Fix mem leaks.
6149         * utildlg.[ch]: Added confirm_dialog_new_with_image() utility.
6150         * utilops.c: Added display of source and dest images to overwrite
6151         dialogs (uses above).
6152         All this is derived from a patch by Gordon Messmer <yinyang@eburg.com>
6153
6154 Tue Apr  4 10:44:22 2000  John Ellis  <johne@bellatlantic.net>
6155
6156         * main.c: Added full screen startup option (-f or -full), derived from
6157         patch by Rami Lehti <Rami.Lehti@Finland.Sun.COM>
6158
6159 Tue Apr  4 10:33:15 2000  John Ellis  <johne@bellatlantic.net>
6160
6161         * image.[ch], img-view.c, img-main.c, menu.c, gqview.h: Added ability
6162         to set the root window wallpaper. (If zoom is fit to window, image is
6163         scaled, otherwise tiled.
6164         Derived from patch by ENTERforNone <enterfornone@bigpond.com>
6165
6166 Tue Apr  4 09:45:08 2000  John Ellis  <johne@bellatlantic.net>
6167
6168         * img-main.c, menu.c: Changed full screen key to V. Derived from patch
6169         by Martial MICHEL <martial@users.sourceforge.net>
6170
6171 Tue Apr  4 09:32:14 2000  John Ellis  <johne@bellatlantic.net>
6172
6173         * fileops.c (get_current_dir): Fix problem when there is no read
6174         permission for the current dir. Derived from patch by
6175         Mathieu Dessus <mdessus@free.fr>
6176
6177  Apr  4 09:15:16 2000  John Ellis  <johne@bellatlantic.net>
6178
6179         * configure.in, po/tr.po: Added Turkish translation from
6180         Fatih Demir <kabalak@gmx.net> 
6181
6182 Thu Mar 16 17:04:24 2000  John Ellis  <johne@bellatlantic.net>
6183
6184         * pathsel.c, tabcomp.c: Fix memory leaks.
6185
6186 Fri Oct  1 17:17:21 1999  John Ellis  <johne@bellatlantic.net>
6187
6188         * po/ru.po: Added Russian translation
6189         from Oleg Andrjushenko <oandr@itec.cn.ua>
6190         * po/pt_BR.po: Added Brazilian Portuguese translation
6191         from Vitor Fernandes <vitor_fernandes@SoftHome.net>
6192         * po/ja/po: Added Japanese translation
6193         from Shingo Akagaki <akagaki@ece.numazu-ct.ac.jp>
6194         * configure.in: Updated ALL_LINGUAS.
6195
6196 Mon Sep  6 06:25:38 1999  John Ellis  <johne@bellatlantic.net>
6197
6198         * image.c, img-main.c, img-view.c, window.c: Remove warnings for
6199         gtk+-1.2.5-pre1. I think there are still realize issues with that
6200         version of GTK+, however.
6201
6202 Wed Aug 18 21:03:05 1999  John Ellis  <johne@bellatlantic.net>
6203
6204         * filelist.c: Fix reversal of calculating column width of the files
6205         list for icons vs. no icons.
6206         * pathsel.c, utilops.c: Set teh clist columns to autosize, so that
6207         horizontal scrollbar is accurate (and usually not there ;)
6208
6209 Wed Aug 18 20:35:07 1999  John Ellis  <johne@bellatlantic.net>
6210
6211         * gqview.h, tabcomp.c, utilops.c: Move and copy dialogs now have a
6212         history. This was done by adding a combo widget option to the tab
6213         completion routines.
6214
6215 Wed Aug 18 17:37:48 1999  John Ellis  <johne@bellatlantic.net>
6216
6217         * config.c: Fix 'fall back to 48x48 icon size' bug.
6218
6219 Mon Aug 16 13:25:29 1999  John Ellis  <johne@bellatlantic.net>
6220
6221         * po/de.po: Added german translation
6222         by mawarkus@t-online.de (Matthias Warkus)
6223         * configure.in (ALL_LINGUAS): Added de.
6224
6225 Mon Aug 16 12:44:56 1999  John Ellis  <johne@bellatlantic.net>
6226
6227         * utilops.c: Make it easier for translators.
6228
6229 Mon Aug 16 12:09:53 1999  John Ellis  <johne@bellatlantic.net>
6230
6231         * thumb.c: Regenerate thumbnails whent the preferred size changes.
6232
6233 Mon Aug 16 11:56:29 1999  John Ellis  <johne@bellatlantic.net>
6234
6235         * config.c, globals.c, gqview.h, main.c, rcfile.c: Removed the
6236         'save settings on exit' option and always save one exit, this was
6237         leading to confusion as to why settings are not always saved.
6238         * menus.: Removed the save settings menu line, no longer needed.
6239
6240 Tue Aug 10 07:03:44 1999  John Ellis  <johne@bellatlantic.net>
6241
6242         * main.c(main): Use gtk_set_locale();
6243         * window.c: Use gqview instead of main for wmhints.
6244
6245 Tue Aug 10 06:55:48 1999  John Ellis  <johne@bellatlantic.net>
6246
6247         * filelist.c: Update the file count when files are removed.
6248         * dnd.c: When a drag and drop results in a GDK_ACTION_MOVE, refresh
6249         the lists to account for possibly deleted files.
6250
6251 Fri Jul 23 17:09:02 1999  John Ellis  <johne@bellatlantic.net>
6252
6253         * window.c: Fix hang bug when dragging a file after starting with tools
6254         floating, then unfloating the window. (don't use gtk_widget_reparent
6255         for this).
6256         * dnd.c: Properly add "\r\n" to the end of all files for URI types, now
6257         all drags to Gimp 1.1.6 works.
6258
6259 Tue Jul 20 20:37:03 1999  John Ellis  <johne@bellatlantic.net>
6260
6261         * configure.in, Makefile.am: Added localedir definition.
6262         * src/main.c: Added locale and i18n initialization.
6263
6264 Tue Jul 20 20:03:18 1999  John Ellis  <johne@bellatlantic.net>
6265
6266         * configure.in, Makefile.am, autogen.sh: Add gettext calls, simplify
6267         gtk/imlib checks.
6268         * po/POTFILES.in: Created for gettext.
6269         * src/intl.h, gqmpeg.h, *.c: Added intl stuff, marked strings for
6270         translation.
6271
6272 Sat Jul 10 15:12:13 1999  John Ellis  <johne@bellatlantic.net>
6273
6274         * all files: Moved to autoconf and automake.
6275
6276 Sat Jul  3 08:23:59 1999  John Ellis  <johne@bellatlantic.net>
6277
6278         * gqview.h, README, gqview.spec: Release 0.7.0
6279
6280 Fri Jul  2 13:00:21 1999  John Ellis  <johne@bellatlantic.net>
6281
6282         * img-view.c: Added a 'close window' option to pop up dialog.
6283
6284 Fri Jul  2 09:11:02 1999  John Ellis  <johne@bellatlantic.net>
6285
6286         * main.c (main): Fix so that window does not expand to image size when
6287         strting up with an image (from command line).
6288         * img-view.c (view_window_new): Follow the limit window size option,
6289         if enabled.
6290
6291 Thu Jul  1 20:13:31 1999  John Ellis  <johne@bellatlantic.net>
6292
6293         * main.c: Setup random seed, for better random slideshows.
6294
6295 Sun Jun 27 15:17:10 1999  John Ellis  <johne@bellatlantic.net>
6296
6297         * img-main.c: Use black background for full screen.
6298         * menu.c: Keep keyboard grab when full screen menu closes.
6299
6300 Sun Jun 27 14:07:05 1999  John Ellis  <johne@bellatlantic.net>
6301
6302         * img-main.c: Keyboard now works with full screen.
6303         * main.c: Drop out of full screen before exiting.
6304
6305 Sun Jun 27 06:57:22 1999  John Ellis  <johne@bellatlantic.net>
6306
6307         * image.c: Fix image snapping to uppper left when resizing window.
6308         * main.c: Increase progressive scrolling rate.
6309
6310 Fri Jun 25 15:22:32 1999  John Ellis  <johne@bellatlantic.net>
6311
6312         * config.c, globals.c, gqview.h, img-view.c, main.c, rcfile.c: Added
6313         progressive key scrolling option.
6314
6315 Fri Jun 25 14:06:12 1999  John Ellis  <johne@bellatlantic.net>
6316
6317         * image.c, img-main.c, gqview.h: A few api changes with regard to image
6318         auto-sizing and zooming.
6319         * dnd.c: Made image dnd more generic to work with separate views.
6320         * img-view.c: Added  dnd and keyboard support.
6321
6322 Fri Jun 25 11:00:38 1999  John Ellis  <johne@bellatlantic.net>
6323
6324         * image.c, img-view.c, window.c: Fixups for window resizing and initial
6325         size setting.
6326
6327 Fri Jun 18 13:42:35 1999  John Ellis  <johne@bellatlantic.net>
6328
6329         * dnd.c, filelist.c, gqview.h, menu.c: Dragging and right clicking on
6330         file list no longer displays image, but correctly, only displays
6331         action/popup menu.
6332         * globals.c, gqview.h, img-main.c, main.c, menu.c, window.c: Add full
6333         screen option.
6334
6335 Fri Jun 18 04:24:51 1999  John Ellis  <johne@bellatlantic.net>
6336
6337         * image.[ch], img-main.c, gqview.h: Beginnings of adding capability to
6338         view images in a new window. ImageWindow functions are now completely
6339         generic (save one spot).
6340
6341 Wed Jun 16 03:47:36 1999  John Ellis  <johne@bellatlantic.net>
6342
6343         * slideshow.c, filelist.c: Make slideshow work correctly.
6344         * config.c, rcfile.c: Add saving and adjustment of slide show options.
6345
6346 Wed Jun 16 00:46:09 1999  John Ellis  <johne@bellatlantic.net>
6347
6348         * slideshow.c, globals.c, gqview.h: Begin slideshow ability.
6349         * menu.c: Add 'Toggle slideshow' so view menu, may not stay here.
6350         * filelist.c: Made a few functions needed for slideshow public.
6351
6352 Tue Jun 15 19:21:26 1999  John Ellis  <johne@bellatlantic.net>
6353
6354         * filelist.c, pathsel.c, tabcomp.c: Small speed improvements in
6355         handling (creating) GLists.
6356
6357 Sat Jun 12 23:17:34 1999  John Ellis  <johne@bellatlantic.net>
6358
6359         * rcfile.c (load_options): Fix memory leak, patch submitted by
6360         F. Petitjean <fpetitje@bureauveritas.com>
6361
6362 Thu May 27 14:32:22 1999  John Ellis  <johne@bellatlantic.net>
6363
6364         * gqmpeg.h, README, gqmpeg.spec: Release 0.6.1
6365
6366 Thu May 27 13:10:02 1999  John Ellis  <johne@bellatlantic.net>
6367
6368         * filelist.c: Generate thumbnails for visible files first. Thumbnails
6369         are now kept when renaming.
6370
6371 Thu May 27 11:54:09 1999  John Ellis  <johne@bellatlantic.net>
6372
6373         * pathsel.c: Merge improvements from gqmpeg version.
6374         * tabcomp.c, tabcomp.xpm: ditto.
6375         * utildlg.c: ditto.
6376         * config.c, utilops.c, window.c: Use newer features of above.
6377
6378 Thu May 27 11:44:00 1999  John Ellis  <johne@bellatlantic.net>
6379
6380         * filelist.c, image.c, gqmpeg.h: Properly update the image window when
6381         viewed files are moved, renamed, or deleted.
6382
6383 Thu May 27 11:01:31 1999  John Ellis  <johne@bellatlantic.net>
6384
6385         * main.c (main): Push correct visual and colormap to fix 8 but psuedo
6386         color displays.
6387
6388 Sun May 23 09:21:50 1999  John Ellis  <johne@bellatlantic.net>
6389
6390         * Makefile: Added static build target, some cleanup.
6391
6392 Sat Apr 10 19:01:33 1999  John Ellis  <johne@bellatlantic.net>
6393
6394         * window.c(toolwindow_create): Use gtk_window_set_policy on toolwindow
6395         so it can be resized smaller.
6396
6397 0.6.0 (3-5-98)
6398   > Major rewrite (60-70%), now requires gtk+-1.2.0
6399   > Multiple file selection.
6400   > Drag and drop.
6401   > Better keyboard support.
6402   > xvpics thumbnail support (read only), optional.
6403   - Add command line options to force show and hide of tools.
6404   * Fix tab completion bug.
6405   * Fix gtk 1.2.0 related bugs.
6406
6407 0.5.1 (12-8-98)
6408   - Should compile now without editing the Makefile with any gtk through 1.1.5
6409   * Fix file highlight bug when user tab completes to currently displayed dir.
6410   * Fix for FreeBSD.
6411
6412 0.5.0  (11-11-98)
6413   > Add path entry window with tab completion.
6414   > Add tab completion to all areas where a path can be typed.
6415   > Add option to save window positions.
6416   - Pressing '+' zooms image. Previously only '=' was bound, causing problems
6417     for some keyboard layouts.
6418   - Add border to floating tools window for better appearance on some WM's.
6419
6420 0.4.3  (10-09-98)
6421   * Fix bug when 'fit window to image' is on, tools float/hide, and the next
6422     image selected has the same dimensions, it would not display.
6423   * More fixes dealing with 'fit window to image'
6424
6425 0.4.2  (10-07-98)
6426   > Add 'fit window to image' option when tools float or hide.
6427   > Add copy and move dialogs.
6428   > Add option to hide the tools completely.
6429   > Save settings on exit option added, and option to restore tool state.
6430   - Pressing the [ESC] key will now stop loading of thumbnails.
6431   - [CTRL] - M is now moves files, purging old thumbnails is now [CTRL] - T.
6432   - Add save button to config dialog.
6433   - New configuration tab: image, moved relevent options there.
6434
6435 0.4.1  (9-11-98)
6436   > Scrollbars removed, now you can pan the image by pressing and dragging the
6437     mouse on the image. The arrow keys will pan too (use [Ctrl] to pan faster)
6438   > The file selection area and status line can be 'floated' into a separate
6439     window, this allows the image window to display more of the image.
6440   > The file delete confirmation dialog can now be disabled in the options
6441     window.
6442   > The beginnings of keyboard support ( see the keyboard chart, above )
6443   - Now if a thumbnail is older than it's parent image, the thumbnail is
6444     recreated, so that changed images have their thumbnail properly updated.
6445   - While loading thumbnails GQview is now responsive to commands, slowly, but
6446     it works. You can now load images, delete files, etc. while the thumbnails
6447     are being generated. The thumbnail generation can be interrupted too by
6448     simply turning them off.
6449   * The code that determines the user's HOME directory has been rewritten, now
6450     hopefully users of nis will be happy. If the directory is not found or
6451     cannot be determined, GQview exits semi-gracefully.
6452   * Fixed some bugs here and there.
6453
6454 0.4.0  (8-15-98)
6455   > Thumbnail caching added ($HOME/.gqview_thmb).
6456   - patch from Joshua Thomas Green applied for those that want to compile
6457     with GTK 1.1.x (the development version), just uncomment one line in the
6458     Makefile.
6459   - patch from Joel Young applied to the .spec file of the RPM version.
6460
6461 0.3.4  (7-30-98)
6462   * Fixed problem loading files into external editors when a space was in the
6463     pathname.
6464
6465 0.3.3  (5-15-98)
6466   - Changes to file listing code for speed improvement in large directories.
6467   * Fixed a bug that would cause a thumbnail's height or width to be zero when
6468     an image has a large aspect ratio.
6469   * Fixed some memory leaks in the file listing code.
6470   - Other small changes including source re-organization.
6471   - Added a pixmap file to use as an icon (gqview.xpm).
6472
6473 0.3.2  (5-7-98)
6474   * Fixed a bug which made the first editor slot useless from config dialog.
6475
6476 0.3.1  (5-4-98)
6477   - Changed filelist code to properly implement Glist.
6478   - Moved definitions of variables and #includes to better places.
6479
6480 0.3.0  (4-24-98)
6481   > New feature! Thumbnails displayed in the file list(us 't' to toggle).
6482   > Thumbnails size can be selected (General Options).
6483   > Rewrite (again) of the file list (to support adding/removing entries
6484     without re-reading the entire directory listing, [still need to convert
6485     the directory list, however]).
6486   - minor display layout changes (to accomodate the progress bar).
6487   - if a file format cannot be determined, a generic 'unknown image' picture
6488     is displayed.
6489   - added display for the number of files listed.
6490   - added '-debug' command line option for debug output (preliminary)
6491
6492 0.2.1  (4-8-98)
6493   > Added a handle, now the file lists are sizeable.
6494   - renamed menu item Exit to Quit.
6495   - Added missing file includes that were exposed with GTK+ 0.99.10 release.
6496
6497 0.2.0  (3-19-98)
6498   > External editors can be specified in the configuration window (max 8).
6499       Under the "external editors" tab.
6500   - Popup menu for filelist (delete, rename, and edit).
6501   - Filelist highlight now follows currently viewed image.
6502   - A few minor fixes.
6503
6504 0.1.1  (3-3-98)
6505   > Updated code to compile with GTK+-0.99.4
6506      (will not work with previous versions of GTK)
6507   - Command line no longer requires a complete path to a file if it is in
6508     the current working directory. (or must be relative to it)
6509   - When moving to the next (or previous) image, the file list
6510     scrolls to include the current image's name.
6511
6512 0.1.0  (2-28-98)
6513   > Added menu bar.
6514   > Added keyboard shorcuts.
6515   > Configuration can be saved (to .gqviewrc in user's home dir)
6516   > Command line support. (specify startup directory or file to view)
6517   > Can set startup directory in options window (can be disabled)
6518   > Added custom filtering options to support more formats
6519      (Imlib supports almost anything your system can read using
6520       ImageMagick or Netpbm, if available).
6521   > File operations: create directory, rename file, delete file.
6522   > clicking mouse on image:
6523       button one: next image
6524       button two: previous image
6525       button three: popup menu (zoom, file operations, edit image)
6526   > Added option to load image into The Gimp.
6527   - Fixed a bug in the history list truncating routine. (GQview would crash)
6528   - Other minor improvements and fixes.
6529
6530 0.0.3  (2-18-98)
6531   > Source code clean up! The source code has been organized
6532     and is now readable (some code still needs organizing, but
6533     at least now the code can be followed).
6534   > Makefile rewritten, it may still need editing for some systems.
6535     The '-g' gcc option was removed for the released code, this makes
6536     the binary about 1/3 smaller (it removes some debugging facilities)
6537   - Fixed the transparency problem. This removes the garbage displayed
6538     where an image is transparent, unfortunately for now it is set to purple.
6539
6540 0.0.2  (2-14-98)
6541   > Rewrote directory and file list handling, the lists
6542     can now be of any length.
6543   > Lists are now sorted.
6544   > History list no longer expands out of control as the
6545     directory path gets longer, entries are truncated at
6546     32 characters and '/...' is prepended.
6547   > Added configuration window, including:
6548     - show or hide dot files
6549     - select default zoom mode for new image
6550     - disable file filtering
6551     - choose file types to filter
6552     - about tab for version and contact info
6553
6554 0.0.1  (2-10-98)
6555   > No history, first release!
6556