-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog.pre-1-0
3329 lines (2129 loc) · 105 KB
/
ChangeLog.pre-1-0
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
Tue Jun 2 16:40:33 PDT 1998 Manish Singh <yosh@gimp.org>
* Made 1.0.0 release
Tue Jun 2 16:15:51 PDT 1998 Manish Singh <yosh@gimp.org>
* Makefile.am: install gtkrc.forest2 in $prefix/share/gimp
* plug-ins/CEL/CEL.c: change bzero to memset for portability
* plug-ins/gfli/fli.c: #include <glib.h> to get inline defintion
Mon Jun 1 01:05:52 EDT 1998 Matthew Wilson <msw@gimp.org>
* plug-ins/grid.c: fix a comment. :)
* ChangeLog: fix my last entry
Sun May 31 21:50:12 EDT 1998 Matthew Wilson <msw@gimp.org>
* plug-ins/deinterlace/deinterlace.c: patch from sjburges
to prevent out of bounds indexing array (anyone see a pattern
here?)
Sun May 31 15:35:33 PDT 1998 Manish Singh <yosh@gimp.org>
* gimptool.in: use test -r instead of test -e for portability
Sun May 31 08:03:54 EDT 1998 Matthew Wilson <msw@gimp.org>
* plug-ins/exchange/exchange.c: fix from sjburges to stop
out of bounds indexing of array.
Sun May 31 01:58:36 PDT 1998 Manish Singh <yosh@gimp.org>
* README
* INSTALL: make info a bit more current
* gimptool.in: update usage message
* gtkrc.forest2: sample gtkrc file with cool stuff from tigert
* gimp.1
* gimptool.1: updated/rewrote some
* app/fileops.c: removed the "might have tried to save an RGB
image with an indexed plugin" since g_message gives nice user
feedback now
* app/interface.c: fix the mem leak properly
Sat May 30 23:42:12 PDT 1998 Manish Singh <yosh@gimp.org>
* app/interface.c: plug mem leak in message_box
* plug-ins/mail/mail.c: use g_message
* plug-ins/script-fu/scripts/carve-it.scm: fix for gimp-layer-new
params from Kevin Cozens <kcozens@interlog.com>
* plug-ins/CEL/CEL.c
* plug-ins/pcx/pcx.c
* plug-ins/tiff/tiff.c: updates from author
* plug-ins/png/png.c: correct copyright
* plug-ins/print/print.h: use correct version
Fri May 29 23:54:42 PDT 1998 Manish Singh <yosh@gimp.org>
* more changes to use g_message. All of app uses it now, plus
the major file plugins.
* plug-ins/CEL/CEL.c: update from author
* INSTALL: info about why optional plugins won't build
Sat May 30 02:03:19 EDT 1998 Matthew Wilson <msw@gimp.org>
* plug-ins/grid/grid.c: fix by sjburges to fix grid on selections.
Fri May 29 23:34:07 EDT 1998 Matthew Wilson <msw@gimp.org>
* plug-ins/gaus_iir/gauss_iir.c: fix by sjburges to fix horiz
only blur. Funky bug!
Fri May 29 21:36:36 MEST 1998 Sven Neumann <sven@gimp.org>
* app/xcf.c: changed fopen parameters for better portability
Thu May 28 20:12:02 MEST 1998 Sven Neumann <sven@gimp.org>
* scripts/blend-anim.scm: use gimp-message to output an
error message
Thu May 28 19:05:13 MEST 1998 Sven Neumann <sven@gimp.org>
* plug-ins/rotate/rotate.c
* plug-ins/screenshot/screenshot.c: adapted to the new
way of error message handling
Thu May 28 01:16:26 PDT 1998 Manish Singh <yosh@gimp.org>
* redid the error message handling. g_message now calls
message_box or prints to console depending on whether the
no_interface is set or not. gimp-message is also exported
to the PDB as a wrapper to g_message, and libgimp has a new
API: gimp_message. libgimp also overrides g_message for all
plugins. Converted lots of messages in app/* to g_message.
Made script-fu a little friendlier.
* updated the regex code from grep 2.2
Wed May 27 11:22:46 MEST 1998 Sven Neumann <sven@gimp.org>
* plug-ins/ifscompose/ifscompose.h: removed definition of TRUE
and FALSE
Tue May 26 17:20:26 EDT 1998 Adrian Likins <adrian@gimp.org>
* plug-ins/sript-fu/scripts/predator.scm: made insensitive on
greyscale images
Tue May 26 12:03:07 PDT 1998 Manish Singh <yosh@gimp.org>
* app/batch.c: do "-" to "_" conversion after an failed pdb
lookup, just to make sure
* app/paint_core.c: fix for some uninitialized vars
Tue May 26 01:17:14 PDT 1998 Manish Singh <yosh@gimp.org>
* gimptool.in: added --install-script. Use @INSTALL@ stuff
* libgimp/gimpimage.c
* libgimp/gimplayer.c: fixes for silly errors from Marc Lehmann
* libgimp/gimpchannel.c: implemented gimp_channel_set_show_masked
and gimp_channel_get_show_masked (already in gimp.h)
* plug-ins/blinds/blinds.c
* plug-ins/bmp/bmp.h
* plug-ins/mosaic/mosaic.c
* plug-ins/ripple/ripple.c
* plug-ins/tga/tga.c
* plug-ins/tileit/tileit.c: remove definitions of TRUE and FALSE
since glib does it for us
Sun May 24 08:41:34 EST 1998 Stephen Norris <srn@fn.com.au>
* plug-ins/displace/displace.c: Fix to GUI bug.
Fri May 22 19:23:59 MEST 1998 Sven Neumann <sven@gimp.org>
* docs/gimp_quick_reference.*: some small fixes and additions
Fri May 22 00:46:18 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/batch.c: removed global conversion from '-' to '_'
Thu May 21 13:03:50 PDT 1998 Manish Singh <yosh@gimp.org>
* updated Adam's stuff
* app/app_procs.c: squleched warning
* gimptool.in: quote stuff to be flexible about our CC settings
Wed May 20 20:21:45 EST 1998 Stephen Norris <srn@fn.com.au>
* plug-ins/bz2/bz2.c: Check return code from fopen.
* plug-ins/gz/gz.c: Check return code from fopen.
Tue May 19 14:02:41 MET DST 1998 Sven Neumann <sven@gimp.org>
* added a new script from Wolfgang Hofer (fade-outline.scm)
Mon May 18 20:30:44 MEST 1998 Sven Neumann <sven@gimp.org>
* updated the gfli plug-in to the version on the registry and
folded the "chunk-type-7-bug"-patch back in
Sun May 17 23:06:38 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/app_procs.c: applied patch from Michael Sweet to correct
NULL deref in splash screen.
Mon May 18 02:50:03 MEST 1998 Sven Neumann <sven@gimp.org>
* plug-ins/tiff/tiff.c: updated tiff plug-in
Sun May 17 17:31:05 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/maze: updated maze plugin
* plug-ins/script-fu/scripts/circuit.scm: reflected maze pdb
interface change
Sun May 17 14:44:32 PDT 1998 Manish Singh <yosh@gimp.org>
* app/gimage.c: fix for merging indexed and indexed-alpha
layers (from Raph)
Sun May 17 14:02:44 PDT 1998 Manish Singh <yosh@gimp.org>
* app/app_procs.c: reverted the splash screen idle loop changes
since they expose some weird GtkLabel redraw bugs
Sun May 17 00:15:40 PDT 1998 Manish Singh <yosh@gimp.org>
* Made 0.99.31 release
* updated print plugin
Fri May 15 23:35:43 PDT 1998 Manish Singh <yosh@gimp.org>
* app/fileops.c: made url plugin autodetect work again
Fri May 15 03:54:48 EDT 1998 Matthew Wilson <msw@gimp.org>
* gimp_tips.txt: fixed typo
Fri May 15 03:03:00 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/iscissors.c: fixed bezierify on offset layers
Thu May 14 21:18:27 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/iscissors.c: a very sad attempt to fix some iscissors
lockups/segfaults
Thu May 14 18:10:38 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/app_procs.c: made the splash screen a GTK_WINDOW_POPUP,
changed the hackish gtk_main_iteration with a null idle
loop to a more stylish while (gtk_events_pending())
gtk_main_iteration();
Wed May 13 23:58:20 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/fileops.c (file_overwrite_yes_callback): destroy the
Overwrite dialog's window before running the save.
Wed May 13 17:31:27 PDT 1998 Manish Singh <yosh@gimp.org>
* app/frac.c: stubbed out nonworking code
* updated print plugin
Wed May 13 00:03:18 MEST 1998 Sven Neumann <sven@gimp.org>
* added nine new scripts from Chris Gutteridge
(asc2img.scm, camo.scm, coffee.scm, distress_selection.scm,
fuzzyborder.scm, old_photo.scm, rendermap.scm
spinning_globe.scm, tileblur.scm)
* added two gradients that are used by the new scripts
(Coffee, Land_and_Sea)
Tue May 12 02:49:12 PDT 1998 Manish Singh <yosh@gimp.org>
* app/app_procs.c: create tips dialog after loading files on the
command line, instead of in an idle function. Lamer hack, but it
works better.
* app/gdisplay_ops.c: fix for new view on zoomed image
* Makefile.am
* gimptool.1: added man page for gimptool by Ben Gertzfield
Mon May 11 16:59:18 PDT 1998 Manish Singh <yosh@gimp.org>
* gimptool.in: added --install-bin options for installing already
built plugins
* app/convolve.c: check for indexed images properly
* app/layer.c: fix tile refcount oversight
* app/text_tool.c: fix for unlikely memleak
* libgimp/gimpimage.c: stupid ytpo ;)
* plug-ins/gfli/gfli.c: applied gimp-wh-980507-0 to fix
"chunk-type-7-bug"
Mon May 11 23:28:20 MEST 1998 Sven Neumanns <sven@gimp.org>
* added two new scripts from Hrvoje Horvat
(glossy.scm, 3d-outline.scm)
Mon May 11 21:40:25 MEST 1998 Sven Neumann <sven@gimp.org>
* updated print plug-in
Fri May 8 20:51:24 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/script-fu/script-fu-console.c: workaround for text
widget crash from Owen
Thu May 7 16:32:15 PDT 1998 Manish Singh <yosh@gimp.org>
* gimptool.in: added --install and --install-admin options
to build and install a plug-in automagically
Thu May 7 15:24:31 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/fileops.c: more changes to fileselection
Tue May 5 11:40:28 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/psd/psd.c: updates from Adam
* plug-ins/script-fu/scripts/text-circle.scm: new version
Mon May 4 21:24:03 PDT 1998 Manish Singh <yosh@gimp.org>
* Made 0.99.29 release
Mon May 4 19:32:54 PDT 1998 Manish Singh <yosh@gimp.org>
* app/plug_in.c: make repeat last and re-show plugin menu
sensitive to image type
Mon May 4 04:12:54 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: define and export version number parts. Check for
gtk 1.0.1
* gimptool.in: do some arg check for --build
* app/fileops.c: handle file overwrite dialog too
Sun May 3 22:10:05 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/fileops.c: make fileselectors insensitive during
loading and saving
Sun May 3 00:24:31 MEST 1998 Sven Neumann <sven@gimp.org>
* app/channels_dialog.c: minimalistic change to the interface,
makes it possible to set the channel opacity to 100.0%
(was 99.0% before)
Sat May 2 14:31:46 PDT 1998 Manish Singh <yosh@gimp.org>
* app/about_dialog.c
* app/app_procs.c
* app/main.c: use GIMP_VERSION from config.h now
* gimptool made to ease plug-in development and installation
Sat May 2 16:10:05 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/channels_dialog.c: removed my broken fix, put in a fix
that works
Sat May 2 15:20:54 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/channels_dialog.c: check to be sure that the gimage still
exists when editing a channel - fixes bug report from Sven
Sat May 2 00:59:23 PDT 1998 Manish Singh <yosh@gimp.org>
* gimp.1: spelling corrections from Tamito Kajiyama
Sat May 2 00:41:36 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/tiff/tiff.c: another special case fix from Nick Lamb.
I said it before, and I'll say it again: TIFF sucks
* app/fuzzy_select.c: find_boundary works nicer in indexed mode
(from Adrian)
* app/paint_funcs.c: generate dissolve random number table better
(thanks Owen)
* README: bring up to date
Fri May 1 23:09:33 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/channels_dialog.c: handle double click on our own since
channels_dialog_flush nukes the widgets and we never get
2BUTTON events
Fri May 1 13:22:21 1998 Tim Janik <timj@gtk.org>
* app/channels_dialog.c: keep the channel list uptodate
on position changes. unref list items on destruction.
the app/channels_dialog.c app/layers_dialog.c code for dealing
with GtkList is a MESS, it needs to be completely reworked
somewhen. this is *no* fun: the selection is changed so update
the list (causing the selection to change again: the selection
is changed so update the list (causing the selection to change
again: the selection is changed so update the list (.... oops,
sorry got caught in a recursive loop there ;) ))).
Thu Apr 30 16:49:41 PDT 1998 Manish Singh <yosh@gimp.org>
* app/channels_dialog.c: fix for off-by-one error in channel
position from Andy Thomas
Thu Apr 30 16:38:59 PDT 1998 Manish Singh <yosh@gimp.org>
* updated randomize and blur plugins, split out libgpc into
it's own dir
Thu Apr 30 14:32:16 PDT 1998 Manish Singh <yosh@gimp.org>
* upgraded to libtool 1.2
Thu Apr 30 01:45:03 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/xd/xd.c: selection logic fix from Gordon
Matzigkeit
Thu Apr 30 03:15:51 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/curves.c: Another small change to keep the segfaults away
* app/disp_callbacks.c: An attempt to squelch some warnings
Thu Apr 30 02:08:23 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/channels_dialog.c
* app/layers_dialog.c: Modified event handlers to bring up the
popup menu anywhere on layer/channel widget
Wed Apr 29 22:29:16 PDT 1998 Manish Singh <yosh@gimp.org>
* app/app_procs.c: make splash screen honor gtkrc
Wed Apr 29 16:49:27 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/CEL/CEL.c: reverted gimp-joke-980427-0 changes, they
broke things
Wed Apr 29 15:38:55 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/tiler/tiler.c: fix width > height case
* plug-ins/blinds/blinds.c
* plug-ins/convmatrix/convmatrix.c
* plug-ins/tileit/tileit.c: removed spurious gtk_container_add's
Wed Apr 29 07:50:26 EDT 1998 Adrian Likins <adrian@gimp.org>
* gimp.1: updated man page to reflect new --debug-handlers
argument
Wed Apr 29 04:05:34 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: tightened png header check
Wed Apr 29 03:46:44 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/animationplay/animationplay.c
* plug-ins/gif/gif.c
* plug-ins/psd/psd.c: updates from Adam
Wed Apr 29 01:43:30 PDT 1998 Manish Singh <yosh@gimp.org>
* app/text_tool.c: don't die on corrupted fonts. Give some
error messages instead.
Tue Apr 28 23:17:37 PDT 1998 Manish Singh <yosh@gimp.org>
* app/gradient.c: enable adjustment of the gradient list box
for scrolling
Wed Apr 29 00:56:19 1998 Tim Janik <timj@gtk.org>
* app/text_tool.c (text_create_dialog): enable adjustment of the
scrolled window to keep the focused font visible.
Tue Apr 28 15:09:02 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/CEL/CEL.c
* plug-ins/psd/psd.c: portability fix for SunOS 4
Mon Apr 27 20:43:14 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/animationplay/animationplay.c
* plug-ins/CEL/CEL.c
* plug-ins/psd/psd.c
* plug-ins/xd/xd.c: applied gimp-joke-980427-0, warning cleanups
* app/temp_buf.c: applied gimp-entity-980427-0, temp_buf swap
speedups and more robust tempfile handling
Mon Apr 27 20:57:26 1998 EDT Matthew Wilson <msw@gimp.org>
* app/curves: Initialize data that is referenced in event handlers
in the curves_new_dialog function. Be on the look out for this
kind of stuff in other dialogs.
Tue Apr 28 00:16:31 1998 Tim Janik <timj@gtk.org>
* app/channels_dialog.c (channels_dialog_create): adjust the scrolled
window to always show the currently focused channel item.
* app/layers_dialog.c (layers_dialog_create): adjust the scrolled
window to always show the currently focused layer item.
Mon Apr 27 23:29:10 MEST 1998 Sven Neumann <sven@gimp.org>
* updated despeckle and sharpen plug-ins
Mon Apr 27 18:09:01 MEST 1998 Sven Neumann <sven@gimp.org>
* updated bmp plug-in
Sun Apr 26 16:31:06 PDT 1998 Manish Singh <yosh@gimp.org>
* Made 0.99.28 release
Sun Apr 26 16:17:46 PDT 1998 Manish Singh <yosh@gimp.org>
* app/procedural_db.c
* app/text_tool.c: applied mem leak patch from Mattias Gronlund
* plug-ins/tiff/tiff.c: fix for indexed save from Dan Mitchell
Sun Apr 26 15:11:06 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/oilify/oilify.c: folded optimizations back in
Sun Apr 26 18:14:28 MEST 1998 Sven Neumann <sven@gimp.org>
* gimp_tips.txt: added yet another tip
Sun Apr 26 17:50:36 MEST 1998 Sven Neumann <sven@gimp.org>
* updated engrave plug-in
* updated oilify plug-in
* changed the call to plug-in-oilify in circuit.scm and lava.scm
Sun Apr 26 03:06:16 PDT 1998 Manish Singh <yosh@gimp.org>
* oh goodie, the PSD plugin doesn't relay on endian junk anymore
Sun Apr 26 02:34:21 PDT 1998 Manish Singh <yosh@gimp.org>
* updated CEL plugin
* added PSD plugin and autoconf for byte order
Thu Apr 23 19:08:16 PDT 1998 Manish Singh <yosh@gimp.org>
* Added sharpen to stable dist
* updated sgi and despeckle plugins
* plug-ins/xd/xd.c: works with xdelta 0.18. The use of xdelta
versions prior to this is not-supported.
* plug-in/gfig/gfig.c: spelling corrections :)
* app/fileops.c: applied gimp-gord-980420-0, fixes stale save
procs in the file dialog
* app/text_tool.c: applied gimp-egger-980420-0, text tool
optimization
Thu Apr 23 21:27:23 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/gimage.c: set srcPR2.[xy] to srcPR1.[xy] in
gimage_construct_composite_preview (fixes hangs in preview creation)
Tue Apr 21 15:11:21 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/disp_callbacks.c: removed the tool reset when changing gdisplays
* app/bezier_select.c: stop draw_core when changing gdisplays
Tue Apr 21 01:59:12 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/iscissors.c: Remove the iscissors outline by stopping the
draw_core before bezierifying the selection. There may be
memory leaks here (the iscissors stuff does not appear to be freed
on bezierify)
Mon Apr 20 18:15:54 PDT 1998 Manish Singh <yosh@gimp.org>
* app/main.c
* app/errors.c: added --debug-handlers switch to get stack traces
on all signals again (not all sigabrts and sigpipes are normal
things)
* plug-ins/animoptimize/animoptimze.c: updated
1998-04-20 Marc Ewing <marc@redhat.com>
* added RPM/* files and use them in gimp.spec
Mon Apr 20 01:24:10 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/faxg3/g3.h
* plug-ins/faxg3/run_tbl.c: commented out #ident's, since some
compilers complain
Mon Apr 20 00:01:26 PDT 1998 Manish Singh <yosh@gimp.org>
* app/disp_callbacks.c: we get events in a funny order sometimes,
so don't try to remove nonexistent signal handlers
Sun Apr 19 20:18:29 PDT 1998 Manish Singh <yosh@gimp.org>
* added screenshot plug-in
* plug-ins/animationplay/animationplay.c: fix sigsegv on close
Sun Apr 19 14:16:44 MEST 1998 Sven Neumann <sven@gimp.org>
* app/app_procs.c: truncate labels in the splash screen if they
are too long to be displayed without resizing the window; this
should fix the problems with 100dpi fonts
Sat Apr 18 22:19:10 PDT 1998 Manish Singh <yosh@gimp.org>
* app/gimprc.c: don't dereference NULL pointer when a gimprc
variable is used before it's defined. Exit gracefully
Sat Apr 18 11:45:04 PDT 1998 Manish Singh <yosh@gimp.org>
* Made 0.99.27 release
Sat Apr 18 11:37:46 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/dbbrowser/dbbrowser_util.c: make text entry for function
name read-only
* plug-ins/film/film.c
* plug-ins/animationplay/animationplay.c: minor cleanups
Thu Apr 16 19:46:46 MEST 1998 Sven Neumann <sven@gimp.org>
* plug-ins/script-fu/interp_slib.c: changed the link to
the script-fu resources to point to www.gimp.org
Wed Apr 15 13:18:47 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/disp_callbacks.c: restart current tool when changing
gdisplays
Wed Apr 15 17:40:55 MEST 1998 Sven Neumann <sven@gimp.org>
* app/iscissors.c: changed toggle_buttons to check_buttons since
all tools use them in the options dialog
Wed Apr 15 02:44:58 1998 George Lebl <jirka@5z.com>
* plug-ins/film/film.c: del_list_item_callback was calling
gtk_widget_destroy on an already unrefed widget
Wed Apr 15 02:03:25 PDT 1998 Manish Singh <yosh@gimp.org>
* app/disp_callbacks.c: disable keyboard accelerators
during mouse image operations, so nothing funky happens
in the middle of a motion (like converting image types
or running a plugin)
Wed Apr 15 01:58:12 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/gdisplay.c: made a change to gdisplays_update_area to
update _all_ gdisplays that point at the gimage ID. This
(should) fix the paint on the second layer of a second view bug.
Tue Apr 14 16:15:52 PDT 1998 Manish Singh <yosh@gimp.org>
* app/iscissors.c: partially applied gimp-monniaux-980413-0,
corrects nonfunctional interface elements
Tue Apr 14 18:01:50 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/gdisplay.c: Set active_tool->drawable to NULL when destroying
the gdisplay that the active tool points to.
* app/giamge.c: Fixed spacing...
Tue Apr 14 13:40:07 PDT 1998 Manish Singh <yosh@gimp.org>
* gradient.c: handle delete_event for color selector properly
* plug-ins/webbrowser/web-browser.scm: updated link to the bugs
page
Tue Apr 14 20:36:26 MEST 1998 Sven Neumann <sven@gimp.org>
* gimp_tips.txt: applied gimp-quinet-980414-0; adds new tips
* plug-ins/pagecurl/pagecurl.c: applied gimp-quinet-980414-1;
defines M_PI
* app/app_procs.c: applied gimp-quinet-980414-2; adds more
information to the startup screen
* app/regex.c
* plugins/script-fu/regex.c: partially applied
gimp-jbuhler-980412-0; adds braces to nested if/else
Tue Apr 14 10:11:04 MEST 1998 Sven Neumann <sven@gimp.org>
* app/global_edit.c: Named cut and copy are now performed after
the user is asked for a name, so cancelling the dialog works
correctly.
Mon Apr 13 15:17:51 PDT 1998 Manish Singh <yosh@gimp.org>
* moved man page from docs to top-level so it's always installed
Mon Apr 13 23:48:31 MEST 1998 Sven Neumann <sven@gimp.org>
* app/histogram_tool.c: changed the Ok and Cancel buttons in the
histogram dialog to a simple Close, because that's what they were
actually doing
Mon Apr 13 13:09:32 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/commands.c: Fixed prefs to save stingy memory
Mon Apr 13 16:22:38 MEST 1998 Sven Neumann <sven@gimp.org>
* app/convert.c: converting an empty image from grayscale to
indexed used to crash the gimp
Mon Apr 13 15:37:42 MEST 1998 Sven Neumann <sven@gimp.org>
* app/gdisplay.c: correctly update the menu-sensitivity; you can't
paste into an empty image
* global_edit.c: flush the displays when pasting from a named buffer
Mon Apr 13 13:40:50 MEST 1998 Sven Neumann <sven@gimp.org>
*docs/gimp.1: fixes and updates to the man-page
Mon Apr 13 13:00:20 MEST 1998 Sven Neumann <sven@gimp.org>
* gimp_tips.txt: more tips and nicer line wrap
* app/tips_dialog.c: the last character (the final dot) was cut off
Mon Apr 13 02:12:21 PDT 1998 Manish Singh <yosh@gimp.org>
* app/xcf.c: fix a tiny bug in the xcf loader that would have
caused gimp to crash on a corrupt xcf file
Mon Apr 13 01:47:22 PDT 1998 Manish Singh <yosh@gimp.org>
* plug-ins/flarefx/flarefx.c: applied gimp-timecop-980412-0
and tweaked it a bit to make it have proper behavior
* plug-ins/snoise/snoise.c: updated plug-in
Sun Apr 12 22:31:11 PDT 1998 Manish Singh <yosh@gimp.org>
* Changed address for FSF in all .h and .c files
* app/configure.in: check for freebsd tiff libs
Mon Apr 13 00:41:50 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/command.c: Duh. We have a message_box. Why not use it for
the prefs code.
Mon Apr 13 00:27:45 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/gdisplay.c: Set the current tool's gdisplay pointer to NULL
when destroying a gdisplay
* app/interface.c: Use "clicked" as the signal to handle for menu
based tools. This lets us pop by_color_select back up.
Sun Apr 12 22:51:31 MEST 1998 Sven Neumann <sven@gimp.org>
* gimp_tips.txt: added a few more tips
* plugins/webbrowser/webbrowser.scm: updated the URL to the
GIMP Bugs page
Sun Apr 12 15:49:25 MEST 1998 Sven Neumann <sven@gimp.org>
* app/palette.c: fixed a typo in the menu
* gimprc.in: removed the systemwide palettes directory from the
palettes searchpath
Sun Apr 12 02:23:05 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: I guess it didn't end... an attempt to try to
recognize all types of tiff configs
* app/gdisplay_ops.c: resize on zoom fix for naught window
positioning from Kevin Cozens <kcozens@interlog.com>
* app/errors.c: gdk_exit needs to be prototyped
Sun Apr 12 01:19:35 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: more fixes... when will it all end...
* plug-ins/xd/xd.c: compile with >= 0.15 now
* app/transform.[ch]: applied gimp-alt-980412, fixes control
point selection for transforms
Sat Apr 11 15:23:26 PDT 1998 Manish Singh <yosh@gimp.org>
* Made 0.99.26 release
Sat Apr 11 15:03:43 PDT 1998 Manish Singh <yosh@gimp.org>
* app/gdisplay.c: reverted cosmetic fix below, broke zoomed
updates
* configure.in: changes to xdelta and jpeg checks
* updated bmp plugin
* portability patch for polar
* minor bugfix to vpropagate
* fix for memory problem in xwd
Sat Apr 11 00:03:33 PDT 1998 Manish Singh <yosh@gimp.org>
* Made 0.99.25 release
Fri Apr 10 21:59:18 PDT 1998 Manish Singh <yosh@gimp.org>
* app/app_procs.c: fixed up idle handler for file open
(look like testgtk idle demo)
* app/colomaps.c: fixup for visual test and use of gdk_color_alloc
for some fixed colors (from Owen Taylor)
* app/errors.h
* app/errors.c
* app/main.c
* libgimp/gimp.c: redid the signal handlers so we only get a
debug prompt on SIGSEGV, SIGBUS, and SIGFPE.
* applied gimp-jbuhler-980408-0 and gimp-joke-980409-0 (warning
fixups)
* applied gimp-monnaux-980409-0 for configurable plugin path for
multiarch setups
Fri Apr 10 00:17:23 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/commands.c: Fixed (hopefully) the preferences code. Added
a warning to restart GIMP for those changes that require restarts.
Fri Apr 10 01:55:50 MEST 1998 Sven Neumann <sven@gimp.org>
* added three new logo-scripts from keebler@wco.com:
bovinated-logo.scm, comic-logo.scm and gradient-bevel-logo.scm
Thu Apr 9 09:28:04 1998 Scott Goehring <scott@poverty.bloomington.in.us>
* libgimp/gimp.c (gimp_main): strict C requires that function
pointers be preceded by '&'. SGI compilers seem to not like it
when they're not.
* app/gdisplay.c: fixed updating to not clip display updates to
image boundary (so that layer boundaries that hang over will be
erased properly when the layer is removed); fixes a long-standing
cosmetic bug.
Thu Apr 9 01:54:19 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: fix jpeg check. Add config for sendmail
* plug-ins/mail/Makefile.am: use autoconf MAILER
* plug-ins/script-fu: s/\<err\>/my_err/g for portability
Thu Apr 9 02:53:14 EST 1998 Matthew Wilson <msw@gimp.org>
* app/app_procs.c: Added a little wrapper when loading files from
command line that loads the files after gtk_main starts. This
fixes the segfault from the tips dialog when you load images on
the command line. Cudos to Owen for the fix.
Wed Apr 8 23:47:59 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: add AC_FUNC_ALLOCA for regex
Wed Apr 8 21:12:01 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: redid libjpeg check to make sure old versions
aren't used. Also #undef PACKAGE and VERSION since some
jconfig.h's define it
* updated included regex.[ch] to the one in GNU grep
* plug-ins/script-fu/interp_regex.c: we don't need to kludge
around OSF1 anymore, since we use our own regex stuff
Wed Apr 8 17:55:38 EDT 1998 Adrian Likins <adrian@gimp.org>
*plugins/script-fu/scripts/grid-system.scm
*plugins/script-fu/scripts/hsv-graph.scm
*plugins/script-fu/scripts/image-structure.scm
*plugins/script-fu/scripts/line-nova.scm
*plugins/script-fu/scripts/text-circle.scm
*plugins/script-fu/scripts/unsharp-mask.scm:
*data/palettes/Named_colors:
script and palette updates from Shuji Narazaki
Wed Apr 8 00:14:29 PDT 1998 Manish Singh <yosh@gimp.org>
* Made 0.99.24 release
Wed Apr 8 00:04:31 PDT 1998 Manish Singh <yosh@gimp.org>
* app/batch.c: fixup for script-fu in batch mode from
Christian Maegaard <cc@chaos.dk>
* added pagecurl plug-in
Wed Apr 8 01:40:45 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/by_color_select.c: Don't destroy tool.
Tue Apr 7 22:36:22 PDT 1998 Manish Singh <yosh@gimp.org>
* added regex.[ch] to app/ and plug-ins/script-fu/ so we REALLY
have proper regex functions on all platforms
* updated gfig plugin
Mon Apr 6 20:38:49 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: fix for $srcdir != $builddir for data. Tightened
check for random() and add -lucb on systems that need it. Fix for
xdelta.h check. Find xemacs as well as emacs. Properly define
settings for print plugin.
* app/Makefile.am: ditch -DNDEBUG, since nothing uses it
* plug-ins/flame/Makefile.am
* plug-ins/flame/cmap.c
* plug-ins/flame/flame.c
* plug-ins/flame/libifs.c: properly handle random() and friends
* plug-ins/pnm/pnm.c: workaround for systems with old sprintfs
* plug-ins/print/Makefile.am
* plug-ins/print/print-escp2.c
* plug-ins/print/print-pcl.c
* plug-ins/print/print-ps.c
* plug-ins/print/print-util.c
* plug-ins/print/print.c: fold in portability fixes with the new
source. Handle defs from configure in the Makefile
* plug-ins/sgi/sgi.c
* plug-ins/sgi/sgi.h: fold in portability fixes with the new source
* plug-ins/threshold_alpha/threshold_alpha.c: properly get params
in non-interactive mode
* updated bmp plugin, folded in portability fixes
Sun Apr 5 17:43:50 EDT 1998 Matthew Wilson <msw@gimp.org>
* app/bezier_select.c: Destroy the tool when changing displays.
* app/command.c: initialize pointers to drawables when selecting
tools
* app/disp_callbacks.c: initialize pointers to drawables on first
click of a gdisplay
* app/gimage.c: removed extra tool destruction
* app/tools.c: make a fallback case when starting tools so that
you'll always have an active tool.
Sat Apr 4 15:43:28 MEST 1998 Sven Neumann <sven@gimp.org>
* app/ops_buttons.[c|h]
* app/channels_dialog.c
* app/layers_dialog.c: The sensitivity of the buttons wasn't set
correctly when deleting an image.
Fri Apr 3 13:49:38 MEST 1998 Sven Neumann <sven@gimp.org>
* app/menus.c
* app/gdisplay.c
* app/commands.[c|h]: Added a "Add Alpha Channel" menu-entry to
the Image-menu. Now it is possible to work on a single-layer image
without opening the Layers-dialog for adding an alpha channel.
Fri Apr 3 12:22:40 MEST 1998 Sven Neumann <sven@gimp.org>
* app/Makefile.am
* tools/*.xpm
* app/ops_buttons.[c|h]
* app/channels_dialog.c
* app/layers_dialog.c: Added buttons to access the menu functions
in the Layers&Channels-dialog more directly. They are connected to
the menu-item-callback-functions.
Thu Apr 2 04:06:50 EST 1998 Matthew Wilson <msw@gimp.org>
* app/disp_callbacks.c: Always ungrab the pointer on button release.
This is a quick and dirty hack to try to nuke the pointer grab
bug.
Thu Apr 2 01:49:34 EST 1998 Matthew Wilson <msw@gimp.org>