File: ChangeLog

package info (click to toggle)
gnustep-gui 0.32.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,348 kB
  • sloc: objc: 178,763; ansic: 24,089; cpp: 664; yacc: 464; sh: 90; makefile: 72
file content (2278 lines) | stat: -rw-r--r-- 79,592 bytes parent folder | download | duplicates (2)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2025-02-11 Richard Frith-Macdonald <rfm@gnu.org>

	* ANNOUNCE:
	* BUGS:
	* INSTALL:
	* NEWS:
	* Source/DocMakefile:
	* Version:
	Updates for 0.32.0 release

2024-11-08 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/NSBrowser.h: Add dictionary to hold relationships.
	* Source/NSBrowser.m: Add logic in methods to support bindings,
	expose bindings in +initialize.
	* Source/NSTextFieldCell.m: Minor fix to NSTextField for displaying
	binding values.

2024-10-31 Richard Frith-Macdonald <rfm@gnu.org>

	* Source/GSServicesManager.m: fix -laterDate: conditionals to be true
	only when file date has been updated (returned value != receiver).

2024-10-29 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSLayoutAnchor.h: Add missing include that is required after a change in base.
	* Source/NSTableView.m: Forward declare new methods.

2024-08-29 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSBundleAdditions.m: Quick fix for .gorm loading
	not returning top level objects.

2024-08-18 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/NSTreeController.h: Update header
	* Headers/AppKit/NSTreeNode.h: Update header
	* Source/GNUmakefile: Add new class
	* Source/GSBindingHelpers.h: Add NSString category
	* Source/GSControllerTreeProxy.[hm]: Proxy class
	for NSTreeController, a subclass of NSTreeNode.
	* Source/GSThemeDrawing.m: Optimize code a bit and
	add changes for bindings.
	* Source/GSXib5KeyedUnarchiver.m: Add support for new keys
	on NSTreeController.
	* Source/NSKeyValueBinding.m: Add new methods to
	GSKeyValueBinding
	* Source/NSOutlineView.m: Add support for bindings.
	* Source/NSTreeController.m: Implement new methods.
	* Source/NSTreeNode.m: Implement new methods

2024-07-25 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/NSBrowser.h: Add declarations for
	10.6 delegate methods for item-based browsers.
	* Source/NSBrowser.m: Add support for 10.6 item-based
	delegate methods.

2024-06-28 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/AppKit.h: Add NSMenuToolbarItem.h
	* Headers/AppKit/NSMenuToolbarItem.h: Declarations
	for NSMenuToolbarItem.
	* Images/GNUmakefile: Add new image
	* Images/nsmapping.strings: Add image mapping
	* MISSING: Remove this class from the list
	* Source/GNUmakefile: Add class to build
	* Source/NSMenuToolbarItem.m: Implementation of
	NSMenuToolbarItem.

2024-06-07 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/Additions/GNUstepGUI/GSTheme.h: Add new methods
	for rendering view-based outline/table views.
	* Headers/AppKit/NSTableRowView.h: Add implementation
	* Headers/AppKit/NSTableView.h: Add references to
	NSTableRowView.h
	* Source/GSThemeDrawing.m: Factor out NSTableView and
	NSOutlineView rendering so that GSThemeDrawing methods
	are as minimal as possible.
	* Source/NSOutlineView.m: Refactor to use new methods
	to generate NSTableRowView when it is view-based.
	* Source/NSTableRowView.m: Add implementation of
	NSTableRowView implementation.
	* Source/NSTableView.m: Update to use NSTableRowView
	when it is view-based.

2024-06-05 Richard Frith-Macdonald <rfm@gnu.org>

        * ChangeLog: Update for new release
	* ANNOUNCE:
	* NEWS:
	* Documentation/news.texi: Update of release notes for 0.31.1.
	* Version: bump to 0.31.1

2024-06-03 Richard Frith-Macdonald <rfm@gnu.org>

	* Source/NSMenuitem.m:
	Fix bug in decoding of archived menu item modifier mask.

2024-05-30 Richard Frith-Macdonald <rfm@gnu.org>

	* Source/GSDisplayServer.m:
	* Source/NSGraphicsContext.m:
	* Source/NSWorkspace.m:
	Avoid using old gnustep_global_lock (removed from base)

2024-05-26 Fred Kiefer <FredKiefer@gmx.de>

	* ChangeLog: Update for new release
	* ANNOUNCE:
	* NEWS:
	* Documentation/news.texi: Update of release notes for 0.31.0.
	* Version: bump to 0.31.0

2024-05-13  Adam Fox <adam.fox@keysight.com>

	* Source/NSParagraphStyle.m (-init): Apply the old default
	tab stop behavior from +defaultParagraphStyle to -init,
	and therefore also to +defaultParagraphStyle.

2024-03-18 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSTextView.m: Add support for NSFilenamenPboardType.
	Change by OnFlApp (https://githup.com/onflapp)

2023-12-28 Fred Kiefer <FredKiefer@gmx.de>

	* Documentation/manual/AppKit.texi: Move table of contents outside
	of title page. This fixes building the documentation with newer texinfo.

2023-12-27 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/NSView.h: Add ivar for NSShadow, update
	version of class for NSArchiver so this can be properly
	read and saved in .gorm files.
	* Source/GSXib5KeyedUnarchiver.m: Add code to handle XIB
	keys for NSShadow.
	* Source/NSShadow.m: Minor cleanup to use ASSIGN macro
	in -initWithCoder:
	* Source/NSView.m: Add code to -encodeWithCoder: and
	-initWithCoder: to properly handle NSViewShadow.

2023-11-27 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/GSGormLoading.m
	* Source/GSNibLoading.m
	* Source/GSXibLoading.m: Remove calls to respondsToSelector:
	for awakeFromNib.  This method is now implemented on a
	category on NSObject called NSNibAwaking.  Also add a
	call to prepareForInterfaceBuilder when we are in Gorm/IB.

2023-11-25 Gregory John Casamento <greg.casamento@gmail.com>

	* Documentation/manual/applicationmakefiles.texi: Update
	documentation.
	* Documentation/manual/gnustepapplication.texi: Update
	documentation.  Update installation path default.
	* Documentation/manual/interfacefiles.texi: Update
	documentation.  Add information about model files (xib,
	nib, etc).
	* Documentation/manual/intro.texi: Update
	documentation.  Add information about themes.

2023-11-25 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/NSNibLoading.h: Add declaration for
	-prepareForInterfaceBuilder to NSNibLoading category.
	* Source/NSNib.m: Add new empty method implementation for
	-awakeFromNib and -prepareForInterfaceBuilder to NSNibLoading
	category on NSObject.
	* Source/NSView.m: Remove empty implementation of awakeFromNib.

2023-09-05 Richard Frith-Macdonald <rfm@gnu.org>

	* Source/DocMakefile: Fix issue #198 ... headers had added a new
	APPKIT_EXPORT_CLASS value added without telling autogsdoc how to
	handle it, breaking parsing.  Mapped it to an empty string.

2023-08-30 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/GSXib5KeyedUnarchive.m: Fix for issue#192.  Added code to
	-decodeObjectForXib:forClassName:withID: to decode toolTip using
	alternative format described in the issue.

2023-08-13 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSSwitch.m (-drawRect:): Correct drawing as suggested by
	Austin Clow (dr_clow@me.com).

2023-02-12 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSCollectionView.m: Implementation of methods
	to support selection by indexPaths and use of NSCollectionViewLayout
	* Source/NSCollectionViewLayout.m: Implementation of
	NSCollectionViewLayout class to support custom collection view
	layouts.
	* Source/NSCollectionViewGridLayout.m: Implementation of the
	Grid layout.
	* Source/NSCollectionViewFlowLayout.m: Implementation of the
	flow layout.
	* Source/NSCollectionViewItem.m: Minor changes to support
	new functionality.
	* Headers/AppKit/NSCollectionView.h: Add new methods.
	* Headers/AppKit/NSCollectionViewLayout.h:
	* Headers/AppKit/NSCollectionViewGridLayout:
	* Headers/AppKit/NSCollectionViewFlowLayout: Add new classes.


2023-01-03 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSDrawer.m: Open drawer on the opposite edge if needed when
	close to the boundary of the screen.

2022-12-29 Richard Frith-Macdonald <rfm@gnu.org>

        * ChangeLog: Update for new release
	* ANNOUNCE:
	* NEWS:
	* Documentation/news.texi: Update of release notes for 0.30.0 by Fred.
	* Version: bump to 0.30.0
	-defaultLineHeightForFont: and -defaultBaselineOffsetForFont:.

2022-10-11 Riccardo Mottola <rm@gnu.org>

	* Source/NSTextView.m
	Fix click on TextAttachmentCells, where the left side was not respected.
	This was because index was respecting fraction and thus loosing the
	attachment when clicking on the right part, only for this case,
	recalculate character index without respectFraction.

2022-09-01 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSButtonCell.m: Move method to detect if button is a
        radio button to this class (- _isRadio)
	* Source/NSButton.m: Add method to check current state of button
        clicked and flip other buttons to off (-_handleRadioStates)

2022-08-27 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSButton.m: Fix to address issue #151, NSRadio button
        behavior on 10.7 should now be implemented.

2022-08-09 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/NSPredicateEditorRowTemplate.h:
        Add missing constants NSTransformableAttributeType and
        NSObjectIDAttributeType.

2022-06-12 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSImageCell.m,
	* Source/NSAccessibilityCustomAction.m,
	* Source/NSStackView.m,
	* Source/NSGridView.m: Fix compiler warnings

2022-03-31 Riccardo Mottola <rm@gnu.org>

	* Headers/Additions/GNUstepGUI/GSTheme.h
	* Source/GSStandardWindowDecorationView.m
	* Source/GSThemeDrawing.m
	Refactor resize bar notch width to be a constant and private inside
	GSTheme, making it accessible through -[GSTheme resizebarNotchWidth].

2022-03-31 Riccardo Mottola <rm@gnu.org>

	* Source/GSStandardWindowDecorationView.m:
	Fix resizing mode by fixing initialization order.

2022-03-29 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/Additions/GNUstepGUI/GSXibKeyedUnarchiver.h
	* Source/GSXib5KeyedUnarchiver.h
	* Source/GSXib5KeyedUnarchiver.m
	* Source/GSXibKeyedUnarchiver.m: Change format of
        customClass dictionary.

2022-03-26 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/Additions/GNUstepGUI/GSXibKeyedUnarchiver.h: Add
        customClasses method and _customClasses ivar.
	* Source/GSXib5KeyedUnarchiver.h: Remove _customClasses from
        declarations here and the method as well.
	* Source/GSXib5KeyedUnarchiver.m: Remove customClasses method
        from here.
	* Source/GSXibKeyedUnarchiver.m: Implement logic here to build
        _customClasses array when loading a XIB of version 3 or 4.

2022-03-22 Riccardo Mottola <rm@gnu.org>

	* Source/NSImageCell.m: subclass initImageCell, so that
	RefusesFirstResponder can be set, matching Mac.

2022-02-26  Wolfgang Lux  <wolfgang.lux@gmail.com>

	* Source/NSPopUpButtonCell.m(setMenu:): Select the first item of
	the menu instead of the last, as this is the only selection that
	makes sense for pull downs.

	* Source/NSPopUpButtonCell.m: Never change the state of the
	selected item when configured as a pull down to match Apple's
	documentation and implementation.

2022-02-06  Wolfgang Lux  <wolfgang.lux@gmail.com>

	* Source/NSPopUpButtonCell.m: Add fix to avoid a dangling
	pointer when changing the menu.

2022-01-11 Gregory John Casamento <greg.casamento@gmail.com>

        * Source/NSBundleAdditions.m: Use FOR_IN macro instead
        of for(... in...) for compiler compatibility.

2021-12-28 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/Additions/GNUstepGUI/GSWindowDecorationView.h:
	Move new addon methods for Wayland to correct class
	GSStandardWindowDecorationView.
	* Source/GSWindowDecorationView.m: Keep variables declarations together.

2021-12-26 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSPopUpButtonCell.m: Try to prevent segmenation fault
	when deallocating a popup button.

2021-12-26 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSMenu.m: Rename method on NSMenuPanel for the Wayland
	backend to -_menu to keep it apart from the already existing method
	-menu on NSResponder.
	* Source/NSSplitView.m: Correct decoded integer type.

2021-11-15 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSSplitView.m: Correct issue introduced in the previous change
	for this class.  The code now uses the older, somewhat broken, logic
	for version 0 and the newer logic for later versions.

2021-11-18 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSBrowser.m: Check [bc isLoaded] in _remapColumnSubviews
        before making the window first responder.

2021-11-15 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/NSSplitView.h
	* Source/NSSplitView.m: Incorporate and refactor changes to NSSplitView
        to support Think, Thin, and PaneSplitter NSSplitViewDividerStyle
        settings.

2021-11-15 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSView.m: Add cast to id in case nil is not "id".  This
        is the same fix that was done by Frederick Seiffert on base.

2021-10-27 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSPopUpButtonCell.m
	* Source/NSTabView.m
	* Source/NSTextContainer.m
	* Source/NSTextFieldCell.m
	* Source/NSTextField.m
	* Source/NSTextView.m
	* Source/NSWindowController.m: Remaining improvements and stability
        changes contributed by testplant.

2021-10-27 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/GSToolbarView.m: Toolbar fixes to prevent the index
        from exceeding the number of visibleBackViews.

2021-10-27 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSScrollView.m: Add scrollview keys from TP merge.

2021-10-27 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/GSToolTips.m: Add extra pixels so that tool tip doesn't
        overrun the window.

2021-10-25 Riccardo Mottola <rm@gnu.org>

	* Source/NSTextStorage.m:
	Keep local variables to ensure correct values during recursion.

2021-10-21 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/NSGlyphInfo.[hm]: Class which provides info about
	each glyph depending on mappings.  Currently only identity mapping
	is supported.

2021-10-13 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/NSToolbar.h: Update to use formal protocol if
        API level is 10.6+.

2021-10-13 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/NSTabView.h: Update NSTabView.h to have a formal
        protocol for NSTabViewDelegate if the API we are using is 10.6 or
        later.

2021-10-13 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSTableView.m: Remove exception where lastIndex is greater
        than number of columns.

2021-10-13 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/Additions/GNUstepGUI/GSTheme.h: Add tabview enum
	* Source/GSAutocompleteWindow.h: Fix signature mismatch
	* Source/GSThemeDrawing.m: Move tabview enum to header.

2021-10-12 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSBitmapImageRep.m: Change initWithBitmapDataPlanes:...
        to conform to Apple documented behavior and return nil if it
        cannot initialize with the given arguments.

2021-10-03 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/NSComboBox.h: Add check to see if @optional
        is available.

2021-10-02 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/GSToolTips.m: Use RELEASE and AUTORELEASE macros where
	appropriate.  Minor fixes.
	* Source/NSPopover.m: Add code to draw an outline outside of the
	view.  Add GSPopoverPanel and GSPopoverView private classes.

2021-09-30 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSPopover.m: Fix an issue with NSPopover loading the
	model (nib/xib/gorm) when it is loaded by a setContentViewController:
	in an non-storyboard based application.

2021-09-29 Gregory John Casamento <greg.casamento@gmail.com>

	* TextConverters/RTF/RTFConsumer.m: Improve error message for
	when a field being added to the RTF document is NULL.

2021-09-29 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/NSComboBox.h: Add @optional to protocol
	declarations for NSComboBoxDelegate and NSComboBoxDataSource.

2021-06-17 Riccardo Mottola <rm@gnu.org>

	* Source/NSHelpPanel.m: (initWithContentRect)
	When initializing the text view do not use the document view
	of the scroll view which is not yet set and invalid.
	(Fixes exceptions/crashes)

2021-05-20 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/AppKit.h: Add NSStackView.h to header.
	* Headers/AppKit/NSStackView.h: Header
	* MISSING: Remove NSStackView from the list and update others.
	* Source/GNUmakefile: Add NSStackView.[hm] to GNUmakefile.
	* Source/GSXib5KeyedUnarchiver.m: Add decoders and mappings to decode
        NSStackView content.
	* Source/NSStackView.m: Implementation of NSStackView.

2021-05-01 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/Additions/GNUstepGUI/GSXibLoading.h: Add declaration
        for customClassNames so that we can use that to collect the names
        of all of the custom classes and their associations.
	* Source/GNUmakefile: Remove classes which are not used.
	* Source/GSXib5KeyedUnarchiver.m: In parserDidStartElement...
        call isInInterfaceBuilder to determine if we should allocate
        custom classes.
	* Source/GSXibLoading.m: Add in code in nibInstantiate which uses
        [NSClassSwapper isInInterfaceBuilder] to prevent connections
        from being established if the XIB is being loaded in IB/Gorm.

2021-04-30 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/Additions/GNUstepGUI/GSModelLoaderFactory.h:
        Declaration of canReadData: in the GSModelLoader class and
        declaration of modelLoaderForData: in GSModelLoaderFactory.
	* Source/GSGModelLoader.m: Prototype method for canReadData:
        Implementation of modelLoaderForData:.
	* Source/GSGormLoader.m
	* Source/GSModelLoaderFactory.m
	* Source/GSNibLoader.m
	* Source/GSXibLoader.m: Implement -canReadData: method to
        determine for each loader if that loader can handle the data
        passed into it.
	* Source/NSNib.m: Use of [GSModelLoaderFactory modelLoaderForData:]
        to more generically implement methods that initialize an archive from
        archived data since we have no file extention to rely on to identify
        the archive contents.

2021-04-26  Ivan Vucica  <ivan@vucica.net>

	* ANNOUNCE:
	* Documentation/ReleaseNotes.gsdoc:
	* Documentation/news.texi:
	* NEWS:
	Updating documentation for the 0.29.0 release.
	* Version:
	Bumping requirement to gnustep-base 1.28.0.

2021-04-23 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/Functions.m: QuickFix. Remove unecessary warning
        about storyboard in NSApplicationMain function.

2021-03-29 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSGridView.[hm]: Add implementation of NSGridView.
	* Source/GSXib5KeyedUnarchiver.m: Add keys to decode NSGridView.

2021-03-27 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSControl.m (-textDidChange:): If there is a binding with
	continious update, pass on the changed text.
	* Source/GSXibElement.m: Correct the handling of boolean values in attributes.
	* Source/GSBindingHelpers.h,
	* Source/NSKeyValueBinding.m: Prevent recursion when
	reverseSetValue: is used.
	* Source/NSTextField.m (-textDidChange:): Remove empty code line.

2021-03-12 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSMenu.m (-_setOwnedByPopUp:): Only update the menu if
	there is a new popup.

2021-02-21 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSPasteboard.m (-_pasteboardWithTarget:name:): Correct
	wrong order of arguments to NSMapInsert.
	* Source/NSPasteboard.m (-generalPasteboard): Simplify
	implementation.

2021-02-12 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSSearchFieldCell.m: Correct encoding/decoding that was
	broken in last commit of this file.

2021-02-05 Fred Kiefer <FredKiefer@gmx.de>

	* Resources/Italian.lproj/Localizable.strings,
	* Resources/Esperanto.lproj/Localizable.strings: Readd BOM which
	was lost when regenerating these files.

2021-01-22 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSTableView.m (-_numRows): Take column value binding into
	consideration.
	* Source/NSTableColumn.m (-setValue:forKey:): Reload table data.

2021-01-22 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSWindow.m (GSOrderedWindows): Don't try to handle
	already gone windows that may be returned from a slow window manager.

2021-01-16 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSHorizontalTypesetter.m: Small cleanups for nerged pull request.
	* Resources: Regenerate translation files.
	* Documentation/news.texi,
	* Version: Updating documentation for the upcoming 0.29.0 release.

2021-01-15 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSControl.m: Change encoding/decoding to protect
	against differences in integer size.

2021-01-08 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSComboBoxCell.h: Correct type of instance variables.
	* Source/GSGuiPrivate.h: Add macros for encoding/decoding.
	* Source/NSActionCell.m,
	* Source/NSButtonCell.m,
	* Source/NSCell.m,
	* Source/NSComboBoxCell.m,
	* Source/NSImageCell.m,
	* Source/NSLevelIndicatorCell.m,
	* Source/NSPathCell.m,
	* Source/NSPopUpButtonCell.m,
	* Source/NSSearchFieldCell.m,
	* Source/NSSliderCell.m,
	* Source/NSStepperCell.m: Change encoding/decoding to protect
	against differences in integer size.

2020-12-13 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSSearchFieldCell.m: Use GSTheme to display the popup.

2020-12-12 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSSearchField.m,
	* Source/NSSearchFieldCell.m: Small cleanups in formatting and
	int types.

2020-12-11 Riccardo Mottola <rm@gnu.org>

	* Source/GSToolbarView.m,
	Use centerScanRect to correct Items frame and avoid flickering.

2020-12-06 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSToolbarFrameworkPrivate.h,
	* Source/GSToolbarView.m,
	* Source/NSToolbar.m: Minor changes to format code, remove unused
	methods and introduce some new helper methods.

2020-11-29 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSMenuView.m (-mouseDown:): Protect against _window going
	away during tracking.

2020-11-23 Riccardo Mottola <rm@gnu.org>

	* Source/NSPopUpButtonCell.m (release):
	Use standard setMenu: in release and avoid leaking the Menu. (Proposed by Fred)

2020-11-03 Riccardo Mottola <rm@gnu.org>

	* Source/NSBitmapImageRep+JPEG.m (_JPEGRepresentationWithProperties:):
	Support greyscape output colorspace in JPEG decompression, fix
	Alpha output to NO, since JPEGs do not support it.

2020-10-18 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSTableView.m (-validateEditing): Reset _isValidating on
	intermediate return.
	Patch by Andreas Höschler <ahoesch@smartsoft.de>.

2020-10-04 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSColor.m: Protect against theme colour list missing out
	on default colours.

2020-09-14 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSToolTips.m: Revert bogus last commit.

2020-09-12 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/GSToolTips.m: Fix issue where setting the theme causes
	tooltips to become all black.  This is happening on windows and other
	platforms.
	* Source/NSCell.m: Fix for issue on Windows were contents are reset
	when initWithCoder: coder is called.  If the contents are set, they
	determine the type.  Currently investigating why this is occuring
	ONLY on Windows.

2020-09-12 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSTextView.m (-initWithCoder:): Make sure text container is
	in sync with the text view resize behaviour.
	* Source/NSScrollView.m (-initWithCoder:): Add scrollers as
	subviews when decoded.

2020-09-11 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSLayoutManager.m
	(-glyphRangeForCharacterRange:actualCharacterRange:): Handle zero
	length charRagne at end of text correctly.

2020-09-07 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSXib5KeyedUnarchiver.m
	(-decodeCellPrototypeForElement:): Fix misuse of setType:.

2020-07-28 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/AppKit.h: Add all new headers
	* Headers/AppKit/NSTextCheckingClient.h: Protocol for
	NSTextCheckingController.m
	* Headers/AppKit/NSTextCheckingController.h: New controller
	for text checking - spelling/grammar
	* Headers/AppKit/NSTextFinder.h: Text finder, currently delegates
	all functionality to GSTextFinder.
	* Headers/AppKit/NSTextInputClient.h: Protocol
	* Headers/AppKit/NSTextInputContext.h: Protocol
	* Headers/AppKit/NSTextView.h: Implementation of methods needed
	for NSTextFinder.
	* Headers/AppKit/NSUserInterfaceValidation.h: Minor changes
	* MISSING: Removed these from MISSING list
	* Source/GNUmakefile: Add files to be compiled or copied to list.
	* Source/NSTextCheckingController.m: Implementation using
	NSSpellChecker
	* Source/NSTextFinder.m: Implementation using GSTextFinder
	* Source/NSTextInputContext.m: Skeleton implementation.
	* Source/NSTextView.m: Implementation of methods

2020-08-06 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSStoryboardTransform.h,
	* Source/NSPageController.m,
	* Source/NSPersistentDocument.m,
	* Source/NSSplitViewItem.m,
	* Source/NSViewController.m: Fix compiler warnings mit gcc.

2020-07-31 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/AppKit.h: Add header
	* Headers/AppKit/NSStatusBarButton.h: Declaration
	* MISSING: Remove file from list
	* Source/GNUmakefile: Add to compilation
	* Source/NSStatusBarButton.m: Definition of class.

2020-07-30 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/AppKit.h
	* Headers/AppKit/NSLayoutAnchor.h
	* Headers/AppKit/NSLayoutConstraint.h
	* Headers/AppKit/NSLayoutGuide.h
	* MISSING: Remove classes from list.
	* Source/GNUmakefile
	* Source/GSXib5KeyedUnarchiver.m: Add code to decode constraints.
	* Source/NSLayoutAnchor.m
	* Source/NSLayoutConstraint.m
	* Source/NSLayoutGuide.m: Add infrastructure for layouts.
        This needs additional work and study.  Comitting now so others
        can more easily help.

2020-07-28 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/AppKit.h: Add includes for splitviewcontroller,
        pagecontroller and tabviewcontroller.
	* Headers/AppKit/NSPageController.h: Interface for page view controller
	* Headers/AppKit/NSSplitViewController.h: Interface for splitview
        controller
	* Headers/AppKit/NSSplitViewItem.h: Enhancements to splitview item to
        add logic for controller
	* Headers/AppKit/NSStoryboardSegue.h: Add methods to handle popovers
	* Headers/AppKit/NSTabViewController.h: Interface for tabViewController
	* Headers/AppKit/NSTabViewItem.h: methods to support NSViewController
	* Headers/AppKit/NSToolbar.h: Minor changes to support tabview controller
	* Headers/AppKit/NSViewController.h: Additional enum
	* MISSING: Remove implemented classes from list
	* Source/GNUmakefile: Add new classes
	* Source/GSStoryboardTransform.h: Additional methods on proxy
	* Source/GSStoryboardTransform.m: Additional methods on proxy
	* Source/GSThemeDrawing.m: minor changes
	* Source/GSXib5KeyedUnarchiver.m: Handle pagecontroller element,
        set certain things to true if abesnt
	* Source/NSPageController.m: Implementation of NSPageController
	* Source/NSSplitViewController.m: Implementation of NSSplitViewController
	* Source/NSSplitViewItem.m: Implementation
	* Source/NSStoryboardSegue.m: New methods for segue
	* Source/NSTabViewController.m: Implementation of NSTabViewController
	* Source/NSTabViewItem.m: New methods implementation
	* Source/NSTabView.m: Add methods to handle NSViewController changes
	* Source/NSViewController.m: New methods.
	* Source/NSView.m: Private methods to insert a view
	* Source/NSViewPrivate.h: Private method to insert view, declaration
	* Source/NSWindow.m: Minor fixes.

2020-07-19 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/AppKit.h: Add include files for NSSegue* and other
        classes.
	* Headers/AppKit/NSSeguePerforming.h: Protocol for segue performing
        so that classes that conform can be queried to determine if the
        segue should be performed in the first place.
	* Headers/AppKit/NSStoryboard.h: Class which loads the storyboard and
        loads the individual scenes and controllers.
	* Headers/AppKit/NSStoryboardSegue.h: This class handles the transition
        between controllers/scenes.
	* Headers/AppKit/NSViewController.h: Modifications to handle segues.
	* Headers/AppKit/NSWindowController.h: Modifications to handle segues.
	* Headers/AppKit/NSWindow.h: New method to create window controller for
        view controllers.
	* MISSING: Remove the classes implemented here from the missing list.
	* Source/Functions.m: Enhance NSApplicationMain() function to handle the
        loading of a storyboard.
	* Source/GNUmakefile: Add the new classes to the build and copy the
        headers.
	* Source/GSStoryboardTransform.[hm]: Class to handle the transformation
        of the storyboard file into "XIB" files for loading.  Also handles the
        intermediate
        processes of instantiation of the destination controller.
	* Source/NSStoryboard.m: Implementation of the above described class.
	* Source/NSStoryboardSegue.m: Implementation of the above described
        class.
	* Source/NSViewController.m: Implementation of private methods to
        handle transitions.
	* Source/NSWindowController.m: Implementation of private methods to
        handle transitions.
	* Source/NSWindow.m: Implementation of method to create window
        controller for view controllers.

2020-07-10 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/NSOutlineView.h: Formalize protocols for
        NSOutlineViewDelegate and NSOutlineViewDataSource.

2020-07-03 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSXib5KeyedUnarchiver.m (alternateName:): Be more careful
	when chopping of part of the name.

2020-07-03 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSNib.h,
	* Source/NSNib.m: Add missing MacOSX methods.
	* Source/GSXibLoader.m: Remove semicolon. Add debug logs.

2020-06-15 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/AppKit.h
	* Headers/AppKit/NSAccessibilityCustomAction.h
	* Headers/AppKit/NSAccessibilityCustomRotor.h
	* Headers/AppKit/NSAccessibilityElement.h
	* Headers/AppKit/NSAccessibilityProtocols.h
	* Source/GNUmakefile
	* Source/NSAccessibilityCustomAction.m
	* Source/NSAccessibilityCustomRotor.m
	* Source/NSAccessibilityElement.m: Add skeletons for
        these classes. Future support of accessibility features
        will fill these in.

2020-06-12  Yavor Doganov  <yavor@gnu.org>

	* Headers/AppKit/NSApplication.h: Remove semicolons from the
	NSAppKitVersionNumber* definitions.

2020-05-29 Fred Kiefer <FredKiefer@gmx.de>

	* TextConverters/RTF/rtfGrammar.y: Correct encoding handling.
	* TextConverters/RTF/rtfGrammar.tab.h,
	* TextConverters/RTF/rtfGrammar.tab.m: Regenerated.
	* TextConverters/RTF/RTFConsumer.m: Add code to handle code page 10000.

2020-05-18 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSColor.h,
	* Source/NSColor.m: Add newer Cocoa methods.

2020-05-14 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSWindow.m (-makeFirstResponder, -sendEvent:): Correct
	handling of new first responder not becoming first responder.
	Patch suggested by Josh Freeman <pikopixel@twilightedge.com>.

2020-05-10 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSXib5KeyedUnarchiver.m: Clean up NSPathCell decoding.

2020-05-09 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSStringDrawing.m: Initialize all the cache entries as
	not used.

2020-05-09 Gregory John Casamento <greg.casamento@gmail.com>

	* Source/NSPersistentDocument.[hm]: Add implementation of abstract
	class for NSPersistentDocument.

2020-05-09 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSHorizontalTypesetter.m (_addExtraLineFragment): Make
	sure curParagraphStyle and line_height always have useful values.

2020-05-08 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSWindow.m (-initWithContentRect:...defer:): Call
	setFrame:display: to ensure the minium and maximum size gets enforced.
	* Source/NSFont.m (-description): Add this method.

2020-05-06 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/Additions/GNUstepGUI/GSTheme.h: Add declarations
        for new drawing methods.
	* Headers/AppKit/AppKit.h: Add headers to main header
	* Headers/AppKit/NSMenu.h: Add method to draw the popup in
        the appropriate positin
	* Headers/AppKit/NSPathCell.h: Implementation of path cell header
	* Headers/AppKit/NSPathComponentCell.h: Component cell
	* Headers/AppKit/NSPathControl.h: Control
	* Headers/AppKit/NSPathControlItem.h: Control item
	* MISSING: Remove NSPath* classes since they have been implemented
	* Source/GNUmakefile: Add files to compile and copy
	* Source/GSThemeDrawing.m: Add new drawing methods.
	* Source/GSXib5KeyedUnarchiver.m: Add new decoding methods
	* Source/NSMenu.m: Implement method to position popup
	* Source/NSPathCell.m: Implementation path cell.
	* Source/NSPathComponentCell.m: Cell representation of each
        component
	* Source/NSPathControlItem.m: Path items
	* Source/NSPathControl.m: Path control to contain path cell and
        components.

2020-04-30  Yavor Doganov  <yavor@gnu.org>

	* Documentation/GSSpeechRecognitionServer.1: Add simplistic
	manpage for GSSpeechRecognitionServer.
	* Documentation/GNUmakefile: Install it conditionally.

2020-04-26 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/Additions/GNUstepGUI/GSTheme.h: Add declarations
        for new drawing methods.
	* Headers/AppKit/AppKit.h: Add new headers
	* Headers/AppKit/NSAccessibilityProtocols.h
	* Headers/AppKit/NSCell.h: Add NSControlStateValue enum
	* Headers/AppKit/NSSwitch.h: Header for NSSwitch
	* MISSING: Remove NSSwitch
	* Source/GNUmakefile: Add .h and .m files
	* Source/GSThemeDrawing.m: Add drawing code for knob and
        switch basin.
	* Source/GSXib5KeyedUnarchiver.m: Add decoding for
        NSControlContents.  Make sure enabled is YES when not
        present.
	* Source/NSColor.m: Minor changes
	* Source/NSMatrix.m: Remove unneeded code
	* Source/NSSwitch.m: Implementation of NSSwitch
	* Source/NSToolbarItem.m: Remove unneeded code

2020-04-13 Gregory John Casamento <greg.casamento@gmail.com>

	* Headers/AppKit/AppKitErrors.h:
	* Headers/AppKit/AppKit.h:
	* Headers/AppKit/NSFontAssetRequest.h:
	* Headers/AppKit/NSMediaLibraryBrowserController.h:
	* Headers/AppKit/NSScrubber.h:
	* Headers/AppKit/NSScrubberItemView.h:
	* Headers/AppKit/NSScrubberLayout.h:
	* Headers/AppKit/NSSharingServicePickerToolbarItem.h:
	* Headers/AppKit/NSUserInterfaceCompression.h:
	* Headers/AppKit/NSUserInterfaceItemSearching.h:
	* Headers/AppKit/NSWindowRestoration.h:
	* MISSING: Remove mention of these classes.
	* Source/GNUmakefile
	* Source/NSFontAssetRequest.m:
	* Source/NSMediaLibraryBrowserController.m:
	* Source/NSScrubberItemView.m:
	* Source/NSScrubberLayout.m:
	* Source/NSScrubber.m:
	* Source/NSSharingServicePickerToolbarItem.m: Add code to allow
        compilation using these classes.  These are Mac specific so they
        can't be implemented on any other platform due to HW or
        service limitations.  At some point these might be able to be
        implemented, but, for now, they are here to allow apps which
        use them to compile.

2020-04-13  Ivan Vucica <ivan@vucica.net>

	* Documentation/announce.texi:
	* ANNOUNCE:
	Normalize the accompanying text for the release announcement across
	core packages: standardize chapter name and GPG information.

2020-04-05  Ivan Vucica  <ivan@vucica.net>

	* ANNOUNCE:
	* Documentation/ReleaseNotes.gsdoc:
	* Documentation/news.texi:
	* NEWS:
	Updating documentation for the 0.28.0 release.

2020-04-01  Wolfgang Lux  <wolfgang.lux@gmail.com>

	* Source/NSAlert.m (NSBeginAlertSheet): Restore call to delegate
	method which was lost a while ago.

	* Source/NSAlert.m (NSBeginCriticalAlertSheet,
	NSBeginInformationalAlertSheet): Remove redundant calls to close
	method.

	* Source/NSAlert.m (NSBeginAlertSheet, NSBeginCriticalAlertSheet,
	NSBeginInformationalAlertSheet): Change arguments names to reduce
	confusion about the intended use of the corresponding selectors.

2020-03-26 Fred Kiefer <FredKiefer@gmx.de>

	* Documentation/news.texi: Started to fill in some details for
	pending release.
	* .travis.yml: Try to keep up with Niels' changes in base.

2020-03-12  Sergii Stoian  <stoyan255@gmail.com>

	* Model/GNUmakefile: do not overwrite ADDITIONAL_INCLUDE_DIRS
	value to help RPM build. In spec file ADDITIONAL_INCLUDE_DIRS can be sat
	to subdirectories which are create by RPM build tool.

2020-03-05  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSWindow.m (_applyFrame:): new helper method to do actual
	resizing.
	(setFrame:display:): use _applyFrame method.
	(applicationDidChangeScreenParameters:): Use _applyFrame: because our
	origin in OpenStep coordinates might be unchanged and `setFrame:display:`
	has check for it.

2020-02-28  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSWindow.m (center): always center window on main screen -
	monitor where user expects to see window.

2020-02-26  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSWindow.m (sendEvent:): removed usage of extra local variables
	in GSAppKitWindowMoved code block.

2020-02-23  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSWindow.m
	(applicationDidChangeScreenParameters:): quit while loop after
	screen was found.
	(sendEvent:): use `_screen` ivar to get screen befor frame change.

	* Source/NSMenu.m (windowDidChangeScreen:): join two if statements.

2020-02-23 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/Additions/GNUstepGUI/GSXibLoading.h,
	* Source/GSXib5KeyedUnarchiver.m,
	* Source/GSXibLoading.m: Move more behaviour from the
	IBActionConnection5 and IBOutletConnection5 classes
	to the original ones.

2020-02-23 Fred Kiefer <FredKiefer@gmx.de>

	* .travis.yml
	* travis-deps.sh: Try to keep up with Niels' changes in base.

2020-02-20  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSMenu.m (_setGeometry): take into account main screen
	origin when calculating horizontal menu postion.

	* Source/NSApplication.m (_appIconInit): take into account main screen
	origin when placing application icon.

2020-02-13  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSWindow.m (setFrame:display:): use _screeForFrame: here
	to prevent `_screen` reassign -  it will be reassigned in
	sendEvent: (GSAppKitWindowMoved event) after call to [self screen].
	(setFrameFromString:): removed unused code because _screenForFrame:
	never returns `nil`. Do not reassign `_screen` here.

2020-02-12  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSWindow.m (sendEvent:): set current screen to ivar and
	send WindowDidChangeScreen notification if window was moved to other
	screen.

	* Source/NSScreen.m (mainScreen): returns screen of main menu if no
	key window exists. With this implementation default screen (screen at
	index 0 in screens array) should never be returned.

	* Source/NSMenu.m (initWithTitle:): observe WindowDidBecomeKey and
	WindowDidChangeScreen notifications.
	(windowDidChangeScreen:): new method to handle observed notification
	added above. Moves menu to screen of key window for both cases: when
	key window moved to or activated on different screen.

2020-02-09 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSFontDescriptor.m: Correct key for encoding and decoding.

2020-01-31  Sergii Stoian  <stoyan255@gmail.com>

	* Source/GSTitleView.m (mouseDown:): limit menu movement to screen
	frame for top/left/right edges. Menu can be moved to the bottom until
	title is completely visible.

2020-01-27  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSWindow.m (applicationDidChangeScreenParameters): take into
	account screen origin change during window position recalculation.

2020-01-26  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSWindow.m (initWithContentRect:styleMask:backing:defer:):
	added observer of NSApplicationDidChangeScreenParametersNotification.
	(applicationDidChangeScreenParameters:): callback for added notification -
	updates window position, set new screen object and saves frame if
	autosave name exists.

2020-01-23 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSXib5KeyedUnarchiver.m: Remove NSWindowTemplate5.
	* Source/GSXibLoader.m: Clean up code.
	* Headers/Additions/GNUstepGUI/GSXibKeyedUnarchiver.h,
	* Source/GSXibKeyedUnarchiver.m: Provide method to load both sorts
	of XIB files.
	* Source/NSArrayController.m: Add horrible hack to get KVB on
	array controller to work.

2020-01-22 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSXib5KeyedUnarchiver.m,
	* Headers/Additions/GNUstepGUI/GSNibLoading.h,
	* Source/GSXibLoading.m: Move toolbar ivar from NSWindowTemplate5
	to NSWindowTemplate.

2020-01-22 Fred Kiefer <FredKiefer@gmx.de>

	* TextConverters/RTF/rtfScanner.m: Add RTFansicpg.
	* TextConverters/RTF/rtfGrammar.y: Handle encoding and code pages.
	* TextConverters/RTF/rtfGrammar.tab.h,
	* TextConverters/RTF/rtfGrammar.tab.m: Regenerated.
	* TextConverters/RTF/RTFConsumerFunctions.h,
	* TextConverters/RTF/RTFConsumer.m: Add code to handle encoding.

2020-01-20 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSAppearance.h,
	* Source/NSPDFInfo.m,
	* Source/NSWorkspace.m: Fix compiler warnings.

2020-01-19 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSXibKeyedUnarchiver.m: Remove references of XIB 5.
	* Headers/Additions/GNUstepGUI/GSNibLoading.h: Add one method definition.
	* Source/GSXibLoader.m,
	* Source/GSXibLoading.m: Move helper classes to the correct file.

2020-01-19 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSXib5KeyedUnarchiver.m: Handle dictionary elements correctly.
	* Source/NSKeyValueBinding.m: Transform each element of an array.

2020-01-18 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSArrayController.m: Only filter if there is a filter predicate.
	* Source/NSTableView.m: Use destionationValue instead of
	sourceValueFor: to get the row numbers and the display values.
	* Source/GSThemeDrawing.m: Don't use the datasource of the table
	directly to get the values to display.
	* Source/NSTabView.m: Mark for redisplay when removing tab item.
	* Source/NSKeyValueBinding.m: Add some debugging logs.

2020-01-12 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSToolbarItem.m (-initWithCoder:): Use decodeSizeForKey:.
	* Source/GSBindingHelpers.h,
	* Source/NSArrayController.m: Add observable array and use it for arrangeObjects.
	* Source/GSXib5KeyedUnarchiver.m: Add generic mechanism to decode
	keys that include the class name.
	Also add header clip view to subviews of scroller.

2020-01-11 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSRuleEditor.h
	* Source/NSRuleEditor.m: Add action and target.
	* Source/NSPredicateEditor.m: Add encoding and decoding.
	* Source/GSXib5KeyedUnarchiver.m: Decode row templates.

2020-01-10 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSKeyValueBinding.h,
	* Source/externs.m: Add some more bindings.
	* Source/NSPopUpButton.m,
	* Source/NSPopUpButtonCell.m,
	* Source/NSTableView.m: Use the new bindings.

2020-01-01 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSXib5KeyedUnarchiver.m,
	* Source/GSXibKeyedUnarchiver.m,
	* Headers/Additions/GNUstepGUI/GSNibLoading.h,
	* Headers/Additions/GNUstepGUI/GSXibElement.h,
	* Headers/AppKit/NSCell.h,
	* Headers/AppKit/NSWindow.h,
	* Source/GSCodingFlags.h,
	* Source/GSNibLoading.m,
	* Source/GSXib5KeyedUnarchiver.h,
	* Source/GSXibElement.m,
	* Source/GSXibLoader.m,
	* Source/NSButtonCell.m,
	* Source/NSCell.m,
	* Source/NSMatrix.m,
	* Source/NSNibBindingConnector.m,
	* Source/NSToolbar.m:
	Merge XIB document loading from the old Eggplant branch with lots
	of cleanup.
	* Headers/Additions/GNUstepGUI/GSXibParser.h,
	* Source/GSXibParser.m,
	* Source/GNUmakefile: Remove now obsolete class.

2020-01-19 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSNibOutletConnector.h,
	* Headers/AppKit/NSNibControlConnector.h,
	* Source/NSNibOutletConnector.m,
	* Source/NSNibControlConnector.m,
	* Source/NSNibConnector.m: Add files missing in last commit from Gregory.

2020-01-10  Sergii Stoian  <stoyan255@gmail.com>

	* Images/common_StepperDown.tiff,
	* Images/common_StepperDownHighlighted.tiff,
	* Images/common_StepperUp.tiff,
	* Images/common_StepperUpHighlighted.tiff: new images with arrows
	similar to scroll view buttons'.

	* Source/GSThemeDrawing.m (stepperUpButtonRectWithFrame:),
	(stepperDownButtonRectWithFrame:): center buttons horizontally; simplify
	and cleanup.

	* Source/NSStepper.m (acceptsFirstResponder): return NO. Returning
	YES makes sense only if `keyDown:` is implemented.
	(acceptsFirstMouse:): return YES.

	* Source/NSStepperCell.m (cellSize): initial implementation. Returns
	minimum size based on up and button sizes.

2020-01-07 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSDatePicker.h,
	* Headers/AppKit/NSDatePickerCell.h,
	* Source/NSDatePicker.m,
	* Source/NSDatePickerCell.m: Small cleanup.
	* Headers/AppKit/AppKit.h
	* Headers/AppKit/NSPredicateEditor.h
	* Headers/AppKit/NSPredicateEditorRowTemplate.h
	* Headers/AppKit/NSRuleEditor.h
	* Source/GNUmakefile
	* Source/NSPredicateEditor.m
	* Source/NSPredicateEditorRowTemplate.m
	* Source/NSRuleEditor.m
	* Source/externs.m: Add minimal version of predicate editor copied
	over from mySTEP.

2020-01-06 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSDatePickerCell.h,
	* Headers/AppKit/NSDatePicker.h,
	* Source/NSDatePickerCell.m,
	* Source/NSDatePicker.m: Add minimal version of date picker copied
	over from mySTEP.

2019-12-29 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSBundleAdditions.m (-pathForNibResource:): Report type
	not filename while iterating.

2019-12-18  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSBrowser.m (frameOfColumn:): shift up column only for browser
	with separated columns layout.
	(tile): fix column height calculation; moved sanity check of column
	height closer to calculation; removed code that duplicates code below.

2019-12-17  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSScrollView.m (tile): tweak location and height of vertical
	scroller if header or corner view available.

	* Source/GSThemeDrawing.m: (drawTableCornerView:withClip:): do not draw
	black rectangle because -drawDarkButton:withClip: draws all necessary
	elements.

	* Source/GSThemeDrawing.m (drawScrollViewRect:inView:): further cleanup
	of method implementation. Removed all tweaks of scroller length - all
	required calculations must be done in NSScrollView's -tile method. Simplified
	caluclations of X and Y positions of scroller.

2019-12-17  Sergii Stoian  <stoyan255@gmail.com>

	* Source/GSThemeDrawing.m (drawScrollViewRect:inView:): fixed scroller
	border positionning and length - do not overlap border if any.
	Use [self sizeForBorderType: borderType] to determine border width.

2019-12-12  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSFont.m (smallSystemFontSize): return 10 as default value.
	Update documention comment regarding default values for NSMiniFontSize
	ans NSSmallFontSize.

2019-12-11  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSWindow.m
	(initialize): use MiniWindowTile image for miniwindow tile.
	(drawRect:): adjusted position of title cell to fit tile image.
	(setTitle:): disable drawing of title cell background;
	use NSMiniControlSize font size for miniwindow title cell.

	* Source/NSFont.m (systemFontSizeForControlSize:): increased default font
	size for NSMiniControlSize.

2019-12-11  Sergii Stoian  <stoyan255@gmail.com>

	* Source/GSHorizontalTypesetter.m: removed extra imports left from
	last 2 commits.

2019-12-10  Sergii Stoian  <stoyan255@gmail.com>

	* Headers/Additions/GNUstepGUI/GSLayoutManager.h,
	* Source/GSLayoutManager.m: new method -typingAttributes returns default
	typing attributes of NSTextView.
	* Source/NSLayoutManager.m: override GSLayoutManager's -typingAttributes
	- primitive method - provides access to _typingAttributes ivar.
	* Source/GSHorizontalTypesetter.m: use new GSLayoutManager's
	-typingAttributes method to get paragraph style and font of new empty text
	container. Normally `curLayoutManager` is a NSLayoutManager object so,
	actually, we get NSLayoutManager's _typingAttributes.

	* Source/GSHorizontalTypesetter.m: (_addExtraLineFragment) get paragraph
	style and font from NSLayoutManager's typing attributes. Fixes insertion
	point height for empty text objects (NSTextView, NSTexField etc.).

2019-12-09  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSStringDrawing.m: fixed incorrect string drawing (shortened, misplaced)
	in ART backend. It seems that third parameter to `cache_lookup` function
	(BOOL useScreenFonts) is valuable for ART but not for Cairo backend.

2019-12-07 Fred Kiefer <FredKiefer@gmx.de>

	* .travis.yml
	* travis-deps.sh: Try to keep up with Niels' changes in base.

2019-12-06 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSGestureRecognizer.h
	* Source/NSGestureRecognizer.m: Restore code by Daniel Ferreira
	* Headers/AppKit/NSButtonTouchBarItem.h
	* Headers/AppKit/NSCandidateListTouchBarItem.h
	* Headers/AppKit/NSClickGestureRecognizer.h
	* Headers/AppKit/NSColorPickerTouchBarItem.h
	* Headers/AppKit/NSCustomTouchBarItem.h
	* Headers/AppKit/NSGroupTouchBarItem.h
	* Headers/AppKit/NSMagnificationGestureRecognizer.h
	* Headers/AppKit/NSPanGestureRecognizer.h
	* Headers/AppKit/NSPickerTouchBarItem.h
	* Headers/AppKit/NSPopoverTouchBarItem.h
	* Headers/AppKit/NSPressGestureRecognizer.h
	* Headers/AppKit/NSRotationGestureRecognizer.h
	* Headers/AppKit/NSSharingServicePickerTouchBarItem.h
	* Headers/AppKit/NSSliderTouchBarItem.h
	* Headers/AppKit/NSStepperTouchBarItem.h
	* Headers/AppKit/NSTouchBarItem.h
	Clean up after Greg's commit.

2019-12-06 Fred Kiefer <FredKiefer@gmx.de>

	* .travis.yml
	* travis-deps.sh: Update to match changes in base by Niels Grewe.

2019-12-02 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSBitmapImageRep.m (-_convertToFormatBitsPerSample:...):
	Correct division by zero bug in image conversion.

2019-11-03 Riccardo Mottola <rm@gnu.org>

	* Headers/AppKit/NSWorkspace.h
	Remove fake typedef for NSAppleEventDescriptor since now we have a
	stub in Foundation.

2019-07-28 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSSliderCell.m: Fix encoding/decoding as the types don't match.
	* Source/NSApplication.m (-targetForAction:to:from:): Warn only in
	debug mode about the target not responding to the action.

2019-07-07 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSColor.h,
	* Source/NSColor.m: Add tool tip named colours.
	* Source/GSToolTips.m (+initialize, -_timedOut:): Get colours from NSColor.

2019-04-17  Sergii Stoian  <stoyan255@gmail.com>

	* Source/GSDragView.m (_setCursor): Do not hold `cursors` array -
	use NSCursor's methods. Do not recolor cursor and just use
	[NSCursor greenArrowCursor].

	* Headers/AppKit/NSCursor.h:
	* Source/NSCursor.m (greenArrowCursor):
	Use getStandardCursor() to get GSGreenArrowCursor. New cursor type
	GSGreeanArrowCursor was added.

	* Images/GSContextualMenuCursor.tiff,
	* Images/GSDisappearingItemCursor.tiff,
	* Images/GSDragCopyCursor.tiff,
	* Images/GSDragLinkCursor.tiff,
	* Images/GSGreenArrowCursor.tiff,
	* Images/GSOperationNotAllowedCursor.tiff: New cursor images.

	* Images/common_ClosedHandCursor.tiff,
	* Images/common_OpenHandCursor.tiff,
	* Images/common_copyCursor.tiff,
	* Images/common_linkCursor.tiff,
	* Images/common_noCursor.tiff: Removed from nsmapping.strings.

	* Images/GNUmakefile (Images_RESOURCE_FILES): Update resource
	list according to cursor images addition/removal.

2019-04-10  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSMenuItemCell.m (drawKeyEquivalentWithFrame:inView:):
	use NCell's textColor instead of check if we're disabled/enabled.

2019-04-10  Sergii Stoian  <stoyan255@ukr.net>

	* Source/NSMenuItemCell.m (drawKeyEquivalentWithFrame:inView:):
	check if item is disabled/enabled and set color attribute for attributed
	key equivalent string.

2019-04-09  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSMenuItemCell.m (_keyEquivalentString): if modifier key string
	is not defined - set key equivalent font trait: Italic for Alternate modifier
	Bold - for Control.
	(_sizeKeyEquivalentText:): new method to calculate string size wrt font
	set in `_keyEquivalentString:`.
	(drawKeyEquivalentWithFrame:inView:): draw key equivalent as attributed
	string.

2019-04-08  Sergii Stoian  <stoyan255@ukr.net>

	* Source/NSApplication.m (becomesKeyOnlyIfNeeded): override NSWindow
	methodin appicon to reduce number of order front calls. The source
	of the call is NSWindow's sendEvent:.

2019-04-06  Sergii Stoian  <stoyan255@ukr.net>

	* Headers/Additions/GNUstepGUI/GSDisplayServer.h,
	* Source/NSApplication.m,
	* Source/GSDisplayServer.m: `hidewindow` method  was renamed to
	`hideApplication`

	* Source/NSApplication.m (hide:): Change comment before call to
	`hidewindow`.

	* Source/GSDisplayServer.m (hidewindow:): fixes to return value and type.
	Change comment.

2019-04-05  Sergii Stoian  <stoyan255@gmail.com>

	* Headers/AppKit/NSEvent.h: new event subtype `GSAppKitAppHide` was added.
	* Source/NSWindow.m (sendEvent:): handle "GSAppKitAppHide" event subtype.

	* Headers/Additions/GNUstepGUI/GSDisplayServer.h,
	* Source/GSDisplayServer.m (hidewindow:): new methods was added.

	* Source/NSApplication.m (hide:): Send -hidewindow: to to the main menu.
	If window manager doesn't support _GNUSTEP_HIDE_APP atom - hide windows
	by ourself.

2019-04-03  Sergii Stoian  <stoyan255@ukr.net>

	* Source/NSApplication.m (activateIgnoringOtherApps:):
	Optimize `-autolaunch YES` checking code.

2019-04-02  Sergii Stoian  <stoyan255@gmail.com>

	* Source/NSApplication.m:
	(activateIgnoringOtherApps:) Do not activate application on first run
	if commandline argument `-autolaunch YES` was specified.

2019-03-27  Sergii Stoian  <stoyan255@gmail.com>

	* Headers/AppKit/NSWindow.h:
	Lowering down NSFloatingWindowLevel number by one to distinguish
	floating panels from menus.

2019-02-26 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSBitmapImageRep+ICNS.m (_imageRepsWithICNSData:): Try to
	put the best suited image first.

2019-02-10 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/Additions/GNUstepGUI/GSHorizontalTypesetter.h: Add
	comment to describe cache variables.
	* Source/GSHorizontalTypesetter.m: Restructure glyph attribute
	cache filling and make _addExtraLineFragment saver by providing a
	default for curParagraphStyle.

2019-01-21 Riccardo Mottola <rm@gnu.org>

	* Source/NSWorkspace.m
	Do guard includes for getmntinfo and mntent separately, should
	help building on Debian/kFreeBSD and fix 55526, but could need
	more work.

2019-01-06 Ivan Vucica <ivan@vucica.net>

	* ANNOUNCE
	* Documentation/ReleaseNotes.gsdoc
	* Documentation/news.texi
	* NEWS
	* Version:
	Updating documentation for the 0.27.0 release.

2019-01-06 Ivan Vucica <ivan@vucica.net>

	* configure: Regenerated with autoconf 2.69.

2019-01-05 Fred Kiefer <FredKiefer@gmx.de>

	* Documentation/news.texi: Fill in some details for pending release.
	* Source/NSTableView.m (encodeWithCoder:,initWithCoder:): Use
	unsigned int instead of unsigned long for flags.

2018-11-19 Riccardo Mottola <rm@gnu.org>

	* Headers/Additions/GNUstepGUI/config.h.in
	* configure
	* configure.ac
	New getmntent structure checks.

	* Source/NSWorkspace.m (getFileSystemInfoForPath)
	On linux, try to read /sys/block/xxx/removable information to get
	information about removable volumes, while continue honoring
	preferences. This can be a little inefficient if called for each volume.
	Furthermore in mountedLocalVolumePaths, enhance skipping reserved mount
	names by using filesystem type also if getmmntent is available.

2018-09-14 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSGraphicsContext.m
	(+graphicsContextWithGraphicsPort:flipped:): Rewrite using an init method.

2018-08-05    <wolfgang.lux@gmail.com>

	* Source/NSApplication.m (-setApplicationIconImage:): Avoid
	calling iconSize method on a null pointer.

2018-08-03 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSApplication.m (-applicationIconImage): Lazy load the
	app icon.

2018-07-27 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSView.m (-beginPageInRect:atPlacement): Remove check for
	empty rect. This will now use the placement translation all the time.

2018-07-14 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSPrinter.m (-addPPDKeyword:withScanner:withPPDPath:):
	Protect against value being nil.
	* Source/NSPageLayout.m (-tableView:objectValueForTableColumn:row:):
	With standard papers, calculate margins taking into account factorValue.
	* Source/NSPrintInfo.m (-initWithDictionary): Fix border calculation.
	Idea by Yavor Doganov <yavor@gnu.org>

2018-07-08 Ivan Vucica <ivan@vucica.net>

	* Source/NSOpenGLView.m:
	Fix docstring for -[NSOpenGLView initWithFrame:pixelFormat:].
	There is no such thing as +[NSOpenGLContext defaultPixelFormat].

2018-06-11 Riccardo Mottola <rm@gnu.org>

	* Headers/Additions/GNUstepGUI/config.h.in
	* configure
	* configure.ac
	* Source/NSBitmapImageRep+JPEG.m
	Check for floorf() and provide simple replacement.

2018-06-04 Stjepan Brkić <stjepanbrkicc@gmail.com>

	* Headers/AppKit/NSView.h: Add 'id _coreAnimationData' variable.
	The variable will point to another class instance that will
	contain data necessary data for future implementation of methods
	regarding CA layers.

2018-03-30 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSDocument.m (-revertToContentsOfURL:ofType:error:): Add
	override calls for deprecated methods.

2018-03-29  Graham Lee  <graham@iamleeg.com>

	* Source/NSWindowController.m: gsdoc

2018-03-11 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSSliderCell.h,
	* Source/NSSliderCell.m: Rewrite this class to store and access
	the value directly. This brings the behaviour closer to Apple's
	horrible implementation.

2018-02-27 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSSegmentedCell.m (-startTrackingAt:inView:,
	-continueTracking:at:inView:): Add this methods to enable
	tracking for this class.
	Patch suggested by Josh Freeman <pikopixel@twilightedge.com>.

2018-02-27 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/Additions/GNUstepGUI/GSTheme.h,
	* Source/GSThemeDrawing.m: Correct int/NSInteger mismatch detected
	by Josh Freeman <pikopixel@twilightedge.com>.

2018-02-25 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSKeyValueBinding.h,
	* Source/NSKeyValueBinding.m: Add helper function NSIsControllerMarker.

2018-02-09 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSDisplayServer.m: Store the current display server in a
	static variable and not in a thread variable.
	Idea by Yavor Doganov  <yavor@gnu.org>

2018-02-05 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSHorizontalTypesetter.m (-layoutLineNewParagraph:): Make
	sure nominal gets always set.

2018-02-04 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSAlert.m (NSBeginAlertSheet): Move closing the sheet from
	here...
	* Source/NSApplication.m (-beginSheet:...:contextInfo:): ...to here.

2018-01-29 Fred Kiefer <FredKiefer@gmx.de>

	* Tools/speech/GNUmakefile,
	* configure.ac: Give up on dynamic library detecion.
	* configure: Regnerate

2018-01-29 Fred Kiefer <FredKiefer@gmx.de>

	* configure.ac: Correct last commit.
	* configure: Regnerate

2018-01-28 Fred Kiefer <FredKiefer@gmx.de>

	* configure.ac: Improve checks for flite.
	* configure: Regnerate
	* Tools/speech/GNUmakefile: Use variables for flite libraries.
	* Tools/speech/FliteSpeechEngine.m: Switch to use register_cmu_us_kal16.

2018-01-24 Fred Kiefer <FredKiefer@gmx.de>

	* Printing/GSCUPS/GSCUPSPrintOperation.m:
	Restore -allocWithZone: methods as this is needed to override
	behaviour in superclass.

2018-01-23 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSApplication.m (-targetForAction:to:from:): Warn about
	the target not responding to the action.
	* Source/NSSavePanel.m (_initWithoutGModel): Don't set the OK
	button as the target of the browser. Use helper method instead.

2018-01-22 Gregory John Casamento <greg.casamento@gmail.com>

	* Tools/speech/GSSpeechSynthesizer.m: Correct compilation
	error in for loop in connectionDied: method.

2018-01-21 Fred Kiefer <FredKiefer@gmx.de>

	* Tools/speech/GNUmakefile: Remove specific OBJC flags.
	Fixes bug #46939.

2018-01-14 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSMenu.m (-update): Restructure by splitting up into two
	helper methods.
	* Source/NSMenu.m (-performKeyEquivalent:): Use new helper method
	to only autoenable menu item with matching key equivalent.

2018-01-14 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSLayoutManager.m
	(-glyphRangeForCharacterRange:actualCharacterRange:): Try to
	handle attachments at the end of the file more graceful.

2018-01-07 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSView.m (-_rebuildCoordinates): Use simple path only
	when both window and superview are nil. Set the visibleRect in
	this case to bounds.

2018-01-07 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSApplication.m (-targetForAction:to:from:): Return nil
	if the target is non-nil but does not respond to the action.

2018-01-01 Ivan Vucica <ivan@vucica.net>

	* ANNOUNCE
	* Documentation/ReleaseNotes.gsdoc
	* Documentation/news.texi
	* NEWS
	* Version:
	Updating documentation for the 0.26.2 release.

2018-01-01 Fred Kiefer <FredKiefer@gmx.de>

	* Printing/GSCUPS/GSCUPSPrinter.m,
	* Printing/GSCUPS/GSCUPSPrintInfo.m:
	Restore -allocWithZone: methods as this is needed to override
	behaviour in superclass.

2018-01-01  Yavor Doganov <yavor@gnu.org>

	* Documentation/make_services.1: Typo fix.

2018-01-01 Fred Kiefer <FredKiefer@gmx.de>

	* config/pkg.m4: Update to serial 12.
	* Headers/Additions/GNUstepGUI/config.h.in,
	* configure: Regnerate
	Fixes bug #52779.
	Patch by Yavor Doganov <yavor@gnu.org>

2017-12-31 Ivan Vucica <ivan@vucica.net>

	* Documentation/announce.texi
	* Documentation/news.texi
	* Documentation/ReleaseNotes.gsdoc
	* ANNOUNCE
	* NEWS
	* Version: Cut a new release of gnustep-gui which requires
	gnustep-base 1.25.1.

2017-12-28 Fred Kiefer <FredKiefer@gmx.de>

	* Tests/gui/NSBezierPath/windingCountAtPoint.m
	* Tests/gui/NSCell/basic.m
	* Tests/gui/NSEvent/delta.m
	* Tests/gui/NSPasteboard/lazy_copy.m
	* Tests/gui/NSSavePanel/setDelegate_reload.m
	* Tests/gui/NSSliderCell/minMax.m
	Remove comipler warnings in test code.
	* Tests/gui/TextSystem/deallocation.m
	Move auto release pool inside of the test set to get the test
	working again.

2017-12-28 Fred Kiefer <FredKiefer@gmx.de>

	* Printing/GSCUPS/GSCUPSPrinter.m,
	* Printing/GSCUPS/GSCUPSPrintInfo.m,
	* Printing/GSCUPS/GSCUPSPrintOperation.m: Undefine __BLOCKS__
	before the cups.h import as some versions of this header file
	expect unconditional that libdispatch is present when that
	variable is defined.
	Remove duplicated -allocWithZone: methods.

2017-12-27 Richard Frith-Macdonald <rfm@gnu.org>

	* Source/NSGraphicsContext.m:  When using clang and the gnustep
	runtime (the nonfragile API), it seems the compiler calculates the
	offset of the _gcontext instance variable in the NSThread object
	incorrectly, causing a crash.
	Until we know why and can fix it, we need a workaround.  The simplest
	one would be not to use the instance variable at all, but on the
	assumption that the instance variable was added to address a real
 	performance issue it seems better to use the runtime to access the
	instance variable.

2017-12-10 Ivan Vucica <ivan@vucica.net>

	* NEWS: Regenerate NEWS file for the 0.26.0 release.

2017-12-07 Ivan Vucica <ivan@vucica.net>

	* Documentation/announce.texi: Use GNUSTEP-GUI-VERSION even when
	talking about -back.
	* Documentation/ReleaseNotes.gsdoc:
	* Documentation/news.texi: Update with notable changes for 0.26.0.
	* ANNOUNCE: Regenerated the ANNOUNCE file from announce.texi and
	news.texi.

2017-12-07 Ivan Vucica <ivan@vucica.net>

	* Source/NSImage.m (-initWithCoder:): Clean up and reduce amount
	of releases of self.

2017-12-03 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSScreen.h
	* Source/NSScreen.m (-backingScaleFactor): Add new method. Change
	return value of -userSpaceScaleFactor to CGFloat.
	* Source/NSWindow.m (-backingScaleFactor): Return 1 instead of 0.

2017-10-28  Graham Lee  <graham@iamleeg.com>

	* Source/NSImage.m (initWithCoder:): restore image name when
	loading an archived image with a name that can't be resolved at
	load time. Fixes Gorm bug #46317.

2017-10-05 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSMenu.m (-isPartlyOffScreen): Protect agains window or
	screen being nil.
	* Source/NSWindow.m (-_screenForFrame:): Try not to return nil, as
	other code uses the result without checks.

2017-10-01 Ivan Vucica <ivan@vucica.net>

	* Documentation/ReleaseNotes.gsdoc:
	Backfill 0.24.1 through 0.25.1. Add stub 0.26.0 entry.

	* Documentation/news.texi:
	Add stub 0.26.0 entry.

	* Version:
	Bump to 0.26.0.

2017-08-31 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSStepperCell.m (-trackMouse:...untilMouseUp:): Adjust
	to changes in super class.

2017-08-27 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSButtonCell.m (-setButtonType:): Warn about unsupported
	button types.
	* Source/NSCell.m (-performClickWithFrame:inView:): Highlight the
	cell only if drawing is possible.

2017-08-27 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSCell.m (-trackMouse:...untilMouseUp:): Rewrote mouse
	tracking logic to be closer to the Cocoa definition.

2017-08-25 Riccardo Mottola <rm@gnu.org>

	* Source/NSBitmapImageRep.m
	Initialize density to 0, so that in case it is unset (72dpi) it is
	not a random value in case the struct is not zeroed.

2017-08-24  Daniel Ferreira <dtf@stanford.edu>

	* Source/externs.m:
	Define some private NSAttributedString attribute name definitions. Their
	functionality is not yet implemented.

2017-08-24  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/NSWindow.h:
	Define new values for the NSWindowCollectionBehavior enum for
	compatibility purposes.

2017-08-24  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/NSGestureRecognizer.h
	* Source/NSGestureRecognizer.m:
	Implement stub for -[NSGestureRecognizer locationInView:] for
	compatibility purposes.

	* Headers/AppKit/NSWindow.h
	* Source/NSWindow.m:
	Add stub for +[NSWindow windowNumberAtPoint:belowWindowWithWindowNumber:]
	for compatibility purposes.

	* Headers/AppKit/NSSpellChecker.h
	* Source/NSSpellChecker.m:
	Add a stub for the -checkGrammarOfString:... method for compatibility
	purposes.

	* Headers/AppKit/NSSpellChecker.h
	* Source/NSSpellChecker.m:
	Add stubs for:
	- +[NSSpellChecker isAutomaticTextReplacementEnabled],
	- +[NSSpellChecker isAutomaticDashSubstitutionEnabled]
	- +[NSSpellChecker isAutomaticQuoteSubstitutionEnabled]
	for compatibility purposes.

2017-08-15  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/NSDragging.h:
	Create NSDraggingSource protocol for increased compatibility with GUI.

	* Headers/AppKit/NSSpellChecker.h:
	Add definitions for the NSCorrectionResponse for increased
	compatibility.

	* Headers/AppKit/NSWindow.h
	* Source/NSWindow.m:
	Add stub for -[NSWindow backingScaleFactor] for compatibility purposes.

	* Headers/AppKit/NSApplication.h
	* Headers/AppKit/NSWindow.h
	* Source/NSWindow.m:
	Define constants and stubs related to modal sheets in GUI for increased
	compatibility.

	* Headers/AppKit/NSFont.h
	* Source/externs.m:
	Define font weight constants introduced in macOS 10.11.

	* Source/externs.m:
	Export the private _NXSmartPaste constant for compatibility purposes.

	* Headers/AppKit/NSAttributedString.h
	* Source/externs.m:
	Add a stub for NSTextInsertionUndoableAttributeName, a private
	NSAttributedString attribute.

	* Headers/AppKit/NSButtonCell.h:
	Define new button cell constants in the NSButtonCell header. These
	buttons are not yet implemented, however.

	* Headers/AppKit/NSText.h:
	Define new-style NSTextAlignment* constants on GUI for compatibility
	purposes with new macOS versions.

2017-08-09  Svetlana Tkachenko

	*  ColorPickers/Russian.lproj/StandardPicker.strings
	Add translation.

2017-08-04  Daniel Ferreira <dtf@stanford.edu>

	* .travis.yml
	* travis-deps.sh:
	Add a Travis CI build to gnustep-gui to check if everything is really
	okay before accepting patches.

	Recent events have shown that bad patches have passed through the review
	process, specially when it comes to breaking compatibility with GCC. A
	CI routine would distinctly avoid these cases.

2017-08-04 Alex Myczko <alex@aiei.ch>

	* ColorPickers/Polish.lproj: Added translation.

2017-08-02 Alex Myczko <alex@aiei.ch>

	* ColorPickers/German.lproj: Added translation.

2017-07-31 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSPasteboardItem.h
	* Source/NSPasteboardItem.m: Clean up these files.

2017-07-31 Ivan Vucica <ivan@vucica.net>

	* Source/NSTextList.m: Add _startingItemNumber-related TODOs to
	NSTextList.
	* Source/NSPasteboardItem.m: Remove RETAIN() when returning
	-[NSPasteboardItem types].

2017-07-28 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSMenuView.m (-attachSubmenuForItemAtIndex:): We should
	not use [NSMenu display] for NSWindows95InterfaceStyle as there we
	have two NSMenuViews for the NSMenu.

2017-07-28 Riccardo Mottola <rm@gnu.org>

	* Headers/AppKit/NSRunningApplication.h: We can actually use retain
	as an equivalent property when not using ARC.

2017-07-26 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSRunningApplication.h: Remove property attribute
	"strong" as gcc does not support this.

2017-07-26  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/NSTextList.h
	* Source/NSTextList.m:
	Add the `startingItemNumber` property to NSTextList introduced in macOS
	10.6.

2017-07-26  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/AppKit.h
	* Headers/AppKit/NSPasteboardItem.h
	* Source/GNUmakefile
	* Source/NSPasteboardItem.m:
	Implement the NSPasteboardItem class. For now, it remains relatively
	useless since NSPasteboard does not yet know how to use it. However, it
	should be pluggable into NSPasteboard once NSPasteboard learns about
	NSPasteboardReading and NSPasteboardWriting.

	* Headers/AppKit/NSPasteboard.h:
	Define the NSPasteboardReading and NSPasteboardWriting protocols
	introduced in OSX 10.6, which remain unimplemented in NSPasteboard.

2017-07-26  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/AppKit.h
	* Headers/AppKit/NSTextAlternatives.h
	* Source/GNUmakefile
	* Source/NSTextAlternatives.m:
	Implement NSTextAlternatives, a class usually used for choosing
	alternatives from a basic string usually for dictation purposes.

2017-07-26  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/NSScroller.h
	* Source/NSScroller.m:
	As of macOS 10.7, scrollers gained two types: Legacy and Overlay. Here,
	we define these styles as well as a method to determine which is the
	"default" style to be used.

2017-07-25 Riccardo Mottola <rm@gnu.org>

	* Source/externs.m
	Do not initialize a string constant with another string constant
	or it breaks GCC build as is. Better proposals to ensure the exact
	same string pointer is used welcome.

2017-07-25  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/NSAttributedString.h
	* Source/externs.m:
	Define an (unimplemented) NSAttributedString attribute for an
	NSTextAlternatives object.

	Define an (unimplemented) NSAttributedString attribute for Unicode
	writing direction.

	* Headers/AppKit/NSParagraphStyle.h
	* Headers/AppKit/NSText.h:
	Define constants for defining an attributed string's writing direction.

2017-07-25  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/NSCell.h
	* Headers/AppKit/NSView.h
	* Source/NSCell.m
	* Source/NSView.m:
	Implement stubs for the layout direction properties in NSCell and
	NSView. Currently, they default to left-to-right layouting.

2017-07-25  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/AppKit.h
	* Headers/AppKit/NSAccessibility.h
	* Headers/AppKit/NSAccessibilityConstants.h
	* Source/GNUmakefile
	* Source/NSAccessibility.m:
	Declare base NSAccessibility functions and constants, which have been
	implemented as stubs.

2017-07-25  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/NSWindow.h:
	Define a missing enum value for a window mask. This mask remains
	unimplemented.

2017-07-25  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/NSControl.h
	* Source/NSControl.m:
	Create a stub for the -[NSControl sizeThatFits:] function.

2017-07-25  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/NSScrollView.h
	* Source/NSScrollView.m:
	Create stubs for the content/scroller inset properties in NSScrollView.

2017-07-25  Daniel Ferreira <dtf@stanford.edu>
	* Headers/AppKit/AppKit.h
	* Source/GNUmakefile:
	Create new classes in the GUI library.

	* Headers/AppKit/NSRunningApplication.h
	* Source/NSRunningApplication.m:
	Create a stub for the NSRunningApplication class.

	* Headers/AppKit/NSGestureRecognizer.h
	* Source/NSGestureRecognizer.m:
	Create stub for the NSGestureRecognizer class.

	* Headers/AppKit/NSVisualEffectView.h
	* Source/NSVisualEffectView.m:
	Create stub for the NSVisualEffectView class.

2017-07-25  Daniel Ferreira <dtf@stanford.edu>
	* Headers/AppKit/NSSpeechSynthesizer.h
	* Source/NSSpeechSynthesizer.m:
	Define new constants in NSSpeechSynthesizer. These are not yet handled
	by the implementation.

	* Headers/AppKit/NSSpellChecker.h:
	Define new constants on NSSpellChecker. They are not yet handled by the
	implementation.

2017-07-25  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/AppKit.h
	* Headers/AppKit/NSUserInterfaceLayout.h
	* Source/GNUmakefile:
	Define interface layout enums to be used by AppKit. This improves
	compatibility with the reference platform.

2017-07-25  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/AppKit.h
	* Headers/AppKit/NSUserInterfaceItemIdentification.h
	* Source/GNUmakefile:
	Introduce the NSUserInterfaceItemIdentification protocol, which required
	an user interface class provide an unique identifier.

2017-07-25  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/AppKit.h
	* Headers/AppKit/NSSharingService.h
	* Source/GNUmakefile
	* Source/NSSharingService.m:
	Define the NSSharingService class as an unimplemented stub for
	compatibility purposes.

2017-07-25  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/NSView.h
	* Source/NSView.m:
	Define layer-related properties in NSView for compatibility purposes,
	and keep their getters and setters as stubs, since they will not have
	any effect before NSView-CALayer integration is implemented.

2017-07-25  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/NSPasteboard.h
	* Source/NSPasteboard.m
	* Source/externs.m:
	Define new constants for NSPasteboard type identifiers. Most of them are
	aliases to the old "Pboard"-style types, although some new ones are not
	fully implemented.

2017-07-25  Daniel Ferreira <dtf@stanford.edu>

	* Headers/AppKit/NSSpeechSynthesizer.h:
	Modern applications require NSSpeechSynthesizerDelegate to be an actual
	@protocol in order to conform to it. Here, we allow it to be one if we
	are on an Objective-C runtime that supports it.

2017-07-22 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSModelLoaderFactory.m (-supportedModelFileAtPath:): Fix
	bug found by compiler.

2017-07-22 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSEvent.h
	* Source/NSEvent.m: Add some newer Cocoa enums and one method with
	dummy implementation.

2017-07-09 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSEvent.h
	* Source/NSEvent.m: Add some newer Cocoa methods with dummy implementations.

2017-07-09 Fred Kiefer <FredKiefer@gmx.de>

	* .gitignore: Add a .gitignore file.

2017-06-17 Riccardo Mottola <rm@gnu.org>

	* Source/NSBitmapImageRep+JPEG.m
	Save resolution information if it is different from 72 dpi.

2017-06-13 Fred Kiefer <FredKiefer@gmx.de>

	* Source/externs.m: Added semicolons missing in last commit.
	* Source/NSSavePanel.m: Fix return type of sorting function.

2017-06-12 Ivan Vucica <ivan@vucica.net>

	* Source/NSAttributedString.m,
	* Source/externs.m:
	Merge pull request from TheDharc <brunosonic@gmail.com>.

2017-04-24 Riccardo Mottola <rm@gnu.org>

        * Source/tiff.m
	* Source/NSBitmapImageRep.m
	Support for writing resolution.

2017-04-22 Fred Kiefer <FredKiefer@gmx.de>

        * Version: Correct required base version that has been off for a year.

2017-04-16 Fred Kiefer <FredKiefer@gmx.de>

	* Printing/GSCUPS/GSCUPSPrinter.m: Add include to get deprecated
	function cupsGetPPD() on newer CUPS systems.

2017-04-16 Fred Kiefer <FredKiefer@gmx.de>

	* Model/IMLoading.m
	* Source/GSTextStorage.m
	* Source/GSToolbarView.m
	* Source/NSLayoutManager.m
	* Source/NSTableView.m
	Fix some clang static analyser warnings reported by
	Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>.

2017-04-06 Ivan Vucica <ivan@vucica.net>

	* Releasing 0.25.1.

2017-04-05 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/Additions/GNUstepGUI/GSXibKeyedUnarchiver.h: Moved from Source.
	* Headers/Additions/GNUstepGUI/GSXibLoading.h,
	* Source/GSXibLoader.m,
	* Source/GSXibKeyedUnarchiver.m,
	* Source/GNUmakefile: Use and install moved header file.

2017-04-01 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSMenu.m (-displayTransient): Update menu before displaying.
	* Source/NSMenuView.m (-attachSubmenuForItemAtIndex:): Use NSMenu
	display method.

2017-03-31 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSAttributedString.m: Check for surrogate UTF16
	characters to prevent nil strings when trying to attempt font
	substitution.

2017-03-31 Riccardo Mottola <rm@gnu.org>

	* Source/NSBitmapImageRep+JPEG.m (-_initBitmapFromJPEG:errorMessage:)
	Ignore density if unit is 0

2017-03-28 Riccardo Mottola <rm@gnu.org>

	* Source/NSBitmapImageRep+JPEG.m (-_initBitmapFromJPEG:errorMessage:)
	Parse density data and set size accordingly.

2017-03-24 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSBitmapImageRep+JPEG.m(-_JPEGRepresentationWithProperties:errorMessage:):
	Correct JPEG export which was using size instead of pixelsWide and pixelsHigh.

2017-03-20 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSXibKeyedUnarchiver.m:
	Merge some of the changes from the testplant branch.

2017-03-19 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSBrowser.m: Add encoding of NSColumnsAutosaveName.
	* Headers/Additions/GNUstepGUI/GSXibLoading.h,
	* Source/GSXibLoader.m,
	* Source/GSXibKeyedUnarchiver.h,
	* Source/GSXibKeyedUnarchiver.m,
	* Source/GNUmakefile: Split of GSXibKeyedUnarchiver in separate file.
	* Source/GSXibLoading.m: Add description method for IBUserDefinedRuntimeAttribute.
	Merge some of the changes from the testplant branch.

2017-03-05 Fred Kiefer <FredKiefer@gmx.de>

	* Headers/AppKit/NSImage.h
	* Headers/AppKit/NSSplitView.h
	* Source/NSImage.m
	* Source/NSProgressIndicator.m
	* Source/NSTableHeaderView.m
	Merge some of the changes from the testplant branch.

2017-02-20 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSHorizontalTypesetter.m (-layoutLineNewParagraph:): Add
	extra line fragment for empty string here.

2017-02-17 Fred Kiefer <FredKiefer@gmx.de>

	* Source/GSLayoutManager.m (-usedRectForTextContainer:): Add extra
	line rect when needed.
	* Source/NSTextView.m (sizeToFit): Don't add extra line rect, as
	it is now already included.
	* Source/NSStringDrawing.m (cache_lookup): Remove hack for empty string.

2017-02-12 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSStringDrawing.m: Use shared drawing code.
	* Source/NSStringDrawing.m (cache_lookup): Try to handle case of
	empty string.

2017-02-12 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSStringDrawing.m: Clean up string drawing cache code.

2017-01-08 Fred Kiefer <FredKiefer@gmx.de>

	* Source/NSMenu.m (-_isVisible, -_isMain): Add two helper
	methods. And make sure we update the menu items before display and
	keyEquivalent processing.