-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChangeLog
3513 lines (2358 loc) · 102 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2010-11-17 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_scrolled.c: Fix broken scrolling with recent gtk+.
2009-02-08 Takuro Ashie <ashie@homa.ne.jp>
* src/utils_autocomp.c: Remove needless #include.
2009-01-14 Takuro Ashie <ashie@homa.ne.jp>
* src/utils_dnd.c, src/gimv_thumb_view_album.c, src/gimv_thumb_win.[ch],
src/gimv_dir_view.c, src/gimv_thumb_view.c:
Avoid some crash bugs caused by GtkNotebook's drag feature.
Remove needless codes.
2009-01-13 Takuro Ashie <ashie@homa.ne.jp>
* configure.ac, plugins/image_loader/Makefile.am,
plugins/image_loader/svg.[ch]: Removed needless code.
2009-01-13 Takuro Ashie <ashie@homa.ne.jp>
* plugins/image_loader/svg.c: Don't use GError.
2009-01-13 Takuro Ashie <ashie@homa.ne.jp>
* HACKING: Removed. Obsolete.
2009-01-13 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_win.c: Fix a compile error (without libexif).
2009-01-13 Takuro Ashie <ashie@homa.ne.jp>
* src/jpeg-data.[ch], src/jpeg-marker.[ch]: Moved from lib/libexif/.
* configure.ac, lib/Makefile.am, src/Makefile.am, src/gimv_image_view.c,
src/gimv_exif_view.[ch]:
Remove included libexif. Use distributor's libexif instead.
* lib/libexif: Removed.
2009-01-13 Takuro Ashie <ashie@homa.ne.jp>
* configure.ac, plugins/image_loader/Makefile.am:
Remove GIMV_IMAGELIB_*. They are obsolete.
2009-01-13 Takuro Ashie <ashie@homa.ne.jp>
* src/prefs.c, src/gimv_thumb_win.c: Remove walllpaper settings because
they are obsolete.
2009-01-08 Takuro Ashie <ashie@homa.ne.jp>
* src/utils_auto_comp.c: Fix a crash bug on selecting an auto completion
item.
2009-01-08 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_win.c: Fix a crash bug wich occurs on pressing the
"fit" button without a image.
2009-01-08 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_dir_view.c, src/gimv_thumb_win.c: Fix some bugs of widgets
dragging feature on latest gtk-2.10 or later.
2009-01-07 Takuro Ashie <ashie@homa.ne.jp>
* src/fileload.c:
- Fix a bug that the cancel button on the file selection dialog is
removed when an user press it.
- Remove needless code.
* m4/Makefile.m4: Remove needless files.
2009-01-07 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_win.c, src/gimv_thumb_win.c: Use GTK's stock items
for toolbar buttons.
2008-12-02 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_prefs_win.c: Fix a crash bug.
2007-10-28 Takuro Ashie <ashie@homa.ne.jp>
* configure.ac: Use AC_CONFIG_FILES.
2007-10-23 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_file_prop_win.[ch]: Rename from gtk_prop.[ch]
* src/Makefile.am, src/gimv_dir_view.c, src/gimv_thumb_view.c:
Follow the change.
2007-10-23 Takuro Ashie <ashie@homa.ne.jp>
* src/gtk_prop.[ch]: Rename a functions.
* src/gimv_dir_view.c, src/gimv_thumb_view.c: Follow the change.
2007-10-23 Takuro Ashie <ashie@homa.ne.jp>
* plugins/image_view/gimv_mplayer.c,
plugins/image_view/gimv_xine_priv.h:
Remove needless codes.
2007-10-23 Takuro Ashie <ashie@homa.ne.jp>
* intltool-*.in, po/Makefile.in.in: Removed from svn.
* autogen.sh: Add intltoolize.
2007-10-23 Takuro Ashie <ashie@homa.ne.jp>
* src/prefs_ui/prefs_ui_movie.c: Fix compile error.
* src/utils_md5.[ch]: Renamed from md5.[ch]
* src/Makefile.am, src/compare_md5.c: Follow the change.
* intltool-*.in: Updated to 0.36.
2007-10-22 Takuro Ashie <ashie@homa.ne.jp>
* src/utils_auto_comp.[ch]: Renamed from auto_completion.[ch]
* src/utils_char_code.[ch]: Renamed from charset.[ch]
* src/utils_file.[ch]: Renamed from fileutil.[ch]
* src/utils_file_gtk.[ch]: Renamed from gfileutils.[ch]
* src/utils_gtk.[ch]: Renamed from gtkutils.[ch]
* src/utils_japanese.[ch]: Renamed from japanese.[ch]
* src/utils_menu.[ch]: Renamed from menu.[ch]
* src/Makefile.am, *.[ch]: Follow the change.
2007-10-22 Takuro Ashie <ashie@homa.ne.jp>
* src/uitls_auto_comp.[ch]: Renamed from src/auto_completion.[ch]
* src/dnd.[ch]: Renamed from src/utils_dnd.[ch]
* plugins/thumbnail_view/detailview.c, src/gimv_comment_view.c,
src/gimv_image_view.c, src/gtkutils.c, src/gimv_thumb_view_album.c,
src/gimv_thumb_win.c, src/Makefile.am, src/gimv_dir_view.c,
src/gimv_thumb_view.c:
Follow the change.
2007-10-21 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_dir_view.[ch]: GObjectize.
* src/gimv_thumb_win.[ch]: Follow the change.
2007-10-21 Takuro Ashie <ashie@homa.ne.jp>
* src/fr-archive.[ch]: Remove fr_archive_ref() and fr_archive_unref().
* src/gimv_image_info.c, src/gimv_thumb_view.c: Follow the change.
2007-10-21 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_dir_view.[ch]: Remove parent_win arg from
gimv_dir_view_create(). * src/gimv_thumb_win.c: Follow the
change.
2007-10-21 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_text_win.[ch]: GObjectize.
* src/help.c: Follow the change.
2007-10-21 Takuro Ashie <ashie@homa.ne.jp>
* src/cursors.[ch]: Removed.
* src/gimv_icon_stock.[ch]: Moved codes in src/cursors.[ch] to here.
* src/Makefile.am, src/gimv_image_view.c, src/gimv_image_view_draw.c,
src/gimv_image_win.c: Follow the change.
* configure.ac: Remove src/cursors/Makefile.in.
2007-10-21 Takuro Ashie <ashie@homa.ne.jp>
* src/cursors/*: Moved to src/pixmaps/
* src/Makefile.am. src/cursors.[ch], src/pixmaps/Makefile.am:
Follow the change.
* src/cursors: Removed.
2007-10-21 Takuro Ashie <ashie@homa.ne.jp>
* plugins/image_saver/Makefile.am, plugins/io_stream/Makefile.am,
plugins/thumbnail/Makefile.am, plugins/image_loader/Makefile.am,
plugins/image_view/Makefile.am, plugins/thumbnail_view/Makefile.am,
src/Makefile.am, src/prefs_ui/Makefile.am, Makefile.am:
Remove .deps/* from CLEANFILES.
2007-10-21 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_slideshow.[ch]: GObjectize.
* src/gimageview.c: Move GimvSlideshow declaration to gimv_slideshow.h
2007-10-21 Takuro Ashie <ashie@homa.ne.jp>
* src/gimageview.c, src/gimv_slideshow.[ch]:
Declare givm_slideshow_open_window() and gimv_slideshow_delete() as
private.
2007-10-21 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_comment.[ch], src/gimv_comment_view.c:
Remove gimv_comment_ref() and gimv_comment_unref().
2007-10-21 Takuro Ashie <ashie@homa.ne.jp>
* plugins/image_loader/pixbuf_anim.c, plugins/image_loader/mng.c,
plugins/image_loader/pixbuf_loader.c,
plugins/image_view/image_view_xine.c,
plugins/image_view/image_view_mplayer.c,
src/gimv_thumb.c, src/gimv_image_view.c, src/gimv_image_loader.c,
src/gimv_image.c, src/gimv_image.h, src/gimv_image_saver.c,
src/compare_similar.c, src/gimv_image_view_draw.c:
Remove gimv_image_ref() and gimv_image_unref().
2007-10-20 Takuro Ashie <ashie@homa.ne.jp>
* etc/Makefile.am: Change install path of desktop file.
* src/gimageview.desktop: Add Categories and MIMEType field.
* plugins/thumbnail/gimv_thumb.c, plugins/thumbnail/xvpics.c,
src/gimv_image.c, src/gimv_image_saver.c, src/gimv_image_saver.h:
Remove gimv_image_saver_ref() and gimv_image_saver_unref().
2007-10-19 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_slideshow.[ch], src/gimv_image_win.[ch], src/gimageview.[ch],
src/gimv_thumb_win.c:
SlideShow -> Slideshow
2007-10-18 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_dir_view.[ch]: DirView -> GimvDirView
* src/gimageview.[ch], src/gimv_thumb_win.[ch], src/gimv_thumb_view.c:
Follow the change.
2007-10-18 Takuro Ashie <ashie@homa.ne.jp>
* src/pixbuf_utils.[ch]: Removed.
* src/gimv_image.c: Move codes in pixbuf_utils.c to this file.
2007-10-18 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_exif_view.[ch]: ExifView -> GimvExifView
* src/gimv_image_win.c, src/gimv_thumb_view.c: Follow the change.
2007-10-18 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_text_win.[ch]: TextViewer -> GimvTextWin
* src/help.c: Follow the change.
2007-10-17 Takuro Ashie <ashie@homa.ne.jp>
* plugins/image_saver/dither.[ch]: Moved from src/
* src/Makefile.am, plugins/image_saver/Makefile.am: Follow the change.
2007-10-17 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_view_draw.c: Rename from image_view_draw.c
* src/gimv_thumb_view_album.c: Rename from thumbnail_view_album.c
* src/Makefile.am: Follow tha change.
2007-10-17 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_exif_view.[ch]: Rename from src/exif_view.[ch]
* src/Makefile.am, src/gimv_image_win.c. src/gimv_thumb_view.c:
Follow the change.
2007-10-17 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_dir_view.[ch]: Renamed from src/dirview.[ch]
* src/Makefile.am, src/gimageview.c src/gimv_thumb_view.c,
src/gimv_thumb_win.c, src/prefs_ui/prefs_ui_thumbwin.c:
Follow the change.
2007-10-17 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_text_win.[ch]: Renamed from src/text_viewer.[ch]
* src/Makefile.am, src/help.c: Follow the change.
2007-10-17 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_nav_win.[ch]: Use private struct.
2007-10-16 Takuro Ashie <ashie@homa.ne.jp>
* plugins/thumbnail/gimv_thumb.c, plugins/image_loader/prefs_spi.c,
plugins/image_view/prefs_xine.c, plugins/image_view/prefs_mplayer.c,
src/gimv_elist.c, src/gimv_image_win.c, src/auto_completion.c,
src/gtkutils.c, src/gimv_prefs_win.c, src/gimv_thumb_win.c,
src/prefs_ui/prefs_ui_etc.c, src/prefs_ui/prefs_ui_common.c,
src/prefs_ui/prefs_ui_progs.c, src/prefs_ui/prefs_ui_thumbwin.c,
src/prefs_ui/prefs_ui_plugin.c, src/prefs_ui/prefs_ui_imagewin.c:
gtk_widget_set_usize -> gtk_widget_set_size_request.
2007-10-16 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_win.c. src/gimv_thumb_win.c: Don't offset help menu.
2007-10-16 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_win.c: Don't show resize grip of status bar.
* src/gimv_thumb_win.c: Don't bind accel keys to summary mode menu.
2007-10-16 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_elist.h, src/gimv_cell_pixmap.c, src/gimv_cell_pixmap.h,
src/gimv_nav_win.h, src/gimv_image_view.h, src/gimv_image_win.h,
src/gimv_dlist.c, src/gimv_dlist.h, src/gimv_scrolled.c,
src/gimv_zlist.h, src/gimv_scrolled.h, src/gimv_dupl_win.h,
src/gimv_zalbum.h, src/gimv_thumb_win.h:
GTK_CHECK_* -> G_TYPE_CHECK_*
2007-10-16 Takuro Ashie <ashie@homa.ne.jp>
* plugins/image_view/gimv_mplayer.h, plugins/image_view/gimv_xine.c,
plugins/image_view/gimv_xine.h, plugins/image_view/gimv_mplayer.c,
src/gimv_thumb_view.h, src/gimv_elist.c, src/gimv_elist.h,
src/gimv_nav_win.c, src/gimv_cell_pixmap.h, src/gimv_nav_win.h,
src/gimv_image_view.c, src/gimv_image_view.h, src/gimv_image_win.c,
src/gimv_image_win.h, src/gimv_dlist.c, src/gimv_dlist.h,
src/gimv_zlist.c, src/gimv_scrolled.c, src/gimv_zlist.h,
src/gimv_scrolled.h, src/gimv_dupl_win.c, src/gimv_dupl_win.h,
src/gimv_zalbum.c, src/gimv_thumb_win.c, src/gimv_zalbum.h,
src/gimv_thumb_win.h:
GtkObject -> GObject.
destroy -> dispose.
GtkType -> GType.
2007-10-16 Takuro Ashie <ashie@homa.ne.jp>
* plugins/archiver/zip-ext.c, plugins/archiver/lha-ext.c,
plugins/archiver/rar-ext.c, plugins/archiver/tar-ext.c,
plugins/archiver/zip-ext.h, plugins/archiver/lha-ext.h,
plugins/archiver/rar-ext.h, plugins/archiver/tar-ext.h,
plugins/image_view/gimv_mplayer.h, plugins/image_view/gimv_xine.c,
plugins/image_view/gimv_xine.h, plugins/image_view/gimv_mplayer.c,
src/gimv_thumb_view.h, src/gimv_thumb.c, src/gimv_thumb.h,
src/gimv_dupl_finder.c, src/gimv_dupl_finder.h, src/fr-archive.c,
src/fr-archive.h, src/gimv_image_view.c, src/gimv_anim.c,
src/gimv_anim.h, src/gimv_image_win.c, src/gimv_comment.c,
src/gimv_comment.h, src/gimv_image_loader.h, src/gimv_image.c,
src/gimv_image.h, src/fr-command.c, src/fr-command.h,
src/gimv_dupl_win.c, src/gimv_image_saver.c, src/gimv_image_saver.h,
src/gimv_thumb_win.c, src/fr-process.c, src/fr-process.h,
src/gimv_thumb_view.c:
- GtkObject -> GObject.
- gtk_type_new -> g_object_new.
2007-10-16 Takuro Ashie <ashie@homa.ne.jp>
* plugins/thumbnail/gqview.c, plugins/image_view/image_view_xine.c,
src/gimv_thumb.c, src/gimv_dupl_finder.c, src/gimv_comment_view.c,
src/gimv_nav_win.c, src/gimv_slideshow.c, src/fr-archive.c,
src/gimv_image_view.c, src/menu.c, src/gimv_image_win.c,
src/gimv_comment.c, src/thumbnail_view_album.c, src/gimv_image.c,
src/dnd.c, src/gtkutils.c, src/gimv_image_info.c,
src/fr-command.c, src/gimv_scrolled.c, src/gimv_dupl_win.c,
src/gimv_image_saver.c, src/gimv_prefs_ui_utils.c,
src/gimv_thumb_win.c, src/fileload.c, src/fr-process.c,
src/gimv_thumb_view.c, src/prefs_ui/prefs_ui_etc.c,
src/prefs_ui/prefs_ui_movie.c, src/prefs_ui/prefs_ui_common.c,
src/prefs_ui/prefs_ui_thumbwin.c, src/prefs_ui/prefs_ui_imagewin.c:
gtk_object -> g_object.
2007-10-15 Takuro Ashie <ashie@homa.ne.jp>
* src/prefs_ui/prefs_ui_etc.c: Fix typo.
2007-10-14 Takuro Ashie <ashie@homa.ne.jp>
* plugins/thumbnail/gqview.c, plugins/image_view/gimv_mplayer.c,
plugins/image_view/image_view_mplayer.c,
plugins/image_view/image_view_mplayer.c,
plugins/image_view/prefs_mplayer.c,
plugins/image_view/prefs_xine.c:
gtk_signal -> g_signal.
2007-10-14 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_scrolled.c, src/gimv_slideshow.c, src/gimv_thumb_view.c,
src/gimv_thumb_win.c, src/gimv_zlist.c, src/gtk_prop.c,
src/gtkutils.c, src/help.c, src/image_view_draw.c, src/menu.c,
src/thumbnail_view_album.c, src/text_viewer.c,
src/prefs_ui/prefs_ui_common.c, src/prefs_ui/prefs_ui_etc.c,
src/prefs_ui/prefs_ui_imagewin.c, src/prefs_ui/prefs_ui_progs.c,
src/prefs_ui/prefs_ui_thumbwin.c, src/prefs_ui/prefs_ui_thumbalbum.c:
gtk_signal -> g_signal.
2007-10-14 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_prefs.[ch]: Temporary remove. I'll reimplement it by using GKeyFile.
* src/Makefile.am: Follow the change.
* src/gimv_nav_win.c, src/gimv_prefs_ui_utils.c, src/gimv_prefs_win.c:
gtk_signal -> g_signal.
2007-10-14 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_saver.c, src/gimv_image_view.c, src/gimv_image_win.c:
gtk_signal -> g_signal
2007-10-14 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_comment.c, src/gimv_comment_view.c, src/gimv_dlist.c,
src/gimv_dupl_finder.c, src/gimv_dupl_win.c, src/gimv_image_loader.c,
srg/gimv_elist.c: gtk_signal -> g_signal
2007-10-14 Takuro Ashie <ashie@homa.ne.jp>
* src/auto_completion.c, src/exif_view.c, src/fr-archive.c,
src/fr-command.c, src/fr-process.c, src/fileload.c:
gtk_signal -> g_signal
2007-10-13 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_thumb_win.c: Don't show resize grip of status bar.
2007-10-13 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_loader.[ch]: GtkObject -> GObject
* src/gimv_image.c, src/gimv_image_view.c, src/exif_view.c:
Follow the change.
2007-10-13 Takuro Ashie <ashie@homa.ne.jp>
* plugins/thumbnail/konqueror-old.c, plugins/thumbnail/nautilus-2.0.c,
plugins/thumbnail/nautilus.c, plugins/thumbnail/konqueror.c,
plugins/thumbnail/ee.c: Removed obsolete cache types support.
* plugins/thumbnail/Makefile.am: Follow the change.
* src/pixmaps/gimageview.xpm: Changed to develop version.
2007-10-13 Takuro Ashie <ashie@homa.ne.jp>
* m4/libwmf.m4: quot.
* m4/xine.m4: update.
2007-10-13 Takuro Ashie <ashie@homa.ne.jp>
* acconfig.h: Remove.
2007-10-13 Takuro Ashie <ashie@homa.ne.jp>
* Makefile.am, autogen.sh, configure.ac, po/Makefile.in.in,
src/Makefile.am, src/gimageview.c:
glib-gettextize.
2007-10-13 Takuro Ashie <ashie@homa.ne.jp>
* intl: Removed.
* m4/lcmessage.m4, m4/glibc21.m4, m4/gettext.m4, m4/codeset.m4,
m4/progtest.m4, m4isc-posix.m4, m4/intltool.m4: Removed.
2007-10-13 Takuro Ashie <ashie@homa.ne.jp>
* src/intl.h: Removed.
* plugins/io_stream/gimv_gzip_io.c, plugins/io_stream/gimv_bz_io.c,
plugins/thumbnail/konqueror-old.c, plugins/thumbnail/nautilus-2.0.c,
plugins/thumbnail/nautilus.c, plugins/thumbnail/ee.c,
plugins/thumbnail/xvpics.c, plugins/image_loader/tga.c,
plugins/image_view/gimv_xine_priv.h,
plugins/thumbnail_view/detailview_prefs.c, src/gimv_elist.c,
src/gtk_prop.c, src/menu.c, src/gimv_dlist.c, src/gtkutils.c,
src/gfileutil.c, src/gimv_prefs_ui_utils.c, src/Makefile.am,
src/prefs_ui/prefs_ui_thumbalbum.c, src/gimv_cell_pixmap.c,
src/charset.c, src/gimageview.h:
intl.h -> glib/gi18n.h
2007-10-13 Takuro Ashie <ashie@homa.ne.jp>
* configure.ac: Fix some warnings.
* autogen.sh: Remove needless code.
* m4/libcharset.m4, m4/iconv.m4: Remove.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* configure.ac: Renamed from configure.in.
* m4/gdk-pixbuf.m4, m4/gnome.m4, m4/pkg.m4, m4/gtk.m4, m4/imlib.m4,
m4/libtool.m4: Removed needless files.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* plugins/archiver/zip-ext.c, plugins/archiver/lha-ext.c,
plugins/archiver/rar-ext.c, plugins/archiver/tar-ext.c,
plugins/image_view/gimv_xine.c, plugins/image_view/gimv_xine_priv.h,
plugins/image_view/gimv_mplayer.c:
Use G_DEFINE_TYPE.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_thumb.c, src/gimv_elist.c, src/gimv_image_win.c,
src/gimv_comment.c, src/gimv_image_loader.c, src/gimv_dlist.c,
src/gimv_image.c, src/fr-command.c, src/gimv_dupl_win.c,
src/gimv_thumb_win.c, src/gimv_thumb_view.c, src/gimv_dupl_finder.c,
src/gimv_cell_pixmap.c, src/gimv_nav_win.c, src/fr-archive.c,
src/gimv_image_view.c, src/gimv_anim.c, src/gimv_zlist.c,
src/gimv_scrolled.c, src/gimv_prefs.c, src/gimv_image_saver.c,
src/gimv_zalbum.c, src/fr-process.c:
Use G_DEFINE_TYPE.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* plugins/thumbnail_view/detailview2.c: Removed.
* plugins/thumbnail_view/Makefile.am: Follow the change
* plugins/thumbnail_view/detailview.c: Move codes to this file.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* src/gtk2-compat.[ch]: Removed.
* src/Makefile.am, *.[ch]: Follow the change.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_paned.h, src/gimv_hpaned.h, src/gimv_vpaned.h: Removed.
* src/Makefile.am, src/gtkutil.[ch], src/gimv_prefs_win.c,
src/gimv_thumb_win.c, src/gtk2-compat.c:
Follow the change.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* configure.in, src/gimv_dupl_win.c, src/gimv_prefs_win.c,
src/prefs_ui/prefs_ui_thumbwin.c, plugins/image_loader/prefs_spi.c:
Remove ENABLE_TREEVIEW.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* configure.in: Remove USE_GTK2 and USE_NORMAL_PANED.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_thumb.[ch], src/gimv_image_win.c, src/gimv_image_loader.c,
src/gimv_image_saver.c, src/gtkutils.c, src/gimv_prefs_win.c,
src/gimv_plugin.c, src/gimv_thumb_win.[ch], src/gimv_thumb_view.c,
src/gimv_nav_win.c, src/gimv_icon_stock.[ch], src/gimv_zlist.c,
src/gtk2-compat.c, src/gimv_scrolled.c, src/gimv_zalbum.c:
Remove USE_GTK2.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_paned.c. src/gimv_hpaned.c, src/gimv_vpaned.c: Removed.d
* src/Makefile.am: Ditto.
* src/gimv_paned.h, src/gimv_hpaned.h, src/gimv_vpaned.h,
src/japanese.c, src/gtk2-compat.[ch]:
Remove USE_GTK2.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_dlist.c, src/gimv_dupl_win.c, src/gimv_dupl_finder.c,
src/menu.[ch], src/prefs.c, src/text_viewer.c, src/help.c,
prefs_ui/prefs_ui_common.c, prefs_ui/prefs_ui_plugin.c,
src/gimv_elist.c:
Remove USE_GTK2.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* src/dnd.c, src/exif_view.c, src/fr-archive.c, src/fr-command.c,
src/fr-process.c, src/gimv_comment.c, src/gimv_comment_view.c:
Remove USE_GTK2.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* src/dirview_priv.h: Removed.
* src/Makefile.am: Ditto
* src/dirview.c: Moved codes in dirview_priv.h to this file.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* src/charset.[ch], src/auto_completion.c: Remove USE_GTK2.
* src/Makefile.am, src/dirview.c, src/dirview2.c:
Move dirview2.c to dirview.c.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* plugins/thumbnail/gimv_thumb.c
plugins/plugins/image_view/mplayer_image_loader.c
plugins/image_view/prefs_mplayer.c
plugins/image_view/gimv_xine.c
plugins/image_view/gimv_mplayer.c
plugins/thumbnail_view/detailview2.c
plugins/thumbnail_view/detailview.c:
Remove USE_GTK2.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* configure.in
plugins/image_loader/pixbuf_anim.c
plugins/image_loader/pixbuf_anim.h
plugins/image_loader/pixbuf_loader.c
plugins/image_loader/pixbuf_loader.h
plugins/image_loader/svg.c
plugins/image_loader/Makefile.am
src/pixbuf_utils.c
src/pixbuf_utils.h
src/prefs_ui/prefs_ui_common.c
src/help.c:
Remove ENABLE_GDK_PIXBUF and HAVE_GDK_PIXBUF
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_anim.c, src/gimv_image.c: Remove imlib related code.
2007-10-12 Takuro Ashie <ashie@homa.ne.jp>
* configure.in: Remove --with-gtk2 option.
2005-01-28 Takuro Ashie <ashie@homa.ne.jp>
* plugins/image_view/gimv_xine.c, plugins/image_view/gimv_xine.h,
plugins/image_view/gimv_xine_priv.c,
plugins/image_view/gimv_xine_priv.h,
plugins/image_view/prefs_xine.c:
Enabled to choose audio & video drivers for Xine view.
2005-01-07 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_thumb_win.c: Fixed compile error on Gtk+-1.2.
Thanks reporting > shippo-san
2004-12-29 Takuro Ashie <ashie@homa.ne.jp>
* Version-0.2.27
2004-12-21 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_thumb_win.[ch], po/ja.po: Added "Slideshow Options".
2004-12-21 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_win.c: Don't change the file to the next if the current
file is movie and playing while slideshow.
This patch is contributed by Christian Hammers
<lathspell@users.sourceforge.net>. Thanks!
2004-12-21 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_thumb_win.c: Added randamized slideshow.
This patch is contributed by Christian Hammers
<lathspell@users.sourceforge.net>. Thanks!
2004-12-20 Takuro Ashie <ashie@homa.ne.jp>
* src/dirview2.c: Do not scroll the directory view automatically when
the selected directory is in the view.
Thank you for your suggestion! > sholmif
2004-12-20 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_view.c: The bug that sometime same files are appeared
numbers of times on same thumbnail view has been fixed.
(Bug #1073316 Thanks reporting > shlomif).
2004-12-20 Takuro Ashie <ashie@homa.ne.jp>
* plugins/archiver/tar-ext.c, plugins/archiver/zip-ext.c:
Escape path of files to extract.
(Bug #908528 & #1074746. Thanks reporting > magnade and nobody)
2004-10-16 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_dupl_finder.c: Sorry, wrong hash function was used...
2004-10-04 Takuro Ashie <ashie@homa.ne.jp>
* plugins/image_view/Makefile.am, plugins/image_view/image_view_xine.c:
plugins/image_view/xine_image_loader.[ch],
plugins/image_view/prefs_xine.[ch], po/ja.po:
Added Xine image loader.
* plugins/image_view/prefs_mplayer.c: Fixed comment.
2004-10-04 Takuro Ashie <ashie@homa.ne.jp>
* plugins/image_view/gimv_xine_priv.c: Fixed clash bug on creating movie
thumbnail.
2004-10-03 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_win.c: "Auto resize to image size" didn't work
correctly when the "zoom" preference is set as "Do not change".
* src/gtkutils.c: Auto scaling feature of image views on over write
confirm dialog didn't work correctly.
2004-09-29 Takuro Ashie <ashie@homa.ne.jp>
* Version-0.2.26
2004-09-29 Takuro Ashie <ashie@homa.ne.jp>
* po/ja.po, src/help.c: Upddate "Special Thanks".
2004-09-29 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_win.c: Added gtk_object_class_add_signals().
* src/gimv_thumb_view.c: Do not use g_list_foreach() for destroying a
list.
2004-09-29 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_thumb_view.c: Fixed broken sorting.
2004-09-29 Takuro Ashie <ashie@homa.ne.jp>
* po/ja.po, src/gimv_image_view, src/gimv_image_win.c:
Fixed rotation label string (use "CCW" and "CW").
* src/prefs.c: Fixed default zoom type.
2004-09-29 Takuro Ashie <ashie@homa.ne.jp>
* po/ja.po, src/gimv_image_view.c, src/prefs_ui//prefs_ui_etc.c,
src/prefs_ui/prefs_ui_imagewin.c, src/prefs_ui/prefs_ui_thumbwin.c:
Added "Do not change" for default zoom and rotation.
2004-09-28 Takuro Ashie <ashie@homa.ne.jp>
* src/plugins/rar-ext.c, src/plugins/zip-ext.c:
Added ".cbr" and ".cbz" extensions for comics archive.
2004-09-22 Takuro Ashie <ashie@homa.ne.jp>
* src/exif_view.c, src/gimv_comment_view.c, src/gimv_dlist.c,
src/gimv_elist.c, src/gimv_prefs_win.c, src/help.c,
src/prefs_ui/prefs_ui_plugin.c:
Remove gtk_scrolled_window_set_shadow_type() when compile against
Gtk+-1.2.
2004-09-22 Takuro Ashie <ashie@homa.ne.jp>
* src/argparse.c, src/gimv_image_view.c, src/gimv_image_win.c,
src/gimv_slideshow.c, src/gimv_thumb_win.c, src/gtkutils.c,
src/prefs.[ch], src/prefs_ui/prefs_ui_etc.c,
src/prefs_ui/prefs_ui_imagewin.c, src/prefs_ui/prefs_ui_thumbwin.c:
Improved "Fit image size to window" feature.
This patch is contributed by Brent Baccala
<baccala@users.sourceforge.net>. Thanks!
* plugins/image_view/prefs_mplayer.c, plugins/image_view/prefs_xine.c,
po/fr.po, po/ja.po, src/dirview2.c, src/exif_view.c,
src/gimv_comment_view.c, src/gimv_dlist.c, src/gimv_elist.c,
src/gimv_prefs_win.c:
Arranged layout of some prefs pages and shadow type.
2004-09-21 Takuro Ashie <ashie@homa.ne.jp>
* src/prefs_ui/prefs_ui_imagewin.c: The bug that
gtkutil_get_data_from_adjustment_by_int_cb is used for float value is
fixed. Thanks reporting! > Brent Baccala <baccala@users.sourceforge.net>
2004-09-21 Takuro Ashie <ashie@homa.ne.jp>
* po/fr.po, po/ja.po, src/argparse.c, src/gimv_image_view.c: Fixed typo.
Thanks reporting! > Brent Baccala <baccala@users.sourceforge.net>
* src/gimv_image_view.c: Fixed a bug that "fit to frame" feature is not
work correctly when "keep aspect" is unchecked is fixed.
Thanks reporting! > Brent Baccala <baccala@users.sourceforge.net>
2004-09-21 Takuro Ashie <ashie@homa.ne.jp>
* Fixed many compile time warnings.
* src/dirview2.c, plugin/thumbnail_view/detailview2.c:
Do not emulate "button-press-event" and "button-release-event" for
"scroll-event" because this code cause unfortunate selection change.
2004-08-10 Takuro Ashie <ashie@homa.ne.jp>
* gimageview.spec.in: Fixed a bug which fails to rebuild by latest RPM.
Thanks reporting! > Yukichi <shfukuzawa@jcom.home.ne.jp>
2004-08-10 Takuro Ashie <ashie@homa.ne.jp>
* po/ja.po: Updated.
2004-07-10 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_thumb_view.c: Sorry, I enbuged at previous fix.
* src/thumbnail_view_album.c: Minor fix.
2004-07-10 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_thumb_view.c: Sorting thumbnails was broken.
2004-06-22 Takuro Ashie <ashie@homa.ne.jp>
* src/dirview.h, src/dirview.c, src/dirview2.c:
Removed "window" from DirView to avoid confuse. Now some text entry
dialogs invoked from DirView are transient for toplevel window.
Thanks reporting! > ten10.
2004-06-21 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_thumb_win.c: Fixed conflicted definition of cb_move_tab().
Thanks reporting! > tokumei_kibou-san.
2004-06-17 Takuro Ashie <ashie@homa.ne.jp>
* src/fileload.c: Do not replace "Cancel" label on file browser with
"Close" because this code causes clash on latest Gtk+2.
2004-05-24 Takuro Ashie <ashie@homa.ne.jp>
* src/dirview2: Removed GTK_DISABLE_DEPRECATED for compiling against
Gtk+-2.4.
2004-05-23 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_zlist.c: Update contents when the widget is mapped.
2004-05-23 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_zalbum.c, src/gimv_zalbum.h, src/thumbnail_view_album.c:
Fixed memory leak.
2004-04-11 Takuro Ashie <ashie@homa.ne.jp>
* plugins/thumbnail_view/detailview.c, src/dirview.c, src/dirview2.c,
src/fileload.[ch], src/gimv_thumb_view.[ch], src/gimv_thumb_win.[ch]:
GimvThumbView API is more refined.
2004-04-11 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_zlist.[ch], src/gimv_zalbum.[ch]:
Added gimv_zlist_insert () and gimv_zalbum_insert().
* src/gtkutils.[ch]: Added gtkutil_list_insert_sorted().
* plugins/thumbnail_view/detailview.[ch],
plugins/thumbnail_view/detailview2.c,
src/gimv_thumb_view.[ch], src/gimv_thumb_win.[ch], src/prefs.c,
src/prefs_ui/prefs_ui_thumbwin.c:
Refine many APIs and internal behavior of GimvThumbView.
2004-04-11 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_zlist.h: Fixed indent.
2004-04-11 Takuro Ashie <ashie@homa.ne.jp>
* plugins/thumbnail_view/detailview.[ch],
plugins/thumbnail_view/detailview2.c,
src/gimv_thumb_view.[ch], src/thumbnail_view_album.c:
Refined GimvThumbViewPlugin API.
2004-04-10 Takuro Ashie <ashie@homa.ne.jp>
* plugins/thumbnail_view/detailview.c, src/gimv_thumb_view.[ch],
src/gimv_thumb_win.c, src/thumbnail_view_album.c:
Removed "resize" virtual function.
2004-04-10 Takuro Ashie <ashie@homa.ne.jp>
* src/dirview2.c: Don't allow dropping files on separator.
2004-04-10 Takuro Ashie <ashie@homa.ne.jp>
* src/plugins/Makefile.am,
src/plugins/icon_widget.[ch], src/plugins/listview.c.[ch],
src/plugins/listview_prefs.[ch], src/plugins/thumbtable.[ch],
src/plugins/thumbtable_prefs.[ch]:
Removed obsolete implementation.
2004-04-10 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_thumb_view.[ch], src/gimv_thumb_win.c:
Moved some members of GimvThumbView into GimvThumbViewPriv.
2004-04-10 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_thumb_view.c: A wrong type checking is fixed.
* src/gimv_thumb_win.c: Added type checking for some object when layout
of thumbnail window is changed.
2004-04-10 Takuro Ashie <ashie@homa.ne.jp>
* plugins/thumbnail_view/detailview.[ch],
plugins/thumbnail_view/detailview2.c,
plugins/thumbnail_view/listview.[ch],
plugins/thumbnail_view/thumbtable.[ch],
src/gimv_dupl_win.h, src/gimv_thumb_view.[ch]:
Some APIs are modified to receive a GimvThumbView object as first
argument. Also some other minor bug fixes are made.
2004-04-09 Takuro Ashie <ashie@homa.ne.jp>
* plugins/image_loader/spi_image_loader.c,
plugins/thumbnail_view/detailview.[ch],
plugins/thumbnail_view/detailview2.c,
plugins/thumbnail_view/listview.[ch],
plugins/thumbnail_view/thumbtable.[ch],
src/gimv_thumb_view.[ch], src/gimv_thumb_win.h,
src/thumbnail_view_album.c, src/prefs_ui/prefs_ui_thumbwin.c:
Added const key word for some variables. Removed "_func" suffix from
virtual functions in GimvThumbViewPlugin.
2004-04-09 Takuro Ashie <ashie@homa.ne.jp>
* plugins/thumbnail_view/detailview.[ch],
plugins/thumbnail_view/detailview2.c,
plugins/thumbnail_view/listview.[ch],
plugins/thumbnail_view/thumbtable.[ch],
src/gimv_thumb_view.[ch],
src/gimv_thumb_win.c,
src/thumbnail_view_album.c:
GimvThumbView has been GtkObjectize.
2004-04-08 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_view.h, src/gimv_thumb_view.h:
Incremented plguin interface version and fixed indent.
* src/gimv_thumb_view.c, src/prefs_ui/prefs_ui_thumbwin.c:
Minor fix.
2004-04-08 Takuro Ashie <ashie@homa.ne.jp>
* src/thumbnail_view.[ch]: removed.
* plugins/thumbnail_view/detailview.[ch],
plugins/thumbnail_view/listview.[ch],
plugins/thumbnail_view/thumbtable.[ch],
src/Makefile.am, src/dnd.c, src/fileload.c, src/gimv_dupl_win.h,
src/gimv_thumb.c, src/gimv_thumb_view.[ch], src/gimv_thumb_win.[ch],
src/thumbnail_view_albubum.c, src/prefs_ui/prefs_ui_thumbwin.c:
Moved src/thumbnail_view.[ch] to src/gimv_thumb_view.[ch].
2004-04-08 Takuro Ashie <ashie@homa.ne.jp>
* plugins/thumbnail_view/detailview.c,
plugins/thumbnail_view/detailview.h,
plugins/thumbnail_view/detailview2.c,
plugins/thumbnail_view/listview.c,
plugins/thumbnail_view/listview.h,
plugins/thumbnail_view/thumbtable.c,
plugins/thumbnail_view/thumbtable.h,
src/dirview.c, src/dnd.c, src/fileload.c, src/gimageview.h,
src/gimv_dupl_win.[ch], src/gimv_plugin.c, src/gimv_thumb.[ch],
src/gimv_thumb_win.[ch], src/thumbnail_view.[ch],
src/thumbnail_view_album.c, src/prefs_ui/prefs_ui_thumbwin.c:
Added "Gimv" prefix for ThumbView.
2004-04-08 Takuro Ashie <ashie@homa.ne.jp>
* src/thumbnail_view.c: expression such as "thumb->selected == select"
is dangerous.
2004-04-08 Takuro Ashie <ashie@homa.ne.jp>
* plugins/image_view/image_view_xine.c,
plugins/thumbnail_view/detailview.c,
plugins/thumbnail_view/detailview.c,
plugins/thumbnail_view/detailview2.c,
plugins/thumbnail_view/listview.c,
plugins/thumbnail_view/listview.h,
plugins/thumbnail_view/thumbtable.c,
plugins/thumbnail_view/thumbtable.h,
src/compare_md5.c, src/compare_similar.c, src/gfileutil.c,
src/gimv_dupl_finder.c, src/gimv_dupl_win.c, src/gimv_thumb.[ch],
src/thumbnail_view.[ch]:
GimvThumb has been GtkObjectize.
2004-04-07 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_win.c: Sorry, below change is too wrong!
2004-04-02 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_image_win.c: Do not change the image automatically when the
slideshow interval is set to 0 sec (Debian bug #219213).
Thanks reporting! > Sudarshan Koushik <nsud@lycos.com>
2004-04-02 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_thumb_win.c: Added hotkey for "remove file"
(Debian bug #198178).
Thanks reporting! > Christian Hammers <ch@debian.org>
2004-03-20 Takuro Ashie <ashie@homa.ne.jp>
* src/gimv_prefs_win.c:
Changed position of "OK" button on preference window when compile
against Gtk+2.
2004-03-08 Takuro Ashie <ashie@homa.ne.jp>
* Added preferences for image scale on slideshow.
2004-03-07 Takuro Ashie <ashie@homa.ne.jp>
* Enabled to open EXIF view from GimvImageWin.
2004-03-07 Takuro Ashie <ashie@homa.ne.jp>
* configure.in
* lib/dllloader/pe_image.c: Check user_desc struct in asm/ldt.h.
2004-03-07 Takuro Ashie <ashie@homa.ne.jp>
* Use "GtkType" instead of "guint".
sizeof(guint) isn't always equal with sizeof(GtkType).
This patch is contributed by Tomoya TAKA <tomoya@olive.plala.or.jp>.
Thanks!
2004-02-29 Takuro Ashie <ashie@homa.ne.jp>
* Version-0.2.25
2004-02-29 Takuro Ashie <ashie@homa.ne.jp>
* Fixed compile error on Gtk+-1.2.
2004-02-25 Takuro Ashie <ashie@homa.ne.jp>
* Added Xinerama support.
2004-02-25 Takuro Ashie <ashie@homa.ne.jp>