-
Notifications
You must be signed in to change notification settings - Fork 103
/
ChangeLog.5
10358 lines (7601 loc) · 359 KB
/
ChangeLog.5
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
2016-12-31 Fred Kiefer <[email protected]>
* Source/NSMenu.m (-update): Update only visible submenus.
* Source/NSMenu.m: Complete switch to NSUInteger.
2016-12-18 Fred Kiefer <[email protected]>
* Source/GSLayoutManager.m: Don't try to get the advancement for
GSAttachmentGlyph.
* Source/NSTableView.m: Protect against rowHeigh being zero.
2016-12-17 Fred Kiefer <[email protected]>
* Headers/Additions/GNUstepGUI/GSToolbarView.h
* Source/GSToolbarView.m
Change draggedItemIndex to NSUInteger.
2016-12-15 Wolfgang Lux <[email protected]>
* Source/NSWorkspace.m: Change mlock into a private variable to
avoid name conflict with a libc function on Linux.
2016-11-21 Fred Kiefer <[email protected]>
* Headers/AppKit/NSColorPanel.h: Change -alpha to CGFloat.
* Source/NSColorPanel.m: Remove left over GModel loading code.
Set default mode to colour wheel.
Small cleanups mostly in comments.
2016-11-21 Fred Kiefer <[email protected]>
* Source/NSColorPanel.m (-_initWithoutGModel): Correct target for
bottom wells.
* Source/NSColorWell.m (-performClick:): Add this method and use
it in -mouseUp:.
Patch by Josh Freeman <[email protected]>.
2016-10-29 Fred Kiefer <[email protected]>
* Source/NSBitmapImageRep.m: Set the TIFF subfield type to 0
instead of 255.
2016-10-24 Fred Kiefer <[email protected]>
* Source/NSBitmapImageRep+JPEG.m: Try to handle images with alpha
or planar images correctly.
2016-10-24 04:03-EDT Gregory John Casamento <[email protected]>
* Source/NSWorkspace.m: Change to GSLaunchd(...) function to
correct lock issue which is ocurring on some systems. Added
a mutex lock to create a critical section and a retry mechanism
in case the distributed lock is not released on the first try.
This change appears to correct the issue. Tested by myself and
Riccardo.
2016-10-23 Fred Kiefer <[email protected]>
* Source/NSWindow.m (NSMiniWindowView -setImage:): Try to handle
an image value of nil. This is needed for Emacs.
2016-10-23 Fred Kiefer <[email protected]>
* Source/GSLayoutManager.m (-advancementForGlyphAtIndex:):
Simplify this method and move it in the file.
* Source/NSLayoutManager.m: Use the pre-computed advancement
instead of calculating it every time.
2016-10-22 Fred Kiefer <[email protected]>
* Source/GSLayoutManager.m: Don't try to get the advancement for
NSControlGlyph.
2016-10-08 Fred Kiefer <[email protected]>
* Headers/AppKit/NSOutlineView.h
* Headers/AppKit/NSTableHeaderView.h
* Headers/AppKit/NSTableView.h
* Source/GSThemeDrawing.m
* Source/NSOutlineView.m
* Source/NSTableHeaderView.m
* Source/NSTableView.m:
Some int -> NSInteger and float -> CGFloat transitions.
2016-09-19 Fred Kiefer <[email protected]>
* Source/GSFontInfo.m (-fontDescriptor): Simplify creation of font
descriptor. Use only the minimal attributes.
* Source/NSFontDescriptor.m (-postscriptName): Generate PS name
from font name itself.
2016-08-02 Fred Kiefer <[email protected]>
* Source/NSDocumentController.m: Add missing semicolon.
Patch by Galen Rhodes <[email protected]>.
2016-07-19 Riccardo Mottola <[email protected]>
* Source/NSFontDescriptor.m
If we have no face set, don't append null
2016-07-18 11:59-EDT Gregory John Casamento <[email protected]>
* Source/NSView.m: Move to new branch.
2016-07-18 11:46-EDT Gregory John Casamento <[email protected]>
* Source/NSView.m: Revert previous changes. Moving to a branch.
2016-07-18 Riccardo Mottola <[email protected]>
* Source/NSView.m:
Use CGFloat as original structures do and double for scale instead of
CGFloat -> double -> float.
2016-07-16 18:12-EDT Gregory John Casamento <[email protected]>
* Source/NSPrintInfo.m: Add a comment so it's clear what
this method is meant for.
* Source/NSView.m: In beginPage:label:bBox:fonts: align top level
view with current page dimensions.
2016-07-13 Riccardo Mottola <[email protected]>
* Source/NSWorkspace.m
* Headers/Additions/GNUstepGUI/config.h.in
* configure.ac
Check explicitely for f_owner and use f_owner and f_flag if checked.
2016-07-13 Fred Kiefer <[email protected]>
* Headers/AppKit/NSDocumentController.h,
* Source/NSDocumentController.m: Add 10.7 methods.
2016-07-12 Riccardo Mottola <[email protected]>
* Source/NSWorkspace.m
Prefer statvfs() over statfs(), use both on linux, disable fs name on unknown systems.
2016-07-12 Fred Kiefer <[email protected]>
* Headers/Additions/GNUstepGUI/config.h.in
* configure.ac
* configure
Attempt to get NSWorkspace.m to compile again. No idea whether the
resulting behaviour is as intended by the author of the last change.
2016-06-21 Riccardo Mottola <[email protected]>
* Source/NSWorkspace.m
* configure.ac
* configure
Explicitely check for statfs/statvfs flags member.
2016-06-16 Ivan Vucica <[email protected]>
* ANNOUNCE:
* Documentation/news.texi:
* INSTALL:
* NEWS:
* Version:
Releasing 0.25.0.
2016-06-04 Fred Kiefer <[email protected]>
* Source/NSBitmapImageRepPrivate.h,
* Source/NSBitmapImageRep.m,
* Source/NSBitmapImageRep+PNG.m:
Extract protocol into private header file and use it from both places.
2016-06-03 Yavor Doganov <[email protected]>
* Documentation/GSSpeechServer.1:
* Documentation/say.1:
* Documentation/GNUmakefile:
Install tiny man pages for the GSSpeechServer and say tools.
2016-06-02 Fred Kiefer <[email protected]>
* Source/NSBitmapImageRep+PNG.m:
Convert image before storing it.
* Headers/Additions/GNUstepGUI/GSNibLoading.h,
* Source/GSNibLoading.m:
Add class NSIBUserDefinedRuntimeAttributesConnector to handle
newer NIB files.
2016-05-31 Richard Frith-Macdonald <[email protected]>
* Headers/Additions/GNUstepGUI/GSTheme.h:
* Headers/AppKit/NSOpenPanel.h:
* Headers/AppKit/NSParagraphStyle.h:
* Headers/AppKit/NSText.h:
* Headers/AppKit/NSTextAttachment.h:
* Headers/AppKit/NSTextStorage.h:
Fixed faulty character encoding (should be utf-8) and a couple of
documentation markmup errors.
2016-05-28 Eric Heintzmann <[email protected]>
* ChangeLog.1:
* Documentation/ReleaseNotes.gsdoc:
* Documentation/gopen.1:
* Documentation/make_services.1:
* Printing/GSCUPS/GNUmakefile.preamble:
* Printing/GSLPR/GNUmakefile.preamble:
* Printing/GSWIN32/GNUmakefile.preamble:
* Source/GSGormLoader.m:
* Source/GSNibLoader.m:
* Source/GSXibLoader.m:
* Source/NSAttributedString.m:
* Source/NSBitmapImageRep+JPEG.m:
* Source/NSBitmapImageRep.m:
* Source/NSNib.m:
* Source/NSOutlineView.m:
* Source/NSTableView.m:
* Source/NSView.m:
* Source/nsimage-tiff.h:
Spelling errors corrected by lintian
2016-05-20 Riccardo Mottola <[email protected]>
* Source/NSTabViewItem.m
Optimize case for nil label and thus fix crasher on SPARCs
2016-05-13 Eric Heintzmann <[email protected]>
* Tests/GNUmakefile:
* Tests/gui/NSCell/basic.m:
* Tests/gui/NSCell/objectValue.m:
* Tests/gui/NSEvent/delta.m:
* Tests/gui/NSImage/basic.m:
* Tests/gui/NSPasteboard/lazy_copy.m:
* Tests/gui/NSPopUpButton/defaultSelection.m:
* Tests/gui/NSSavePanel/setDelegate_reload.m:
* Tests/gui/NSSliderCell/minMax.m:
* Tests/gui/NSView/NSView_autoresize_and_rounding.m:
* Tests/gui/NSView/NSView_bounds_scale.m:
* Tests/gui/NSView/NSView_convertRect.m:
* Tests/gui/NSView/NSView_frame_bounds.m:
* Tests/gui/NSView/NSView_frame_rotation.m:
* Tests/gui/NSView/scrollRectToVisible.m:
* Tests/gui/TextSystem/deallocation.m:
* Tests/gui/TextSystem/repeatedAttachmentCellHeight.m:
Updates to more cleanly handle attempts to execute regression tests
when the GUI is not installed (test what we can, and report the
problem).
2016-04-06 Riccardo Mottola <[email protected]>
* Source/NSWorkspace.m
* Images/GNUMakefile
Add Application folder (patch by Bertrand Dekoninck)
2016-03-22 Riccardo Mottola <[email protected]>
* Headers/AppKit/NSWorkspace.h
* Source/NSWorkspace.m
tag is NSInteger* not int* in recent AppKit
2016-03-21 Riccardo Mottola <[email protected]>
* Source/NSImage.m
Actually allocate a NSMutableArray, since that is the expected
return type.
2016-03-10 Riccardo Mottola <[email protected]>
* Source/NSWorkspace.m
Always traverse links explicitely and get the original path to do icon
lookup, not just for Symliks. The symlink may be infact in the middle
of the path, not just the last one.
2016-03-10 Riccardo Mottola <[email protected]>
* Source/NSWorkspace.m
Simplify code by using stringByDeletingLastPathComponent
2016-03-10 Riccardo Mottola <[email protected]>
* Source/NSWorkspace.m
Add fall-back that if a folder image is not found, the generic folder
icon is picked up. Also add Movies special folders.
2016-03-09 Riccardo Mottola <[email protected]>
* Headers/AppKit/NSImage.h
* Source/externs.m
Some new 10.5 and 10.6 named images.
2016-03-08 Riccardo Mottola <[email protected]>
* Source/NSWorkspace.m (iconForFile)
When looking for an icon, check if it is a symbolic link and
get the icon of its destination. Behaviour verified on Apple.
2016-02-16 Riccardo Mottola <[email protected]>
* Source/NSWorkspace.m (mountNewRemovableMedia)
Add missing implementation, by mounting exclusively the path
specified in GSRemovableMediaPaths.
2016-02-16 Riccardo Mottola <[email protected]>
* Source/NSWorkspace.m (mountedLocalVolumePaths)
Use standard setmntent to open file and remember to close it with
endmntent! Try better guess to use system defines to get mttab path.
2016-02-13 Riccardo Mottola <[email protected]>
* Source/NSWorkspace.m (unmountAndEjectDeviceAtPath:)
Enhance unmount with eject support on certain platforms, generate
NSWorkspaceWillUnmountNotification notification.
2016-02-12 Riccardo Mottola <[email protected]>
* Source/NSWorkspace.m
Try to support volume information on Linux better as well as using
GSRemovableMediaPaths defaults for removable information (compared
to nothing at all).
2016-02-03 Riccardo Mottola <[email protected]>
* Headers/AppKit/NSImage.h
* Source/NSImage.m
Trivial implementation of new 10.9 drawInRect: method
2016-01-17 Ivan Vucica <[email protected]>
* Source/NSBezierPath.m (-setLineDash:):
Cherrypicked r39277 by Marcian Lytwtyn <[email protected]>: NSZoneRealloc
called without saving the return value.
Aside from merging the patch, opted to undo the patch's check for
count > _dash_count, as NSZoneRealloc() should be allowed to reduce the
allocated block's size.
* Source/GSThemeDrawing.m (-drawBoxInClipRect:boxType:...):
Cherrypicked r39276 by Paul Landers <[email protected]>:
Use controlShadowColor when the color for NSBoxSeparator is not set.
Xcode is not setting colors for these types of boxes in xibs.
* Source/NSToolbar.m (-runCustomizationPalette:):
Cherrypicked r39256 by Paul Landers <[email protected]>:
Show toolbar before customizing.
2015-11-19 Riccardo Mottola <[email protected]>
* Images/common_MultipleSelection.tiff
* Images/common_RecyclerEmpty.tiff
* Images/common_RecyclerFull.tiff
* Images/GNUmakefile
Added icons
* Headers/AppKit/NSImage.h
* Images/nsmapping.strings
* Source/externs.m
Provide NSImageNameTrashEmpty NSImageNameTrashFull
NSImageNameMultipleDocuments images, both constants and actual icon.
2015-11-12 Richard Frith-Macdonald <[email protected]>
* Source/NSImage.m: Move theme based image lookup code to the
([NSBundle-pathForImageResource:]) method, so application-specific
theme images can be found in more situations.
2015-11-03 Fred Kiefer <[email protected]>
* Source/GSToolTips.m (-_timedOut:): Break long tool tips into
multiple lines.
2015-11-02 Fred Kiefer <[email protected]>
* Source/NSWindow.m (-constrainFrameRect:toScreen:) Handle screen
being nil and resize only if moving is not enough.
2015-11-02 Richard Frith-Macdonald <[email protected]>
* Source/NSOutlineView.m:
The _expandedItems array needs to be managed using tests for identical
members rather than equal members, to handle the case where a view has
multiple equal members (we don't want all equal items expanded, only
the exact item.
2015-11-01 Richard Frith-Macdonald <[email protected]>
* Source/GNUmakefile.preamble:
* Source/GSXibLoader.m:
Check to see if base was built with libxml2 before trying to use
classes which depend on it.
2015-11-01 Richard Frith-Macdonald <[email protected]>
* Source/NSImage.m: Alter loading of image by name so that before we
try t load from the app's main bundle, we try loading an image of the
same name from the current theme's ThemeImages/bundleIdentifier
subdirectory. This allows a theme to provide an alternative image
for any named image normally provided by the app, as discussed this
morning.
NB. I adopted Ivan's suggestion of requiring a bundle identifier even
though we thought we could use the app name as a fallback ... since
it seems cleaner (and we can always edit the app's property list to
add a bundle identifier if it somehow got omitted by the developer).
Also reformatted some code/comments to conform to coding standards
and not exceed 80 character line limit.
2015-10-28 Riccardo Mottola <[email protected]>
* Headers/AppKit/NSApplication.h
* Source/NSApplication.m
Primitive presentationOptions implementation.
2015-10-28 Riccardo Mottola <[email protected]>
* Headers/AppKit/NSScrollView.h
* Source/NSScrollView.m
Stub 10.8 methods for allowsMagnification.
2015-10-28 Fred Kiefer <[email protected]>
* Source/NSPasteboard.m (-_pbs): Fix waiting forever if gpbs
crashes within a certain window.
Patch by Marcian Lytwyn <[email protected]>.
2015-10-27 Riccardo Mottola <[email protected]>
* Headers/AppKit/NSMatrix.h
* Source/NSMatrix.m
Change also internal methods and ivars to reflect NSInteger transition
of rows and columns.
2015-10-24 Fred Kiefer <[email protected]>
* Source/NSBitmapImageRep.m
(TIFFRepresentationOfImageRepsInArray:): Only return a non-null
NSData object.
2015-10-22 Fred Kiefer <[email protected]>
* Source/NSWindowController.m (-_windowWillClose:): Don't unset
the delegate and the controller of the window, this gets done in
setWindow: a bit later.
2015-10-18 Fred Kiefer <[email protected]>
* Source/NSSegmentedCell.m (-drawSegment:inFrame:withView:):
Use centerScanRect: to position the image.
2015-10-17 Fred Kiefer <[email protected]>
* Source/NSAttributedString.m (-_substituteFontFor:font:): Use
font descriptors for faster replacement font detection.
* Source/GSFontInfo.m
(GSFontEnumerator-matchingFontDescriptorsFor:): Special handling
for NSFontCharacterSetAttribute.
2015-10-16 Fred Kiefer <[email protected]>
* Source/NSCell.m (-trackMouse:...untilMouseUp:): Check enabled
and use isContinuous method.
* Source/NSSliderCell.m: Replace specific implementation of
-trackMouse:...untilMouseUp: with super class one and move
specific code into helper methods.
2015-10-15 Riccardo Mottola <[email protected]>
* Headers/AppKit/AppKit.h
Add NSAnimationContext to umbrella header
2015-10-13 Fred Kiefer <[email protected]>
* Source/NSBitmapImageRep.m: Correct bug in fast path for image
premultiply/unpremultiply.
2015-10-10 Gregory Casamento <[email protected]>
* Headers/AppKit/NSAnimationContext.h
* Source/NSAnimationContext.m: Additional stub methods for
NSAnimationContext.
2015-10-10 Fred Kiefer <[email protected]>
* Source/nsimage-tiff.h: Correct field types.
* Source/NSImage.m (-TIFFRepresentation)
(TIFFRepresentationUsingCompression:factor:): Pass on bitmaps only.
* Source/NSBitmapImageRep.m: Implement methods to generate tiff
for multiple bitmaps.
* Source/tiff.m: Fix long standing bug in TiffHandleSeek.
In NSTiffWrite write image tiff directory to allow for multiple
images.
2015-10-09 Fred Kiefer <[email protected]>
* Source/NSGraphicsContext.m (-initWithContextInfo:): Move the
default setting into back.
2015-10-02 Riccardo Mottola <[email protected]>
* Headers/AppKit/NSTableView.h
* Source/NSTableView.m
Add NSTableViewSelectionHighlightStyle type and stub accessors.
2015-09-25 Fred Kiefer <[email protected]>
* Source/NSGraphicsContext.m (-initWithContextInfo:): Set some
default values for the graphics context.
2015-09-21 Fred Kiefer <[email protected]>
* Headers/AppKit/NSMenu.h,
* Source/externs.m: Add NSMenuDidBeginTrackingNotification.
* Source/NSMenuView.m (-trackWithEvent:): send tracking notifications.
2015-09-20 Fred Kiefer <[email protected]>
* Source/GSThemeDrawing.m (-drawTableViewRect:inView:): Use
correct imp type.
* Source/NSButtonCell.m (-setBackgroundColor:): Update the
control view.
* Source/NSSegmentedCell.m (-drawSegment:inFrame:withView:): Draw
image if available.
* Source/NSPopUpButtonCell.m (-initWithCoder:): Add work around
for NSClassSwapper cell replacement.
Patches based on changes by Josh Freeman <[email protected]>
2015-09-19 Fred Kiefer <[email protected]>
* Headers/AppKit/NSMenu.h,
* Source/externs.m: Add NSMenuDidEndTrackingNotification.
* Headers/AppKit/NSMatrix.h,
* Source/NSMatrix.m: Define delegate protocol and add (empty) tool
tip methods.
* Source/NSApplication.m: Send begin and end sheet notifications.
* Source/NSDocumentController.m: Replace all usages of
shouldCreateUI with the display parameter.
* Source/NSMenuItem.m: Decode atributes of separator item.
* Source/NSBitmapImageRep.m (-copyWithZone): Make a mutable copy
of the properties as well.
* Source/NSActionCell.m (-setAttributedStringValue:): Update the
control view.
Patches based on changes by Josh Freeman <[email protected]>
2015-09-13 Fred Kiefer <[email protected]>
* Source/NSTextView.m: Invalidate insertion point timer in
dealloc.
* Source/NSToolbarItem.m: Check for drawing rect within bounds
before drawing toolbar item.
Patch by Marcian Lytwyn <[email protected]>.
2015-09-10 Doug Simons <[email protected]> and Paul Landers <[email protected]>
* Source/NSLayoutManager.m: Fix a bug that would try to adjust
the length of the selected range to a negative number, leading
to an exception and eventual crashes.
2015-08-28 Riccardo Mottola <[email protected]>
* Source/NSView.m
* Headers/AppKit/NSView.h
Add more (dummy) layer property stuff
* Headers/AppKit/NSWindow.h
* Source/NSWindow.m
Constants and methods for Exposé and other features we don't have
and perhaps never will.
2015-08-26 Fred Kiefer <[email protected]>
* Source/GSTextFinder.m: Fix Ignore Case option to work.
Patch by Doug Simons <[email protected]>
* Source/NSControl.m (-initWithCoder:): Don't use NSEnabled flag
as it is wrong for NSComboBox.
* Source/NSComboBoxCell.m (_loadButtonCell): Set enabled on button cell.
2015-08-25 Fred Kiefer <[email protected]>
* Tests/gui/NSView/NSView_autoresize_and_rounding.m: Add tests for
centerScanRect: with flipped view.
* Source/NSView.m (-centerScanRect:): Change to get the failed
tests to pass.
* Source/GSThemeTools.m (-drawRoundBezel:withColor:): Make round
bezel look a bit nicer.
* Source/NSButtonCell.m (-drawImage:withFrame:inView:): Use
centerScanRect: instead of similar code.
* Source/NSCell.m: Use imageRectForBounds: and titleRectForBounds:
in drawInteriorWithFrame:inView:.
2015-08-24 Riccardo Mottola <[email protected]>
* Headers/AppKit/NSWindow.h
Define NSFullScreenWindowMask.
2015-08-23 Riccardo Mottola <[email protected]>
* Headers/AppKit/NSScrollView.h
* Source/NSScrollView.m
Add horiz and vert elastiticty properties and constants.
2015-08-23 Fred Kiefer <[email protected]>
* Source/NSBundleAdditions.m,
* Source/NSNibConnector.m: Move NSNibConnector and subclasses in
separate file. Add isEqual: method from Gorm. Switch to new
libobjc runtime ivar access for NSNibOutletConnector.
* Source/GNUmakefile: Add new file NSNibConnector.m
* Source/GSXibLoader.m: Similar change to IBOutletConnection.
Replace GSMime base64 decode method with standard one.
* Source/GSImageMagickImageRep.m,
* Source/GSTheme.m: Remove unused #import.
2015-08-23 Fred Kiefer <[email protected]>
* Source/NSInputManager.m: Add binding processing code for escape
key and make list of bindings easier to extend.
* KeyBindings/DefaultKeyBindings.dict: Add default escape key
binding to complete: method.
Patch by Marcian Lytwyn <[email protected]>.
* Source/NSInputManager.m: Fixed alt behaviors for return
Patch by Paul Landers <[email protected]>.
2015-08-21 Fred Kiefer <[email protected]>
* Source/NSMatrix.m: Remove GC ifdefs.
2015-08-16 Fred Kiefer <[email protected]>
* Resources/Korean.lproj/Localizable.strings: Add Korean translations.
Patch by Seong-Gu Lee <[email protected]>
2015-08-16 Fred Kiefer <[email protected]>
* Source/NSSplitView.m (-setAutosaveName:): Treat an empty
autosaveName as nil to fix problem with some nibs.
Patch by Doug Simons <[email protected]>
2015-08-14 Fred Kiefer <[email protected]>
* Source/NSMatrix.m: Warn about wrong cell array size on
row/column insert, as Cocoa does.
Clean up and more NSInteger changes.
* ColorPickers/GSStandardColorPicker.m,
* Source/NSColorPanel.m (-_setupPickers): Prevent warning from NSMatrix.
2015-08-13 Fred Kiefer <[email protected]>
* Source/NSButtonCell.m (-initWithCoder:):
Fix image scaling value extract from XIB.
* Headers/Additions/GNUstepGUI/GSXibLoading.h
* Source/GSXibLoading.m
* Source/GSXibLoader.m
Add IB defined runtime attribute processing for XIB
Patch by Marcian Lytwyn <[email protected]>.
2015-08-11 Fred Kiefer <[email protected]>
* Source/NSTextView.m: Rewrite
writeSelectionToPasteboard:... methods.
Based on patch by Adam Fox <[email protected]>
2015-07-26 Riccardo Mottola <[email protected]>
* Headers/AppKit/NSView.h,
* Source/NSView.m: Add alphaValue property.
2015-07-24 Fred Kiefer <[email protected]>
* Source/NSFont.m: Look for xib font property IBIsSystemFont.
Patch by Paul Landers <[email protected]>.
2015-07-24 Fred Kiefer <[email protected]>
* Source/NSTextStorage.m: Fixed a bug with setting _editedRange for
multiple edits when the first one is a delete (which results in
_editedRange having a length of 0) so it gets replaced instead of
expanded to include all edits.
Patch by Doug Simons <[email protected]>
2015-06-28 Germán Arias <[email protected]>
* Resources/Spanish.lproj/Localizable.strings: Add translations.
2015-06-26 01:22-EDT Gregory John Casamento <[email protected]>
* Headers/Additions/GNUstepGUI/GSTheme.h: Add declarations for
drawing methods for theming.
* Source/GSThemeDrawing.m: Add drawing methods for theming
* Source/NSBrowserCell.m: Use drawing methods
* Source/NSCell.m: Add private method for _inEditing
2015-06-25 20:11-EDT Gregory John Casamento <[email protected]>
* Headers/Additions/GNUstepGUI/GSTheme.h: Add declarations for method
* Source/GNUmakefile: Add new file GSThemeWindow.m
* Source/GSThemeWindow.m: Add method standardWindowButton:
forStyleMask:.
* Source/NSWindow.m: Call theme methods to return standardWindowButton:
forStyleMask:.
2015-06-25 14:17-EDT Gregory John Casamento <[email protected]>
* Headers/Additions/GNUstepGUI/GSTheme.h: Declarations for new theme
methods.
* Source/GSStandardWindowDecorationView.m Changes to use new methods.
* Source/GSThemeDrawing.m: Add methods to allow retrieving dimensions
for window decorations in a theme specific manner.
2015-06-14 17:47-EDT Gregory John Casamento <[email protected]>
* Headers/AppKit/NSAnimationContext.h
* Source/GNUmakefile
* Source/NSAnimationContext.m: Add skeleton for NSAnimationContext.
2015-06-12 Fred Kiefer <[email protected]>
* Source/NSSplitView.m: Be sure to adjust subviews before setting
divider position. Otherwise, adjustSubviews will wipe out the setting.
Patch by Doug Simons <[email protected]>
2015-05-29 Fred Kiefer <[email protected]>
* Resources/English.lproj/Localizable.strings
* Resources/Esperanto.lproj/Localizable.strings
* Resources/French.lproj/Localizable.strings
* Resources/German.lproj/Localizable.strings
* Resources/Italian.lproj/Localizable.strings
* Resources/Lojban.lproj/Localizable.strings
* Resources/Spanish.lproj/Localizable.strings
Regenerate string files.
2015-05-28 Fred Kiefer <[email protected]>
* Source/NSBitmapImageRep+GIF.m: Handle EGifOpen similar to other
version specific functions.
* Headers/Additions/GNUstepGUI/GSXibElement.h
* Headers/Additions/GNUstepGUI/GSXibLoading.h
* Headers/Additions/GNUstepGUI/GSXibObjectContainer.h
* Headers/Additions/GNUstepGUI/GSXibParser.h
Correct FSF address.
2015-05-26 Sebastian Reitenbach <[email protected]>
* Source/NSView.m
* Source/NSTextContainer.m
remove unused parameters from debug outputs
* Headers/AppKit/NSMenu.h
* Source/NSMenu.m
return value for NSMenu itemAtIndex change from
id<NSMenuItem> to NSMenuitem* as it is done by Apple too
fixes warnings in NSApplication.m and NSTextView.m
* Source/NSAnimation.m
* Source/NSCachedImageRep.m
* Source/NSEvent.m
* Source/NSPrintPanel.m
* Source/NSTextBlock.m
* Source/NSToolbarItem.m
* Source/GSDisplayServer.m
* Source/GSXibLoader.m
* Source/NSSplitView.m
* Model/GMArchiver.m
* TextConverters/RTF/RTFConsumer.m
Format string fixes and casts
* Source/NSGradient.m
* Source/NSWindow.m
abs() -> fabs()
* Source/NSBitmapImageRep+GIF.m
giflib 5.1.0 also has EGifCloseFile with 2 parameters,
so add a define like others have to fix its usage.
2015-05-22 Fred Kiefer <[email protected]>
* ChangeLog: Correct version number in last commit.
* Source/NSButtonCell.m (-encodeWithCoder:): Correct bug with
image position in NSButtonFlags.
2015-05-16 Richard Frith-Macdonald <[email protected]>
* Documentation/news.texi:
* ANNOUNCE:
* NEWS:
* Version:
New 0.24.1 bugfix release
2015-05-13 Riccardo Mottola <[email protected]>
* configure.ac
Copied from base: only warn if compiler is different from the one
configured in make
* configure
regenerated
2015-05-12 Riccardo Mottola <[email protected]>
* configure.ac
pick up gnustep make configured CC, CPP, CXX and check they are
consistent with how make was configured
* configure
regenerated
2015-05-10 Ivan Vucica <[email protected]>
* Source/NSAlert.m (+alertWithError:): Support use of
NSLocalizedFailureReasonKey. Prefer it as the title of the error
alert's title in case it is present inside a NSError.
* Source/NSDocument.m (-fileWrapperOfType:error:): Prefer error
created by called -dataOfType:error: method; that is, do not overwrite
it.
* Source/NSDocument.m (-writeToURL:ofType:error:): Check that error is
non-nil, then apply the error message only if
-fileWrapperOfType:error: did not set its own error.
2015-04-03 Fred Kiefer <[email protected]>
* Headers/AppKit/NSColor.h,
* Source/NSColor.m: Add OSX 10 named colours.
* Source/NSColorList.m: Add keyed coding/decoding.
2015-03-27 Fred Kiefer <[email protected]>
* Source/NSSavePanel.m: Fix problem with the title shown in
the save panel's title bar not matching the set title when
the panel is reused for a different purpose.
Patch by Doug Simons <[email protected]>
* Source/NSApplication.m: Adjust modal window position to relative
window requested.
Patch by Marcian Lytwyn <[email protected]> with small change.
2015-03-16 Fred Kiefer <[email protected]>
* Images/NSRemoveTemplate.tiff: Add file.
* Images/GNUmakefile: Handle new file.
* Source/GSXibLoader.m: Better error reporting for wrong
application class.
* Source/NSOutline.m (-drawRow:clipRect:): Don't set the value for
the edited cell.
2015-03-12 Fred Kiefer <[email protected]>
* Source/NSCollectionView.m (-newItemForRepresentedObject:): Don't
autorelease the returned object as this method starts with "new".
* Source/NSCollectionViewItem.m (-copyWithZone:): Add call to new
method to copy over the bindings from the old view hierarchy to
the new.
2015-03-11 Germán Arias <[email protected]>
* Headers/AppKit/NSCursor.h:
* Source/NSCursor.m: Add class method +count, specifically to handle
cursors on MS Windows.
2015-03-10 Fred Kiefer <[email protected]>
* Source/NSImageView.m (-initWithCoder:): Set default for
AllowsCutCopyPaste.
2015-03-10 Fred Kiefer <[email protected]>
* Source/NSCollectionViewItem.m: Fix reference counting in
-copyWithZone:. Remove method -view again.
* Source/NSArrayController.m: Fix reference counting in
-newItemForRepresentedObject. Protect -_resetItemSize from missing
prototype view.
2015-03-08 Fred Kiefer <[email protected]>
* Source/NSCollectionView.m (-tile): Prevent _numberOfColumns from
being 0.
* Source/NSArrayController.m: Revert last change and add proper
handling of arrangeObjects for many cases.
* Source/NSCollectionViewItem.m: Fix reference counting. Add
method -view to have something to display.
2015-03-08 Germán Arias <[email protected]>
* Source/NSPrinter.m (-loadPPDAtPath:symbolValues:inclusionSet:):
Skip any data that don't conform with the specification, to prevent
application get trapped in the loop while. Correction suggested
by Fred.
2015-03-06 Fred Kiefer <[email protected]>
* Source/NSCollectionView.m (+initialize): Add binding for content.
* Source/NSViewController.m (-loadView): Don't try to load the
view if there is no name for the NIB.
* Source/NSArrayController.m (-initWithContent:): Sets
automaticallyRearrangesObjects to true.
2015-03-05 Fred Kiefer <[email protected]>
* Source/NSCollectionView.m (-drawRect:): Work around strange
behaviour of compiler.
2015-03-05 Fred Kiefer <[email protected]>
* Source/NSImageView.m (-initWithFrame:): Set default for
AllowsCutCopyPaste.
2015-02-24 Germán Arias <[email protected]>
* Source/GSAutocompleteWindow.m (+defaultWindow):
* Source/NSComboBoxCell.m (+defaultPopUp): Fix last revert.
2015-02-23 Germán Arias <[email protected]>
* Source/GSToolTips.m (+initialize):
* Source/GSAutocompleteWindow.m (+defaultWindow):
* Source/NSComboBoxCell.m (+defaultPopUp): Revert last commits.
2015-02-23 Germán Arias <[email protected]>
* Source/GSToolTips.m (+initialize): Use buffered window and
allow autodisplay. Set auto display to NO maybe was needed in the
past, but currently is not needed anymore and interferes with the
display of tooltips on Windows.
2015-02-23 Germán Arias <[email protected]>
* Source/GSAutocompleteWindow.m (+defaultWindow):
* Source/NSComboBoxCell.m (+defaultPopUp): Use buffered windows.
2015-02-20 Fred Kiefer <[email protected]>
* Source/NSCell.m (-copyWithZone:): Fix copy and paste error.
2015-02-03 20:20-EST Gregory John Casamento <[email protected]>
* Printing/GSWIN32/GSWIN32PrincipalClass.m: Remove calls to
instantiate GSWIN32PageLayout and GSWIN32PrintPanel classes.
* Printing/GSWIN32/GSWIN32PrintPanel.[hm]: Removed.
* Printing/GSWIN32/GSWIN32PageLayout.[hm]: Removed.
* Printing/GSWIN32/GNUmakefile: Remove classes from compilation.
2015-02-03 15:23-EST Gregory John Casamento <[email protected]>
* Headers/Additions/GNUstepGUI/GSTheme.h: Add declarations here
for GSPageLayout and GSPrintPanel.
* Printing/GSCUPS/GNUmakefile: Remove uneeded classes
* Printing/GSCUPS/GSCUPSPageLayout.h
* Printing/GSCUPS/GSCUPSPageLayout.m: Remove since it is not
needed. It does nothing.
* Printing/GSCUPS/GSCUPSPrincipalClass.m: Remove uneeded classes
* Printing/GSCUPS/GSCUPSPrintPanel.h
* Printing/GSCUPS/GSCUPSPrintPanel.m: Remove since it is not
needed. It does nothing.
* Printing/GSLPR/GNUmakefile: Remove uneeded classes.
* Printing/GSLPR/GSLPRPageLayout.h
* Printing/GSLPR/GSLPRPageLayout.m: Remove since it is not
needed. It does nothing.
* Printing/GSLPR/GSLPRPrincipalClass.m: Remove uneeded classes
* Printing/GSLPR/GSLPRPrintPanel.h
* Printing/GSLPR/GSLPRPrintPanel.m: Remove since it is not
needed. It does nothing.
* Source/GSThemePrintPanels.m: Remove declaration from here
for GSPrintPanel and GSPageLayout and move it to GSTheme.h
2015-02-02 18:37-EST Gregory John Casamento <[email protected]>
* Source/NSPageLayout.m
* Source/NSPrintPanel.m: Restore allocWithZone: to previous
implementation to allow overriding of the panels from
either the print bundle or the theme.
2015-02-02 11:59-EST Gregory John Casamento <[email protected]>
* Source/GSThemePrintPanels.m: Add default subclass implementation
so that the panels can be instantiated.
* Source/NSPageLayout.m: Change the allocWithZone: method to
return the class indicated by the theme.
* Source/NSPrintPanel.m: Change the allocWithZone: method to
return the class indicated by the theme.
2015-02-01 Gregory Casamento <[email protected]>
* Source/GSPrinting.m: Add call to GSTheme code to get the
class for the layout and print panels. Printing bundle can
still overide if needed.
* Source/GSThemePrintPanels.m: Add implementation of category
for handling print / layout panels.
* Headers/Additions/GNUstepGUI/GSTheme.h: Add category
for print/layout panels.
* Printing/GSWIN32/GSWIN32PrincipalClass.m: Minor cleanup.
2015-01-31 Fred Kiefer <[email protected]>
* Source/GSTextStorage.m
* Source/NSSpellChecker.m
Two small cleanups.
Patch by Marat Ibadinov <[email protected]>
* Source/NSLayoutManager.m
Changed == to >= to fix a crash when layout_char is beyond the
length of the string.
Patch by Paul Landers <[email protected]>.
2015-01-23 Fred Kiefer <[email protected]>
* Source/NSBitmapImageRep.m (-copyWithZone): Changed the call from
-copyWithZone: to -mutableCopyWithZone:.
* Tests/gui/NSBitmapImageRep/testcopy.m: Test for this change
Patch by Josh Freeman <tedge>.