aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG
blob: 67f6783a9c03a3955b1bcdaeb0cfd4ef016d2e96 (plain) (blame)
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
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
Hubzilla 9.0.1 (2024-03-26)
	- Fix an issue where after an update initiated from a modal the modal backdrop would remain
	- Fix bootstrap namespace in conv list templates
	- Fix link to delivery report in conv list templates
	- Slightly improved handling of linefeeds in some bbcode block elements and added tests
	- Fix categories_widget() cache not being observer aware
	- Allow to run additional site specific commands at the end of util/udall in util/udall_extra
	- Fix linefeeds in table and list content removed
	- Pubcrawl: do not attrmpt to sign wall to wall messages - they will appear misattributed in mastodons
	- Pubcrawl: default to Note activity type for now


Hubzilla 9.0 (2024-03-22)
	- Refactor browser to browser encryption based on sodium plus library
	- Added developer docs for the refactored test system
	- Move escape_tags() to Lib/Text::escape_tags() and add test
	- Messages are now sent as articles instead of notes - this can be configured for activitypub
	- Implement support for custom emojis
	- Add test for Lib/Activity::get_textfield()
	- Refactor mod things to be AS2 compliant
	- Implement basic bbcode tests and minor refactor
	- Refactor profile activities to be AS2 complient
	- Removed poke and moods app
	- Cleanup deprecated/unused activity types
	- Update doxygen config for generating online API docs
	- Make DBA driver transaction aware
	- Deprecate internal usage of ActivityStreams1 in favor of ActivityStreams2
	- Introduce Lib/Activity::get_actor() force flag to omit cache
	- Refactor mod contactedit refresh
	- Require intl PHP extension
	- Improved checks in Web/HTTPSig::find_headers()
	- Implement custom sass bootstrap builds for channels and site
	- Mark items verified in zot delivery if either JSalmon, LDSignature or EddsaSignature verified
	- Added support for code blocks with language in markdown and html
	- Improved conversation item design
	- Start using uuid for internal reference instead of base64 encoded mid
	- Store seen mids in session instead of cache
	- Increase sess_data DB column to medium text
	- Introduce Lib/Activity::init_background_fetch()
	- Refactor zotconvo daemon
	- Implement short time object cache to reduce network calls (performance)
	- Refactor Lib/Activity::fetch_and_store_parents()
	- Introduce the fetchparents daemon
	- Refactor Libzot::process_delivery()
	- Start processing source xchan in xchan_query()
	- Added CI job for MariaDB 10.6
	- Store the original announce actor (the one that pushed the item into our stream first) in source_xchan instead of owner_xchan to preserve the original owner
	- Added optional circle person avatar
	- Added min supported DB backends to administrator docs: MySql v >= 8.0.22, MariaDB v >= 10.6, PostgreSql v >= 12
	- Added CI job for MySql 8.0
	- Improved validate_email()
	- Implement fep-8b32 - object integrity proofs
	- Implement native repeats
	- Updated spanish strings
	- Add tests for check_account_email()
	- Vastly improved unit tests including the database
	- Require sodium PHP extension
	- Require bcmath or gmp PHP extension
	- Deprecate simplepie idna_convert()
	- Update apache rewite rule to fix issue with recent apache versions - issue #1822
	- Display selected mid in an open state - issue #1425
	- Add bookmark and category to AP schema

	Bugfixes
	- Fix cover photos not uploaded into folder due to missing source option
	- Fix regression where config returned default value in some cases
	- Fix attachments listed in reverse order
	- Fix unterminated entity reference error when dealing with domxpath and add a test
	- Fix obsolete system language selector in admin/site
	- Fix imagick readImageBlob() exception not handled
	- Fix content not moved to new location if folder was renamed via webdav
	- Fix bootstrap namespaces not up-to-date in htmlpurifier
	- Fix inReplyTo field in Lib/Activity not dealing with arrays
	- Fix round buttons not being round
	- Fix import from ical if timezone was not set in the source data
	- Fix hard linebreaks from markdown and html not preserved in bbcode conversion
	- Fix indentation from markdown and html not preserved in bbcode conversion
	- Fix images with alt text from markdown and not preserved in bbcode conversion
	- Fix custom emoji reactions arriving from pleroma
	- Fix issue where if an item is created and deleted again before the notifier has completed the queueworker will dismiss the delete because it looks like a duplicate entry
	- Fix handling HTML entities via mbstring is deprecated
	- Fix various PHP deprecation warnings
	- Fix apache rewite rule to fix issue with recent apache versions - issue #1822
	- Fix display selected mid in an open state - issue #1425

	Addons
	- Removed smileybutton addon
	- Removed smiley_pack addon
	- Pubcrawl: refactor presentation of encrypted messages
	- Removed deprecated cryptojs addon
	- Removed emojione addon
	- New addon emoji which can provide different emoji sets via config.system.emoji_set variable - emojitwo (default), openmoji, mutant are currently supported
	- Removed addon moremoods
	- Removed addon morepokes
	- Pubcrawl: implement actor_refetch hook
	- Diaspora: implement actor_refetch hook
	- Navbanner_options: fix PHP warnings
	- Pubcrawl: add assertionMethod to encode_person()
	- Socialauth: cleanup unused files
	- Openstreetmap: adjust URLs


Hubzilla 8.8.8 (2024-02-29)
	- Streams compatibility fixes


Hubzilla 8.8.7 (2024-01-19)
	- Fix regression in Activity::actor_store()


Hubzilla 8.8.6 (2024-01-11)
	- Provide more builtin jsonld files
	- Development branch compatibility in Libsync


Hubzilla 8.8.5 (2024-01-01)
	- Fix possible loop if DB is not reachable (introduced in 8.8.3)
	- Fix some errors and deprecation warnings with PHP 8.2
	- Deprecate simplepie idna_convert in favor of PHP native function
	- Fix double processed quoted strings in get_tags()


Hubzilla 8.8.4 (2023-12-20)
	- Fix regression introduced in version 8.8.3
	- Add test for Lib/Config
	- Add active addons and blocked sites to siteinfo


Hubzilla 8.8.3 (2023-12-17)
	- Check return from Config::Load() and retry on failure
	- Libzot::import() do not prozess items where we could not fetch the author
	- Translation updates for Norwegian Bokmål (nb_NO)
	- Add the app terms before syncing, otherwise the terms will be reset at the other end
	- Addon statistics: deprecate nodeinfo 1.0 and implement nodeinfo 2.1
	- Addon cards: fix PHP error


Hubzilla 8.8.2 (2023-12-06)
	- Fix missing includes - issue #1820
	- Addon logger_stats: improved performance reading big log files


Hubzilla 8.8.1 (2023-11-27)
	- Fix error in cards addon
	- Fix error in articles addon
	- Fix double left and right template css


Hubzilla 8.8 (2023-11-25)
	- Add additional observer and channel info for nav templates
	- Do not provide confidential channel info for templates
	- Add link to profile to vcard
	- Improved switch colors for better visibility
	- Raise cache.v column from text to mediumtext for MYSQL
	- Implement low level support for native repeats
	- Color mode related code moved to theme_init.php in redbasic
	- Do not overrule default list style when parsing bbcode
	- Introduce Activity::get_actor() which will check for the cache record in xconfig before fetching
	- Refactor Activity::actor_store()
	- Use new language detect library which supports many more languages
	- Use Activity::encode_person() instead of plain xchan_url to set attributedTo
	- Update composer libraries
	- Move right aside into bottom of left aside if screen width is < 1200px in redbasic
	- When parsing events, use event object in first place and use the body bbcode as backup
	- Make OWA compatible with mastodon style keyId
	- Add sourced item events to the channel calendar
	- Make activity filter widget portable to other modules
	- Deprecate remains of the unused $a variable which has been replaced by the App class ages ago
	- Return object instead of json string in the custom jsonld document loader
	- Only show theme switch icon if switching is supported by the theme
	- Store the actor cache date with the actor record so we can easily invalidate it after a period of time
	- Allow themes to manipulate app icons (photos) via hook
	- Also look for widgets in view/theme/themename/widget
	- Cache seen pubstream item mids so that they can be hidden from notifications
	- Theme fixes to make barebones bootstrap themes work slightly better
	- Update Norwegian Bokmål strings
	- Update Spanish strings
	- Transparent background for colorbox controls icons
	- Use body background color for colorboxes in redbasic

	Bugfixes
	- Remove fragment from actor urls
	- HTTPsig case insensitive digest algorithm
	- Fix possible privacy mismatch when processing zot requests
	- Fix @someone in URL turned into mention in some situations - issue #1816
	- Fix fatal error in simplepie with PHP8.2
	- Fix tools visible allthough permission has been revoked for observer in files app
	- Fix updates entry not removed if a channel was removed
	- Fix form reset button not visible in mod rpost
	- Fix missing columns for updates table in install script
	- Fix for item widget not respecting ACL if added by title - issue #1799
	- Fix sabre/dav caldav php warnings
	- Fix public stream comments/reactions not allowed if item_fetched is set

	Addons
	- Superblock: fix php warnings
	- Pubcrawl: restrict mod ap_probe to admin and add checkbox for signed requests
	- Wiki: fix wiki_list widget not registered
	- Deprecate remains of the unused $a variable which has been replaced by the App class ages ago
	- Pubcrawl: reflect core delivery changes for repeated items
	- Cart fix regression
	- Logger_stats: new addon for admins to track hub activities
	- Pubcrawl: check if we have the record in the short term cache before actually fetching it
	- Pubcrawl: reflect core changes to Activity::actor_store()
	- Gallery: update to photoswipe 5
	- Pubcrawl: some platforms are sending activities without an object - return error 400
	- HSSE: update sce-editor to latest version
	- SSE: sse: do not process items that are older than last login date or in case we are not logged in older than 10 minutes
	- Faces: new addon for face recognision in uploaded photos


Hubzilla 8.6.3 (2023-09-16)
	- Fix regression in jsonld_document_loader()
	- Improve type checking for announce activities
	- Improve query in drop_item() to prevent possible memory exhaustion
	- Addon gallery: only add gallery code if the module is supported
	- Addon hsse: port to bootstrap 5 namespaces - core issue #1793


Hubzilla 8.6.2 (2023-08-27)
	- Fix public stream comments/reactions fetching
	- Fix notification text for likes in cases where obj.actor is not set
	- Fix missing pdl file for mod cover_photo
	- Fix unable to create folders with name 0
	- Fix index name mixup in mysql schema file
	- Fix missing semicolon in mysql schema file
	- Removed unused variable
	- Fix typo in manifest
	- Fix cached jsonld files fetched via network
	- Page rendering performance improvements
	- Fix internal follow activity possibly creating notification items
	- Fix admin table highlight color for dark mode
	- Pubcrawl: do not handle not implemented listen activity
	- Diaspora: fix unshare not implemented


Hubzilla 8.6.1 (2023-07-18)
	- Fix diaspora discovery


Hubzilla 8.6 (2023-07-11)
	- Update fullcalendar library
	- Improve and unify selection of deliverable abook xchans
	- Remove unused pseudo_abook()
	- Implement optional moderation for unsolicited items
	- Hardened comment permission handling for unsolicited items
	- Remove unused templates
	- Deprecate ActivityStreams::fetch() and provide the possibility to fetch local items directly
	- Add simplified version of automated install script
	- Shuffle queue deliveries for more randomness
	- Update composer libraries
	- Add new 2-column templates
	- Implement optional OCAP for items to allow access to restricted media without OWA

	Bugfixes
	- Fix content in nobb and noparse text linkified - issue #1776
	- Fix editing an event changes the set time - issue #1771
	- Fix person object with mixed up hubloc info - issue #1770
	- Fix $escape variable not passed on to stringify_array_elms()
	- Fix relaying and syncing in Activity::drop()
	- Fix allow code not sticking after channel sync - issue #1769
	- Fix channel oembed regressions

	Addons
	- Diaspora: fix signature check for likes
	- Diaspora: fix relaying retractions
	- Diaspora: port to core unsolicited comments option
	- Gallery: add an exception for streams reshares
	- Pubcrawl: dismiss comments that are expected to arrive via owner relay
	- Pubcrawl: improved inbox handling
	- Pubcrawl: catch gup.pe updates to followers collection
	- Pubcrawl: fix follow allow hook
	- Diaspora: fix follow allow hook
	- Content_import: fix crash in post handler
	- Pubcrawl: store follow url when fetching webfinger
	- Diaspora: store follow url when fetching webfinger
	- Pubcrawl: move addressing to separate function


Hubzilla 8.4.2 (2023-06-02)
	- Update bootstrap to stable version 5.3.0
	- Fix hubloc confusion in mod rmagic
	- Improved unseen forums notification
	- Add workaround for friendica accept header bug for nginx
	- Fix acl not set correctly in attach_store()
	- Fix attachment name parsing
	- Fix display issue in oembed video template
	- content_import: fix crash in post handler
	- pubcrawl: move addressing to separate function


Hubzilla 8.4.1 (2023-05-20)
	- Fix issue where accepting AP contacts would reset send stream permission
	- Fix link to release page in upgrade info addon


Hubzilla 8.4 (2023-05-17)
	- Slightly rewrite Activity::store() to save a query
	- Use act->objprop() in decode_note() to get activity values
	- Make sure to re-discover a channel upon connecting if we have just an xchan but no hubloc
	- Updated ES translations
	- Updated RU translations
	- Redesigned profile vcard to implement cover images
	- Slightly improved discovery of AP quoted messages
	- Updated bootstrap library
	- Changed hashtag encoding to match mastodons expectations (issue #1750)
	- Implement fedearted directory flags from trusted directory servers
	- Use Activity::get_actor_hublocs() in Libzot::fetch_conversation() instead of custom queries
	- Add the conversation endpoint
	- Implement paginated fetch for zot requests in mod item
	- Implement Zotconvo daemon to fetch conversations in the background
	- Expose deleted channels to webfinger (otherwise we can not mark them deleted locally)
	- Expire items in batches to prevent memory exhaustion
	- Remove legacy zot compatibility tweaks
	- Rewrite and simplify directory sync
	- Improve potentially long running sql query finding the thread parent
	- Implement option to override permissions for posts with mentions

	Bugfixes
	- Fix parent_mid and thr_parent not set correctly for response activities
	- Fix query for postgres in attach_list_files()
	- Fix item_url_replace() failing on arrays
	- Fix OWA compatibility with friendica
	- Fix regression in decoding the object type
	- Fix xss vulnerability in justified gallery library
	- Fix permissions not initialized after accepted follow request from AP
	- Fix empty path passed to fopen()
	- Fix % value in format_poll() not rounded
	- Fix remove_all_xchan_resources() executed for local channels
	- Fix likes not synced via libsync between clones

	Addons
	- Pubcrawl: fix xchan_url used as follow object instead of xchan_hash
	- Channelreputation: moved to unmaintained repo due to duplication issues when storing data in pconfig
	- Pubcrawl: add lemmy accept/reject follow quirks
	- Diaspora: handle 4xx return codes in queue management
	- Diaspora: fix fatal error in the case where parent_guid is set but empty
	- Pubcrawl: if shared inbox delivery fails deliver to contacts instead of everybody we know from that site
	- Articles: fix PHP error
	- Diaspora: rewrite synced (from a clone) item author to primary
	- Diaspora: improve reshare detection
	- Diaspora: fix contact role not sets
	- Pubcrawl: rewrite synced (from a clone) item author to primary
	- Pubcrawl: if we receive a public message to the shared inbox deliver to following *and* directly addressed


Hubzilla 8.2 (2023-03-19)
	- Remove redundant untranslated htconfig templates
	- Implement workaround for friendica image/attachment construct
	- Implement notification exception for forum posts repeated by group actors
	- Updated es translations
	- Rewrite totp multifactor auth and move it from addon to core (ported from streams)
	- Implement page load progress indicator for pwa standalone mode
	- Improved mod HQ logic to save some DB lookups
	- Default owner_xchan to sender in Activity::store() except for fetched items
	- Improved contact search
	- Do not force new thread if announce comes from group actor
	- Disable oembed in notes app
	- Improved queue handling
	- Slightly restructure conv item head
	- Implemet author images in HQ widget
	- Implement author filter in HQ widget
	- Add config option db_skip_locked_supported which should be set if the DB backend supports skip locked
	- Updated simple pie library
	- Updated smarty library
	- Updated forkawesome library
	- Updated fullcalendar library
	- Implement native dark/light mode in favour of dark/light schema
	- Updated bootstrap library

	Bugfixes
	- Fix channel calendar location html not interpreted - issue #1728
	- Fix max oembed size check if content length header is an array
	- Fix group actor wall posts turned into direct messages when posting article or card
	- Fix non zot profile mentions using zrl tag
	- Fix message filter > and < not decoded
	- Fix deleted hublocs included in author lookup
	- Fix some more PHP warnings
	- Fix syntax for get_compund_property()
	- Fix xchan_pubforum not set on actor updates
	- Fix duplicate directory entries for xchans with bogus second primary entry
	- Fix missing created timestamp in like activity - issue #1729
	- Fix messages not signed when posting from non primary locations
	- Fix pinned post regression
	- Fix autocomplete items not selectable on mobile
	- Fix hubloc confusion in Libzot::fetch_conversation()
	- Fix valid duplicate notification entries deduplicated
	- Fix ics file import
	- Fix recipients deduplication in some places
	- Fix hashtag encoded with href instead of id

	Addons
	- Pubcrawl: re-implement encrypted content which got lost in transition
	- Pubcrawl: flag fetched items
	- Totp: removed from addons in favor of implementation in core
	- Pubcrawl: fix delivery issues for relayed activities
	- Cart: fix missing bootstrap namespace
	- Gallery: do not inject gallery code in webpages
	- Pubcrawl: fix sql error if mentions string is empty
	- Cart: fix paypal order hash size


Hubzilla 8.0 (2023-01-13)
	- Updated ru strings
	- Implement ability to edit addon PDL with pdledit_gui and pdledit
	- Implement queueworker auto sleep time
	- Always add sys channel to receivers for public items
	- Improved server sent events loop
	- Exclude not tagable xchan networks handle_tag()
	- Add mark html tag to the html2bbcode parser
	- Embed or attach uploaded files depending on file type
	- Changed logic to enable site only public stream - please revisit admin setting
	- Updated nb-no strings
	- Moved queueworker to core
	- Provide a PDL file for mod invite and set the profile
	- Disabled outdated context help
	- Mark unseen items seen after a certain amount of time (default 90 days)
	- Slightly restructure lib webfinger
	- Improved redbasic dark schema
	- Implement unseen thread and unseen items count in HQ widget
	- In unseen items notifications just count the first 99 and display 99+ if there are more

	Bugfixes
	- Fix race conditions when processing multiple choice polls
	- Fix affinity slider updates - issue #1714
	- Fix issue where accounts created with a did2 could change their password
	- Fix no message displayed if file not found in mod cloud
	- Fix pubstream tagcloud unthreaded view
	- Fix french invite template
	- Fix comment permission issue in site only public stream
	- Fix privacy tag not referring to latest hubloc entry
	- Fix selected item not highlighted
	- Fix poll issue when special chars and spaces are involved
	- Fix prune_hub_reinstalls() to only care about zot6 hublocs
	- Fix redis session PHP warnings
	- Fix remote visitor photo uploads
	- Fix mod shredwithme not showing any items
	- Fix api_auth not referring to latest hubloc entry
	- Fix category widget URLs
	- Fix poller always polling broken feeds
	- Fix sse event always triggered if public stream notification are off or the app is not installed
	- Fix more PHP8 warnings
	- Fix wrong variable in tag_deliver()
	- Fix mod follow use trim() after punify() - issue #1698

	Addons
	- Cards: update widget info
	- Articles: update widget info
	- Wiki: update widget info
	- Sse: filter apporvals
	- Cards: use html_entity_decode before purify and html2plain for summary
	- Articles: use html_entity_decode before purify and html2plain for summary
	- Wiki: use html_entity_decode before purify and html2plain for summary
	- Cards: fix comments not displayed if filter by category
	- Articles: fix comments not displayed if filter by category
	- Sse: respect the site public stream setting
	- Queueworker: moved to core
	- Pubcrawl: move db query out of foreach loop
	- Pubcrawl: add mentions and thread owner to recipients for public items


Hubzilla 7.8.7 (2022-12-03)
	- Fix regression when adding feed contacts
	- Fix regression new channel calendar event not created


Hubzilla 7.8.6 (2022-11-14)
	- Fix typo in boot.php


Hubzilla 7.8.5 (2022-11-13)
	- Fix outbound edit activity not of type update
	- Fix mod display not falling through to fetch public item
	- Fix more PHP warnings
	- Fix regression in items_fetch() which resulted in empty atom feed
	- Pubcrawl: cleanup and slightly restructre mod inbox


Hubzilla 7.8.4 (2022-11-09)
	- Fix new uuid created when editing a post


Hubzilla 7.8.3 (2022-11-07)
	- Fix regression where auto created directories were not created with public permissions
	- Fix regression where pinned/featured state of apps was not displayed correctly


Hubzilla 7.8.2 (2022-11-05)
	- Pubcrawl: fix regression in inbox
	- Fix display issue of shares coming from streams
	- Throw a 404 if we could not determine which channel to load
	- If we have a cached xchan/hubloc entry, make sure we fetch the latest
	- Gallery: paint the background grid with css


Hubzilla 7.8.1 (2022-10-26)
	- Silence tons of PHP warnings in core
	- Catch decryption failure edgecase in receiver
	- Deal with conversation privacy mismatches in Activity::store()
	- Composer libs updates
	- Fix timeago strings not always translated
	- Fix edit link regression in cards addon
	- Fix edit link regression in article addon


Hubzilla 7.8 (2022-10-10)
	- Updated spanish translations
	- Always update hubloc_updated timestamp if a hubloc is updated
	- Do better with re-installs in various situations
	- Update htconfig templates
	- Emit an info if an item is deleted manually (issue #1691)
	- Updated german translations
	- Make Activity::actor_store() fetch the actor object if none is provided
	- Check for various forms of as:Public for compatibility
	- Cleanup dark schema
	- Make use of CSS variables in redbasic
	- Implement link hover color in redbasic
	- Update to bootstrap version 5.2 which implements CSS variables

	Bugfixes
	- Fix stream filter for polls and events does not work anymore (issue #1694)
	- Fix item menu display issue
	- Fix HQ widget displaying superblocked items
	- Fix mod poke
	- Fix link to article or card not processed correctly if umlauts are involved (issue #1687)
	- Fix mod siteinfo containing a dead link (issue #1690)
	- Fix permission issue when displaying things (issue #1686).
	- Fix check for existing profiles (issue #1688)
	- Fix modal missing for conversation settings
	- Fix missing closing div tag if there are no recent channel activities
	- Fix issue where an unkown diaspora author was not imported if the comment arrived via a relayed activity
	- Fix mangled xchan_url due to escape_tags()
	- Fix the AP url not decode bin mod search
	- Fix some php warnings

	Addons
	- Wiki: move create_missing_page() from widget to module
	- Superblock: implement blocking for messages widget_item
	- Diaspora: fix verification of relayed comments and likes
	- Pubcrawl: make sure to store the attributedTo actor in announce activities
	- Diaspora: fix issue where an unkown author was not imported if the comment arrived via a relayed activity


Hubzilla 7.6.1 (2022-08-07)
	Bugfixes
	- Fix attachments displayed in visible response activities
	- Fix wrong attribution in unseen like notifications

	Addons
	- Cards: fix widget not implemented via pdl file (requires re-install)
	- Articles: fix widget not implemented via pdl file (requires re-install)
	- Wiki: fix widget not implemented via pdl file (requires re-install)


Hubzilla 7.6 (2022-07-26)
	- Add filter rule to check for false condition
	- Implement HQ dashboard to display recently created content for various modules
	- Updated spanish translations
	- Implement a max oembed size which defaults to 1MB
	- Update composer libs

	Addons
	- Cart: do not attempt oembed
	- Cards: implement channel_activities_widget for HQ dashboard
	- Articles: implement channel_activities_widget for HQ dashboard
	- Wiki: implement channel_activities_widget for HQ dashboard

	Bugfixes
	- Fix language filter filtering ambigous results
	- Fix vcard-card background for dark schema
	- Fix contact edit dialog not displayed in chrome browser
	- Fix readability of category pills in dark schema
	- Fix opengraph images inside zmg opening tag
	- Fix oembed attempted for text previews


Hubzilla 7.4 (2022-06-01)
	- Updated russian translations
	- Raise min PHP version to 8.0
	- Rewrite inbound attachment handling
	- Move photo flag feature from addon to core
	- Adjust default production php logging
	- Update composer libs
	- Add a hidden config to enable the hs2019 http signature algorithm
	- Allow starring of pubstream items
	- Update spanish translations
	- Add the title in forum post reshares if applicable
	- Implement inbound pleroma reactions
	- Add real name info to the navbar template data
	- Add the updated date to the icon url so that other platforms will pick it up on change
	- Move wiki from core to addon
	- Move articles from core to addon
	- Move cards from core to addon

	Addons
	- Rendezvous: add missing default value to sql schema
	- Wiki: moved from core to addons
	- Articles: moved from core to addons
	- Cards: moved from core to addons
	- Photoflag: moved to core
	- Sse: fix issue where notifications were emited for created tasks

	Bugfixes
	- Fix issue where inbound activitypub items lost image descriptions (issue 1679)
	- Fix issue where observer tags were not rendered correctly in event items (issue 1674)
	- Fix forum posts leaked into network stream
	- Fix tags not found in search if not logged in (issue 1677)
	- Fix dislikes causing stuck notifications (issue 1676)


Hubzilla 7.2.2 (2022-04-26)
	- Fix item_verified not set due to data structure changes


Hubzilla 7.2.1 (2022-04-25)
	- Fix changing profile image from new member widget - issue #1671
	- Fix regression with incoming poll answers from activitypub introduced in 7.2
	- Fix addons not removed from the DB when removed from the filesystem
	- Fix regression in attaching images for activitypub introduced in 7.2
	- Move activitypub addressing from core to the pubcrawl addon
	- Fix hub re-install issues
	- Fediwordle: slightly improved algorithm


Hubzilla 7.2 (2022-03-29)
	- Streamline comment policy with downstream project
	- Add new function is_local_url()
	- Add helper function to escape URLs
	- Add signing algorithm to zotinfo()
	- Store signing algorithm in import_xchan()
	- Use bootstrap-nightfall for redbasic:dark schema
	- Add support for hs2019
	- Remove unused function script_path()
	- Move login and register button into the hamburger menu for small screens
	- Collect accept headers in an array instead of a concatenated string
	- Update composer libs
	- Enhanced content filters
	- Improve mod gprobe to also deal with URLs
	- Adapt unseen forum posts query in mod network to new forum post style
	- Remove deprecated widgets
	- Add inbound support for quoteUrl to Lib/Activity
	- Add widget descriptions
	- Add a GUI for the PDL editor

	Addons
	- Pubcrawl: deprecate as.php in favor of core libs
	- Pubcrawl: rewrite/modernize mod inbox
	- Pubcrawl: reflect core enhanced content filter changes
	- Diaspora: reflect core enhanced content filter changes
	- Fediwordle: new addon - a distributed word game inspired by wordle
	- Pubcrawl: streamline post_local hook with diaspora

	Bugfixes
	- Fix comments_closed date on posts where comments are disabled
	- Fix open redirect via rpath query param (CVE-2022-27256)
	- Fix cross-site scripting via rpath query param (CVE-2022-27258)
	- Fix local file inclusion in redbasic theme (CVE-2022-27257)
	- Fix baseurl for css and js
	- Fix duplicate IDs in login form
	- Fix unknown author not fetched if w2w comment arrives
	- Fix thr_parent lost across edits


Hubzilla 7.0.3 (2022-02-10)
	- Allow to override the charset for the PDO connection string via $db_charset in .htconfig.php


Hubzilla 7.0.2 (2022-02-09)
	- Update french templates
	- Add charset to the PDO connection strings
	- Introduce delete keytype for get_activitystreams_key()
	- Fix PHP error in Daemon/Externals
	- Improved actor cache handling
	- Implement manual fetch of packed local links
	- Add JSalmon data to the meta field instead of data in Lib/ActivityStreams
	- Fix some PHP8.1 deprecation warnings
	- Fix delivery report for likes not found in some cases
	- Allow zotfinger to recurse through all known hublocs if the one we got does not exist (404) or got removed (410)
	- Diaspora: improve relaying of comments
	- Fix regression in mod hcard
	- Add the LD signature in Daemon/Notifier in case where there is no signed data available
	- Prevent zot6 packet being saved as AP raw message
	- Attach iconfig to the activity instead of the activity object

	Addons
	- Pubcrawl: make sure the sys channel falls through the app installed check
	- Pubcrawl: improve local delivery of shared inbox items


Hubzilla 7.0.1 (2022-01-28)
	- Fix removing contacts from privacy groups in the contact edit modal
	- Fix escape_tags() messing with URLs in actor_store()
	- Fix pagination in the cards module if a category is selected
	- Remove unused entries in webfinger
	- Remove deprecated mail app from apps
	- Set item_hidden for forum comment announces
	- Fix relaying of signed messages for activitypub
	- Fix contact role permissions not re-assigned if the role permission has changed
	- Fix default channel role not set in rare cases

	Addons
	- Pubcrawl: fix webfinger not returning the fetched URL
	- Pubcrawl: improved queue handling for rejected deliveries


Hubzilla 7.0 (2022-01-21)
	- Provide theme_color and background_color in App::$theme_info for usage in page meta and manifest
	- PWA improvements according to lighthouse
	- Refactor mod profile_photo
	- Remove core legacy mail code
	- Set session samesite cookie flag
	- Improve toc bbcode for more flexible usecases
	- Deprecate include/group in favor of Lib/AccessList
	- Deprecate AccessList::widget()
	- Mark forum channel profile images with a small icon in the timelines
	- Improve privacy groups UI/UX
	- Do not show connections widget if there are no connections
	- Remove suggestions widget from various modules
	- Provide guest access links for private resources in lockview
	- Improve pconfig syncing
	- deprecate include/group in favor of Lib/AccessList
	- Implement background deleting of items in contact_remove()
	- Refactor guest access tokens for better usability and provide quick access
	- Refactor permissions handling
	- Improved poll rendering

	Bugfixes
	- Fix items not deleted on remote channel purge
	- Fix plink in post_activity_item()
	- Fix multiple update_poll() calls dismissed in queueworker
	- Fix blocked or ignored contacts displayed in connections
	- Fix polls for forum channels

	Addons:
	- Legacy mail: remove
	- Deprecate include/group in favor of Lib/AccessList
	- Pubcrawl: support pleroma end time for polls
	- Pubcrawl: slightly adjust the way we check mastodon direct messages
	- Socialauth: scope support and improvements


Hubzilla 6.4.2 (2021-12-14)
	- Fix issue in mod sse_bs where returning message id's were assumed to be base64 encoded
	- Fix announce activity type not registered as response activity


Hubzilla 6.4.1 (2021-12-03)
	- Fix hubloc_site_id in fix_system_urls() on detected site rename events
	- Fix duplicate deliveries if duplicate hublocs available
	- Redesign profile vcard for improved responsive handling
	- Fix profile photos not stored in profile photo folder
	- Maximum width of content region is now calculated in rem for improved responsive handling
	- Fix likes notices emited allthough they are disabled
	- Fix page not reloaded after comment/like in mod photos - issue #1651
	- Port improved Lib/HttpMeta from zap
	- Improved responsive aside


Hubzilla 6.4 (2021-11-09)
	- Automatically connect the invitee with the inviting channel
	- Use the composer version of urlify
	- Implement zip file import of exported items from mod uexport
	- Start sending supported protocols with the actor object
	- Split up manual item export to separate sections
	- Serve w3.org jsonld documents locally - issue #1637
	- Support IDNA URL embedding
	- Improve handling of re-installed hubs in lib HTTPSig
	- BBcode support for notes widget/app
	- Implement a force flag for HTTPSig::get_key()
	- Update composer libs
	- Use Libzot::fetch_conversation for manual content import
	- Implement optional force argument in Libzot::process_delivery
	- Improve german doco
	- Move sync logic for apps to mod appman
	- Provide sync for system apps
	- Update certificates
	- Return status code 410 if a channel is deleted
	- Add optional argument to channelx_by_* functions to allow inclusion of removed channels
	- Improve file upload performance
	- Introduce progress tracking for channel cloning via network (not compatible with cloning from older versions)
	- Improve channel delete performance by moving some actions to background tasks
	- Introduce all in one channel cloning via network (not compatible with cloning from older versions)
	- Rename zotfeed to outbox but keep an alias for compatibility
	- Implement apps un-starring from the app bin via drag and drop
	- Re-implement the externals daemon
	- Add zot6 specific handling to onepoll
	- Implement the top option in items_fetch() which will only return top level items
	- Add notices tab to HQ widget
	- Improve mod manage performance
	- Add option to mark all notices of a thread read if a notice of the thread is clicked (default true)
	- Provide a get_cached_actor_provider hook and improve the author/owner handling in Libzot::import()

	Bugfixes
	- Fix issue where remote channels could not create wiki pages due to wron permission check - issue #1640
	- Fix dutch registration email template
	- Fix selection of invite template
	- Fix too restrictive email check in mod invite
	- Fix photos and albums ActivityStreams 2 representation
	- Fix keys always fetched from network in lib HTTPSig for some AP implementations
	- Fix album display of root directory
	- Fix onepoll importing to deleted channels
	- Fix rendering of image tags in codeblocks
	- Fix webfinger and xrd providing results for removed channels
	- Fix alt_pager() providing too many arguments
	- Fix drop_query_params() if no query params are provided
	- Fix duplicate entries for dead hubs in delivery report
	- Fix site lookup
	- Fix mod locs displaying drop icons for local channels
	- Fix multiple issues with propagating deletes of cloned channels
	- Fix apps can be draged outsite of drop areas
	- Fix removed channels counted in max id check
	- Fix api_auth not fetching the id if it was not cached
	- Fix public stream unseen notifications displayed allthough the app is not installed
	- Fix possible storage conversion stuck on file save error
	- Fix notification panel collapsed state not saved if closed manually
	- Fix find_best_identity() dismissing AP hublocs
	- Fix likes and commments on direct messages mixed up in notices
	- Fix rewrite of links to resources in body fails if nicknames of clones differ - issue #1507
	- Fix syncing outdated data due to profile sync done before the fields were updated
	- Fix $desturl set to wrong value (null)

	Addons
	- Cart: add settings URL to the apd file
	- Diaspora: remove deprecated included
	- Cart: remove deprecated include
	- Openid: remove library/urlify in favor of composer installed versions
	- Pubcrawl: provide tags indicating the supported protocols
	- Pubcrawl: if we do not get an uuid, create a v5 uuid from the mid
	- Cart: fix rendering regressions from bootstrap5 upgrade
	- Upgrade_info: fix dismiss button
	- Pubcrawl: move fetch_provider from core to addon
	- Diaspora: fix regression in fetch_provider
	- Content_import: fix syntax error
	- Queueworker: update priorities
	- Pubcrawl: only lookup announce author if we actually deal with an announce
	- Pubcrawl: make sure we have the best identity before we make the abook lookup
	- Pubcrawl: outbox moved to core
	- Diaspora: implement the get_cached_actor_provider hook


Hubzilla 6.2.2 (2021-10-03)
	- Fix an issue which could lead to loss of photos under certain conditions


Hubzilla 6.2.1 (2021-09-16)
	- Fix regression introduced in 6.2 where Diaspora comments on Hubzilla posts were not relayed
	- Fix wrong variable used for refresh under certain conditions
	- Fix issue where summary tag was processed in cleanup_bbcode() while it shoud not
	- Fix issue where profile name change was not applied if done from non primary location
	- Fix spacing issue for collapsed pinned apps with an image
	- Fix language selector reloading the page if not clicking exactly the icon
	- Fix regression displaying bootstrap modals introduced in 6.2


Hubzilla 6.2 (2021-09-08)
	- Deprecate the custom highlight [hl] bbcode in favor of [mark] which is a html5 standard
	- Check post_mail permission when receiving a direct message
	- Refactor actor store and cache mechanism
	- Add optional strict flag (false) to base64url_decode() which is passed on to base64_decode()
	- Update russian translations
	- Add optional force flag (false) to Activity::actor_store()
	- Improved icon lookup for actor objects
	- Improved desktop notifications
	- Make Hubzilla installable as PWA in supported browsers
	- Capitalized widget titles (redbasic)
	- Make images loaded counter showing % loaded instead of actual image count
	- Deprecate optional channel menu in favor of extended app bin
	- Implement infrastructure to provide an app install widget for modules
	- Implement app descriptions
	- Implement app drag and drop sorting
	- Implement app drag and drop pinning/starring
	- Update polish translations
	- Update to bootstrap 5 and adjust templates

	Bugfixes
	- Fix anonymous comments for cards and articles
	- Resolve regex interference between contact and channel autocomplete
	- Fix files stored in wrong directory when uploaded in the photo module
	- Fix records with empty public key selected for OWA
	- Fix import_author_zot failing if primary is both dead and unknown - issue #1599
	- Fix regression with bookmarks
	- Fix pubstream notifications link redirecting to mod hq when not local
	- Cleanup legacy mail leftovers - issue #1595
	- Fix getimagesize() called with empty path
	- Fix display issue caused by redundant closing div tag

	Addons
	- Pubcrawl: fix post to forum - issue #159
	- Diaspora: implement post_mail permissions for direct messages
	- Pubcrawl: implement post_mail permissions for direct messages
	- Pubcrawl: deprecate asencode_person() in favor of Activity::encode_person()
	- Pubcrawl: implement Activity::get_actor_collections() to reflect core actor store changes
	- Diaspora: fix use of deprecated function
	- Twitter: prevent re-retweeting of a post from a clone if it has already been sent
	- Totp: use platform name instead of banner text
	- Pubcrawl: use force flag when updating an actor
	- Sse: do not process possible empty hashes
	- Implement app descriptions for addons that already support the apps infrastructure


Hubzilla 6.0.1 (2021-07-27)
	- Fix regression in notification handling introduced in 6.0
	- Fix regression in regard to unified session page load times introduced in 6.0
	- Fix photo description textarea only available if create status post enabled
	- Fix item not found by message id at clone locations
	- Dismiss deleted xchans in mod chanview


Hubzilla 6.0 (2021-07-09)
	- Implement swipe to right for bringing in left aside
	- DB update 1247 to clean up bogus entries in updates
	- DB update 1246 to mark legacy zot xchans and hublocs deleted
	- Implement desktop notifications
	- Emit a warning if the calendar for the created event is disabled
	- Add an option to drop media for bbcode processing
	- Make mod HQ the default landing page after login
	- Implement direct messages view for mod HQ
	- Implement public/restricted messages view for mod HQ
	- Implement starred messages view for mod HQ (only available if the Star Posts feature is enabled)
	- Update composer libs
	- Remove deprecated mod ping
	- Remove legacy zot libs and functions - major cleanup

	Bugfixes
	- Fix deleting and starring in unthreaded view
	- Fix issue where incomplete datasets were stored into updates
	- Fix photo item tags not stored and propagated
	- Fix notifications not loading if a filter was applied
	- Fix in browser email validation for registrations
	- Fix directory sync issues
	- Fix issue where the original rawmsg iconfig got overwritten
	- Fix unmaintained id3 pareser for PHP8
	- Fix item_private state for imported items
	- Random PHP8 fixes (ongoing)

	Addons
	- Pubcrawl: fix ld-signature for profile updates
	- Pubcrawl: deprecate as_actor_store() in favor of Activity::actor_store()
	- Twitter: prevent duplicated tweets
	- Remove legacy zot dpendencies and deprecated functions
	- Pubcrawl: fix remote reply for peertube
	- Pubcrawl: fix issue where we could end up with an xchan but without hubloc
	- Diaspora: implement the direct_message_recipients hook
	- Queueworker: add a simple priority mechanism to prevent not so important janitor tasks (e.g. onedirsync) stuffing up the queue and delaying delivery of items
	- Pubcrawl: implement direct message recognision for activities coming from Mastodon
	- Pubcrawl: always show complete threads (complete as in all the messages we have received) in public stream
	- Twitter_api: remove the mail endpoint
	- Mail: make interface read only with the possibility to download and delete mails (this addon will be removed in a future version)
	- Pubsubhubbub: move to addons-unmaintained
	- GNU-Social: move to addons-unmaintained
	- Fixes to reflect core notifier changes
	- Diaspora: refactor conversations a.k.a mail to implement direct messages infrastructure
	- Pubcrawl: allow hublocs to be upgraded from ostatus
	- Diaspora: fix issue where we could end up with an xchan but without hubloc


Hubzilla 5.6.1 (2021-06-04)
	- Update spanish translations
	- Fix login name label if register email verification is disabled
	- Fix zotinfo issue with deleted channels
	- Make pubstream ordering configurable
	- Fix article summary duplicated when editing
	- Update polish translations
	- Fix admin setting for invitations not displayed correctly
	- Fix registration in invite only mode
	- Fix notifications not returning offset -1 when returning early
	- Fix direct messages for items imported via sync
	- Bring back the channel protocols hooks
	- Fix security headers switching
	- Fix magic auth for delegated channels
	- Introduce drop_query_params() for secure query parameter removal
	- PHP8 fixes (ongoing)
	- Fix menu wrapping regression

	Addons
	- LDAPauth: fix regression creating an account
	- Twitter: allow feeds crossposting
	- Twitter: fix posting when post by default is disabled
	- Pubcrawl: add litepub directMessage attribute
	- Pubcrawl: allow xchan/hubloc upgrades from e.g. ostatus
	- Diaspora: fix possible issue with missing hublocs
	- Diaspora: refine dispatching of public of public items


Hubzilla 5.6 (2021-05-11)
	- Improve postgres hubloc queries
	- Implement automatic duplicate singleton hubloc removal
	- Send author id, id_sig and key fields along with author/owner
	- Implement custom redis session backend
	- Improved registration workflow
	- Complete rewrite of the registration backend with many new features
	- Complete rewrite of the invite app
	- Update Spanish, Russian and Polish translations
	- Improved PHP8 compatibiliy (work in progress)

	Bugfixes
	- Fix manual fetching of non-ascii domains
	- Fix revision not compared when importing items
	- Fix events not transformed to UTC when importing calendar
	- Fix timezone issue in mod cal
	- Fix profile photos not revalidated
	- Fix regression in caldav/carddav discovery
	- Fix caldav/carddav sync on remote access
	- Fix info and notice messages not bootstraped when using SSE
	- Fix URL including an @ treated like a webbie
	- Fix cover photo image issues on some mobile devices

	Addons
	- Diaspora: improve performance when delivering public items
	- Diaspora: make sure to not process same contact more than once
	- Pubcrawl: make sure to not process same contact more than once
	- Pubcrawl: do not relay Like and Dislike activity
	- Pubcrawl: deprecate as_follow() in favour of core Activity::follow()
	- Pubcrawl: improved compatibility with mobilizon and xwiki
	- Pubcrawl: do not process follow/unfollw thread in as_create_note()
	- Diaspora: do not relay comments/likes of strangers if the thread-owner is local and does not allow comments/likes by strangers in the diaspora app settings


Hubzilla 5.4.3 (2021-04-20)
	- Fix regression in mod notifications (only the last was visible)
	- Set Permissions-Policy: interest-cohort=() header by default
	- Fix xchans containing a % breaking get_forum_channels()
	- Fix webfinger if using a reverse proxy
	- Fix regression finding bookmarks
	- Fix zot6 hublocs import on channel import
	- Fix revision not checked in import_items()


Hubzilla 5.4.2 (2021-03-15)
	- Fix translation plural variable
	- Fix issue with following/unfollowing a thread
	- Fix rendering of long text in xchan vcard
	- Fix local link for rss content if rewrite author is sets
	- Fix regression in mod display

	Addons
	- Pubcrawl: fix issue with following/unfollowing a thread
	- Pubcrawl: more robust implementation of mastodon remote reply
	- Photocache: remove suffix from the cached photo URL


Hubzilla 5.4.1 (2021-03-09)
	- Fix profile not found if not logged in
	- Fix summary not reset on cancel
	- Fix summary not saved with aoutosave draft
	- Fix unexpected trigger of buttons when pressing enter in input fields
	- Fix spanish plural expression
	- Fix undefined page-end on non dynamic pages

	Addons
	- Pubcrawl: fix regression in pubcrawl_follow_mod_init()


Hubzilla 5.4 (2021-03-08)
	- Add new connections to privacy group independend from the default privacy group settings
	- group_add() return group hash to save a lookup
	- Do not poll feeds if feed contacts setting is disabled
	- Deprecate sticky_kit library in favor of CSS position sticky solution
	- Trigger endless scroll loading at the end of content instead of end of window height
	- Implement experimental zap export compatibility
	- Deprecate the [summary] tag in favor of a separate input field for the summary
	- Adjust error reporting for PHP8
	- Rely on php.ini default value for pcre.backtrack_limit
	- PHP8 compatibility (experimental)
	- Introduce Lib/Crypto (ported from zap)
	- Introduce Lib/Keyutils which now implements phpseclib v2
	- Improve profile photo fetching
	- Introduce fetch_provider hook
	- Implement ActivityStreams discovery in mod profile
	- Implement ActivityStreams discovery in mod channel
	- Streamline OS folder and file permissions
	- Add polish translations
	- Implement ThreadListener in mod activity_match
	- Improve ThreadListener handling
	- Use mail envelope instead of lock icon for direct messages
	- Implement ASCollection in Libzot::fetch_conversation()
	- Invoke channel discovery by hash instead of address in mod channel
	- Implement manual public item import for zot6, activitypub and diaspora via search
	- Default photo storage to filesystem instead of DB for new installations
	- Support filesystem storage for xchan profile photos
	- Deprecate Daemon/Externals
	- Implement SQL query background caching
	- Process channel categories list in background
	- Port util/connect to Lib/Connect

	Bugfixes
	- Fix visible/empty notifications for blocked contacts items
	- Fix issue where URL fragment was turned into hashtag if the hashtag existed elsewhere in the post (issue #1518)
	- Fix audio and video embeds for media sources without media format extension
	- Fix issue where zot package was saved in iconf instead of the decoded activity
	- Fix duplicate id in post preview
	- Fix display issue of restricted content in mod display
	- Fix issue where comments were not delivered to the public stream
	- Fix issue where profile photos were stored multiple times and remove duplicates
	- Fix pinned items sync between clones
	- Fix r_preview for list mode in mod channel and mod network

	Addons
	- Pubcrawl: deal with mastodons remote replies
	- Diaspora: reduce xchan network confusion in several places
	- Diaspora: fix mentions if multiple xchan networks exists
	- Diaspora: fix comments on comments
	- Pubcrawl: do not re-use broken signed messages
	- Pubcrawl: fix parsing of images with description (core issue #1519)
	- Pubcrawl: use the signed message from the attachment (iconfig) when relaying
	- Diaspora: implement browser to browser encrypted messages as base64 encoded string
	- Pubcrawl: implement browser to browser encrypted messages as base64 encoded string
	- Diaspora: support post summary
	- Pubcrawl: fix summary aka content warning
	- PHP8 compatibility (experimental)
	- Tripleaes: removed
	- Reflect core crypto changes
	- Photocache: improve mimetype detection
	- Diaspora: implement mnanual fetch provider
	- Diaspora: implement send participation
	- Pubcrawl: deprecate pubcrawl_is_as_request() in favor of the core version in Lib/ActivityStreams
	- Diaspora: prefer zot identity for inbound comments if available
	- Pubcrawl: return zotfeed results in mod outbox
	- Queueworker: improved deduplication by adding a uuid
	- Superblock: fix syncing with clones regression
	- Queueworker: improve SQL query in GetWorkerCount()
	- Queueworker: fix issue in workersleep handling


Hubzilla 5.2.2 (2021-02-13)
	- Fix issue with ping_site()


Hubzilla 5.2.1 (2021-01-16)
	- Fix attach_upgrade() to catch all broken entries in attach
	- Fix collect_recipients() public policy filter for zot6
	- Fix leaking of duplicate tasks in queueworker


Hubzilla 5.2 (2021-01-13)
	- Use libzotdir for directory
	- Streamline usage of channel url for keyId
	- Basic work on PHP8 compatibility
	- Improve performance for forum post edit action
	- Improve File App tiles view
	- Update es strings
	- Update ru strings
	- Implement directory download via zip files in Files App
	- Implement bulk file download via zip files in Files App
	- Deprecate ! and !! forum tags - use direct messages to post to forums
	- Do not show forums where we do not have permission to post in ACL selector
	- Implement lockview for Files App
	- Implement file and directory rename functionality Files App
	- Implement file and directory copy functionality in Files App
	- Implement file and directory move functionality in Files App
	- Implement categories for files and directories in Files App
	- Implement drag and drop move action for files and directories in Files App
	- Implement bulk file actions for move, copy, categories and permissions
	- Implement a files categories widget
	- Implement a breadcrumb view for file paths
	- Rewrite xchan_vcard template
	- Update composer libs

	Bugfixes
	- Fix direct messages by forum channel turned into group item
	- Fix ID3Parser composer autoload
	- Fix issue where directory_fallback_servers were not accessible from static function
	- Fix missing constant defenition for HUBLOC_OFFLINE
	- Fix sync_directories() including known dead sites
	- Fix undefined variable in poller preventing Onedirsync from running
	- Fix w2w posts not editable/deletable from local server
	- Fix issue where categories were not saved on forum wall posts
	- Fix no channel_id provided for contact_remove() in reply_purge()
	- Fix typo in notifier command
	- Fix profile title/description allowed more than 191 characters

	Addons
	- Queueworker: cleanup whitespace
	- Queueworker: add some tweaks to prevent deadlocks for postgresql
	- Flashcards: compatibility for the changes in the Files App
	- Openstreemap: fix hostname parsing from URL
	- Openstreemap: fix content security policy
	- Pubcrawl: fix peertube video display
	- Pubcrawl: deliver updates to anyone owning the item


Hubzilla 5.0.8 (2020-12-30)
	- Fix single quotes not escaped in the notifications title (issue 1503)
	- Return zot6 xchans for random_profile()
	- Return zot6 entries in dirsearch
	- Fix comment sync issue
	- Fix duplicate entries in contact autocomplete
	- Fix issue where direct message notifications where not displayed for wall items
	- Do not revalidate cached photos
	- Implement imagemagic resource consumption limiting
	- Specify key in mod owa
	- Fix issue where array was passed to get_key()


Hubzilla 5.0.7 (2020-12-21)
	- Fix CardDAV addressbook ID
	- Use Zot6 for CardDAV and CalDAV sync between clones
	- Handle owa with hubloc_id_url only
	- Fix attachment in comment not visible after commenting - issue #1499


Hubzilla 5.0.6 (2020-12-17)
	- Fix zot hublocs with empty hubloc_id_url in DB caused by clone import bug
	- Only look for zot6 and zot hublocs in mod owa
	- Fix abconfig issue when cloning a channel
	- Call notifier with refresh_all instead of location when importing a clone
	- Use Libzot::encode_locations() instead of zot_encode_locations() in notifier
	- Fix missing zot hubloc hubloc_id_url when importing a clone
	- Implement Libzot::zot_record_preferred() in various places to prevent hubloc confusion

	Addons
	- Fix wrong redirect path for check_form_security_token_redirectOnErr() in various addons


Hubzilla 5.0.5 (2020-12-12)
	- Fix hubloc issue in mod getfile
	- Remove duplicate SQL query


Hubzilla 5.0.4 (2020-12-01)
	- Fix regression updating the primary
	- Dismiss title in response activities


Hubzilla 5.0.3 (2020-11-26)
	- Upgrade phpunit to version 9
	- Remove dbunit because its not maintained anymore
	- Add uuid version 5 based uuid's to imported feeds
	- Fix potential delivery loop
	- Fix actor of fetched activities not stored
	- Improve update mechanism for comments and likes to prevent page jumps
	- Fix issue where channel suggestions was suggesting oneself
	- Do not auto-update except for own actions
	- Introduce ctrl-enter shortcut to send comments and posts

	Addons
	Pubcrawl: improve addressing of mentioned actors


Hubzilla 5.0.2 (2020-11-16)
	- Fix edge case in acl selector
	- Fix ping_site()
	- Fix directory post url
	- Update russian translation
	- Implement polling for notifications (default) - SSE can be enabled in /admin/site if desired
	- DB update to remove hublocs with no hubloc_hash or no hubloc_callback
	- Do not save actors without an inbox
	- Fix import_hublocs()

	Addons
	- Pubcrawl: do not save actors without an inbox
	- Diaspora: fix issue with diaspora where hublocs without hubloc_hash were stored


Hubzilla 5.0.1 (2020-11-12)
	- Fix share title size
	- Fix issue where hublocs could get mixed up between different protocols

	Addons
	- Pubcrawl: implement authenticated profile fetches which are now partly required in mastodon
	- Sse: call xchan_query() just once per item
	- Pubcrawl: reject messages where sender is not the author if ld-signature is not ok


Hubzilla 5.0 (2020-11-05)
	- Remove unmaintained and deprecated schemas
	- Deprecate HTML5_Parser library
	- Implement results caching for public tag and profile categories fetching
	- Deprecate $a variable for *_plugin_admin() and *_plugin_admin_post()
	- Support remote host cache directives on profile photo fetching
	- Disable community tags until it is agreed upon on how to implement in zot6 or activitypub
	- Improve home install setup script
	- Cryptojs moved to addon
	- Implement "more encryption" feature with the SJCL library
	- Add minimum form lifetime check
	- Improve updateConvItems() performance
	- Improve infinite scroll experience
	- Introduce a software bill of material (wip)
	- Implement new forum behaviour (direct-message a forum to post on its wall) for cross-plattform forum compatibility
	- Allow apps to be both pinned and starred independently
	- Add images load status to spinnner if preload images is enabled
	- Deprecate premium channel app
	- Allow to set different values for left and right aside width in $theme.php
	- Display complete permission info only to channel owner
	- Set CURLOPT_ENCODING to empty string so that compressed content will be uncompressed
	- Force browser photo revalidation
	- Deprecate ACTIVITY_OBJ_FILE and ACTIVITY_OBJ_WIKI in favour of other object types (Document, Audio, Video)
	- Use $mid as plink to prevent to long plinks
	- Handle some basic friendica attachment bbcodes
	- Deprecate is_edit_activity()
	- Deprecate voting feature in favour of polls
	- Show event timezone if it differs from the channel timezone
	- Avoid multiple run of expiry procedure on large sites
	- Implement zot6 as the primary protocol
	- Introduce polls
	- Provide titles for wiki links markup
	- Implement DAV calendars sync with clones
	- Optional events and poll filters for mod network
	- Add new addon hook get_banner
	- Provide tools to deal with spam channels for primary directory admin
	- Introduce pinned posts for mod channel
	- Refactor notifications to utilize server sent events
	- Provide more descriptive connection status icons


	Bugfixes
	- Fix issue where interrupted uploads could not be resumed
	- Fix photo sync issue between clones
	- Fix issue where profile photos were fetched for unknown channels
	- Apply channel name changes to all associated xchans
	- Show unchecked box in connedit if value is false
	- Reset their_perms before setting new permissions to reflect permission retractions on local hub
	- Respect advanced profile setting in sexual preference selector
	- Do not allow invite codes to be reused unlimited times
	- Fix issue with quoted hashtags/mentions
	- Fix issue generating photo thumbnails when uploaded via davfs
	- Do not call System::get_platform_name() within t() unless needed
	- Fix wrong URL detection with Markdown support enabled
	- Fix once cached embedded content is used and stored forever

	Addons
	- Pubcrawl: fix issue where http signatures were not verified
	- Pubcrawl: fix issue where private keys were lost from storage
	- Pubcrawl: add host to signed headers (required by mastodon 3.2.1)
	- Diaspora: remove relay@relay.iliketoat.net as default relay (it does not exist anymore)
	- Diaspora: provide UI for admin to configure relay
	- Diaspora: move the-federation.info registration to statistics addon
	- Deprecate $a variable for *_plugin_admin() and *_plugin_admin_post()
	- Chess: moved to addons-unmaintained repository
	- Introduce cryptojs addon to allow decryption of legacy e2ee notes
	- Introduce the hide aside addon - fade out aside areas after a while when using endless scroll
	- Gallery: only show first row of images in the preview
	- Gallery: restrict height of images to divmore_height
	- Diaspora: make sure we only provide strings for unxmlify()
	- Pubcrawl: fix federation with pixelfed
	- Pubcrawl: dismiss announce if we already have the original item
	- Gallery: implement view_storage permission for channel_apps()
	- Cart: order currency param must be added to the sdk script url
	- Diaspora utilize Lib/Connect
	- Cart: utilize Lib/Connect
	- Cart: add per item and per order customer data entry
	- Pubcrawl: implement polls
	- Chord Generator: moved to addons-unmaintained repository
	- Custom Home: moved to addons-unmaintained repository
	- Flattr Widget: moved to addons-unmaintained repository
	- Friendica Photo Migrator: moved to addons-unmaintained repository
	- Jappix Mini: moved to addons-unmaintained repository
	- Mahjongg: moved to addons-unmaintained repository
	- Torch: moved to addons-unmaintained repository
	- Tour: moved to addons-unmaintained repository
	- Introduce navbanner_option addon
	- Pubcrawl: support image description
	- Queueworker: fix duplicate checking
	- Diaspora: fix dreport
	- Move legacy zot/diaspora mail frontend from core to mail addon
	- Diaspora: improve sql queries performance
	- Pubcrawl: introduce pubcrawl_activity_mod_init()
	- Twitter: replace Hubzilla bookmark with unicode icon
	- Pubcrawl: add sys channel to local subscribers
	- Pubcrawl: deal with arrays in attributedTo
	- Workflow: various fixes
	- Channelreputation: various fixes
	- Introduce SSE addon to provide realtime notifications utilizing server sent events


Hubzilla 4.6 (2019-12-04)
	- Improve opengraph support for channels
	- Add opengraph support for articles
	- Update abook_connected for RSS feeds only if handle_feed() returned success
	- Do not embed PDF files by default but allow to enabled this feature in security options
	- Check if file exists before we include it in the router
	- Update jquery to version 3.4.1
	- Update composer libraries
	- Remove old and unused javascript libraries
	- Improved BBcode to Markdown conversion
	- Introduce inline SVG support via BBcode
	- Sanitize title on Atom/RSS feed import
	- Improved HTTP headers cache support for photos
	- Add date headers to signed headers
	- Add check if item['tag'] is an array
	- Add hook comments_are_now_closed for addons to override date based comment closure
	- Change mysql schema for item.llink and item.plink for new installs from char(191) to text
	- Improved photo cache expiration
	- Improved plural function processing on translation strings creation from .po file with util/po2php utlility
	- Improved support for CDN/Infrastructure caching (especially profile images)
	- New japanese translation
	- Add connect button for non-zot networks not connected in current location
	- Allow to send forum channels wall2wall or sent by mentions post to external sites via addons
	- Allow addons to process forum posts published through mentions
	- Improved internal routing for ActivityPub messages
	- Improved admin documentation
	- Add ITEM_TYPE_CUSTOM and hooks to permit addons to create and distribute custom item types
	- Support "comment policy" in Zot6 communications
	- Add selected text as quote on reply if comment button is used
	- Add more nofollow tags to links to discourage backlink farmers
	- Improved conversion of emoji reactions from zot to zot6
	- Add CardDAV/CalDAV autodiscovery
	- Label source project of zotfeed since it is not completely compatible across projects
	- Update homeinstall script

	Bugfixes
	- Fix once cached embedded content is used and stored forever
	- Fix wildcard tag issue
	- Fix duplicate attachment in jot fileupload
	- Fix regression with audio file upload
	- Fix can not edit menu name or title (#1402)
	- Fix pagination encoding issue for some server setups
	- Fix Zap->Hubzilla event title compatibility
	- Fix event timezones for Zot6
	- Fix missing summary in mod article_edit
	- Fix PHP warning failed to write session data using user defined save handler
	- Fix possible thumbnails distortion on rebuild with util/thumbrepair utility
	- Fix issues with image import to zot6
	- Fix attachment permissions on clonned channels sync
	- Fix entries without sitekey returned from DB in queue_deliver() and Lib/Queue

	Addons
	- Twitter: send tweet even if attached image uploading was unsuccessful
	- Livejournal: add link to original post option
	- Flashcards: update to version 2.08
	- Pubcrawl: compatibility changes to support pixelfed
	- Cart: update paypal button to API v2
	- Photocache: rework for speed and lower memory consumption
	- Photocache: etag support for cached photos
	- Photocache: purge cache on addon uninstall
	- Openstreetmap: fix regression if no default values set
	- Livejournal: allow send posts from non channel owner
	- Pubcrawl: fix event timezones
	- Pubcrawl: better ActivityPub channel URL detection
	- Pubcrawl: fix comments delivery for other channels on the same hub
	- New addon "workflow" with initial basic "issue tracker" capability


Hubzilla 4.4.1 (2019-08-16)
	- Fix wrong profile photo displayed when previewing and editing profiles
	- Fix regression from 4.4 which prevented encrypted signatures from being used for encrypted messages
	- Fix typo in queueworker addon which broke filtering of duplicate work


Hubzilla 4.4 (2019-08-13)
	- Change primary directory from zotadel.net to hub.netzgemeinde.eu (requested by zotadel admin)
	- Add Russian context help files
	- Replace plink URL with share tag if possible
	- Catch and exclude trailing punctuation while URL embedding
	- Do not limit channel if service class property value is set to zero
	- Streamline keyId and creator/actor
	- Add daemon_master_summon hook
	- Serve static files directly if not caught by web server
	- Update cacert.pem
	- Calendar: allow different date/time format inputs
	- Calendar: hide timezone select for allday events
	⁻ Add opengraph meta info to channel page
	- Begin directory migration to zot6
	- Support zot and zot6 in social graph operations
	- Lowlevel support for zot6 direct messages
	- Consolidate HTTP signatures
	- Allow api login by address or url
	- Provide auto redirect from zot6 /item permalinks
	- Export all items except photos in channel_export_items_date()
	- Calendar: clicking a day or week number will now open the day or week view
	- Remove cached photo location directory on delete if empty
	- Include zot6 hubs in the Grid scope
	- Fix os_path replace for thumbnails
	- Avoid to process original images using storeThumbnail()

	Bugfixes
	- Fix URLs on imported item taxonomy
	- Fix admin not allowed to delete any item
	- Fix webfiunger issue with URLs containing an @
	- Fix missing object in emoji reactions
	- Fix appschema to include diaspora:guid
	- Fix zotfinger in update_directory_entry()
	- Fix incorrect media type on links for photo objects
	- Fix mid not dbesc'd in item_store()
	- Fix calendar encoding issues

	Addons
	- twitter: various rendering improvements
	- cavatar: fix wrong image mimetype
	- gravatar: fix wrong image mimetype
	- Add license file
	- pubcrawl: make repeats render like wall to wall posts
	- pubcrawl: fix pubcrawl_import_author() sometimes returning a non activitypub xchan
	- pubcrawl: use Lib/Activity for taxonomy en/decoding
	- pubcrawl: fix wrong uuid in like activity
	- pubcrawl: fix issue with encoding hashtags
	- openstreetmap: use https URLs by default
	- queueworker: refactor and efficiency improvements
	- pubcrawl: use unique IDs for follow and accept activities
	- pubcrawl: implement thread completion
	- pubcrawl: implement delete activity
	- photocache: reduce the size of the photo cache subdirectories tree
	- photocache: use html_entity_decode() for cached photo URL
	- diaspora: fix possible issue with diaspora relay not initializing


Hubzilla 4.2.1 (2019-06-17)
	- Deprecate mod events
	- Revisit mod cal
	- Fix issues with deletion of linked items and resources
	- Fix zot6 delete issue
	- Fix attach sync issue
	- Remove sizeRangeSuffixes in justified gallery wrapper
	- Fix storageconv issue with postgres
	- Fix embedphotos image size
	- pubcrawl: use URI instead of object for actor url
	- diaspora: adjust loglevel
	- gallery: remove workaround for margin issue which has been fixed upstream
	- cart: warn about unsaved changes


Hubzilla 4.2 (2019-06-04)
	- Introduce Calendar app which deprecates Events and CalDAV apps and streamlines the featuresets
	- Update mod cal to reflect changes in the calendar app
	- Improve timezone detection for CalDAV calendars
	- Add mention support to event description in channel calendar
	- Update jgrowl library
	- Do not try to oembed URLs without embed tags
	- Optimise pdf oembed processing
	- Add form security token to mod register
	- Replace URLs for mod gallery, mod photos and mod photo on cloned channel post sync
	- Update justified gallery library
	- Update bootstrap libraries
	- Use "cache" flag for bbcode() on content destined for zot6
	- Improve DB indexing
	- Drop deprecated columns from channel the table
	- Replace own image URL in clonned channel posts
	- Improve DB update handling
	- Improve item deletion when a contact was removed
	- Zot6 compatibility for emoji reactions
	- Add threaded comments support (disabled by default)
	- Improve xmlify()/unxmlify() performance
	- Update blueimp/jquery-file-uplad library
	- Update sabre/vobject library
	- Various doco updates
	- Implement remove profile photo button (reset to default photo)
	- Implement remove cover photo button
	- Update the homeinstall script
	- Add command line tool for photo thumbnails storage conversion
	- Implement option to store photo thumbnails in filesystem instead of DB

	Bugfixes
	- Fix category widget when using articles
	- Fix live update not triggering in mod search
	- Fix encoded URLs in code blocks
	- Fix wiki headers not escaped
	- Fix possible xchan protocol confusion in new_contact()
	- Fix xchan_url not displayed if xchan_addr not available
	- Fix suggestion ordering in mod directory
	- Fix event attachment delivery to zot6

	Addons
	- pubcrawl: improve friendica compatibility by adding the nonstandard diaspora:guid field
	- pubcrawl: initial suport for events
	- pubcrawl: improve permalink detection
	- flashcards: fix moving learn buttons if viewport sizes changes
	- flashcards: Move card details to the bottom of a card
	- upgrade_info: provide links to changelog
	- photocache: do not save filename for cached photos
	- pubcrawl: save local comment activitypub payload in iconfig to be used for relay
	- flashcards: UI improvements in box settings
	- pubcrawl: implement profile update messages
	- pubcrawl: use URI instead of object for actor
	- flashcards: fix jumping sync button
	- pubcrawl: add threaded comments support
	- pubcrawl: ignore target encoding errors
	- pubcrawl: format photo items for activitypub


Hubzilla 4.0.3 (2019-04-26)
	- Add attachments to zot6 event objects
	- Add zot6 to federated transports
	- Update import/export to handle zot6 hublocs and xchans
	- Update fix_system_urls() to handle zot6 hublocs
	- Fix infinite loop using postgres as backend
	- Fix magic auth in combination with zot6
	- Fix check for required PHP version
	- Diaspora: favour diaspora protocol identities over others with same hubloc or xchan address


Hubzilla 4.0.2 (2019-04-08)
	- Port cdav calendar to fullcalendar version 4
	- Fix perms_pending not evaluated correctly
	- Fix return wrong profile photo modification date by plugin
	- Fix suggestion widget using feature_enabled still
	- Fix check service class limits when syncing files
	- Remove xchan_instance_url from notifier query - it is not used anymore
	- Implement remove cover photo functionality
	- Fix z6_discover() and create a zot6 hubloc on import if applicable
	- Add backend support for connections ordering
	- Deduplicate items in item_store() by uuid if we got one otherwise by mid
	- Add ITEM_TYPE_CUSTOM support to mod display
	- Fix mod subthread on sys channel items
	- Fix "recipient not found" dreport spaming with own xchan
	- Fix wrong variables in dirsearch
	- Fix 48 hours timeframe check in mod changeaddr
	- Fix wrong variable in Libsync
	- Pubcrawl: revert adding additional receivers to comments
	- Diaspora: fix intro received when being banned
	- Pubcrawl: add diaspora:guid from friendica AP posts for deduplication
	- Diaspora: fix friendica plink
	- Photocache: fix issue with spaces and quotes in original filenames


Hubzilla 4.0.1 (2019-03-21)
	- Fix permissions not getting decrypted on follow
	- Add option to add a poster to the video bbcode
	- Fix SQL performance issue with queries including thr_parent
	- Fix share encoding issue between hz and zap
	- Fix edge case in unsupported advisory privacy
	- Messagefilter enhancements
	- Fix XSS issues
	- Clone systems apps to the extent possible
	- Auto-configure imagick thumbnail binary during setup if possible
	- Fix array not unserialized in util/service_class
	- Add phpmd and phpcs to composer require-dev for code linting
	- Fix issue with email encoding
	- Fix signature issue for zot6 content imported from zotfeeds to hubzilla
	- Find unregistered z6 clones on hubzilla sites
	- Add zot6 to clonable networks
	- Add owner permission checks to AS item fetch
	- Perform zot6 discovery in import_author_xchan
	- Fix authenticated fetches
	- Port zot_record_preferred() from zap

	Addons:
	- Pubcrawl: deliver comments to abook contacts and thread participants
	- Pubcrawl: fix can_comment_on_post()
	- Deliverynotice: do not save empty postopts
	- Gravatar: fix URL and use z_fetch_url()
	- Pubcrawl: improve SQL queries in pubcrawl_item_mod_init()
	- Pubcrawl: fix authenticated item fetch


Hubzilla 4.0 (2019-03-08)
	- Add CURLOPT_CONNECTTIMEOUT option
	- Allow parameters as final path argument in API router
	- Remove clones from delivery recipients for top-level posts in favor of clone sync
	- Mention php-zip module dependency in administrator guide
	- Iron out some kinks with scrollToItem() in combination with collapsed content and images
	- Zot API changes to support combined content (items+files) import addon
	- Update PHP Version check during setup - min version is now 7.1
	- Urlencode links in category widget
	- Implement ability for channel visitors to be able to delete their own content
	- Support zot location independent urls
	- MySQL 8 admin summary compatibility
	- Improved gitlab-ci environment
	- Deprecate and remove addon settings in favour of per app settings
	- Refactor PhotoDriver class and add tests
	- Convert affinity tool to app
	- Refactor linkify_tags() so it works with xchans across multiple protocols
	- Add the actual mid to viewsrc for debuging reasons
	- Add filter hooks and the ability to add buttons to the default status editor
	- Prevent Hubzilla usage for SEO backlinks
	- Implement privacy warning for forum posts via !-tag
	- Set document title when title changes on a page update
	- Cache embeds in the background on initial storage rather than on first access
	- Custom sessionhandler support
	- Update nginx and lighttpd sample server configs to explicit disallow access to util
	- Introduce command line tool for managing site admins
	- Various doxygen improvements
	- Add privacygroup_extras_post/drop hooks
	- Add collect_public_recipients hook
	- Prevent memory exhaustion on zot message pickup with large message queue
	- Remove experimental worker queue from core
	- Add get_base_apps hook
	- Improve handling of notification updates while commenting
	- Add warning if upload_filesize < 4MB
	- Add ITEM_TYPE_CUSTOM and hooks for processing custom item types
	- Set min/maxversion for plugins to STD_VERSION unless otherwise specified
	- Add option to make affinity slider 'sticky' across page loads
	- Add photo_view_filter hook
	- Reset page title if article has no title
	- Implement the zot6 protocol
	- Add PHOTO_CACHE photo type
	- Basic support for HTTP3
	- Add native summary support
	- Disable image caching if personal or group permissions enabled

	Bugfixes
	- Fix guest access token xchan record not created on URL login
	- Fix regression where mod oep was still using hex2bin/bin2hex instead of album hash
	- Fix regression when selecting multiple images in embed images
	- Fix broken sync_an_item()
	- Fix page jumping on like if comments are expanded (show all x comments)
	- Fix regression in mod display where an page update could display items from multiple channels
	- Fix starring and filing allowed for other unsupported item types
	- Fix wrong variable in z_get_temp_dir()
	- Fix page jumping when liking a collapsed/expanded post
	- Fix tags detection in URL
	- Fix warnings in mod embedphotos
	- Fix wrong variable in can_comment_on_post()
	- Fix mod new_channel counting removed channels
	- Fix regression where not all content variables were sslified
	- Fix default values for affinity tool and other information which could be lost when approving a connection
	- Fix regression in linkdropper()
	- Fix issue with unset auto_save_draft variable which resultet in a javascript error
	- Fix home notifications won't expand if there are more than 300 unseen network notifications ahead of them
	- Fix total_identities count
	- Fix delayed items propagate before publication on cloned channels

	Addons
	- twitter_api: fedilab needs profile_image_url_https
	- New addon: content_import - imports items and files to cloned channels (this obsoletes hzfiles)
	- Diaspora: prevent processing of incomplete messages in various places
	- hzfiles: fix add missing load/unload functions
	- chess: do not look for games if we have no game_id - improves initial pageload performance
	- chess: convert to app
	- channelreputation: convert to app
	- irc: convert to per app
	- Provide the addon_common directory for common addon libraries
	- fuzzloc: convert to app
	- flattrwidget: convert to app
	- jappixmini: convert to app
	- xmpp: convert to app
	- visage: convert to app
	- diaspora: reflect linkify_tags() rewrite
	- twitter: convert to app
	- smileybutton: convert to app
	- skeleton: convert to app
	- planets: convert to app
	- pumpio: convert to app
	- pageheader: convert to app
	- nsabait: convert to app
	- dwpost: convert to app
	- diaspora: set the preserve_lf option in various places
	- diaspora: fix comments from unknown persons are not accpted
	- nofed: convert to app
	- ljpost: convert to app
	- diaspora: call update_queue_item() if delivery failed
	- pubcrawl: call update_queue_item() if delivery failed
	- libertree: convert to app
	- New addon: queueworker advanced - queue handling (experimental)
	- gallery: extended functionality: implements stream image viewer, converts images at the beginning of a post to a gallery
	- authchoose: correction to query, add affinity setting
	- New addon: photocache - local caching for public photos
	- New addon: totp - two factor authentication using time-based one-time passwords


Hubzilla 3.8.9 (2018-02-03)
	- Fix typos in mod oep
	- Fix page jumping when liking collapsed/expanded post
	- Fix failure to import mail in mod import
	- Fix wrong channel count in mod new_channel
	- Fix diaspora addon regression
	- Remove deprecated diaspora addon endpoint
	- Fix wrong function call in gallery addon


Hubzilla 3.8.8 (2018-12-22)
	- Fix issue with linkinfo
	- Fix cURL with HTTP/2
	- Remove scale_external_images()
	- Style highlight bbcode via css
	- Make mod channel deal with b64 encoded mid's
	- Fix email retrieval in OAuth2Storage
	- Add reinstall option to util/addons
	- Remove deprecated caching protection from mod photo
	- Add missing check for observer in mod like
	- Articles: default to logged in channel if channel name is not passed
	- Wiki: fix preview issue with hyperlinks
	- Cart: backport fixes from osada
	- Gallery: provide file extensions for better compatibility
	- Hsse: fix issue when linkinfo data was inserted
	- Diaspora: remove deprecated scale_external_images()


Hubzilla 3.8.7 (2018-12-14)
	- Fix issue with linkdropper in comment area
	- Fix regression wit app ordering
	- Fix return if readImnageBlob() throws an exception
	- Introduce photo_view_filter hook
	- Fix home notifications not expanding in certain situations
	- Fix for dark schema
	- Fix total identities restriction
	- Fix article page title not updating if article has no title
	- Gallery: the gallery app will now act as the full-size photo viewer in /photos if installed


Hubzilla 3.8.6 (2018-12-03)
	- Prevent incompatible export files (osada/zap) from being imported
	- Catch exception if readImageBlob() receives bogus data
	- Streamline PDF previews
	- Allow notification filtering by name or address
	- Fix too restrictive attached photo permissions
	- Update ES translation
	- Use flex for the default template
	- Do not store serialized pconfig value received via to Module/Pconfig.php
	- Update jquery-file-upload lib and move to composer
	- Update imagesloaded lib and move to composer
	- Fix activitypub tag notifications
	- Fix call to undefined function in PConfig
	- Fix typo which prevented propagation of comments to zot6 (dev)
	- Activitypub: add support for pterotype (wordpress plugin)
	- Openstreetmap: check validity of lat+lon before rendering a map


Hubzilla 3.8.5 (2018-11-19)
	- Fix pconfig for new installs
	- Fix delayed publication of posts in combination with channel clones
	- Fix issue where photo filesize was not updated in the DB when a photo was edited
	- Fix issue where the original photo size was not set correct in the DB
	- Fix delivery issue in zot_fetch()
	- Fix typo in channel reputation addon


Hubzilla 3.8.4 (2018-11-14)
	- Fix xss issue (thanks to Eduardo)
	- Implement hook in enotify to be used by superblock
	- Various css fixes
	- Improve photo cache handling
	- Provide a function hz_syslog() to log to syslog
	- Fix request_target in z_post_url()
	- Fix plural handling for various languages
	- Some preparatory work for zot6
	- Fix warning in gallery addon
	- Fix date issue on xchan photo update in diaspora and pubcrawl addons
	- Fix typos in startpage addon
	- Improve activitypub addressing
	- Fix taxonomy in activitypub direct messages
	- Fix syntax error in diaspora addon
	- New e-learning addon flashcards
	- Remove DNS check for database connection during installation
	- Implement timestamps for pconfig


Hubzilla 3.8.3 (2018-11-05)
	- Do not count likes in forum notifications if likes notifications are disabled
	- Fix typo in spanish translation which broke javascript
	- Improve linkinfo charset handling and image detection
	- Fix wrong image resize for some external images
	- Move blueimp upload lib to composer and update to version 9.25
	- Remove primary/clone counts from admin summary until we have a mechanism to update the fixed counts
	- Fix html2markdown() and re-enable previously failing tests
	- Improve look of oembed content for Hubzilla links
	- Fix forum notifications count not correct
	- Fix gallery addon which broke mod apps in some situations
	- Fix wiki_list widget not working on every page respectively level


Hubzilla 3.8.2 (2018-10-29)
	- Merge unmerged changes from dev into master
	- Fix issues with forum handling in mod network and ping
	- Fix delivery chain linkage messed up if original post was edited
	- Fix issues with the experimental queue worker
	- Fix call to image source {1} from html template
	- Group stream filters by threaded and unthreaded default view
	- Show only unseen forum messages when clicking on forum notification
	- Improve editor contact autocomplete performance
	- Convert non UTF-8 content on link embeding
	- Make textcomplete return up to 100 items
	- Look for for matches in the entire string when suggesting emojis
	- Add [summary] bbcode to autocomplete list
	- Update blueimp_upload to version 9.23
	- Update spanish strings

	Addons
	- Cart: don't allow items to be added unless user is logged into the Grid.
	- Pubcrawl: simplify asencode_activity() addressing to reflect upcoming changes in mastodon 2.6
	- Rendezvous: Update rendezvous_group.tpl to fix broken Bootstrap library reference


Hubzilla 3.8.1 (2018-10-21)
	- Fix issue with too long navbar banners
	- Fix menu item edit link
	- Fix issue with jquery file upload


Hubzilla 3.8 (2018-10-19)
	- Re-implement basic build test via gitlab-ci
	- Rework wiki encoding/decoding
	- Implement improved worker (experimental - off by default)
	- Rework hubzilla settings infrastructure
	- Port the features to stand-alone apps
	- Add app_destroy hook
	- Improve mod network search
	- Extend app_install() to allow installing by app name
	- Remove tech levels
	- Hide channel creation form when at or over service_class['limit_identities']
	- Rename groups and group_members tables for MySQL 8 compatibility
	- Improve checks for image magick and pdo at setup
	- Allow a second url in apd files for settings
	- Add contact autocomplete to mod photo comments
	- Add hook to allow addons to filter the list returned by app_list
	- Do not sync channel moved field
	- Add attach_delete hook
	- Catch errors in template rendering
	- Provide a noscript_content switch for mod channel and display
	- Install and update bootstrap via composer
	- Improve cover-photo handling
	- Improve notification handling on small screens
	- Detect and automatically repair duplicate plugin hook scenarios
	- Add dreport_process hook
	- Redirect stdout/stderr on cron command
	- Update composer libs and add ramsey/uuid
	- Add hook to extend conv_item cog dropdown menu
	- Trigger the query options off of the active module rather than passed parameters in first_post_date()
	- Tweak archive widget for articles
	- Add api_not_found hook
	- Ignore deleted hublocs in zot finger
	- Don't use "checkjs" with an associated page reload - wrap a static copy of the content in noscript tags instead
	- Add possibility to override helpfiles
	- Add support for overriding the default template location and individual templates via .htconfig.php
	- Add table support to markdown
	- Make channel_remove less memory hungry
	- Prevent json-ld bombing
	- Turn off browser autocomplete on channel sources creation
	- Add alter_pdl hook
	- Add ability for addons to create .pdl files and load them automatically
	- Sanitise vcard fields
	- Don't sync system apps


	Bugfixes
	- Fix issue with timeago plurals
	- Fix issue with HTTP signatures
	- Fix issues with channel import
	- Fix double linebreaks in viewsrc output
	- Fix jsonld signature issue (library is using sha1, spec requires sha256)
	- Fix bookmarks not syncing between clones
	- Fix combined view getting lost when deleting first message in pm thread
	- Fix authors unable to comment on posts they authored when owned by others in certain circumstances
	- Fix syschannel included in total channels count
	- Fix html-to-markdown adds a backslash infront of a hash after each new line
	- Fix profile likes dropdown
	- Fix tags corruption when editing posts
	- Fix duplicate info() messages
	- Fix zid leaking to nonzot sites if markdown is enabled
	- Fix app delete issue with base installed apps and app photo being reloaded uneccessarily
	- Fix app update and ownership issues

	Addons
	- Upgrade Info: new addon to inform channel owners about system upgrades
	- Superblock: fix issue with not removeable channels
	- Cart: fix subscription table not created on install
	- Hsse: new addon - a WYSIWYG editor for certain modules
	- Rainbowtag: convert to app infrastructure
	- Superblock: convert to app infrastructure
	- Send ZID: convert to app infrastructure
	- Adultphotoflag: move setting to mod photos
	- GNU-Social: convert to app infrastructure
	- Pubcrawl: convert to app infrastructure
	- Startpage: convert to app infrastructure
	- Wppost: convert to app infrastructure
	- Diaspora: convert to app infrastructure
	- Mdpost: move setting to editor settings
	- Cart: convert to app infrastructure
	- Cart: reflect renaming of groups table
	- Authchoose: convert to app infrastructure
	- Channelreputation: new addon - reputation system for community channels (forums, etc.)
	- Diaspora: fix commenting on diaspora reshares
	- Gallery: convert to app infrastructure
	- Nsfw: convert to app infrastructure
	- Diaspora: change top level retraction type from StatusMessage to Post
	- Delivery Notice: new addon - display delivery status information at the top of items
	- Diaspora: exclude xchan_networks rss, anon and unknown from the query to make the results more reliable
	- Diaspora: provide xchan_url if we have no xchan_addr for mentions
	- Diaspora: fix x-social-relay tags converted to associative array
	- Twitter API: improvements for the twidere client
	- Pubcrawl: partial support for inbound AP events
	- Pubcrawl: add support for image objects
	- Gallery: provide a way to direct link to a photo album gallery
	- Pubcrawl: improve can_comment_on_post handler
	- Pubcrawl: implement pleroma quirks regarding follow activities
	- Cart: add ability to create catalog entries for physical and/or manually fulfilled items
	- Cart: add subscriptions submodule


Hubzilla 3.6 (2018-07-25)
	- Update jquery.timeago library
	- Implement Hookable CSP
	- ActivityStreams: accept header changes to support plume
	- Streamline inconsistencies in addon naming
	- SECURITY: hash the session_id in logs
	- Update justified gallery library
	- Hide channel in /cloud root if channel is hidden in directory
	- Add resend option to channel sources tp discard original author.
	- Provide flag to exclude privacy groups for federation plugin use in collect_recipients()
	- Upgrading from redmatrix is no longer supported
	- Deal with htmlentity encoding during authentication workflow
	- Rework mod group
	- Make droping posts of removed connections more memory efficient
	- Refactor getOutainfo() for DAV storage
	- Optionally report total available space when uploading
	- SECURITY: provide option to disable the cloud 'root' directory and make the cloud module require a target channel nickname
	- Add plink and llink to viewsource
	- Add new 'filter by name' feature
	- Remove network tabs
	- New activity filter widget
	- New activity order widget
	- Make menus editable by visitors with webpage write permissions
	- Move forum notifications to notifications
	- Move manage privacy groups to the panel channel menu
	- Don't remove items that are starred, filed, or that you replied to when removing a connection
	- Don't deliver local items more than once
	- Make navbar search use the module search function in /network and /channel
	- Paint the locks on private activitypub items red. Their privacy model is "slightly" different from hubzillas
	- Improve new channel creation workflow
	- Add hook 'get_system_apps'
	- Implement reset button for jot
	- Adjust accept header to make pleroma happy
	- Provide a general purpose GDPR document
	- Provide function to fetch photo contents from url
	- Make get_default_profile_photo() pluggable
	- Refactor tags/mentions
	- Refactor autocomplete mechanism
	- Display pubsites link in info area if invite only
	- Add cancel button to editor
	- Implement MessageFilter for pubstream and sourced messages
	- Add supported protocols to siteinfo
	- Allow pdf embeds
	- Allow uninstall of plugins which no longer exists via cmdline tool
	- Improve the homeinstall script
	- Provide easy access to the autoperms setting for forum and repository channels
	- Implement admin delete of files, photos and posts
	- Allow a different username to be used when importing a channel
	- Provide warnings about profile photo and cover photo permissions
	- Set the 'force' flag on attach_mkdir when initiated from a DAV operation

	Bugfixes
	- Fix double file uploads when dropping files into jot
	- Fix jot collapsing when drag and drop to open jot
	- Fix wrong album name when moving photos
	- Fix wrong timestamp localization before first update in mod mail
	- Fix post exiration not propagated to other networks (which support it)
	- Fix sys channels visible in dirsearch
	- Fix remote_self not working correctly
	- Fix photos not syncing properly if destination is a postgres site
	- Fix wrong hubloc_url for activitypub hublocs
	- Fix z_check_dns() for BSD
	- Fix not null violation in oauth1
	- Fix DB issues with oauth2 on postgresql
	- Fix 'anybody authenticated' not correctly handled in can_comment_on_post()
	- Fix postgres issue if register mode is set to yes - with approval
	- Fix tag search not finding articles
	- Fix issue with mentions when markdown post addon is enabled
	- Fix duplicate addressbook entries on repeated channel imports

	Addons
	- Cart: various display improvements
	- Cart: make cart work with postgresql DB backend
	- Cart: add new hzservice for service_classes
	- Cart: add storewide currency settings
	- Cart: provide channel app 'Shop' for cart addon
	- Cart: implement order updating
	- Cart: use CSP hook for paypals checkout.js
	- Cart: provide a cancel mechanism for orders
	- Cart: add paypal button
	- Gallery: new addon to display photo albums with the photoswipe library
	- Ldapauth: optionally auto create channel
	- Pubcrawl: new setting to ignore ActivityPub recipients in privacy groups
	- Diaspora: fix issue with displaying multiple photos
	- Pubcrawl: provide plink
	- Pubcrawl: hubloc_url should be baseurl, not actor url
	- Pubcrawl: deliver restricted posts from hubzilla as direct messages (there is no other way to address only a subset of followers in mastodon)
	- Pubcrawl: address comments to a restricted mastodon post to /followers


Hubzilla 3.4.2 (2018-07-19)
	- Compatibility fix for future versions


Hubzilla 3.4.1 (2018-06-08)
	- Say bye, bye to GitHub and move sourcecode repositories to #^https://framagit.org/hubzilla
	- When removing a connection, don't remove items that are starred, filed or replied to
	- Do not show archived forums in forum widget
	- Fix potential XSS vulnerabilities
	- Translation updates
	- Fix postresql issue with oauth2
	- Improve abconfig queries
	- Fix postgresql issue if register mode was set to yes - with approval

	Addons
	- Diaspora: fix likes of non-contacts not allowed to like allthough diaspora_public_comments is set
	- Pubcrawl: fix wrong hubloc url
	- Pubcrawl: fix issues with attachments
	- Pubcrawl: fetch required item metadata in asfetch_item()
	- Cavatar: use cavatar for all default profile photos if enabled
	- Pubcrawl: fix peertube video display
	- Pubcrawl: fix incoming activitypub comments not getting propagated downstream
	- Statistics: fix .well-known/nodeinfo
	- Pubsubhubbub: fix postgresql related issues
	- Pubcrawl: send the original LD-signature signed activity when distributing comments downstream if we have it
	- Cavatar: improve the image creation process


Hubzilla 3.4 (2018-05-04)
	- Provide warnings about profile photo and cover photo permissions
	- Don't duplicate addressbook entries on repeated channel imports
	- Where possible strip zid parameter from links that get pasted into posts so that they will get a correct zid when rendered
	- Rename boxy schema to Focus-Boxy
	- Rename BS-Default schema to Focus-Light
	- Mark simple_* schemas unmaintained and deprecated - they will be removed in next release if nobody steps up to maintain them.
	- Implement trending tags for mod pubstream
 	- Relax restrictions to the design tools menu to allow those with write_pages permission
	- Add alt pager to mod moderate
	- Show existing cover photo when changing it
	- Update to bootstrap lib to version 4.1
	- Provide a higher accuracy method for active channels information
	- Provide visible star status for starred posts
	- Move the thread author menu to the wall item photo
	- Accept system_language through either get or post
	- Remove recipient name from stored notifications but keep them in emails
	- Fix issue of being forced to log back in after leaving a delegated channel
	- Implement last commented expiration setting in mod admin
	- Create catcloud widget and provide a type option which can include 'cards' or 'articles'
	- Modified notifications widget to add the public stream when the current user is allowed to see it only
	- Don't provide a connect button for transient identities
	- Merge techlevels and features
	- Implement auto-save posts and comments in browser using localStorage
	- Display directory server in siteinfo.json
	- Bring back the dnt policy document
	- Implement OAuth2/OpenIDConnect server
	- Add basic structure for additional features documentation
	- Community tag refactor
	- Obscurify chats
	- Provide a way to share wiki pages
	- Update folder timestamp on uploaded files
	- Code optimisations and de-duplication on updating parent commented timestamp
	- Turn newmember widget into a feature
	- Make list mode work in cards and articles
	- Make alt pager work for articles and cards
	- Initial support for alternative sort orders on the cloud pages
	- Add Ochannel module for testing OStatus bad behaviour
	- Add the social - federation permission role
	- Update justified gallery lib from 3.6.3 to 3.6.5

	Bugfixes
	- Fix regression with forum widget unseen count
	- Fix issue with imagemagick exif info
	- Aonymous comments in StdLimits shouldn't be allowed
	- Fix wiki pages not syncing
	- Show "Unseen public activity" channel setting when site only public streams are activated
	- Fix channel import failing to provide channel_password value
	- Fix permalinks to children of articles and cards
	- Fix missing year on profile birthday input
	- Fix missing login/out buttons for medium screensize
	- Preserve existing categories when updating an app from an embed source
	- Fix app sellpage not being stored
	- Fix tagadelic being overly protective of permissions
	- Fix comments not displayed in single card/article view
	- Fix anonymous comments bump thread
	- Fix pending registrations visible in admin accounts

	Addons
	Pubcrawl: fix issues with "private" messages
	Pubcrawl: fix issues with postgresql
	Fuzzloc: new addon to blur your browser location
	Pubcrawl: implement follow by webfinger
	Cart: new addon which provides online shop functionalities (experimental)
	Pubcrawl: implement two-way summary functionality
	Wordpress: upgrade incutio xmlrpc library to use hubzilla curl wrapper
	Hzfiles: various fixes
	Diaspora: support full_name attribute in profile messages
	Frphotos: deprecate plugin (keep it for reference)
	Webmention: require html5 parser
	GNU-Social: provide alternative xchan_url
	Diaspora: fix wrong callback function
	Diaspora: fix conversion of forum mentions to markdown by providing a !{forum@host} link syntax
	Diaspora: fix item title not transferred


Hubzilla 3.2 (2018-03-09)
	- Improve rendering of Readme files in plugin settings
	- Add pdl file for mod moderate
	- Update redbasic theme screenshot
	- Restrict mail messages to max_import_size
	- Add pdl file for mod thing
	- Add federation property to webfinger
	- Provide new member widget which sits beneath the notifications for the first 60 days after an account creation
	- Rename Addon/Feature settings to Addon Settings
	- Move privacy groups to the newly created Access Control and Permissions tab
	- Move oauth_client management and guest access tokens to features rather than auto-enabling at various feature levels
	- Change undo_post_tagging() to emit quoted tags rather than using underscore replacement if they contain spaces
	- Require directory servers to be using some modern form of encryption
	- Change icon set from font-awesome to fork-awesome
	- Provide opt-out link and text with notification emails
	- Alter image selection widget to accept/submit on choose (github issue #979)
	- If hide_in_statistics is set, only include the total channels count and no other statistical info in siteinfo.json
	- Mark connections where we do not have post_comments permissions with an no entry sign
	- Click your own profile photo to change it if loged in
	- Remove street address info from the default basic profile fields
	- Handle error logging in on cloud page (post method not implemented)
	- Cloud 'view-as-tiles' toggle wasn't available for guests and they are the most likely to prefer that view
	- Provide DB compatibility for poll and voting implementations across several platforms
	- Remove the unused ZotDriver and ProtoDriver classes
	- Move dreport from zot to lib
	- Move Zotlabs\Zot\Verify to Zotlabs\Lib\Verify as part of the zot6 re-org
	- Add event resource_id to iconfig so Diaspora can search on it without looking inside JSON objects
	- Trim non-existent/deprecated plugins from siteinfo plugin list
	- Add 'Validate' button to new_channel page
	- Do not show summary if it is equal to body
	- Update code tag styling so bbcode [code] blocks and wiki markdown inline code render nicely
	- Crypto improvements (use pkcs1_oaep_padding instead of the older pkcs1_padding)
	- Refactor OAuth2Server a bit
	- Refactor of the DB update system
	- Extend the oauth2 storage driver so that we can use our own channel table
	- Provide option to block the public stream unless authenticated
	- Refactor shares and urn shares into activities
	- Show likes and dislikes in notices if always_show_in_notices is set
	- Add hidden config to disallow anonymous comments (github issue #972)
	- Add flexibility to prefix/suffix string translations for jquery.timeago
	- Make post titles searchable (github issue #975)
	- Implement zot6 delivery
	- Remove mobile_detect library
	- Separate the parsing of author information from the parsing of item/activity information in feedutils
	- Provide summaries in feeds under very limited cases
	- Redirect to the email_validation page if login was attempted after account creation but prior to successful verification
	- Iprove workflow for form based email validation when auto_channel_create is in effect
	- Provide a default video image if nothing else is available
	- Surface the ability to change the landing page after channel creation
	- Create the 'go' module to present several possible things to do after channel creation
	- Add unit test for dba_pdo driver class
	- Add unit test for \DBA factory
	- Usability improvements to registration/verification workflow
	- Don't do any bbcode translation within code blocks (except baseurl, observer, and linefeeds)
	- Improve browser language detection
	- Remove unused prototype importer template and obsolete reflection cms importer
	- Update to bootstrap 4 stable
	- Implement caching of notifications in browser session storage
	- Code cleanup and simplification in mod_like
	- Implement new cropper library
	- Better notifications for edit post/comments which may have been originally posted long ago
	- Ensure filter words are not empty in include/items.php
	- Change query in mod search to be compatible with postgres
	- Provide channel list function in the zot api
	- Remove deprecated 'qcomment' feature
	- Simplify webserver logic flow
	- Simplify interactions with the get_features hook
	- Provide a local pubstream option (content from this site only)
	- Simplify dir_tagadelic dramatically
	- Surface the article feature
	- Add summary bbcode tag
	- Move markdown-in-posts/comments feature to plugin
	- Support tables in markdown posts/comments


	Bugfixes
	- Fix javascript error if there are no notifications
	- Fix some issues with friend suggestions on standalone sites with no 'suggestme' volunteers
	- Fix unable to reset profile fields to defaults in admin/profs by emptying the textarea
	⁻ Fix issues with accordions related to bootstrap upgrade
	- Fix empty dob is set to the date of the first profile save
	- Fix several email validation issues
	- Fix issue if logged in locally and mod_display returns nothing owned by your uid; retry with known public uids rather than issue 'permission denied'
	- Fix public stream app permission check to match the recent fixes to the Module
	- Fix issues with delivery of edited posts to forums
	- Fix autoname test
	- Fix issue where self and pending connections were visible in connections when not loged in
	- Fix bad query in mod defperms
	- Fix issue where gnusocial likes were not recognised as like activity
	- Fix manual queue invocation
	- Fix unable to delete accounts using tickboxes on admin/accounts
	- Fix a PHP7.2 warning when a channel has no cards
	- Fix unable to delete permission groups with space in name (github issue #920)

	Addons
	Statistic: fix reporting of incorrect register policy in nodeinfo
	Diaspora: diaspora_init_relay: calls diaspora_import_author with too many arguments
	Pubcrawl: provide a system 'allowed' for to match the system setting for other protocols
	Diaspora: fix issue with sending diaspora profile change messages over diaspora_v2
	Diaspora: provide limited but hopefully adequate support for new Diaspora html5 audio/video
	Pubcrawl: send zot context with follow requests
	Pubcrawl: add video to the set of message types we process
	Pubcrawl: support for activitypub media
	Openclipatar: remove extra details for each image
	Diaspora: initial work on event participation
	Statistic: remove the friendica protocol from nodeinfo until it is fully implemented
	Statistic: re-arrange the order of the .host-meta/nodeinfo links
	Pubcrawl: add share verb to activitystreams translator
	Pubcrawl: post public posts to syschannel
	Statistics: fix legacy statistics.json interface
	Gnusocial: improve error checking when processing a salmon message
	Dirstats: fix sql syntax error
	Pubcrawl: possibly reduce constraint violations for xchan_store_lowlevel (duplicate entry)
	Diaspora: ensure we process Friendica-over-Diaspora yearless birthdays correctly
	Chess: added simple history browsing controls to spectator view
	Diaspora: support post/comment edits
	Diaspora: don't redirect fetch requests for non-Diaspora wall-to-wall and forum posts unless they can be redirected to a Diaspora protocol site
	Chess: added support for publicly visible games
	Phpmailer: add quickstart notes
	Chess: choose random color if no color is chosen
	New Plugin: mdpost - markdown in posts/comments, migrated from core to addon
	Diaspora: provide a configuration option to import the diaspora firehose, otherwise only import content matching subscribed tags
	NSFW: load images only after click on the button
	Twitter: provide configurable tweet length until such time as 280 becomes universal


Hubzilla 3.0 (2018-01-09)
	- Updated homeinstall script
	- Sort cloud directory by 1. is_dir and 2. name
	- Document that imagick calls/execs ffmpeg for mp4 video thumbnails
	- Use pipe_stream() instead of file_{get, put}_contents() in attach_store()
	- Make homeinstall script ready for Debian 9
	- Add url and headings to bbco_autocomplete()
	- Remove additional linebreaks after headings
	- html2bbcode: use headings bbcode for headings
	- Don't zidify all permalinks, only zot permalinks
	- Make remote homelink link to the home host and not to the home channel
	- Auto promote beginner (techlevel 0) accounts to level 1 after they show signs of active participation.
	- Go back to including the photo thumbnail data in the export file.
	- Improvements to file import/export
	- Default value for xlink_rating_text
	- Implement IMoveTarget and recursive file/directory move/rename - github issue #680
	- Synchronise an attach_move operation to clones
	- Provide a themed page with an error notification on errors instead of an obtuse XML error structure in mod cloud
	- Disallow backslashes in wiki and wiki-page names
	- We only require one update module. The rest are superfluous.
	- Render installable elements as buttons instead of links
	- Implement chunked uploads for photos page
	- Remove warning for large files on cloud upload
	- Add a filter for notification to show new posts only
	- Implement chunked uploads for cloud
	- Use httpsig auth for getfile
	- Load the profile images in the custom acl selector only if we actually need them
	- Rework liveUpdate() and notificationsUpdate() (aka ping) to first do the liveUpdate and when this is done only do the ping once.
	- Don't include invisible "update activities" in category widget
	- Default profile assign
	- Provide system config option for minimum registration age.
	- Remove deprecated $a argument from advanced_profile()
	- Change to bbcode calling parameters
	- Extra checking of server headers in upload functions
	- Provide a handler for chunked uploads in mod file_upload
	- Optional divider between item header and body
	- Allow toggle to SMBC scaling mode.
	- Add thumbnail hook
	- Implement SVG thumbnails and expose security setting
	- Implement video thumbnail generator
	- Implement pdf thumbnails
	- Implement thumbnail generator for epubs
	- Make browser history buttons work with ajax calls in mod display and hq
	- Implement tile view for mod cloud (read only)
	- Add mp3 audio thumbnail generator
	- Set display_path for photo_upload from the DAV File interface
	- Provide a generalised interface for thumbnail generators to support various content types
	- Add ID3Parser library.
	- Text thumbnails in cloud tile mode
	- Revisit media breakpoints - do not switch to mobile view to early.
	- Add French to help pages language dropdown selector
	- Inroduce the HQ module - an alternative landing page for hubzilla
	- Strip author name from notify messages in notifications - github issue #911
	- Remove column item.diaspora_meta
	- Provide ability to pin apps to navbar from mod apps
	- Add private forums to forum widget
	- Move notifications style to widgets.css
	- Sort out a few more large image upload issues
	- Move notifications full-screen handling to notifications widget
	- Move mailhost settings from plugin to core
	- Sort combined private mail conversations by latest updated conversation instead of created parent
	- Filter atokens on acl search
	- Allow a site to block (public) the directory separately from other resources.
	- Improve removed_channel final cleanup - github issue #386
	- Cleanup of upload_to_comments(
	- Dedicate the first click to slideup the cover again but make sure the nav buttons remain functional
	- Set os_syspath in DAV file put operation so that photos will scale correctly.
	- Unit tests for Zotlabs\Access classes
	- Bring back tabindex to submit comments
	- attach.php minor cleanup and doc
	- Allow cloud filenames to include ampersands without messing up auth tokens (zid, owt, and zat, and the constant placeholder 'f=')
	- Provide short localised summary for likes that will end up in displayed notifications
	- Improving Doxygen documentation.
	- Update item_normal() to not include ACTIVITY_OBJ_FILE obj_type
	- Sort out issues with pubstream item interactions
	- Don't perform zot_refresh on dead sites unless $force is set
	- Do not send message_list responses to dead sites (this delivery method bypassed the notifier)
	- Support for netselect query
	- Add another delivery control parameter (queue threshold)
	- Add some documentation about shareable widgets
	- Allow plugin class widgets
	- Some more work on unit tests
	- Encrypt the owa token
	- Bring back the markdown post feature
	- We call Theme:url() statically, make it also static.
	- Table structure for pseudo or proxy channels (pchan)

	Bugfixes
	- Fix sync non-default profile photo changes to clones - github issue #113
	- Fix prev/next buttons on connedit can show deleted connections - github issue #673
	- Fix affinity widget settings
	- Fix dupe bug in content hooks - github issue #943
	- Fix directory keywords returned from dir_tagadelic() in standalone mode
	- Fix argument warning when arguments are correct in util/dcp
	- Fix issue with long filenames in mod cloud
	- Fix misc. issues with new 'insert photo from photo album' github issue #475
	- Fix regression in channel sources delivery
	- Fix loading of theme-specific widgets
	- Fix unable to add wiki pages with spaces
	- Fix mod display and others that require a non-zero profile_uid for updates
	- Fix various PHP 7.2 issues
	- Fix typo in HTTPSig
	- Fix pagetitle lost importing a pdl element from conversation
	- Fix js warning - getelementbyid (id doesn't exist)
	- Fix some pubstream on/off weirdness
	- Fix default addressbook has no name - github issue #921
	- Fix double html ids in caldav widget if more than one sharee
	- Fix regression in cdav calendar widget
	- Fix sync packet not generated when deleting a file using the web browser interface
	- Fix album cover thumb generator
	- Fix like-button for images - github issue #826
	- Fix typo - github issue #910
	- Fix issue with group_rmv()
	- Fix php warnings on photo delete
	- Fix some conflicts between private tags and forum tags
	- Fix some schema issues
	- Fix wiki pages not updating after creating new page
	- Fix a PHP warning in Permissions::FilledPerms()
	- Fix unicode characters in urls tripping up url regexes - github issue #901
	- Fix second half of github issue #893
	- Fix common connections on suggestion page showing wildly different results than remote profile, and is consistently off by one
	- Fix cloud redirects with owt tokens
	- Fix issues with diaspora xchans
	- Fix memory overflow trying to delete a connection with a very high noise to signal ratio
	- Fix sql error in page module
	- Fix unstar

	Plugins/Addon
	Diaspora: fix 'view full size' photo link - core github issue #947
	Diaspora: implement recent changes in diaspora account_migration spec
	GNU-Social: fix uploading a photo to a post results in double post - github issue 75
	GNU-Social: fix gnusoc plugin not respecting delayed delivery - github issue 74
	Pubcrawl: fix PHP warning
	Diaspora: remove garbage from magic envelope
	Diaspora: fix permalinks for zot reshares
	New addon: hzfiles - sync files across hubzilla servers
	Fix various PHP 7.2 issues
	Remove Firefox social plugin - it was deprecated and removed in firefox version 57
	Diaspora: unset id and parent for local comments
	Pubsubhubbub: set interactive flag to avoid delivery killing if block_public is enabled
	Mailhost addon moved to core
	Remove js_upload addon


Hubzilla 2.8.1 (2017-11-11)
	- Rename channel app events to calendar and add nav_set_selected() to /cal
	- Load notifications links to /display via ajax if we are already in /display
	- Add location info to the navbar for remote visitors
	- Bring back tabindex to submit comments
	- Add spanish translations for context help
	- Added mode to portfolio widget

	Bugfixes
	- Fix os_syspath in DAV file put operation so that photos will scale correctly
	- Fix unicode characters in urls tripping up url regexes - github issue #901
	- Fix wiki pages not updating after creating new page
	- Fix notifications covered by cover photo on medium size screens - github issue #906
	- Fix unable to change permissions on wiki with space in name
	- Fix only show nav app link if we have a selected app
	- Fix unable to mark all messages read
	- Fix imagedata not set correctly if large photo and imagick is not installed
	- Fix issues with diaspora xchans
	- Fix profile photo issue triggered by a previous bug

	Plugins/Addon
	N-S-F-W: improve the undocumented n-s-f-w author::word feature
	Diaspora: update the import_diaspora tool for the version 2.0 account export files
	Diaspora: fix comments are partly containing "diaspora_handle" instead of "author" - github issue #69
	Pubcrawl: provide feature setting for downgrade_media option
	Pubcrawl: fix issue where replies to replies did not find its parent
	Diaspora: fix friendica likes on comments
	Diaspora: fix private mail
	Diaspora: fix third party deletes/retractions not propagating
	Diaspora: likes not working - github issue #895 in core
	Diaspora: fix comments from unknown persons not accepted if allow public comments is enabled - github issue #68
	XMPP: fix php warning

Hubzilla 2.8 (2017-10-25)
	- Redirect to be moderated items to /moderate
	- Update notifications if notifications area remains open
	- Create an actual logout module instead of relying on internal variables
	- Add local_channel as a comanche condition variable
	- Implement possibility to pin app-tray apps in the navbar via app category navbar_default
	- Introduce custom navbars
	- Re-implement single delivery
	- Pdledit usability improvements
	- Implement next generation notifications in right aside
	- Implement single post view for /pubstream
	- Make anonymous comments work in mod display
	- Introduce notifications for unseen public stream posts (off by default)
	- Preperatory work on Zot VI
	- Add app for site admin
	- Introduce experimental alternate channel_menu navigation (off by default)
	- Introduce notifications for shared files
	- Bring back notifications for account approvals
	- Urlencode hashes from mod_acl
	- Don't use chanlink_url() for feed mentions
	- Design common friends widget to fit better in the app and move it to left aside
	- Allow navbar to be used when cover photo is displayed in mod channel
	- Implement admin setting to use imagick converter for large photos
	- Process activity deletes from OStatus which for whatever reason do not use the industry standard tombstone mechanism
	- Implement new css based spinner
	- Move the link header initialisation from Router to Webserver
	⁻ Extend activity_match() to work with arrays
	- Updated the trusted CA cert database
	- Ostatus - support likes of comments
	- Provide ability to mention a forum by using !forumname as well as the traditional red style (@forumname+)
	- Encrypt delivery reports (not backward compatible)
	- Provide a space between link header params (draft-cavage-http-signatures-08)
	- Turn common_friends into a widget
	- Update to jquery-3.2.1
	- Wiki pages sorted by name
	- Create new hooks for permissions_accept and permissions_reject
	- Provide rel=alternate link if no reshare content in post
	- Add remote login button to login page
	- DB update to add index to item.resource_id
	- Implement wiki editing (name and acl)
	- Provide a hook for importing a channel photo at channel creation time
	- Implement wiki mimetype lock
	- Bring back wiki downloads
	- Add text/plain mimetype to wiki
	- Implement per page mimetype selection for wikis
	- Added english context help for apps and appman
	- Implement owa (open web auth)
	- Ignore diaspora_meta column on item import
	- Check code permissions on cloud files
	- Remove period from characters allowed in username
	- Make comment highlighting more reliable
	- Sign zot-info packets with httpsignatures
	- Implement server to server magic auth
	- Provide support for json-ld signatures
	- Rewrite comment form open/close handling to be more reliable
	- Radically reduce code duplication in updateConvItems()
	- Remove discover tab in favour of the public stream app
	- Apply autotime to all autotime classed elements when static loading a page
	- Implement cards feature
	- Extended support for help page translations including table of contents files at the top level
	- Introduce util/dmkdir - a mkdir tool for DAV
	- Various doco improvements
	- Introduce util/dcp (DAV-copy) - copy file or directory from local system to Hubzilla
	- Provide support for HTTPsig
	- Implement mechanism for selective network following in protocol connectors (diaspora, ostatus, activitypub, zot, rss)

	Bugfixes
	- Fix w2w posts not removed in contact_remove() - github issue #837
	- Fix guests not having a unique (non-existent) url
	- Fix mod register re-using the password
	- Fix write_storage permission not checked in /display
	- Fix discovery of moderated items in enotify
	- Fix profile thing image not deleted when thing deleted - github issue #868
	- Fix deletions to comments not synced on wall posts
	- Fix community tags not preserved on post edit - github issue #865
	- Fix profile photo propagation issue if the local xchan_photo_[l|m|s] fields were changed from the /photo/profile/l/n form to photo/[hash] form by a clone operation
	- Fix lockstate and current permissions not handed over to editor in mod card_edit
	- Fix profile edit dropdown for multiple profiles
	- Fix affinity slider spinner
	- Fix mod pubsites broken
	- Fix directory server admin selection includes known dead sites
	- Fix sticky-kit issue where the bottom of left aside was not visible when section content was short
	- Fix possibility to set bogus my_address
	- Fix deleting of wiki pages
	- Fix selected theme not appearing selected after change - github issue #855
	- Fix an issue where some encoded mids were not found in /display
	- Fix issue with mentions and xchans with @ or /
	- Fix webfinger returns invalid XML - github issue #851
	- Fix last remaining task in tasklist was not removed from view when completed

	Plugins/Addon
	Hubwall: Remove errant $1 string in sender name
	Map federation protocols for zotinfo
	Gnusoc: force ostatus profile photos to get refreshed monthly
	Gnusoc: fix ostatus mention notifications
	Gnusoc: unsubscribe to gnusoc feeds if connector is disabled
	Phpmailer: not using load/unload
	Gnusoc: don't provide some information if gnusoc is disabled by the channel
	Diaspora: add a predelivery interval
	Diaspora: support for likes on comments
	Introduce the pubcrawl plugin - an unapologetically non-compliant ActivityPub Protocol implemention
	Introduce gravatar plugin
	Pubsubhubbub: produce much more compact PuSH feeds
	Diaspora: support text comments on reshare posts
	Diaspora: changes to delivery scenarios for the special handling of profile messages
	Diaspora: put diaspora seed_location in json webfinger
	Gnusoc: fix mis-attributed comments from mastodon
	Gnusoc: allow discovery by url (not just reddress) and permit upgrade from 'unknown' network to gnusoc
	Implement mechanism for selective network following in protocol connectors


Hubzilla 2.6.3 (2017-09-18)
	- Fix anonymous comments/likes on photos - this is not yet implemented
	- Fix favicon not displayed on certain pages
	- Fix hubzilla logo icon for favicon and email notifications
	- Fix an issue with displaying selected theme in settings/display
	- [SECURITY] Restrict the input characters we accept in token verification strings to hex digits
	- Remove hubzilla.nl from fallback directory servers

Hubzilla 2.6.2 (2017-08-31)
	- Fix webfinger returns invalid XML (github issue #851)


Hubzilla 2.6.1 (2017-08-18)
	- Fix a regression with dav clients
	- Raise install requirements

	Plugins/Addon
	- Diaspora: fix PHP warning
	- GNU-Social: fix PHP warning


Hubzilla 2.6 (2017-08-16)
	- Upgrade to bootstrap-4 beta
	- Consolidate disable_discover_tab config
	- Fix some bbcode to markdown conversion issues
	- Improved finding of recursive attachment permissions
	- Smaller line-height for notification badges
	- Bluegrid schema removed - will be added again if someone is willing to maintain it
	- Improved file_activity()
	- DB - add index for item.obj_type
	- Add options flag to bb_to_markdown() so we can distinguish between diaspora use and other use and therefore filter and adjust content selectively
	- Close the apps-menu if the notifications-menu is open and vice versa
	- Remove redundant call to jquery ready function in photo albums view
	- Remove borders from navbar toggler in mobile view
	- Improve the formatting of shares when converting from bbcode to markdown
	- Suppress fopen errors from dav
	- Make local channel (not our own) nav menus appear similar to what we are used from remote channels
	- Indicate the selected channel in the dropdown menu if the feature is enabled
	- Provide a mechanism to mark apps active in the app tray
	- Allow wildcard tag and category searches
	- Improved installer
	- Update some addon docs and ensure we only generate statistics once a day
	- Turn url requests where argv[0] is something.xyz into module='something' and $_REQUEST['module_format'] = 'xyz'; But leave modules beginning with . (like .well_known) alone (convert the initial . to _ and then strip it)
	- Turn platform name and std_version into config variables
	- Implement chunked uploads on the wall
	- Prevent expiration of conversations you are involved with
	- Update htmlpurifier to version 4.9.3
	- Update sabre/http to version 4.2.3
	- Add optimize-autoloader to composer config
	- Missing abook_{my,their}_perms in pg schema and missing keys in mysql schema
	- Provide a gender icon on the profile sidebar within reason
	- Provide more comprehensible information on the admin summary page
	- Upgrade blueimp from 9.8 to 9.18
	- Chanview - if already connected, bypass the chanview intermediary page and go straight to the remote profile.
	- Allow poke by xchan_hash
	- guess_image_type() - ignore scheme when checking for urls
	- Remove unused page_widgets.php include and provide a general function for loading sql from file
	- Migrate cdav from addons to core
	- Address several mail issues
	- Add files and photos to featured apps by default
	- import_author_zot() fixes
	- Remove deprecated app parameter from conversation()
	- Implement anonymous comments (like wordpress)
	- Add rel=noopener to all external target _blank links
	- Add 'can_comment_on_post' hook so we can better deal with the complications of Diaspora policy
	- Added Portfolio widget (requires foundation)
	- Convert schema_mysql engine to InnoDB and charset utf8mb4
	- Put unreachable federated connections in the archived tab of the connections list page
	- Indicate on connections page if a federated connection from another network is unavailable from the current location
	- Make authenticated oembeds optional, default to false.
	- Remove text_highlight css load from core
	- Numerous ostatus feed improvements (mastodon, gnu-social)
	- Provide hook when deleting a connection - we need this to clean up dangling PuSH subscriptions
	- Move code syntax highlighting to plugin
	- Oembed: ensure that width and height are returned as type int and not float
	- Rewrite wiki pages widget - no need for ajax on pageload, show the pages to not authenticated people.
	- Convert randprof to use chanlink_hash() instead of chanlink_url() and filter sys channels by xchan.xchan_system instead of xchan_addr != sys@%
	- Update Sabre libraries
	- Only provide "connected apps" on the settings menu if techlevel > 0.
	- Provide ability to search webpage
	- Move disapora xrd stuff to plugin
	- Deprecate server_role
	- Introduce automatic language selection for help, webpages, and wiki content
	- Provide ability to order apps in app-tray
	- Replace Markdownify library with html-to-markdown library

	Bugfixes
	- Fix channel manager and nav channel select visible if in a delegate session
	- Fix wrong wiki pages in the sidebar github issue #841
	- Fix a bug where if multiple channels uploaded the same file to the same folder, the uploaded file would end up with an incremental number added to the filename for each upload even if the file did not exist yet in the channels folder
	- Fix privacy groups not syncing across clones properly (github issue #832)
	- Fix an issue where the ability to use a portion of the message-id to display a message wasn't honoured in all cases
	- Fix minor issues in the bs-default schema
	- Fix backward compatibility for album links generated in earlier times before the ambiguity of photo album names was solved (github issue #827)
	- Fix photo item comments not ported to bs4
	- Fix incorrect album link
	- Fix incorrect follow url in webfinger
	- Fix regression - allow position attributes in oembedable zcards
	- Fix affinitiy slider settings were being updated on any submit of of settings/featured
	- Fix minor weirdness in zot finger results after deleting a clone from a channel that was on a site which was previously migrated from http to https and still had the old hubloc
	- Fix cloud headers already sent issue
	- Partial fix for failure to sync photos - appears to be memory exhaustion and dependent on filesize although an unrelated issue was found with directory creation during file sync (we didn't check ownership when looking for duplicates)
	- Fix github issue #810
	- Don't allow negative age in directory listings
	- Fix allow setting a default schema for the hub (github issue #797) and allow selecting of focus (hubzilla default) schema if a default is set
	- Fix update_r1189() for mysql and postgres

	Plugins/Addon
	Diaspora: Rewrite the addon to implemented Diaspora Version 2 federation protocol
	GNU-Social: GNU-Social and Mastodon compatibility was greatly increased and a "fetch conversations" feature added to try and locate missing contextual references and maintain conversations in posts from those networks
	Rename statistics_json to statistics and implement nodeinfo v2
	New authchoose addon to restrict what sites you authenticate to by default
	Cdav addon moved to core
	head_add_css() needs a preceding '/' to find files in the addons dir
	New addon code syntax highlighting (moved from core to addon)
	Pubsubhubbub: specify a minimum number of records - otherwise it defaults to zero


Hubzilla 2.4 (2017-05-31)
	- Silence php warning during install
	- Implemented switch statement logic in Comanche layout parser
	- Don't allow html in plugin comment blocks
	- Handle Mastodon urls in markdown/bbcode conversion
	- Get rid of edit activities
	- Collapse sysapps if viewing a remote channel
	- Various Doxygen fixes
	- Update SimplePie library to version 1.5
	- Add check for PHP zip extension during install
	- Add unit tests for AccessList class
	- Authenticate onepoll so we can receive private posts/comments in zotfeed
	- Various postgres fixes
	- Some work on preparing clientside e2ee
	- Allow to set a default channel for the rare case where a default channel is not selected but channels actually exist
	- Support reverse magic-auth in oembed requests
	- Improved handling of Mastodon feeds
	- When template "none" is used in a webpage layout, then the contents of the page should be the sole output, with no other code before or after the page element content
	- If there is no site record, site_dead won't be 0, in a left join it will in fact be null. As long as it isn't 1, we should attempt delivery
	- Order wiki pages by creation date
	- Backend infrastructure for channel protection password; which will be used to optionally encrypt export files and resolve channel/identity ownership/hijacking disputes
	- Don't allow any null fields in notify creation
	- Webfinger cleanup
	- Envelope privacy
	- We do not parse the body in discover_by_url(), so no need to preserve iframes in SimplePie
	- Correct the mastodon "boost" (aka 'share') author attribution by checking for share activities and pulling the original author info from the activity:object
	- Only log zot_refresh content if json decode was successful
	- Revisit the import_author_zot algorithm yet again. There was one bug that we weren't returning necessary information in the first SQL query - and performance/loading problem if one tries to refresh a dead site
	- Import_author_xchan - since we rarely refresh zot-info for non-connections, force a cache reload once a week to catch things like profile photo updates and location changes
	- Create site_store_lowlevel() to initialise data structures for the site table
	- Change hook for perm_is_allowed while retaining backwards compatibility
	- import_author_zot() - check for both hubloc and xchan entries. This should catch and repair entries which were subject to transient storage failures
	- Import authors from any unrecognised network as network 'unknown'
	- Crypto update - default is now aes-256-ctr
	- Get rid of get_app()
	- Add 'author_is_pmable()' function with plugin hooks to control whether or not to display a 'send mail' link in the thread author menu
	- Provide platform specific install script
	- Allow for project specific DB updates
	- Get rid of davguest
	- Move db_upgrade to zlib
	- Add CSRF protection for import and import_items
	- Add some documentation for import functions
	- Do not allow creating two wikis with the same name
	- Update textcomplete library to version 1.8.0
	- Create channel_store_lowlevel()
	- Allow setting the system email name/address/reply
	- Use the same host macro for sender address as for reply_to address
	- Use the relevant attach directory/path for photo albums instead of an album basename which may not be unique. Created an 'ellipsify()' function to shorten long names and keep the beginning and end intact
	- Simplify the message signing spaghetti
	- Class MarkdownSoap to safely store markdown by purifying and preserving (escaped) what may be unsafe code in codeblocks. The stored item needs to be unescaped just prior to calling the markdown-to-html processor
	- Remove the unimplemented upload limit site settings from UI
	- Cleanup code_allowed
	- Move widgets to standalone classes
	- Upgrade redbasic to bootstrap 4
	- Updated HTML Purifier from 4.6.0 to 4.9.2 with better PHP7 compatibility
	- Remove redundant and non-functional/broken check for successfully cloned channel record which was left over from an earlier method of creating the table; which was deprecated a few months back
	- Update bshaffer/oauth2-server-php library
	- Add unit test for purify_html()

	Bugfixes
	- Fix website export tool creating invalid zip file - issue #790
	- Fix files not synced correctly - issue #769
	- Fix empty ACL should not result in no ACL when uploading a file
	- Fix cover photo was unintentionally disabled when block_public in effect
	- Fix markdown autolinks - issue 752
	- Fix connectDefaultShare generated js function, though it isn't obvious if we still use it
	- Fix a couple more instances where we were still calling mail() directly for site critical messages
	- Fix when clicking a notification to view a private mail message, actually view that message instead of the most recent
	- Fix group by item query

	Plugins/Addon
	- smileybutton: do not load emojis
	- pubsubhubbub: fixes associated with recent compatibility feed mods
	- gnusoc: mastodon follow_activity compatibility issues
	- gnusoc: add profile photo to feed meta
	- gnusoc: add salmon link information to the public feed when GNU-Social is enabled
	- chess: fix bugs when deleting games

Hubzilla 2.2 (2017-03-08)
	- Provide version compatibility check for themes (minversion, maxversion)
	- Use chanlink_hash() instead of chanlink_url() where appropriate
	- Use head_add_link() for feed discovery
	- Provide HTTP header parser which honours continuation lines
	- Numerous doco improvements
	- Implement virtual privacy groups from restricted profile access list
	- Implement permission roles
	- Implement app-tray
	- Default to manual conversation updates
	- Implement channel move for all server roles
	- Implement nav login modal
	- Rename bb2diaspora.php to markdown.php
	- Remove obsolete module 'match'
	- Move firefox social api configuration to plugin
	- Move rsd service to twitter_api plugin
	- Add build_pagehead hook
	- Move opensearch to plugins
	- Move dreamhost hack to plugin
	- Add wiki permissions
	- Introduce hubloc_store_lowlevel() and xchan_store_lowlevel()
	- Move diaspora account import to the diaspora plugin
	- Allow export of single data sets instead of always exporting everything we know about in channel export
	- Queue optimisations for sites that have lingered in the queue for more than a couple of days
	- Add affinity slider tool settings for min and max defaults in settings/featured
	- Provide lowlevel xchan storage function to ensure that all non-null rows are initialised
	- Implement native wiki
	- Block well-known from oembed
	- Implement observer.language bbcode and observer.language comanche conditional
	- Implement daemon_addon hook to let plugins create custom background processes
	- Implement profile vcards
	- Implement connection vcards
	- Implement 'click to call' in address book
	- Default cover photo
	- Remove fullscreen functionality in photo album view
	- Update fontawesome lib to version 4.7.0
	- Implement a menu to select a section to be open by default in connedit
	- Improve comanche conditionals
	- Add enclosures and categories to atom feed parsing
	- Allow the atom_entry hook to change the results
	- Set 'adjust for viewer timezone' as the default for new events
	- Allow event creation in other timezones than your own
	- Update fullcalendar lib to version 3.1
	- Move api version call back to core
	- Create first webpage as 'home' if none exist
	- Show webpages link to visitors if a 'home' page exists

	Bugfixes
	- Fix schema not saved if session theme != selected theme and schema select display issue
	- Fix no acl not detected in post_activity_item()
	- Fix find_folder_hash_by_path() was not safe against multiple attach structures with the same filename but in different directories
	- Fix don't search on empty filename - we shouldn't find it. The reason why this change is being made is because we actually did find it due to a development glitch
	- Fix several places where head_add_(css|js) functions have been used incorrectly.
	- Fix webpage import tool
	- Fix numerous bugs with the addon repo management GUI
	- Fix attach_delete() to remove photo resources even if the attach table row wasn't found
	- Fix choking if photo_factory() returns null
	- Fix embedimage if an albumname contains quotes
	- Fix chat member list when one or more members are connected via access tokens
	- Fix issue #636 - some localised (e.g. Italian) strings have single quotes which throw JS errors when used in single quoted template constructs
	- Fix issues #629 and #635 - edited post arriving from downstream source was not being rejected
	- Fix peoplefind widget not honouring directory option settings
	- Fix issue with HTML in code blocks in markdown in wiki
	- Fix issue with post signatures if posted from api and logged in locally with a different identity

	Plugins/Addon
	- Add experimental webmention plugin
	- NSFW: Use button instead of text link
	- Diaspora: gracefully handle multiple photos per post
	- Diaspora: change profile photo permission call
	- Logrotate: don't throw an error if another server process renamed the logfile before we got to it
	- Chess: the channel owner must be one of the players, so only require selecting one connection for an opponent
	- Move firefox social api configuration to plugin from core
	- Move rsd service to twitter_api plugin from core
	- Move opensearch to plugins from core
	- Move dreamhost hack to plugin from
	- Move diaspora account import to addon from core
	- Reflect hubloc store changes in plugins
	- Reflect xchan store changes in plugins
	- Rendezvous: Fixed marker creation bug
	- Rendezvous: Center on marker if specified in URL, and update browser address bar with shareable link when selecting markers on the map
	- Rendezvous: Set default value of 0 for priximity alert when making new markers
	- Move gitwiki to plugins from core which has been replaced by native wiki
	- Openclipatar: reflect changes to files and photos which were unified in core some time ago
	- Reintroduce gnusocial plugin after security/functionality review
	- Twitter_api: hubzilla core issue 638 - unsupported message-id field not available in all twitter api functions
	- Superblock: update to reflect core changes
	- Rendezvous: implement static marker proximity alert
	- Phpmailer: security update

Hubzilla 2.0 (2016-12-23)
	- Deprecate bb_iframe
	- Note widget: resize the textarea to reveal full content
	- Implement fixed left aside
	- Implement lockview for wikilist
	- Simplify wikilist widget
	- Router error reporting
	- Setup changes to check for shell_exec and exec functions
	- Extensible permissions upgrade handling for channels with custom permission roles
	- Allow plugins to cancel item_store() and item_store_update()
	- ZOT version 1.2 provides negotiation of cryptographic algorithms
	- Provide a fresh new look and cleaner layout and more relevant information to siteinfo
	- Introduce highlight bbcode [hl]
	- Implement wiki mimetypes markdown or bbcode
	- Doc pages refactoring
	- Update webpages and wiki context help
	- Make a git commit when a new wiki page is created
	- Prev-next navigation for mod_connedit to ease bulk connection edits
	- Move the remote user homebutton to the user menu
	- Do not render maps/locations for Diaspora destinations
	- Provide 'per-page' caching for is_matrix_url() results to reduce duplicate queries
	- Don't send notification for posts/comments on old conversations that were refetched after having expired
	- Numerous wiki UI improvements
	- Move twitter api to addon
	- Cleanup and re-organise the voting and attendance buttons
	- Reorganise emoticons
	- Collapse navbar-collapse-1 if avatar menu is clicked.
	- New display setting: static page update as opposed to live update
	- Command line administrative channel connect utility
	- Modernise chanview
	- Implement edit activities to share post/comment edits with protocols which do not support them (e.g. Diaspora)
	- Wiki export
	- Numerous postgres compatibility fixes
	- Remove requirement that imported profile photos be in the profile photos album
	- Change event behaviour - share by default.
	- Use PDO database driver exclusively (deprecate drivers that are separately maintained)
	- Zot API re-write and extended

	Bugfixes
	- Fix z_fetch_url() incorrect variable
	- Fix SQL error with app categories
	- Fix do not show revert buttons if we do not have write perms
	- Fix dropdown positions
	- Fix do not increase opacity to more than 1
	- Fix clone sync missing for some item delete operations
	- Fix embed-image for fullscreen mode
	- Fix attach_list_files()
	- Fix full screen for embedded videos
	- Fix the forum widget for forums with custom perms
	- Fix issue #607 parens not recognised inside urls
	- Fix pubsites: don't list dead sites
	- Fix issue #596 silence headers already sent warning
	- Fix missing plugins in zot-info
	- Fix notification issue
	- Fix issue #594 like of thing appears as profile owner like
	- Fix export issue
	- Fix checklist bbcode - only turn [] and [x] into checkboxes if it is found inside a checklist
	- Fix wiki permissions issues
	- Fix public calendar leaks connection information (birthdays) when view_contacts is not allowed
	- Fix attach_rename: flaw in duplicate filename detection resulted in filename(1)(1)(1).ext
	- Fix a fatal error with incorrect DB object access
	- Provide /locs link on settings page if there is more than one hubloc for this channnel *that isn't deleted*.
	- Fix issue #577 if connecting to a channel that is already pending, undo the pending and set connect permissions accordingly
	- Fix issue #575, when 'nofinish' is set on an event, invalid date was generated/stored
	- Fix bbcode event formatting issue
	- Fix zot_finger from navbar people search looping
	- Fix fromStandalonePermission()

	Plugins
	- GNU Social: removed from addons for security reasons - it might be re-implemented once it is properly reviewed
	- Diaspora: missing item author when diaspora public comment received from relay
	- Superblock: refactoring
	- New addon: tripleaes for pro
	- Cdav:  "if not exists" only supported starting with postgresql v. 9.5 debian stable has 9.4
	- Rendezvous: added markers and members export tool at /rendezvous/[group_id]/export/{markers,members}
	- Twitter: move twitter api to addon
	- New addon: b2tbtn (back to top button)
	- Diaspora: import public diaspora messages to sys if applicable
	- Diaspora: try and handle singletons better and simplify the associated notifier decisions
	- Rendezvous: add proximity alert feature to members to issue notification when member is within a specified distance.
	- New addon: diaspora_reconnect to refriend diaspora/friendica connections from a clone or channel move
	- Diaspora: change the logic for deciding between upstream and downstream message flow for notifier plugins
	- Rendezvous: prompt member to share their location by activating the GPS control using a tooltip and pulsing visibility
	- statistics_json: fix nodeinfo
	- Rendezvous: restored the lost gps-icon.png and corrected the OpenStreetMap tile server URL to avoid insecure content warnings
	- Rendezvous: use observer name if available
	- std_embeds: missing backslash
	- Diaspora: postgres fixes issue #31
	- Rendezvous: added marker list with centering buttons and popup open.
	- Rendezvous: added control to see list of members sharing their location, with buttons to pan the map to center them
	- Diaspora: system level diaspora toggle
	- Rendezvous: added control that displays members.
	- Diaspora: rename diaspora2bb() to markdown_to_bb() in core
	- Hubwall: remove illegal unescaped angle chars
	- Rendezvous: Add control to delete member if not updated in over 14 minutes

Hubzilla 1.14 (2016-10-13)
	- New hook bbcode_filter
	- Unify the various mail sending instance to enotify::send() and z_mail()
	- Provide ability for admin to change account password
	- Replace deprecated Sabre functions
	- Add plugin hook for 'get_profile_photo'
	- Convert NULL_DATE to a legal date for compatibility with MySQL strict mode
	- Allow a site to over-ride the help table-of-contents files
	- Autoscroll to target post/comment when in single-thread mode
	- Indicator for own response verb activity
	- Add server role documentation
	- Pro: remove 'Additional Features' link for techlevel 0
	- Upgrade fullcalendar library to version 3
	- Whitelist button tag in htmlpurifier
	- Upgrade justifiedGallery library to version 3.6.3
	- Pubsites improvements
	- Upgrade foundation library to version 6.2.3
	- Ability to move photos to another album
	- Submodules for settings page
	- Submodules for admin page
	- Remove chatroom suggestions
	- Revamped and improved theme select backend
	- Theme preview
	- Implement techlevels for pro server role
	- BBcode checklist
	- Improve save to folder modal dialog
	- Case insensitive sort apps
	- Add authors to post distribution
	- Redirect to plugin page after enabling to show configuration settings if applicable
	- Move allowed email domains to admin->security page
	- Display text around the searched query in documentation search
	- Comanche observer conditionals
	- Remove ratings
	- Context help for /connedit
	- Provide configurable sidebar table-of-contents indexes for different levels of the help hierarchy
	- Comanche conditionals
	- Cover photo enhancements (does not disappear after initial scrolldown)
	- Website import/export
	- Server roles (basic, standard and pro)

	Bugfixes
	- Fix connected time not shown on ajax loaded connections
	- API issues
	- Fix readmore.js collapsing on scrolldirection change in some mobile browsers
	- Personalize Server Emails
	- Audio player doesn't automatically show for m4a files
	- Fix ajax page update with /channel?f=&mid=hash
	- Angle bracket characters in DB password not recognised
	- Regression: files/photos were not synchronising to channel clones properly
	- Missing categories in preview mode
	- attach_store() sql issue
	- Rename id share_container to distr_container - share_container seem to be blacklisted in various security browser plugins
	- Add 'map' extension to files served natively by nginx without using the project controller
	- Zot discovery wasn't returning in all cases (after discovering zot)
	- Do not show hidden channels in /randprof
	- Numerous postgres fixes
	- Illegal offset errors in include/conversation:status_editor() when no permissions array is passed
	- Patch foundation-6.2.3 to work with jquery-3.1
	- Custom/expert permissions bug
	- Mail: return array instead of object
	- Don't send purge_all notification to self
	- Saved search: tags and connection searches weren't being saved
	- Do not allow PERMS_PUBLIC as a choice for writable permission limits
	- Force cover photos as well as profile photos to be public. As a side effect 'thing' photos will also be considered public
	- Make lock switching actually work with multiple acl forms
	- Create smarty dir before any templates can be initialised
	- Fix aconfig
	- Broken doc search
	- Public forum check with custom/expert permissions

	Plugins
	- Standard Embed: update to convert old corporate bbcodes
	- Cdav security: fix rw permission check
	- Cdav: add partial support for recurring events in the browser client (editing/creating is not implemented)
	- New plugin phpmailer: use phpmailer class instead of php's built-in mail() function
	- Diaspora: third party on other network comment issue
	- Diaspora: comment fix (hubzilla originated comment with plugin activated by comment author not making it to Diaspora)
	- Cdav: provide calendar list view
	- Diaspora: allow comments on public diaspora posts which were imported by subscribing to public tags.
	- Wppost: add blog_id parameter for WordPress MU sites such as WordPress.com
	- Wppost: don't log the password in normal mode
	- Hubwall: provide choice of sender addresses, the real admin email, postmaster, or noreply.
	- Chord: General cleanup of chord app
	- Chord: Update chord binary for modern linux systems
	- Start grouping addons by server_role

Hubzilla 1.12
	- extensible permissions so you can create a new permission rule such as "can write to my wiki" or "can see me naked".
	- guest access tokens can do anything you let them, including create posts and administer your channel
	- ACLs can be set on files and directories prior to creation.
	- ACL tool can now be used in multiple forms within a page
	- a myriad of new drag/drop features (drop files or photos into /cloud or a post, or drop link into a post or comment, etc.)
	- multiple file uploads
	- improvements to website import
	- UNO replaced with extensible server roles
	- select bbcode elements (such as baseurl) supported in wiki pages
	- addons:
    	Diaspora Protocol - additional updates to maintain compatibility with 0.6.0.0 and stop showing likes as wall-to-wall comments (except when the liker does not have any Diaspora protocol ability)
    	Cdav - continued improvements to the web UI
    	Pong - the classic pong game
    	Dfedfix - removed, no longer needed
    	Openid - moved from core to addon
	- bugfixes
    	unable to delete privacy groups
    	weird display interaction with code blocks and escaped base64 content containing 8 - O
    	workaround WordPress oembeds which are almost completely javascript and therefore filtered
    	restrict oembed cache url to 254 chars to avoid spurious failures caching google map urls
    	"Page not found" appeared twice
    	birthdays weren't being automatically added to event calendar
    	some iCal entries had malformed descriptions

Hubzilla 1.10
	Wiki:
		Lots of enhanced functionality, usability improvements, and bugfixes from v1.8
		Turned into an optional feature (default on) but disabled in UNO
	Sync:
		Items are now relocated (links patched) when syncing to clones
	Access Tokens:
		New feature - allows members to create access controlled guest logins and create/share 'dropbox' style links to protected resources.
	UI:
		Use icons instead of iconic text constructs
		Only request geolocation permission when creating a post, not on page load
		provide 'redeliver' option on Delivery Report page for when things really stuff up
		CalDAV/CardDAV management pages with heaps of functionality
	Lib:
		z_fetch_url() updated to accept different request methods and request bodies
		item_store(), item_store_update() now return the stored items
		vcard microformat changes to remain spec compliant
		microformat meta tags added to post/comments
		AbConfig API changed to use channel_id rather than channel_hash, which was overly complicated to use
		SuperCurl class added to provide a framework for re-use of obscure CURL options
		Allow absolute links to CSS/JS files on CDN
		Add Let'sEncrypt intermediate cert to lib in case you forget to install it on the server
		Update fullcalendar and jquery (3.1) libs
		Update sabre/dav to 3.2.0
		Change content export from a month/year system to begin/end
		Use streaming I/O for delivering large photos
		Allow multiple App description files in a single plugin directory
		optimise a couple of troublesome/inefficient SQL queries
		avoid sending clone sync packets to dead sites
	Resolved Issues:
		channel home page not providing content to clients with javascript disabled
		Replace '@' obfuscation with html entity rather than the unicode look-alike
		xchan_query() failing to detect duplicates, resulting in inefficient queries
		issues with 'use existing photo' for profile photo
		layout editor "list all layouts" returned empty
		oembed - better detect video file URLs so they aren't loaded into memory.
		handcrafted bbcode tables could end up with way too much whitespace due to CRLF translation
		refresh permissions whitescreen in 1.8
		force immediate profile photo update on local site
		regression: 'save bookmarks' post action missing

Hubzilla 1.8
	Administration:
		Cleanup and resolve some edge cases with addon repository manager
		Provide sort field and direction on all fields of account and channel administration tables
		Rename 'user' administration to account administration to reflect its true purpose
		'safemode' tool to quickly disable and re-enable addons during a hypothetical upgrade crisis
	Security:
		Edited comments to private posts could lose their privacy settings under some circumstances
		Provide zot-finger signatures to prevent a possible but rare exploit involving DNS spoofing and phishing
	ACL selections:
		Various improvements to the ACL editor to further simplify the concepts and make it more intuitive
	Chat:
		Notifications of chatroom activity using standard browser notification interfaces.
	Themes:
		Allow a theme:schema string to represent a valid theme name. This fixes issues with setting schemas on site themes.
	Pubsites:
		Show server role (identify UNO or basic sites as opposed to hubzilla pro) and link to statistics
	Documentation:
		Clarify privacy rights of commenters w/r/t conversation owners, as this policy is network dependent.
	Wiki (Git backed):
		Brand new feature. We'll call it experimental until it has undergone a bit more testing.
	Account Cloning:
		Regression on clone channel creation created a new channel name each time.
		New issue (fixed) with directory creation on cloned file content
	Content Rendering:
		Add inline code (in addition to the existing code blocks) to BBcode
		Add emoji reactions
		Add emojis as extended smilies with auto-complete support
		Emoji added as feature so it can be enabled/disabled and locked
		Ability to configure the standard reactions available on a site basis
		Disable 'convenience' ajax autoload on pgdn key, as it could lead to premature memory exhaustion
	Photos:
		Change album sort ordering, allow widgets and plugins to define other orderings
	Apps:
		Synchronise app list with changes to system apps
		Preserve existing app categories on app updates/edits
		Regression: fixed translated system app names
	Architecture:
		Provide autoloaded class files and libraries for plugins.
		Further refactoring of session driver to sort out some cookie anomolies
		Experimental PDO database driver
		Creation of Daemon Master class and port all daemon (background task) interfaces to use it
		Create separate class for each of 'Cron', 'Cron daily', and 'Cron weekly'.
		Always run a Cron maintenance task if not run in the last four hours
		Refactor the template classes
		Refactor the ConversationItem mess into ThreadItem and ThreadStream
		Refactor Apps, Enotify, and Chat library code
		Refactor the various Config libraries (Config, PConfig, XConfig, AConfig, AbConfig, and IConfig)
		Created WebServer class for top level
		Remove mcrypt dependencies (deprecated in PHP 7.1)
		Remove all reserved (including merely 'not recommended') words as DB table column names
		Provide mutex lock on DB logging to prevent recursion under rare failure modes.
	Bugfixes:
		Remove db_close function on page end - not needed and will not work with persistent DB connections.
		Undefined ref_session_write
		Some session functions needed to be static to work with CalDAV/CardDAV
		CLI interface: argc and argv were reversed
		HTML entities double encoded in edited titles
		Prevent delivering to empty recipients
		Sabre library setting some security headers for SAML after we've emitted HTML content
		Always initialise miniApp (caused obscure warning message if not set)
		Block 'sys' channels from being 'random profile' candidates
		DB update failed email could be sent in the wrong language under rare circumstances
		Openid remote authentication used incorrect namespace
		URL attached to profile "things" was not linked, always showing the "thing" manage page
		New connection wasn't added to default privacy group when "auto-accept" was enabled
		Regression: iconfig sharing wasn't working properly
	Plugins:
		CalDAV/CardDAV plugin provided
		Issue sending Diaspora 'like' activities from sources that did not propagate the DCV
		Allow 'superblock' to work across API calls from third party clients
		statistics.json: use 'zot' as protocol
		Issues fixed during testing of ability to follow Diaspora tags
		Parse issue with Diaspora reshare content
		Chess: moved to main repo, ported to 1.8

Hubzilla 1.6
	Cleanup and standardise the interfaces to the "jot" editor
	Router re-written to support calling class object methods as controllers
	All existing modules (160+) re-written as object classes
	Plugin hook interface adapted to call static class methods
	Context help improved dramatically with content for the most accessed pages.
	Reverted a compatibility change to support GNU-social events. We copied their feed format and their feed format is wrong (XML namespace collisions).
	Provide a querystring attribute to CSS/JS resources to avoid caching issues when our code changes (which is often).
	Fix javascript detection and allow either positive or negative detection.
	Refactor the plugin hook registration procedure, provide 'unregister all' ability.
	Fix RSD (Real Simple Discovery) which has been broken for some time.
	Update smarty library to 3.1.29
	Update jquery.textcomplete to 1.3.4
	Update font-awesome to 4.6.1
	Update SabreDAV to 3.0 (PHP version requirements prevent us from pushing it further at this time)
	Help text added to cmdline utilities config and pconfig
	Reworking of the database logging facility to avoid the rare but troublesome recursion when the log facility needed to query the DB internally to obtain config parameters.
	Implement singleton delivery (emulate nomadic identity to singleton networks and services)
	Fix empty album name in photo activities when photo is stored in top level folder.
	Allow engineering units to be used in service class data size restrictions (400M, 1G, etc.)
	Lots of work on bbcode auto-completion
	Admin interface provided to manage external resource repositories
 	Oembed security reworked. Now all sources are filtered by default unless blocked.
	Remove the date-string version and use only STD_VERSION
	Add categories and categorisation filtering and the ability to edit all apps (including system apps) for a given channel
	Ensure the ability to translate names of all system apps (except those provided in addons)
	Provide ability to add categories to content from channel sources
	Lots of work on the presentation of the ACL widget to enhance usability and intuitiveness
	Allow somebody to follow a channel from a pasted redress containing a Unicode lookalike of the @ sign.
	Add conditional syntax to Comanche (if/then/else)
	Convert Comanche to an object class
	Removed IE6 compatibility code
	Explicitly close DB on shutdown/exit instead of allowing it to close naturally
	Allowed delayed publish of webpages
	Show current repository versions of master and dev on admin page and warn if your installation has fallen behind master
	Provide some extra security checks to import data and files to prevent mischief
	Block CalDAV/CardDAV namespace reserved words from being used as a channel nickname/redress since Sabre is somewhat inflexible in this regard
	Plugins:
		Diaspora
			markdown translator work needed to eradicate the Diaspora Comment Virus.
			upgrade all inbound paths with the most recent protocol changes (several of these)
			convert 'diaspora_meta' (Diaspora Comment Virus) to iconfig and eradicate from sites with Diaspora disabled
			implement social relay and allow following tags
			upgrade statistics.json to NodeInfo. Currently hubzilla sites are tagged as 'redmatrix' because the NodeInfo schema lacks extensibility and project names are used to designate protocol compatibility rather than protocol names.
		Std-embeds
			New addon to allow a handful of corporate providers to run unfiltered embed code (youtube, vimeo, soundcloud)
		Various:
			upgrade font-awesome icons and adapt a few addons to Objects and the new hook interface and new controller interface

Hubzilla 1.4
	[This list may appear brief, but encompasses a huge amount of re-writing and re-factoring
	of the internal code structure to gain long-term performance and stability and provide a standard
	interface to alternate protocol federation plugins which were made possible by the UNO configuration.
	UNO is a configuration of hubzilla introduced in 1.3 with reduced complexity and which provides
	improved protocol federation potential to other networks by virtue of removing nomadic identity
	(which is not possible to model or work around using other network protocols).]

	Implement channel move operation for UNO configuration
	Remove bookmark references in UNO (which has no bookmarks by default)
	UI cleanup profiles/chat/manage
	Refactor webfinger probes and salmon backend for GNU-social federation
	SECURITY: DAV authentication exploit
	Context help added
	More help pages
	Provide 'posts only' feed
	Refactor App to remove globals
	Refactor Session to remove globals
	provide a fullscreen mode for selected modules and functions
	Regression: some addon routes broken
	fix "remember me"
	Autocomplete tool extended to bbcode/comanche
	Clone sync of file/photo updates
	system rename (e.g. http to https or DNS name change) missing some connection photos
	calendar module not blocked to public whhen block_public enabled
	Use timeago.js in reshare content so that timestamps will be correct on federated reshares
	Rework detection of JavaScript to avoid reload penalty under normal operation
	Changed primary directory server to a hubzilla server
	Plugins:
		Diaspora - switch to alternate XML parser to avoid storing compound objects
		GNU-Social - Huge amounts of work, federation somewhat working now, several issues remain
		Friendica - Initial federation work (not yet published)

Hubzilla 1.3
	Admin Security configuration page created which consolidates several previously hidden settings:
		Communication white/black lists
		Channel white/black lists
		OEmbed white/black lists
	Admin Profile Fields page created which manages the availability and order of standard profile fields and allows new fields to be created/managed
	"Poke" module reworked - page UI updated and "poke basic" setting introduced which limits the available poke "verbs".
	"Mood" module UI reworked
	"profile_photo" module UI reworked
	"cover_photo" module UI reworked
	"new_channel" module UI reworked
	"register" module UI reworked
	"pubsites" module UI reworked
	item-meta ("iconfig") created which implements arbitrary storage for item metadata for plugins
	abook-meta ("abconfig") created which implements arbitrary storage for connection metadata for plugins
	"Strict transport security header" made optional as it conflicts with some existing Apache/nginx configurations
	"Hubzilla UNO" (Hubzilla with radically simplified and locked site settings) implemented as an install configuration.
	.well-known directory conflict worked out to support LetsEncrypt cert ownership checks without disrupting webfinger and other internal uses of .well-known
	Lots of work on 'zcards' which are self-contained HTML representations of a channel including cover photos, profile photos, and some text information
	Long standing bug uncovered which failed to properly restrict the lower time limit for public feed requests
	A number of fixes to "readmore" to fix page jumping
	Bugfix: persons other than the channel owner who have permission to upload photos to a channel could not do so if the js_upload plugin/addon was enabled
	Siteinfo incorrectly identifying secondary directory servers
	Allow admin to set and lock features when UNO is configured
	Atom feeds: alter how events are formatted to be compatible with GNU-social
	Allow guest/visitor access to view personal calendar
	Moved several more classes to "composer format" and provided an autoloader.
	Bugfix: require existing password to change password
	Bugfix: allow relative_date() to be translated to Polish which has more than two plural forms.
	Plugin API: add "requires" keyword to module header to indicate dependent addons
	ActivityStreams improvements and cleanup: photo and file activities
	UI cleanup for editing profile when multiple profiles enabled
	Removed the "markdown" feature as there are numerous issues and no maintainer.
	Provide "footer" bbcode to ease theming of post footer content
	Bugfix: install issues caused by composer code refactor and typo in postgres load file
	Plugins:
		keepout - "block public on steroids"
		pubsubhubbub - provides PuSH support to Atom feeds, required for GNU-social federation
		GNUsocial protocol - under development
		Diaspora protocol - some work to ease migration to the new signing format
		Diaspost - disabled; numerous issues and no maintainer
		smileybutton - theme work and fixed compatibility with other jot-tools plugins


Hubzilla 1.2
	Provide extra HTTP security headers (several of them).
	Allow a site to disable delivery reports if disk space is limited
	Regression: Wrong theme when viewing single post as non-member
	Some Diaspora profile photos use relative URLs - force absolute
	Add locked features to siteinfo report to aid remote debugging
	Provide version compatibility checking to plugins (minversion, maxversion, and minphpversion)
	Account config storage
	Provide optional integrated registration and channel create form
	cli utility for managing addons
	issue with sharing photo "items"
	cover photo manager: upload, crop, and store
	cover photo widget created
	rework the connections list page and provide a few management features there
	fixed issue with Comanche layout definitions loaded by plugins
	provide ability to separate delivery functions from item_store() and item_store_update() - some forum messages were being redelivered when cloned.
	call build_sync_packet() on pdledit changes
	Abstract the project name and version so these can be customised or removed
	Allow hiding the ratings links on a per-site basis
	db_type not present in international setup templates - was unable to choose postgres.
	item_photo_menu logically divided into a) actions on the post, b) actions related to the author
	bug: default channel not reset to 0 when last channel removed
	create widget containing only the contact block
	regression: public forums granted send stream permissions to connections
	workaround Firefox's refusal to honour disabling autocomplete of passwords
	regression: photo's uploaded to a channel by a guest (with file write permissions) not saved correctly.
	provide mechanisms for custom .well-known handlers (needed for LetsEncrypt ownership verification)
	proc_run modified to use exec() instead of proc_open() - causing issues on some PHP installations
	remote delegation failure under a specific set of circumstances which we were finally able to duplicate
	Delegation section of Channel Manager was missing names and contained useless notification icons.
	Change "expire" channel setting to show system limit if there is one.
	Regression: provide a one-click ignore of pending connection
	Config to control directory keyword generation on client and server.
	"Collections" renamed to "Privacy Groups", documentation improved
	widget_item - allow use of page title instead of message id
	Add site black/white list checking to all .well-known services
	reduce incidents of screen jumping when "showmore" is activated
	add oembed provider for photos

	Addons:

	CSS theming of pageheader plugin
	xmpp addon ported from Friendica
	Diaspora private mail issues after the third reply
	Occasional issue with Diaspora connection requests
	Add notification email to Diaspora PMs
	Allow anonymising platform and version for statistics
	msgfooter addon created
	removed embedly plugin
	sync clones after superblock addition
	"keepout" plugin created


Hubzilla 1.1

	Rewrote and simplified the Queue manager and delivery system
	Rewrote and simplified the outer layers of the Zot protocol
	Use a standard version numbering scheme in addition to the snapshot tags
	Provide a channel blacklist for blocking channels with abusive or illegal content at the hub level
	Make the black/white lists pluggable
	Update template library
	Support for letsencrypt certs in various places
	Cleanup of login and register pages
	Better error responses for permission denied on channel file repositories
	Disabled the public stream by default for new installs (can be enabled if desired)
	Cleanup of API authentication and rework the old OAuth1 stuff
	Add API "status with media" support compatible with Twitter and conflicting method for GNU-social
	Rework photo ActivityStreams objects to align better with ActivityStreams producers/consumers
	Several minor API fixes to work better with AndStatus client
	Invitation only site - experimental support added, needs more work
	Fix delivery loop condition due to corrupted data which resulted in recursive upstream delivery
	Provide more support for external (git) widget collections.
	Extend the Queue API to 3rd-party network addons which have experienced downtime recently.
	Regression: Inherited permissions were not explicitly set
	Regression: "Xyz posted on your wall" notification sent when creating webpages at another channel
	Regression: Custom permissions not pre-populated on channel creation with named role.
	Provide "Public" string when a post can be made public, instead of "visible to default audience"
	Allow hub admin to specify a default role type for the first channel created, reducing complexity
	Ability for a hub admin to set feature defaults and lock them, reducing complexity
	Change default expiration of delivery reports to 10 days to accomodate sites with reduced resources
	Addons/Plugins:
		Pageheader addon ported from Friendica
		Hubwall (allow admin to send email to all accounts on this hub) created
		GNU-social - queueing added
		Diaspora - fixes for various failures to update profile photos, updates to queue API
		Cross Domain Authenticated Chess (Andrew Manning's repository)

	And... the normal "lots of bugs fixed, translations updated, and documentation improved"