-
Notifications
You must be signed in to change notification settings - Fork 681
/
ChangeLog.pre-git
5959 lines (4190 loc) · 189 KB
/
ChangeLog.pre-git
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
2009-04-16 Michael Natterer <[email protected]>
* app/paint/gimppaintcore.[ch]: made GimpCoords* parameter of
GimpPaintCore::start() const.
* app/paint/gimpbrushcore.c
* app/paint/gimpclone.c
* app/paint/gimpheal.c
* app/paint/gimpperspectiveclone.c
* app/paint/gimpsourcecore.c: changed accordingly.
2009-04-13 Tobias Mueller <[email protected]>
Bug 574972 – Grayscale profile should be removed in RGB/Indexed mode
* app/core/gimpimage-convert.c (gimp_image_convert): Remove the ICC
profile when image will be converted from/to grayscale mode.
Patch by Yohinori Yamakawa <[email protected]>
2009-04-12 Martin Nordholts <[email protected]>
* app/actions/debug-commands.c: Use the new gegl:introspect
feature of showing the graph of nodes a given node depends
on. This gives much better depicted graphs.
2009-04-11 Michael Natterer <[email protected]>
* plug-ins/common/*.c: various plug-in parameter cleanups that
have piled up on my disk: some whitespace fixes and other
formatting, but mostly changes to make plug-in boolean/enum
parameter desciptions look more like the ones that are generated
for core procedures.
2009-04-03 Michael Natterer <[email protected]>
Bug 577575 – transform tool fills underlying extracted area wrongly
* app/tools/gimpfliptool.c
* app/tools/gimpperspectivetool.c
* app/tools/gimprotatetool.c
* app/tools/gimpscaletool.c (gimp_*_tool_register): pass
GIMP_CONTEXT_BACKGROUND_MASK to the register callback to the tools
use the global background color.
2009-03-31 Sven Neumann <[email protected]>
Bug 568479 – add PDB procedures to manipulate size of text box
* tools/pdbgen/pdb/text_layer.pdb: add gimp-text-layer-resize,
based on a patch from Barak Itkin.
* app/pdb/internal-procs.c
* app/pdb/text-layer-cmds.c
* libgimp/gimptextlayer_pdb.[ch]: regenerated.
2009-03-31 Sven Neumann <[email protected]>
* plug-ins/file-uri/uri-backend-gvfs.c (copy_uri): simplified the
code.
2009-03-28 Michael Natterer <[email protected]>
Bug 555738 – Image display is wrong after undoing canvas size
enlargement
* app/display/gimpdisplayshell-handlers.c
(gimp_display_shell_size_changed_detailed_handler): call
gimp_display_shell_expose_full() because resizing the canvas can
leave all sorts of display areas unupdated otherwise.
2009-03-28 Michael Natterer <[email protected]>
* app/display/gimpdisplayshell-handlers.c
(gimp_display_shell_size_changed_detailed_handler): swallow the
code of gimp_display_shell_image_size_starts_to_fit() because it
didn't make things clearer. Add local variables instead to make
things more readable.
2009-03-28 Sven Neumann <[email protected]>
Bug 577024 – help-browser plugin crashes when used with webkit 1.1.3
* plug-ins/help-browser/help-browser.c (run): call g_thread_init().
Seems to be needed with newer versions of webkit.
2009-03-28 Michael Natterer <[email protected]>
Bug 566575 – Warning when creating sample point and releasing Ctrl
key too late
* app/display/gimpdisplayshell-callbacks.c
(gimp_display_shell_ruler_button_press): call
gimp_display_shell_update_focus() after changing the tool so the
new tool has the right state.
2009-03-28 Michael Natterer <[email protected]>
Bug 555025 – Action GEGL box widgets weirdness
Must not set GDK_HINT_MIN_SIZE if we don't actually set a minimum
size, or the window will be shrinkable to zero and it won't
expand automatically when its contents' requisition grows.
* app/widgets/gimpdialogfactory.[ch]: add hackish API
gimp_dialog_factory_set,get_has_min_size() because GTK+ itself
has no API for querying a window's GdkWindowHints.
(gimp_dialog_factory_set_user_pos): set GDK_HINT_MIN_SIZE only if
the window was being marked as having a minimum size using above
new API.
* app/widgets/gimptoolbox.c (gimp_toolbox_set_geometry)
* app/display/gimpdisplayshell.c (gimp_display_shell_style_set):
call gimp_dialog_factory_set_has_min_size (window, TRUE).
2009-03-27 Sven Neumann <[email protected]>
Bug 576909 – "_Paste" and "_Paste as" have the same mnemonic
* app/actions/edit-actions.c: resolved colliding mnemonics.
2009-03-23 Michael Natterer <[email protected]>
* app/widgets/gimpscalebutton.c: use GtkScaleButton's accessors.
2009-03-23 Sven Neumann <[email protected]>
Dropped support for the GnomeVFS file-uri backend. Recent GNOME
releases use GIO/GVfs and libgnomeui will also go away soon.
* INSTALL
* configure.in: removed checks for libgnomeui and libgnome-keyring.
* plug-ins/file-uri/Makefile.am
* plug-ins/file-uri/uri-backend-gnomevfs.c: removed.
2009-03-23 Michael Natterer <[email protected]>
* app/widgets/gimpgradienteditor.c: use GtkAdjustment's accessors.
2009-03-23 Michael Natterer <[email protected]>
* app/widgets/gimpdnd.c (gimp_dnd_data_drop_handle): use
GtkSelectionData's accessors.
2009-03-23 Michael Natterer <[email protected]>
* app/widgets/gimpcontainertreeview-dnd.c: use GtkAdjustment's
accessors.
2009-03-23 Michael Natterer <[email protected]>
* app/widgets/gimpcontainergridview.c: use GtkAdjustment's accessors.
2009-03-23 Michael Natterer <[email protected]>
* app/widgets/gimpcontainerbox.c: use accessors instead of
scrolled_window->vscrollbar.
2009-03-23 Michael Natterer <[email protected]>
* app/widgets/gimpcombotagentry.c: use accessors instead of
widget->window and widget->style.
2009-03-22 Michael Natterer <[email protected]>
* libgimp/gimpzoompreview.c: use GtkAdjustment's accessors.
* libgimp/gimpprocbrowserdialog.c: use accessors instead of
dialog->vbox and widget->parent.
2009-03-22 Sven Neumann <[email protected]>
* app/batch.c (batch_run_cmd): added a newline to the output in
the error case.
* plug-ins/script-fu/script-fu-eval.c (script_fu_eval_run):
instead of disabling all output in batch mode, use the usual
routine for error handling and pass the error string along with
the return values.
2009-03-22 Michael Natterer <[email protected]>
* libgimpwidgets/gimpscrolledpreview.c: use GtkAdjustment's
accessors.
2009-03-22 Michael Natterer <[email protected]>
* libgimpwidgets/gimpscaleentry.c: use GtkAdjustment's accessors.
2009-03-22 Michael Natterer <[email protected]>
* libgimpwidgets/gimpquerybox.c (create_query_box): use
gtk_dialog_get_content_area() instead of dialog->vbox.
2009-03-22 Michael Natterer <[email protected]>
* app/widgets/gimptagentry.c: use "list" as variable name for
iterators to be consistent with the rest of GIMP; various code
cleanups.
2009-03-22 Michael Natterer <[email protected]>
* modules/color-selector-wheel.c: remove GTK+ version check and
related evilness because we depend on a proper GTK+ version now.
2009-03-22 Michael Natterer <[email protected]>
* app/widgets/Makefile.am
* app/widgets/gtkscalebutton.[ch]: remove this evil hack.
* app/widgets/gimpscalebutton.[ch]
* app/widgets/gimppropwidgets.c: minor adjustments so the widget
from GTK+ gets used.
2009-03-22 Michael Natterer <[email protected]>
* app/widgets/gimpblobeditor.c
* app/widgets/gimpbrushselect.c
* app/widgets/gimpcolorbar.c
* app/widgets/gimpcolordialog.c
* app/widgets/gimpcolorframe.c
* app/widgets/gimpcontainergridview.c
* app/widgets/gimpcontainerpopup.c
* app/widgets/gimpcontainertreeview.c
* app/widgets/gimpcontrollereditor.c
* app/widgets/gimpcontrollerlist.c
* app/widgets/gimpcursor.c
* app/widgets/gimpcurveview.c
* app/widgets/gimpdasheditor.c
* app/widgets/gimpdialogfactory.c
* app/widgets/gimpdnd-xds.c
* app/widgets/gimpdockable.c
* app/widgets/gimperrordialog.c
* app/widgets/gimpfgbgeditor.c
* app/widgets/gimpfgbgview.c
* app/widgets/gimpfiledialog.c
* app/widgets/gimpfontselect.c
* app/widgets/gimpgradienteditor.c
* app/widgets/gimpgradientselect.c
* app/widgets/gimphandlebar.c
* app/widgets/gimphistogrambox.c
* app/widgets/gimphistogramview.c
* app/widgets/gimpmessagedialog.c
* app/widgets/gimpnavigationview.c
* app/widgets/gimppaletteselect.c
* app/widgets/gimppaletteview.c
* app/widgets/gimppatternselect.c
* app/widgets/gimpprogressbox.c
* app/widgets/gimpprogressdialog.c
* app/widgets/gimpscalebutton.c
* app/widgets/gimpselectiondata.c
* app/widgets/gimpsessioninfo.c
* app/widgets/gimpsettingsbox.c
* app/widgets/gimpstrokeeditor.c
* app/widgets/gimptexteditor.c
* app/widgets/gimptoolbox.c
* app/widgets/gimpuimanager.c
* app/widgets/gimpview-popup.c
* app/widgets/gimpview.c
* app/widgets/gimpviewabledialog.c
* app/widgets/gimpwidgets-utils.c: use accessors for various
members of GTK+ structures that don't exist any longer when
GSEAL_ENABLE is defined.
2009-03-22 Michael Natterer <[email protected]>
* app/display/gimpcanvas.c
* app/display/gimpdisplayshell.c: use accessors for various
members of GTK+ structures that don't exist any longer when
GSEAL_ENABLE is defined.
2009-03-22 Michael Natterer <[email protected]>
* libgimp/gimpbrushselectbutton.c
* libgimp/gimpexport.c
* libgimp/gimpfontselectbutton.c
* libgimp/gimpgradientselectbutton.c
* libgimp/gimpimagecombobox.c
* libgimp/gimpitemcombobox.c
* libgimp/gimppaletteselectbutton.c
* libgimp/gimppatternselectbutton.c
* libgimp/gimpprogressbar.c
* libgimp/gimpui.c
* libgimp/gimpzoompreview.c
* tools/test-clipboard.c: use accessors for various members of
GTK+ structures that don't exist any longer when GSEAL_ENABLE is
defined.
2009-03-22 Michael Natterer <[email protected]>
* libgimpwidgets/gimpchainbutton.c
* libgimpwidgets/gimpcolorarea.c
* libgimpwidgets/gimpcolorbutton.c
* libgimpwidgets/gimpcolorscale.c
* libgimpwidgets/gimpcolorselect.c
* libgimpwidgets/gimpdialog.c
* libgimpwidgets/gimphelpui.c
* libgimpwidgets/gimpmemsizeentry.c
* libgimpwidgets/gimpoffsetarea.c
* libgimpwidgets/gimppickbutton.c
* libgimpwidgets/gimppixmap.c
* libgimpwidgets/gimppreview.c
* libgimpwidgets/gimppreviewarea.c
* libgimpwidgets/gimpruler.c
* libgimpwidgets/gimpscrolledpreview.c
* libgimpwidgets/gimpwidgets.c: use accessors for various members
of GTK+ structures that don't exist any longer when GSEAL_ENABLE
is defined.
2009-03-19 Sven Neumann <[email protected]>
* app/actions/context-actions.c (context_actions):
* app/paint/gimpinkoptions.c: changed "Aspect" to "Aspect Ratio".
2009-03-19 Sven Neumann <[email protected]>
Bug 471681 – Keyboard shortcuts for brush size/params need feedback
* app/core/gimpbrushgenerated.c
* app/core/gimpcontext.c
* app/paint/gimppaintoptions.c: applied patch from Stephen G. that
marks some strings for translation.
2009-03-17 Sven Neumann <[email protected]>
* libgimpthumb/gimpthumbnail.c (gimp_thumbnail_save): Drop Windows
code to remove target file before renaming. g_rename() nowadays
takes care of allowing replacing existing files on Windows.
2009-03-17 Sven Neumann <[email protected]>
* configure.in: check for fsync().
* libgimpconfig/gimpconfigwriter.c (gimp_config_writer_close_file):
fsync temporary file if destination file exists.
2009-03-17 Tor Lillqvist <[email protected]>
* libgimpconfig/gimpconfigwriter.c
(gimp_config_writer_close_file): Drop Windows code to remove
target file before renaming. g_rename() nowadays takes care of
allowing replacing existing files on Windows.
2009-03-16 Sven Neumann <[email protected]>
* configure.in: bumped GLib version for deprecated symbols.
2009-03-16 Sven Neumann <[email protected]>
* app/core/gimpbrush-transform.c (gimp_brush_real_transform_mask):
gimp_brush_real_transform_pixmap): don't mix variable declarations
and code. Added missing const qualifiers.
* plug-ins/common/ripple.c (ripple_horizontal): removed stray
semicolon.
2009-03-16 Sven Neumann <[email protected]>
* app/display/gimpdisplayshell-close.c
(gimp_display_shell_close_dialog): adapt button labels to the
latest GNOME HIG.
2009-03-16 Tor Lillqvist <[email protected]>
* app/version.c (gimp_show_library_version): The build-time and
run-time versions were swapped in the output.
2009-03-14 Sven Neumann <[email protected]>
Bug 566443 – diagonal method guidelines for crop tool
* app/tools/tools-enums.[ch]
* app/tools/gimprectangletool.c (gimp_rectangle_tool_draw_guides):
applied a slightly modified patch from Lukasz Hladowski, based on
a patch from Tim Jedlicka. This adds diagonal guidelines as
described by Edwin Westhoff to the rectangle tools.
2009-03-13 Sven Neumann <[email protected]>
Bug 574427 – Stroke path with paint tool error
* app/dialogs/stroke-dialog.c: construct the combo-box that
selects the paint-info object with the GimpStrokeOptions as
context. Makes the code much easier and fixes bug #574427.
2009-03-13 Sven Neumann <[email protected]>
Bug 571117 – lcms plug-in crashes on broken profile
* plug-ins/common/lcms.c: don't abort on lcms errors.
2009-03-13 Sven Neumann <[email protected]>
Bug 575006 – Add preferences for snapping
* app/config/gimpdisplayconfig.[ch]
* app/config/gimprc-blurbs.h
* app/display/gimpdisplayshell.c: applied part of a patch from
Akkana Peck. This adds gimprc properties for the default values
used for snapping in new image windows. It also changes the
default value for "Snap to Canvas Edges" to TRUE. Let's test this
for a while...
2009-03-12 Sven Neumann <[email protected]>
Bug 573695 – 1-bit white background saved as PBM becomes all black
* plug-ins/common/file-pnm.c: look at the colormap and test which
of the two colors is black and which is white.
2009-03-12 Sven Neumann <[email protected]>
Bug 573070 – crash when working with 1x3200 pixel image
* app/display/gimpdisplayshell.c (gimp_display_shell_scale_changed):
make sure that x_src_dec and y_src_dec never become zero.
2009-03-11 Sven Neumann <[email protected]>
* app/core/gimpscanconvert.c (gimp_scan_convert_render_full):
formatting.
2009-03-11 Sven Neumann <[email protected]>
* plug-ins/file-jpeg/jpeg.h (PLUG_IN_BINARY): fixed typo.
2009-03-09 Alexia Death <[email protected]>
* app/paint/gimpsmudge.c
(gimp_smudge_class_init): enable scaling for smudge tool
(gimp_smudge_motion): correct comment.
2009-03-08 Sven Neumann <[email protected]>
* tools/pdbgen/pdb/image.pdb (image_add_channel): corrected
documentation of the position parameter.
* app/pdb/image-cmds.c
* libgimp/gimpimage_pdb.c: regenerated.
2009-03-08 Sven Neumann <[email protected]>
* app/widgets/gimpcontainerview.c
(gimp_container_view_item_selected): formatting.
2009-03-07 Sven Neumann <[email protected]>
* app/dialogs/stroke-dialog.c (stroke_dialog_response): disconnect
from the "paint-info" combo-box before destroying the dialog. The
GimpContainerView emits "select-item" from its dispose handler.
2009-03-07 Sven Neumann <[email protected]>
* app/widgets/gimpcontainercombobox.c
(gimp_container_combo_box_changed): do not attempt to chain up in
a signal callback.
2009-03-07 Sven Neumann <[email protected]>
* plug-ins/file-jpeg/jpeg-load.c (load_image)
* plug-ins/file-jpeg/jpeg-save.c (save_image): need to finish the
progress update.
2009-03-05 Sven Neumann <[email protected]>
* app/widgets/gimpuimanager.c: formatting.
2009-03-05 Michael Natterer <[email protected]>
* plug-ins/common/blinds.c: use enum GimpOrientationType instead
of local #defines for HORIZONTAL and VERTICAL with identical
values. Some indentation and formatting fixups.
2009-03-05 Sven Neumann <[email protected]>
* app/widgets/gimpviewrendererimagefile.c
(gimp_view_renderer_imagefile_get_icon)
* plug-ins/print/print.c (query): removed GTK+ version checks that
have become obsolete.
2009-03-05 Sven Neumann <[email protected]>
* plug-ins/file-uri/Makefile.am
* plug-ins/file-uri/gimpmountoperation.[ch]: removed these files.
* plug-ins/file-uri/uri-backend-gvfs.c: use GtkMountOperation
instead of our copy of this widget.
2009-03-05 Sven Neumann <[email protected]>
* configure.in: depend on GTK+ >= 2.14.4.
* INSTALL: changed accordingly.
2009-03-05 Sven Neumann <[email protected]>
Bug 573695 – 1-bit white background saved as PBM becomes all black
* plug-ins/common/file-pnm.c: need to handle the special case that
the image colormap has only one entry.
2009-03-04 Sven Neumann <[email protected]>
Bug 574149 – Can't get name/filename of files loaded from URI
* tools/pdbgen/pdb/image.pdb: added new procedure gimp-image-get-uri.
* app/pdb/image-cmds.c
* libgimp/gimpimage_pdb.c: regenerated.
* plug-ins/pygimp/pygimp-image.c: wrap the new procedure into an
Image attribute.
2009-03-04 Sven Neumann <[email protected]>
* tools/pdbgen/pdb/image.pdb (image_get_filename): improved docs
for gimp-image-get-filename.
* app/pdb/image-cmds.c
* libgimp/gimpimage_pdb.c: regenerated.
2009-03-04 Sven Neumann <[email protected]>
Bug 574149 – Can't get name/filename of files loaded from URI
* tools/pdbgen/pdb/image.pdb (image_get_name_invoker): use
gimp_image_get_display_name().
* app/pdb/image-cmds.c
* libgimp/gimpimage_pdb.c: regenerated.
2009-03-03 Sven Neumann <[email protected]>
Bug 520078 – Rotate brushes
* app/core/gimpbrush-transform.c: applied patch from Tal that
improves bilinear interpolation for the brush transformations and
fixes a bug in the calculation of the transformation matrix.
2009-03-03 Michael Natterer <[email protected]>
* app/core/gimpfilteredcontainer.[ch]
* app/core/gimptag.c
* app/core/gimptagcache.[ch]: codingstylize. Call iterator GList*
variables simply "list" just as we call integers simply "i".
2009-03-02 Michael Natterer <[email protected]>
* app/widgets/gimptagentry.c (gimp_tag_entry_expose): use
gtk_paint_layout() instead of fiddling with a PangoRenderer
manually.
2009-03-02 Michael Natterer <[email protected]>
* app/widgets/gimptagentry.c (gimp_tag_entry_key_press): allow to
leave the widget with Ctrl+Tab. Handle GDK_KP_Tab and
GDK_ISO_Left_Tab.
(gimp_tag_entry_expose):
2009-03-02 Michael Natterer <[email protected]>
* app/core/gimptagged.[ch]: add gimp_tagged_set_tags() which
takes a GList of tags.
* app/widgets/gimptagentry.c (gimp_tag_entry_assign_tags): use it.
(gimp_tag_entry_item_set_tags): remove.
2009-03-02 Michael Natterer <[email protected]>
* app/widgets/gimpcombotagentry.c
* app/widgets/gimptagentry.c: indentation, spacing, some general
formatting cleanup.
(gimp_tag_entry_expose): don't leak the PangoAttrList.
2009-03-01 Michael Natterer <[email protected]>
* plug-ins/common/ripple.c: use enum GimpOrientationType instead
of local #defines for HORIZONTAL and VERTICAL with identical
values. Some indentation and formatting fixups.
2009-02-28 Sven Neumann <[email protected]>
* libgimp/gimpregioniterator.c: update the progress less often.
* plug-ins/common/ripple.c: formatting.
2009-02-28 Sven Neumann <[email protected]>
* plug-ins/common/file-svg.c: reverted accidental commit.
2009-02-28 Sven Neumann <[email protected]>
Bug 573488 – Small bug in Filter>Distorts>Ripple
* plug-ins/common/ripple.c (ripple_vertical): fixed bug spotted in
SMEAR mode, pointed out by Andreas Groth.
2009-02-28 Sven Neumann <[email protected]>
Bug 520078 – Rotate brushes
* app/core/gimpbrush-transform.c: applied patch from Tal that
implements bilinear interpolation for the brush transformations.
2009-02-28 Martin Nordholts <[email protected]>
* app/actions/debug-commands.c: Properly show name of image graph
source image
2009-02-26 Sven Neumann <[email protected]>
* app/gui/gui.c (gui_restore_callback): connect to changes of the
"user-manual-online" gimprc property and kill the gimp-help
plug-in as it caches the location of the help pages.
* app/widgets/gimphelp.[ch]: added gimp_help_user_manual_changed()
for this purpose.
2009-02-25 Sven Neumann <[email protected]>
* plug-ins/common/file-pcx.c: sprinkled with const qualifiers.
2009-02-23 Martin Nordholts <[email protected]>
Add a Show Image Graph item to the Debug menu that creates a new image
showing the GEGL graph for the image. Would benefit from an enhanced
gegl:introspect op with a clearer graph, but still quite interesting
in its current shape.
* app/actions/debug-actions.c
* app/actions/debug-commands.[ch]
* menus/image-menu.xml.in
2009-02-23 Martin Nordholts <[email protected]>
* app/gegl/gimp-gegl-utils.[ch]: Add a GEGL utility function
gimp_buffer_to_tiles()
2009-02-23 Sven Neumann <[email protected]>
* plug-ins/pygimp/gimpfu.py (register): warn if a script uses the
decprecated way of registering its menu location.
2009-02-22 Marco Ciampa <[email protected]>
* app/actions/image-actions.c: fixed duplicated keyboard shortcut
2009-02-21 Martin Nordholts <[email protected]>
Rename gegl-types.h to gimp-gegl-types.h as gegl-types.h invades
on the GEGL namespace
* app/core/core-types.h
* app/gegl/Makefile.am
* app/gegl/gimp-gegl-types.h (renamed from app/gegl/gegl-types.h)
* app/gegl/gimp-gegl-utils.c
* app/gegl/gimp-gegl.c
* app/gegl/gimpbrightnesscontrastconfig.c
* app/gegl/gimpcolorbalanceconfig.c
* app/gegl/gimpcolorizeconfig.c
* app/gegl/gimpcurvesconfig.c
* app/gegl/gimpdesaturateconfig.c
* app/gegl/gimphuesaturationconfig.c
* app/gegl/gimplevelsconfig.c
* app/gegl/gimpoperationcolorbalance.c
* app/gegl/gimpoperationcolorize.c
* app/gegl/gimpoperationcurves.c
* app/gegl/gimpoperationdesaturate.c
* app/gegl/gimpoperationhuesaturation.c
* app/gegl/gimpoperationlevels.c
* app/gegl/gimpoperationpointfilter.c
* app/gegl/gimpoperationpointlayermode.c
* app/gegl/gimpoperationposterize.c
* app/gegl/gimpoperationthreshold.c
* app/gegl/gimpoperationtilesink.c
* app/gegl/gimpoperationtilesource.c
* app/gegl/gimpposterizeconfig.c
* app/gegl/gimpthresholdconfig.c
2009-02-20 Michael Natterer <[email protected]>
Bug 572156 – top left pixel position/coordinate is not 0,0 but 1,1
* app/display/gimpstatusbar.c
(gimp_statusbar_push_coords)
(gimp_statusbar_update_cursor): fix braino for
GIMP_CURSOR_PRECISION_PIXEL_CENTER: going to the pixel's
center doesn't need any rounding, it simply needs clipping
the coordinates' fractional parts, gah...
Review all tools' cursor precision:
* app/tools/gimpblendtool.c (gimp_blend_tool_init): set cursor
precision to SUBPIXEL.
* app/tools/gimptexttool.c (gimp_text_tool_init)
* app/tools/gimpmeasuretool.c (gimp_measure_tool_init)
* app/tools/gimpeditselectiontool.c (gimp_edit_selection_tool_init):
set cursor precision to PIXEL_BORDER.
2009-02-19 Michael Natterer <[email protected]>
* libgimpthumb/gimpthumbnail.c (gimp_thumbnail_save): no need to
g_strdup_printf() a simple string, use g_strdup() instead.
2009-02-18 Sven Neumann <[email protected]>
Bug 99457 – Support for dynamics on tilt
* app/tools/gimppaintoptions-gui.c
* app/paint/gimppaintoptions.[ch]: applied patch from Alexia Death
that allows to map tilt to the dynamic brush parameters.
2009-02-17 Aurimas Juška <[email protected]>
* data/tags/gimp-tags-default.xml.in: default to empty tag set.
* data/tags/gimp-tags.dtd: changed to allow resources without tags
assigned.
2009-02-17 Aurimas Juška <[email protected]>
* po-tags/*: got rid of extra message domain.
* configure.in:
* data/tags/Makefile.am: changed accordingly.
2009-02-16 Aurimas Juška <[email protected]>
* app/core/Makefile.am:
* app/core/gimp-tags.c:
* app/core/gimp-tags.h:
* app/core/gimp-user-install.c (user_install_create_files),
(user_install_migrate_files):
* configure.in:
* data/Makefile.am:
* data/tags/Makefile.am:
* data/tags/gimp-tags.dtd: added default tag set, support for
translating tags into various languages, user installation
and migration procedures.
* data/tags/gimp-tags-default.xml.in: initial tag set for testing
purposes. This has to be replaced with something else before
translators can start their work.
2009-02-16 Aurimas Juška <[email protected]>
* app/widgets/gimptagentry.c (gimp_tag_entry_set_tag_string):
fixed popup list (tag cloud) toggling by querying tags immediately
instead of adding idle handler.
2009-02-16 Aurimas Juška <[email protected]>
* app/widgets/gimptagentry.c (gimp_tag_entry_commit_tags),
(gimp_tag_entry_strip_extra_whitespace): don't cause tag query
after focus-out. Fixes annoying bug.
2009-02-14 Sven Neumann <[email protected]>
Bug 99457 – Support for dynamics on tilt
* app/core/gimpbrush.[ch]
* app/core/gimpbrushgenerated.c
* app/core/gimpbrush-transform.[ch]
* app/paint/gimpbrushcore.c
* app/paint/gimpsmudge.c: applied patch from Alexia Death,
separates brush scaling for x and y.
2009-02-14 Martin Nordholts <[email protected]>
* app/core/gimpdrawable.c: Remove
gimp_drawable_update_tile_source_node(), it was not useful.
2009-02-14 Sven Neumann <[email protected]>
* app/core/gimpcoords-interpolate.c
* app/display/gimpdisplayshell-coords.c: applied patch from Alexia
Death that fixes issues with the new stroke direction code
(bug #520078).
2009-02-14 Sven Neumann <[email protected]>
Bug 472644 – Rotate with clipping crops the whole layer
* app/core/gimp-transform-resize.c: applied patch as attached to
bug #472644. Supposedly fixes the problem of the disappearing
image.
2009-02-13 Sven Neumann <[email protected]>
Bug 571628 – Scaling image to 25% turn background from white to grey
* app/paint-funcs/scale-region.c (pixel_average2): fixed right-shift
for GRAYA pixels.
2009-02-13 Michael Natterer <[email protected]>
* app/core/gimpdrawable.c (gimp_drawable_sync_source_node): need
to rip the floating selection's source node out of its layer's
graph before using it in the floating selection sub-graph, and
need to plug it back there when it's not a floating selection any
longer.
Unrelated:
Also introduce a "fs_crop_node" that makes sure the floating
selection stops at the drawable's boundaries.
(gimp_drawable_visibility_changed): use item->node instead of
gimp_item_get_node() because the latter creates the node on
demand.
* app/core/gimpdrawable-private.h: add fs_crop_node member.
2009-02-12 Michael Natterer <[email protected]>
* plug-ins/file-faxg3/Makefile.am
* plug-ins/help/Makefile.am
* plug-ins/metadata/Makefile.am: add $(libgimpconfig) to LDADD
where it was missing. Libgimp pulls in libgimpconfig and these
plug-ins were linking against the installed libgimpconfig under
some #$&%*#%&%$& .la file circumstances.
2009-02-12 Michael Natterer <[email protected]>
Bug 567840 – GIMP's GtkScaleButton conflicts with GTK's
* app/widgets/gtkscalebutton.c: rename the type to
"GimpGtkScaleButton" so we don't crash if the real
GtkScaleButton type is registered too.
2009-02-11 Sven Neumann <[email protected]>
* app/core/gimpcoords-interpolate.c
(gimp_coords_interpolate_catmull): applied patch from Alexia Death
that fixes a bug that was introduced by the last commit.
2009-02-10 Sven Neumann <[email protected]>
* app/core/gimpcoords-interpolate.c
* app/core/gimpbrush-transform.c
* app/paint/gimppaintoptions.c
* app/display/gimpdisplayshell-coords.c: applied patch from Alexia
Death that fixes the direction of brush rotation (bug #520078).
2009-02-10 Sven Neumann <[email protected]>
* app/display/gimpdisplayshell-coords.c
(gimp_display_shell_eval_event): applied patch from Alexia Death
that introduces smoothing for the stroke direction (bug #520078).
2009-02-09 Sven Neumann <[email protected]>
* app/actions/tools-commands.c (tools_paint_brush_angle_cmd_callback):
applied patch from Alexia Death that changes the steppings of the
newly introduced brush rotation actions as suggested in bug #520078.
2009-02-09 Sven Neumann <[email protected]>
* app/tools/gimpgegltool.c (gimp_gegl_tool_dialog): seems
pointless to include the GIMP-specific GEGL operations as they
can't be reasonably controlled by the generic GEGL tool user
interface.
2009-02-09 Michael Natterer <[email protected]>
Bug 569470 – pls, introduce an option 'how many latest presets for
color curves should be saved'
* app/config/gimprc-blurbs.h
* app/config/gimpguiconfig.[ch]: add integer property
"image-map-tool-max-recent" which defaults to ten. Adding a GUI
for this IMO needs discussion, the value of ten seems appropriate.
* app/widgets/gimpsettingsbox.[ch]
(gimp_settings_box_add_current): add "gint max_recent" parameter
and limit the number of recent settings to this number.
* app/tools/gimpimagemaptool.c (gimp_image_map_tool_response):
pass the new settings property to above function.
2009-02-08 Michael Natterer <[email protected]>
* app/tools/gimpcurvestool.c (gimp_curves_tool_key_press): if the
curve view didn't handle the key press, chain up so the normal
GimpImageMapTool keys for reset/cancel/ok works.
2009-02-08 Martin Nordholts <[email protected]>
* app/tools/gimppaintoptions-gui.c: Fix stack overwrites in
gimp_paint_options_gui()
2009-02-08 Michael Natterer <[email protected]>
Bug 520078 – Rotate brushes
Applied a slightly modified patch from Alexia Death:
* app/core/core-types.h (struct GimpCoords): add "direction" member.
* app/core/gimpcoords.c: take direction into account in mix(),
scalarprod(), length_squared(), manhattan_dist() and equal().
* app/core/gimpcoords-interpolate.c
(gimp_coords_interpolate_catmull): same here.
* app/display/gimpdisplayshell-coords.c
(gimp_display_shell_eval_event): same here.
* app/paint/gimppaintoptions.[ch]: add properties for direction
dynamics and adapt dynamics mixing accordingly.
* app/paint/gimpbrushcore.c (gimp_brush_core_interpolate):
"interpolate" direction too (in fact, just copy it from
last_coords since it doesn't change along a straight line).
* app/paint/gimppaintcore-stroke.c
(gimp_paint_core_stroke_emulate_dynamics): emulate direction too.
* app/tools/gimppaintoptions-gui.c: add GUI for direction dynamics.
2009-02-07 Michael Natterer <[email protected]>
Simplify floating selection handling a bit more:
* app/core/gimpdrawable.c
(gimp_drawable_attach_floating_sel)
(gimp_drawable_detach_floating_sel): call
gimp_image_set_floating_selection() from these functions.
* app/core/gimpfloatingselundo.c (gimp_floating_sel_undo_pop)
* app/core/gimpimage.c (gimp_image_add,remove_layer)
* app/core/gimplayer-floating-sel.c (floating_sel_to_layer): don't
call it here because we already call above functions.
2009-02-07 Michael Natterer <[email protected]>
* app/core/gimpdrawable.c
(gimp_drawable_attach_floating_sel)
(gimp_drawable_detach_floating_sel): call
gimp_drawable_invalidate_boundary(floating_sel). Fixes missing
selection update after turning a floating selection into a
layer. It's called redundantly now when adding or deleting a
floating selection, but that doesn't hurt much.
* app/core/gimpfloatingselundo.c (gimp_floating_sel_undo_pop):
don't call it here because we already call above functions.
2009-02-07 Martin Nordholts <[email protected]>
* app/core/gimpimagemap.c: Move undo tiles updating into a helper
function gimp_image_map_update_undo_tiles() so the logic of
gimp_image_map_apply() becomes clearer.
2009-02-07 Martin Nordholts <[email protected]>
* app/core/gimpimagemap.c: Introduce and use a local helper
function gimp_image_map_kill_any_idle_processors() to get a rid of
some code duplication.
2009-02-07 Martin Nordholts <[email protected]>
* app/core/gimpimagemap.c: Introduce and use a local helper
function gimp_image_map_cancel_any_idle_jobs() to get a rid of
some code duplication.
2009-02-07 Martin Nordholts <[email protected]>
* app/core/gimpimagemap.c: Fix misindented return statement.
2009-02-06 Sven Neumann <[email protected]>
* app/actions/tools-commands.c
(tools_paint_brush_angle_cmd_callback): let the brush angle wrap.
2009-02-06 Sven Neumann <[email protected]>
* app/actions/tools-commands.c:
2009-02-06 Sven Neumann <[email protected]>
* app/actions/actions.c (action_select_property): mark strings for
translation and add translator comments for them.
2009-02-06 Sven Neumann <[email protected]>
* app/actions/actions.c: prototype action_message() with format
function attribute and move it to the bottom of the file.
2009-02-06 Sven Neumann <[email protected]>
* app/actions/tools-commands.c
(tools_paint_brush_angle_cmd_callback): fixed parameters passed to
action_select_property().
2009-02-06 Michael Natterer <[email protected]>