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
|
uBlock Origin 1.18.4 - Feb. 5, 2019
-----------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.18.4>`__.
|
| **Closed as fixed:**
|
- `Cosmetic filtering not enforced at uBO launch on already opened web
pages <https://github.com/uBlockOrigin/uBlock-issues/issues/403>`__
- `Compute URL of sublists as relative to URL of parent
list <https://github.com/NanoAdblocker/NanoCore/issues/239>`__
- `Fix partyness evaluation for cases of base domain-less
hostnames <https://github.com/uBlockOrigin/uBlock-issues/issues/402>`__
- `Fix Promise chain of WASM module load
operations <https://github.com/gorhill/uBlock/commit/69c87c511748c4d7b39bd2a6cb2bba0dc356dc78>`__
|
| `Commits history since
1.18.2 <https://github.com/gorhill/uBlock/compare/1.18.2...1.18.4>`__.
uBlock Origin 1.18.3.102 - Feb. 2, 2019
---------------------------------------
[no description]
uBlock Origin 1.18.3.101 - Feb. 1, 2019
---------------------------------------
[no description]
uBlock Origin 1.18.3.100 - Feb. 1, 2019
---------------------------------------
[no description]
uBlock Origin 1.18.3.2 - Jan. 29, 2019
--------------------------------------
[no description]
uBlock Origin 1.18.3.1 - Jan. 28, 2019
--------------------------------------
[no description]
uBlock Origin 1.18.3.0 - Jan. 27, 2019
--------------------------------------
[no description]
uBlock Origin 1.18.2 - Jan. 26, 2019
------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.18.2>`__.
|
|
| **Fixed**
|
- `Improve ``nowebrtc.js``
scriptlet <https://github.com/uBlockOrigin/uAssets/commit/ce215ed7134238c11fd28f8b62143fbf21f5eb6c>`__
|
| `Commits history since
1.18.0 <https://github.com/gorhill/uBlock/compare/1.18.0...1.18.2>`__.
uBlock Origin 1.18.1.100 - Jan. 26, 2019
----------------------------------------
[no description]
uBlock Origin 1.18.0 - Jan. 24, 2019
------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.18.0>`__.
|
| **New**
|
| Refactoring of the logger code for performance/efficiency purpose -- the
logger output has been decoupled from the
`DOM <https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model>`__.
|
| Additionally, these features were added to the logger:
|
- configuration settings
- multiple criteria can be used for when to discard logger entries
- ability to hide some columns
- export-to-clipboard
- the position and size of the logger-as-a-popup window will be remembered
- a pause button to stop the logger from taking in new events
- a new built-in expressions picker to filter the logger output
- show the hostname of the document which caused the resource to be fetched
- show the 3rd-partyness of a resource relative to both the page and the
document fetching the resource
- new visual hint to denote tab-less network requests
- a popup panel button linked to the tab selector
|
| Documentation will be updated eventually to account for those changes.
|
|
| **Closed as fixed**
|
`Does not block JavaScript in embedded YouTube video on specific
webpage <https://github.com/uBlockOrigin/uBlock-issues/issues/345>`__
| `Move early blocking of requests out of experimental status on
Firefox <https://github.com/gorhill/uBlock/issues/1327>`__
- Made easy by Firefox's webext API, as early blocking is `natively
supported <https://bugzilla.mozilla.org/show_bug.cgi?id=1447551>`__.
`Prevent sites from disabling mouse events for element
picker <https://github.com/uBlockOrigin/uBlock-issues/issues/380>`__
`Add an option to remove the URL comments in My
filters <https://github.com/uBlockOrigin/uBlock-issues/issues/372>`__
(originally declined in https://github.com/gorhill/uBlock/issues/93)
`Layout problem in the strict blocking warning page on Firefox for
Android <https://github.com/uBlockOrigin/uBlock-issues/issues/348>`__
`uBO does not unhide nodes no longer matching procedural cosmetic
filters <https://github.com/uBlockOrigin/uBlock-issues/issues/341>`__
`Static extended filtering: fix empty hostnames not being
detected/handled <https://github.com/uBlockOrigin/uAssets/commit/912af3284df65184bed3a486811c490936e990b9#commitcomment-31608689>`__
`Cosmetic filter "##" or "##tag," same as "##*" in element picker
only <https://github.com/uBlockOrigin/uBlock-issues/issues/331>`__
```!#include`` directive should insert sub-content at directive
point <https://github.com/uBlockOrigin/uBlock-issues/issues/329>`__
`3rd-gen HNTrie <https://github.com/uBlockOrigin/uBlock-issues/issues/326>`__
`Duplicate specific cosmetic filters not discarded when "Ignore generic" is
enabled <https://github.com/uBlockOrigin/uBlock-issues/issues/325>`__
`$generichide is still applied even when website is
whitelisted <https://github.com/uBlockOrigin/uBlock-issues/issues/314>`__
`Change "IDN: ABPindo" to "IDN, MYS:
ABPindo" <https://github.com/uBlockOrigin/uBlock-issues/issues/312>`__
`Changing the button for the NOR
list <https://github.com/uBlockOrigin/uBlock-issues/issues/311>`__
`Filter list view - ugly/messy line breaking/wrapping at minus sign
char <https://github.com/uBlockOrigin/uBlock-issues/issues/292>`__
`Add X to close overlay
box <https://github.com/uBlockOrigin/uBlock-issues/issues/280>`__
`No scripting switch number not fully
displayed <https://github.com/uBlockOrigin/uBlock-issues/issues/279>`__
`Remember and reuse last position/size of the logger popup
window <https://github.com/uBlockOrigin/uBlock-issues/issues/256>`__
`Logger filter lookup overlay should scroll when filter too
long <https://github.com/uBlockOrigin/uBlock-issues/issues/225>`__
`Element picker not taking into account ``srcset`` when blocking an image =
non-working network
filter <https://github.com/uBlockOrigin/uBlock-issues/issues/40>`__
`Internationalize CodeMirror's hard-coded tooltips in the "My rules"
pane <https://github.com/gorhill/uBlock/issues/3708>`__
`Remember the cursor position in 'My Filters'
tab <https://github.com/gorhill/uBlock/issues/3706>`__
`Deprecate pseudo operator ``:if(...)``, ``:if-not(...)``, reuse ``:has(...)``,
``:not(...)`` <https://github.com/gorhill/uBlock/issues/3683>`__
`Improve representation of behind-the-scene network requests in the
logger <https://github.com/gorhill/uBlock/issues/3654>`__
`The element picker window is almost
invisible <https://github.com/gorhill/uBlock/issues/3449>`__
`Duplicated entry when creating dynamic filter in
logger <https://github.com/gorhill/uBlock/issues/3401>`__
`Logger loads blocked content in
preview <https://github.com/gorhill/uBlock/issues/1999>`__
`Apply stricter rejection of usage of url() in :style
rules <https://github.com/gorhill/uBlock/commit/1de821d99b4d2fa9756fdd451823e0886cef3534>`__
`Normalize Adguard's plain cosmetic filters disguised as style-based
filters <https://github.com/gorhill/uBlock/commit/e2d1f50dd80f605f745442df18e7eeda8800b6a5>`__
`Change DOM surveyor to time-based processing logic (from
chunk-based) <https://github.com/gorhill/uBlock/commit/08261e3c15cd252a0b4ab68d0ddd4af880a55cd8>`__
`Improve creation of rows in dynamic filtering pane of popup
panel <https://github.com/gorhill/uBlock/commit/09fb3549f354d7d8d64272c87c4f89f8c4244316>`__
`Avoid redundant DOM attributes in dynamic filtering
pane <https://github.com/gorhill/uBlock/commit/87cf95c04b22fd3348c07f01b5328fb8bc98fcb2>`__
`Code review related to performance in main content
script <https://github.com/gorhill/uBlock/commit/f35dff2c9d9e2ee55c53b32767698ba46ca3c39b>`__\ `Commits
history since
1.17.4 <https://github.com/gorhill/uBlock/compare/1.17.4...1.18.0>`__.
uBlock Origin 1.17.7.103 - Jan. 22, 2019
----------------------------------------
[no description]
uBlock Origin 1.17.7.102 - Jan. 20, 2019
----------------------------------------
[no description]
uBlock Origin 1.17.7.101 - Jan. 19, 2019
----------------------------------------
[no description]
uBlock Origin 1.17.7.100 - Jan. 18, 2019
----------------------------------------
[no description]
uBlock Origin 1.17.7.8 - Jan. 17, 2019
--------------------------------------
[no description]
uBlock Origin 1.17.7.7 - Jan. 16, 2019
--------------------------------------
[no description]
uBlock Origin 1.17.7.6 - Jan. 15, 2019
--------------------------------------
[no description]
uBlock Origin 1.17.7.5 - Jan. 14, 2019
--------------------------------------
[no description]
uBlock Origin 1.17.7.4 - Jan. 14, 2019
--------------------------------------
[no description]
uBlock Origin 1.17.7.3 - Jan. 12, 2019
--------------------------------------
[no description]
uBlock Origin 1.17.7.2 - Jan. 8, 2019
-------------------------------------
[no description]
uBlock Origin 1.17.7.1 - Jan. 1, 2019
-------------------------------------
[no description]
uBlock Origin 1.17.7.0 - Jan. 1, 2019
-------------------------------------
[no description]
uBlock Origin 1.17.5.104 - Dec. 29, 2018
----------------------------------------
[no description]
uBlock Origin 1.17.5.103 - Dec. 28, 2018
----------------------------------------
[no description]
uBlock Origin 1.17.5.102 - Dec. 27, 2018
----------------------------------------
[no description]
uBlock Origin 1.17.5.101 - Dec. 26, 2018
----------------------------------------
[no description]
uBlock Origin 1.17.5.100 - Dec. 24, 2018
----------------------------------------
[no description]
uBlock Origin 1.17.5.17 - Dec. 23, 2018
---------------------------------------
[no description]
uBlock Origin 1.17.5.16 - Dec. 22, 2018
---------------------------------------
[no description]
uBlock Origin 1.17.5.15 - Dec. 21, 2018
---------------------------------------
[no description]
uBlock Origin 1.17.5.14 - Dec. 21, 2018
---------------------------------------
[no description]
uBlock Origin 1.17.5.13 - Dec. 19, 2018
---------------------------------------
[no description]
uBlock Origin 1.17.5.12 - Dec. 19, 2018
---------------------------------------
[no description]
uBlock Origin 1.17.5.11 - Dec. 18, 2018
---------------------------------------
[no description]
uBlock Origin 1.17.5.10 - Dec. 16, 2018
---------------------------------------
[no description]
uBlock Origin 1.17.5.9 - Dec. 16, 2018
--------------------------------------
[no description]
uBlock Origin 1.17.5.8 - Dec. 15, 2018
--------------------------------------
[no description]
uBlock Origin 1.17.5.7 - Dec. 14, 2018
--------------------------------------
[no description]
uBlock Origin 1.17.5.6 - Dec. 14, 2018
--------------------------------------
[no description]
uBlock Origin 1.17.5.5 - Dec. 14, 2018
--------------------------------------
[no description]
uBlock Origin 1.17.5.4 - Dec. 13, 2018
--------------------------------------
[no description]
uBlock Origin 1.17.5.3 - Dec. 8, 2018
-------------------------------------
[no description]
uBlock Origin 1.17.5.2 - Dec. 7, 2018
-------------------------------------
[no description]
uBlock Origin 1.17.5.1 - Dec. 6, 2018
-------------------------------------
[no description]
uBlock Origin 1.17.5.0 - Dec. 6, 2018
-------------------------------------
[no description]
uBlock Origin 1.17.4 - Dec. 1, 2018
-----------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.17.4>`__.
|
|
| **Notes**
|
| I will keep bringing in WebAssembly ("wasm") versions of key portions of code
where it is found to be beneficial. In this release, a `wasm
version <https://github.com/gorhill/uBlock/blob/2189f020dfb5d2d8728c17ead85e6f7905e3e984/src/js/wasm/hntrie.wat#L46>`__
of the `algorithm used to lookup a hostname from a set of
hostnames <https://github.com/gorhill/uBlock/blob/2189f020dfb5d2d8728c17ead85e6f7905e3e984/src/js/hntrie.js#L101>`__
has been created.
|
|
| **Closed as fixed**
|
- `When pasting multiple lines into the rules editor they are joined together
in a single
line <https://github.com/uBlockOrigin/uMatrix-issues/issues/64>`__
- ```##.ad.super`` from EasyList is causing ``##.ad`` to not be
applied <https://github.com/uBlockOrigin/uBlock-issues/issues/313>`__
- `Fix missing trailing asterisk in filter representation in the
logger <https://github.com/uBlockOrigin/uAssets/issues/4083#issuecomment-436914727>`__
- `No context menu entry for data:\* iframes
(banners) <https://github.com/uBlockOrigin/uBlock-issues/issues/283>`__
- `UI Search field and it's search counter interfere with each other /
unreadable <https://github.com/uBlockOrigin/uBlock-issues/issues/264>`__
- `"Update now" button flashes for 1 second before changing the count
numbers <https://github.com/uBlockOrigin/uBlock-issues/issues/248>`__
- `Improve usability of temporarily disabling
strict-blocking <https://github.com/uBlockOrigin/uBlock-issues/issues/77>`__
- `HTML filter exception doesn't
work <https://github.com/uBlockOrigin/uBlock-issues/issues/6>`__
- `$badfilter does not work on a CSP
filter <https://github.com/gorhill/uBlock/issues/3371>`__
|
|
| `Commits history since
1.17.2 <https://github.com/gorhill/uBlock/compare/1.17.2...1.17.4>`__.
uBlock Origin 1.17.3.105 - Nov. 26, 2018
----------------------------------------
[no description]
uBlock Origin 1.17.3.104 - Nov. 25, 2018
----------------------------------------
[no description]
uBlock Origin 1.17.3.103 - Nov. 24, 2018
----------------------------------------
[no description]
uBlock Origin 1.17.3.102 - Nov. 18, 2018
----------------------------------------
[no description]
uBlock Origin 1.17.3.101 - Nov. 18, 2018
----------------------------------------
[no description]
uBlock Origin 1.17.3.100 - Nov. 17, 2018
----------------------------------------
[no description]
uBlock Origin 1.17.3.8 - Nov. 8, 2018
-------------------------------------
[no description]
uBlock Origin 1.17.3.7 - Nov. 8, 2018
-------------------------------------
[no description]
uBlock Origin 1.17.3.6 - Nov. 6, 2018
-------------------------------------
[no description]
uBlock Origin 1.17.3.5 - Nov. 3, 2018
-------------------------------------
[no description]
uBlock Origin 1.17.3.4 - Oct. 29, 2018
--------------------------------------
[no description]
uBlock Origin 1.17.3.3 - Oct. 28, 2018
--------------------------------------
[no description]
uBlock Origin 1.17.3.2 - Oct. 24, 2018
--------------------------------------
[no description]
uBlock Origin 1.17.3.1 - Oct. 24, 2018
--------------------------------------
[no description]
uBlock Origin 1.17.3.0 - Oct. 23, 2018
--------------------------------------
[no description]
uBlock Origin 1.17.2 - Oct. 18, 2018
------------------------------------
| No change since 1.17.0: this release is for the benefit of Firefox users, who
will be able to take advantage of an `up to date ``resources.txt``
asset <https://github.com/uBlockOrigin/uAssets/commits/master/filters/resources.txt>`__.
This new version is published on AMO only.
|
| `Commit history since
1.17.0 <https://github.com/gorhill/uBlock/compare/1.17.0...1.17.2>`__.
uBlock Origin 1.17.1.2 - Oct. 18, 2018
--------------------------------------
[no description]
uBlock Origin 1.17.1.1 - Sept. 29, 2018
---------------------------------------
[no description]
uBlock Origin 1.17.1.0 - Sept. 26, 2018
---------------------------------------
[no description]
uBlock Origin 1.17.0 - Sept. 23, 2018
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.17.0>`__.
|
|
| **New**
|
|
| **Per-site JavaScript master switch**
|
| A new per-site switch has been added to the popup panel, which acts as a
master switch for JavaScript for the current site.
|
| This master switch has precedence over dynamic filtering rules and static
filters related to script resources.
|
| Furthermore, when JavaScript is disabled through this master switch,
``noscript`` tags will be honoured on a page (as opposed to when just using
filters/rules to block script resources).
|
| As with some other per-site switches, the default state of per-site
JavaScript master switch can be set in the *Settings* pane, thus allowing to
disable JavaScript everywhere by default, and enable on a per-site basis.
|
| JavaScript master switch rules appear as ``no-scripting: [hostname] true``
entries in the *My rules* pane.
|
|
| **Temporarily toggle per-site switches**
|
| From now on, changes to the state of `per-site
switches <https://github.com/gorhill/uBlock/wiki/Per-site-switches>`__ will
be deemed temporary **if and only if** the `overview
panel <https://github.com/gorhill/uBlock/wiki/Quick-guide:-popup-user-interface#the-overview-panel>`__
is visible, regardless of whether "advanced user" mode is enabled.
|
| When the overview panel is not visible, toggling a per-site switch will cause
the change to be permanent (i.e. same behavior as before).
|
| However, when the overview panel is visible, toggling a per-site switch will
cause the change to be temporary. In such case, there will be an eraser and a
padlock icon in the overview pane, which can be used to revert or persist the
current state of all the per-site switches.
|
|
| **Cache storage compression**
|
| A new advanced setting: ``cacheStorageCompression``, default to ``true``.
When ``true``, uBO will lz4-compress data before storing it in its cache
storage in supported platforms. Currently, the only supported platform is
Firefox/Firefox for Android.
|
| The cache storage is used for storing downloaded filter lists, compiled
filter lists, selfies. See
https://github.com/uBlockOrigin/uBlock-issues/issues/141 for related
discussion.
|
|
| **Closed as fixed**
|
|
| **Firefox**
|
- `Error loading from the disk cache pages obtained by blocking remote
fonts <https://github.com/uBlockOrigin/uBlock-issues/issues/229>`__
- `"Storage used" in settings tab says "?
bytes" <https://github.com/gorhill/uBlock/issues/2812>`__
- It's really a workaround, consider the reported figure to be an
on-the-low-side estimate
- `Element picker mode in Firefox CSS failure on
``denuvo.com`` <https://github.com/gorhill/uBlock/issues/2240>`__
|
| **Firefox for Android**
|
- `Cannot open Logger. Element picker/zapper does not switch
tabs. <https://github.com/uBlockOrigin/uBlock-issues/issues/168>`__
|
| **Core**
|
- `Use +js name for
logging <https://github.com/uBlockOrigin/uBlock-issues/issues/209>`__
- `No reverse-lookup for logged HTML
filter <https://github.com/uBlockOrigin/uBlock-issues/issues/208>`__
- `EasyList Thailand added to stock filter
lists <https://github.com/uBlockOrigin/uBlock-issues/issues/197>`__
- `Various spelling
fixes <https://github.com/uBlockOrigin/uBlock-issues/issues/191>`__
- `“manualUpdateAssetFetchPeriod” setting doesn't save the
changes <https://github.com/NanoAdblocker/NanoCore/issues/202>`__
- `False positive detection of popups is
broken <https://github.com/gorhill/uBlock/commit/aeb19c952b782eec31e5de8da676b89edd08efdb>`__
- `"uBlock — Assets" should be changed to "uBlock₀ — Assets" in its
tab <https://github.com/uBlockOrigin/uBlock-issues/issues/184>`__
- `Minor JS errors in
dashboard <https://github.com/uBlockOrigin/uBlock-issues/issues/171>`__
- `Code exception in contentscript.js (vAPI.setTimeout) when opening Chrome
last session tabs that are partly
cached <https://github.com/uBlockOrigin/uBlock-issues/issues/167>`__
- `Element picker mishandles identifiers with
backslashes <https://github.com/uBlockOrigin/uBlock-issues/issues/162>`__
- `Minor usability issue: block all
scripts <https://github.com/gorhill/uBlock/issues/3436>`__
- `Toggle option changes are always
permanent <https://github.com/gorhill/uBlock/issues/2859>`__
- `uBlock Origin doesn’t honor noscript tags when blocking
JS <https://github.com/gorhill/uBlock/issues/308>`__
|
| `Commits history since
1.16.20 <https://github.com/gorhill/uBlock/compare/1.16.20...1.17.0>`__.
uBlock Origin 1.16.21.103 - Sept. 21, 2018
------------------------------------------
[no description]
uBlock Origin 1.16.21.102 - Sept. 20, 2018
------------------------------------------
[no description]
uBlock Origin 1.16.21.101 - Sept. 18, 2018
------------------------------------------
[no description]
uBlock Origin 1.16.21.100 - Sept. 11, 2018
------------------------------------------
[no description]
uBlock Origin 1.16.21.7 - Sept. 9, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.21.6 - Sept. 9, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.21.5 - Sept. 7, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.21.4 - Sept. 4, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.21.3 - Sept. 3, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.21.2 - Sept. 1, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.21.1 - Aug. 29, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.21.0 - Aug. 27, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.20 - Aug. 27, 2018
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.16.18>`__.
|
| I decided to create an emergency fix for a bug which was spotted for uMatrix
but which also affects uBO:
| `"My rules tab hangs with cloud storage
support" <https://www.reddit.com/r/uMatrix/comments/8lc9ia/>`__
|
| If using cloud storage, there is a small probability uBO could be stuck in an
infinite loop when reading back the data from the cloud storage, something
which *may* occurs when the following conditions are reunited:
|
- You checked the setting *"Enable cloud storage support"*;
- You saved data into the cloud storage for a given pane;
- The amount (in bytes) of data that was saved into the cloud storage for that
given pane is rather high and such that the "chunkification" of that data
results in a chunk count which is a multiple of 16;
- Large amount of data is more likely for the *"My filters"* and *"My
rules"* panes.
- Sorry for the cryptic explanation, I don't know how else to describe
this.
- You open the pane in the dashboard for which the conditions above are true.
|
| If the bug is triggered, uBO could be stuck in an infinite loop in its main
process, thus preventing it from doing its job.
|
| This is not a regression, but rather a bug that has been hiding in there
since quite a long time.
|
| `Commits history since
1.16.16 <https://github.com/gorhill/uBlock/compare/1.16.16...1.16.20>`__.
uBlock Origin 1.16.18.1 - Aug. 27, 2018
---------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.16.18>`__.
|
| I decided to create an emergency fix for a bug which was spotted for uMatrix
but which also affects uBO:
| `"My rules tab hangs with cloud storage
support" <https://www.reddit.com/r/uMatrix/comments/8lc9ia/>`__
|
| If using cloud storage, there is a small probability uBO could be stuck in an
infinite loop when reading back the data from the cloud storage, something
which *may* occurs when the following conditions reunited:
|
- You checked the setting *"Enable cloud storage support"*;
- You saved data into the cloud storage for a given pane;
- The amount (in bytes) of data that was saved into the cloud storage for that
given pane is rather high and such that the "chunkification" of that data
results in a chunk count which is a multiple of 16;
- Large amount of data is more likely for the *"My filters"* and *"My
rules"* panes.
- Sorry for the cryptic explanation, I don't know how else to describe
this.
- You open the pane in the dashboard for which the conditions above are true.
|
| If the bug is triggered, uBO could be stuck in an infinite loop in its main
process, thus preventing it from doing its job.
|
| This is not a regression, but rather a bug that has been hiding in there
since quite a long time.
|
| `Commits history since
1.16.16 <https://github.com/gorhill/uBlock/compare/1.16.16...1.16.18>`__.
uBlock Origin 1.16.18 - Aug. 27, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.17.10 - Aug. 25, 2018
----------------------------------------
[no description]
uBlock Origin 1.16.17.9 - Aug. 22, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.17.8 - Aug. 21, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.17.7 - Aug. 15, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.17.6 - Aug. 15, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.17.5 - Aug. 14, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.17.4 - Aug. 14, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.17.3 - Aug. 14, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.16 - Aug. 13, 2018
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.16.16>`__.
|
|
| **New**
|
| A new pane has been added in the dashboard for the Firefox version of uBO:
*Shortcuts*. The purpose is to be able to assign keyboard shortcuts to some
common operations.
|
|
| **Closed as fixed:**
|
- `Settings cannot be reset on Beta and Nightly
Firefox <https://github.com/uBlockOrigin/uBlock-issues/issues/144>`__
- `Add a pane in the dashboard (Firefox only) to assign keyboard
shortcuts <https://github.com/uBlockOrigin/uBlock-issues/issues/106>`__
- The new pane will be available for Firefox 60+ only.
- `Element picker cannot be toggled before a site is fully
loaded <https://github.com/uBlockOrigin/uBlock-issues/issues/135>`__
- `Logger: generic hiding rule recorded as active when $generichide in
effect <https://github.com/gorhill/uBlock/issues/2763>`__
- `Filter for dynamically added class is not
logged <https://github.com/gorhill/uBlock/issues/2356>`__
- `Logger: Popup which shows the used filter is
empty <https://github.com/gorhill/uBlock/issues/2179>`__
|
| `Commits history since
1.16.14 <https://github.com/gorhill/uBlock/compare/1.16.14...1.16.16>`__.
uBlock Origin 1.16.17.2 - Aug. 13, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.17.1 - Aug. 11, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.17.0 - Aug. 6, 2018
--------------------------------------
[no description]
uBlock Origin 1.16.15.100 - Aug. 2, 2018
----------------------------------------
[no description]
uBlock Origin 1.16.15.6 - July 26, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.15.5 - July 23, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.15.4 - July 22, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.15.3 - July 21, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.15.2 - July 20, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.15.1 - July 20, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.15.0 - July 19, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.14 - July 17, 2018
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.16.14>`__.
|
| **Closed as fixed:**
|
- Race condition at filter lists load time potentially breaking highly-generic
cosmetic filters
(https://github.com/gorhill/uBlock/commit/dcd98f4efa7876ae5d37bd0588082f6aecd08a30)
- `Cursor jumps to next matched item when adding char to
search <https://github.com/uBlockOrigin/uBlock-issues/issues/118>`__\ <
- `Inifinite update attempts with "AdGuard Experimental
filter" <https://github.com/AdguardTeam/FiltersRegistry/issues/82>`__
- `Odd sorting in popup domains list when domains have same SLD but different
TLD <https://github.com/uBlockOrigin/uBlock-issues/issues/105>`__
- `Cosmetic rules not logged for embedded YouTube
videos <https://github.com/uBlockOrigin/uBlock-issues/issues/102>`__
|
| `Commits history since
1.16.12 <https://github.com/gorhill/uBlock/compare/1.16.12...1.16.14>`__.
uBlock Origin 1.16.13.101 - July 16, 2018
-----------------------------------------
[no description]
uBlock Origin 1.16.13.100 - July 10, 2018
-----------------------------------------
[no description]
uBlock Origin 1.16.13.2 - July 6, 2018
--------------------------------------
[no description]
uBlock Origin 1.16.13.1 - July 5, 2018
--------------------------------------
[no description]
uBlock Origin 1.16.13.0 - July 4, 2018
--------------------------------------
[no description]
uBlock Origin 1.16.12 - June 29, 2018
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.16.12>`__.
|
| **Closed as fixed:**
|
- `CSS pseudo element:
-webkit-scrollbar <https://github.com/uBlockOrigin/uBlock-issues/issues/89>`__
- ```badfilter`` + matching duplicate user filter created from picker or
logger may rarely cause a js
exception <https://github.com/uBlockOrigin/uBlock-issues/issues/84>`__
|
| `Commits history since
1.16.10 <https://github.com/gorhill/uBlock/compare/1.16.10...1.16.12>`__.
uBlock Origin 1.16.11.102 - June 26, 2018
-----------------------------------------
[no description]
uBlock Origin 1.16.11.101 - June 24, 2018
-----------------------------------------
[no description]
uBlock Origin 1.16.11.100 - June 14, 2018
-----------------------------------------
[no description]
uBlock Origin 1.16.10 - June 13, 2018
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.16.10>`__.
|
| **Closed as fixed:**
|
- `HTML filters occasionally lost
effectiveness <https://github.com/uBlockOrigin/uBlock-issues/issues/42>`__
- `Round hour up to nearest
day <https://github.com/gorhill/uBlock/pull/3723>`__
|
| `Commits history since
1.16.8 <https://github.com/gorhill/uBlock/compare/1.16.8...1.16.10>`__.
uBlock Origin 1.16.9.100 - June 4, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.9.5 - June 3, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.9.4 - June 1, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.9b3 - June 1, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.9b2 - May 31, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.9b1 - May 28, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.9b0 - May 25, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.8 - May 25, 2018
-----------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.16.8>`__.
|
| No change to uBO itself.
|
| The only change is in `uBO's
assets <https://github.com/uBlockOrigin/uAssets>`__ and publishing a new
version of uBO package is to ensure all users get a new version of the
neutered script from ``googletagservices.com/gpt.js`` -- see `commit
2bc97541b3b9 <https://github.com/uBlockOrigin/uAssets/commit/2bc97541b3b9a9380b3ce8bd2242375925df293c>`__.
|
| `Commits history since
1.16.6 <https://github.com/gorhill/uBlock/compare/1.16.6...1.16.8>`__.
uBlock Origin 1.16.7b4 - May 20, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.7b3 - May 20, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.7b2 - May 18, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.7b1 - May 17, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.7b0 - May 16, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.6 - May 15, 2018
-----------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.16.6>`__.
|
| **Closed as fixed**
|
- Release versions of uBO will no longer support logger-in-the-sidebar: `by
design Firefox opens the sidebar with new installation of
uBO <https://bugzilla.mozilla.org/show_bug.cgi?id=1459007>`__ and this is
not a desireable behavior for uBO
- Dev builds will still support the logger-in-the-sidebar feature.
- I may bring it back depending on the resolution of `bug
1460910 <https://bugzilla.mozilla.org/show_bug.cgi?id=1460910>`__
- `uBO webext doesn't fill entire panel
space <https://github.com/gorhill/uBlock/issues/2809>`__
- `uBO element picker &
Stylus <https://github.com/ghacksuserjs/ghacks-user.js/issues/412>`__
|
| `Commits history since
1.16.4 <https://github.com/gorhill/uBlock/compare/1.16.4...1.16.6>`__.
uBlock Origin 1.16.5rc1 - May 14, 2018
--------------------------------------
[no description]
uBlock Origin 1.16.5rc0 - May 10, 2018
--------------------------------------
[no description]
uBlock Origin 1.16.5b4 - May 8, 2018
------------------------------------
[no description]
uBlock Origin 1.16.5b3 - May 8, 2018
------------------------------------
[no description]
uBlock Origin 1.16.5b2 - May 7, 2018
------------------------------------
[no description]
uBlock Origin 1.16.5b1 - May 6, 2018
------------------------------------
[no description]
uBlock Origin 1.16.5b0 - May 4, 2018
------------------------------------
[no description]
uBlock Origin 1.16.4 - May 3, 2018
----------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.16.4>`__.
|
| **Closed as fixed:**
- "Ignore generic cosmetic filters" not checked as expected with a new
installation [Firefox for Android]
- `Reported by a Reddit
user <https://www.reddit.com/r/firefox/comments/8a5e0e/if_you_find_firefox_for_android_slow_disable/dy7q6w2/>`__,
fixed with `this
commit <https://github.com/gorhill/uBlock/commit/efe68e0f9cc6c106c3618406427aae8bd5e2bf86>`__
- Pull request from @Rob--W: `Clear return value of vapi.js content
script <https://github.com/gorhill/uBlock/pull/3721>`__ [Performance]
- `Element picker find twice body on
website <https://github.com/uBlockOrigin/uBlock-issues/issues/17>`__
- Added a link to uBO's official issue tracker in *About* pane in the
dashboard
`Commits history since
1.16.2 <https://github.com/gorhill/uBlock/compare/1.16.2...1.16.4>`__.
uBlock Origin 1.16.3rc2 - May 2, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.3rc1 - May 2, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.3rc0 - May 1, 2018
-------------------------------------
[no description]
uBlock Origin 1.16.3b2 - April 30, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.3b1 - April 29, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.3b0 - April 28, 2018
---------------------------------------
[no description]
uBlock Origin 1.16.2 - April 25, 2018
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.16.2>`__.
|
- `Text in popup panel tooltip is out of
context <https://github.com/uBlockOrigin/uBlock-issues/issues/22>`__
- `Minor fixes to code <https://github.com/gorhill/uBlock/pull/3720>`__ (pull
request from @anvakl)
- `Insufficient escaping in patchScriptlet if streamScriptInjectFilters is
enabled <https://github.com/uBlockOrigin/uBlock-issues/issues/21>`__
- `Can't write any filters on
Android <https://github.com/uBlockOrigin/uBlock-issues/issues/7>`__
- Firewall pane's save/revert not showing up when scrolled down on small
screens
- Found this myself, `fixed without opening a formal
issue <https://github.com/gorhill/uBlock/commit/9d8e2e20fb988cea0998fb13771abbfe58ff9f4f>`__.
- `Firefox 52 ESR + spoofed user agent string fools uBO into thinking
``cssOrigin`` is
supported <https://www.reddit.com/r/uBlockOrigin/comments/8dkvqn/116_broken_loading_custom_filters_from_my_filters/>`__
[Regression]
- `Underscore in domain name breaks whitelist
editor <https://github.com/gorhill/uBlock/issues/3717>`__
- Fixed with `pull request from
@jspenguin2017 <https://github.com/gorhill/uBlock/pull/3718>`__
- `Element picker text area has unreadable
text <https://github.com/uBlockOrigin/uBlock-issues/issues/4>`__
|
| `Commits history since
1.16.0 <https://github.com/gorhill/uBlock/compare/1.16.0...1.16.2>`__.
uBlock Origin 1.16.1rc5 - April 24, 2018
----------------------------------------
[no description]
uBlock Origin 1.16.1rc4 - April 24, 2018
----------------------------------------
[no description]
uBlock Origin 1.16.1rc3 - April 23, 2018
----------------------------------------
[no description]
uBlock Origin 1.16.1rc2 - April 22, 2018
----------------------------------------
[no description]
uBlock Origin 1.16.1rc1 - April 21, 2018
----------------------------------------
[no description]
uBlock Origin 1.16.1rc0 - April 20, 2018
----------------------------------------
[no description]
uBlock Origin 1.16.0 - April 19, 2018
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.16.0>`__.
|
| **New:**
|
| Added support for pre-parsing directives to filter list compiler. This allows
filter list maintainers to create areas in a filter list which will be
compiled only if certain conditions are met (or not met). See detailed
`documentation <https://github.com/gorhill/uBlock/wiki/Static-filter-syntax#if-condition>`__.
|
| **Changes:**
|
| The "3rd-party filters" pane in the dashboard has been renamed "Filter
lists", and its look and behavior has been fine tuned.
|
| Work has been done in the dashboard to further improve rendering on small
screens.
|
| **Closed as fixed:**
|
- `Blank pages with stream filtering + content-type header
missing <https://github.com/gorhill/uBlock/issues/3667>`__
- `Cloud synchronization bar fails to
load <https://github.com/gorhill/uBlock/issues/3694>`__
|
| `Commits history since
1.15.24 <https://github.com/gorhill/uBlock/compare/1.15.24...1.16.0>`__.
uBlock Origin 1.15.25rc3 - April 14, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.25rc2 - April 12, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.25rc1 - April 12, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.25rc0 - April 12, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.25b6 - April 11, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.25b5 - April 10, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.25b4 - April 10, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.25b3 - April 9, 2018
---------------------------------------
[no description]
uBlock Origin 1.15.25b2 - April 6, 2018
---------------------------------------
[no description]
uBlock Origin 1.15.25b1 - April 5, 2018
---------------------------------------
[no description]
uBlock Origin 1.15.25b0 - April 2, 2018
---------------------------------------
[no description]
uBlock Origin 1.15.24 - April 2, 2018
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.15.24>`__.
|
| The release version of uBO on AMO is not allowed to update its
```resources.txt``
asset <https://github.com/uBlockOrigin/uAssets/blob/master/filters/resources.txt>`__.
This means the version shipped with the extension must be used. However, uBO
compile and cache the data in ``resources.txt``, and unless the cache is
invalidated, uBO will keep using a potentially out of date version of
``resources.txt``. This has been fixed by unconditionally invalidating the
cache when a new version of uBO is detected.
|
| `Commits history since
1.15.24 <https://github.com/gorhill/uBlock/compare/1.15.22...1.15.24>`__.
uBlock Origin 1.15.23b0 - April 2, 2018
---------------------------------------
[no description]
uBlock Origin 1.15.22 - April 2, 2018
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.15.22>`__.
|
|
| Regression introduced in `version
1.15.12 <https://github.com/gorhill/uBlock/releases/tag/1.15.12>`__ with the
fix to issue `#3546 <https://github.com/gorhill/uBlock/issues/3546>`__:
whitelist directives were not taken into account for filterable
behind-the-scene network requests. This is now fixed.
|
| `Commits history since
1.15.22 <https://github.com/gorhill/uBlock/compare/1.15.20...1.15.22>`__.
uBlock Origin 1.15.20 - April 2, 2018
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.15.20>`__.
|
| **Changes:**
|
| From now on,
`behind-the-scene <https://github.com/gorhill/uBlock/wiki/Behind-the-scene-network-requests>`__
network requests will be treated and filtered just like any other network
requests. The ``behind-the-scene`` scope will be un-whitelisted when
migrating to 1.15.20+ from an older version.
|
| This will not apply to current installations of the Firefox/legacy version of
uBO, as this would cause serious breakage of the browser given that uBO can
see all network requests in Firefox/legacy. However for a fresh install of
the Firefox/legacy, you will have to manually add the ``behind-the-scene``
scope as a whitelist directive in the *Whitelist* pane.
|
| Keep in mind I plan to drop support for Firefox/legacy once Firefox 60 ESR is
`released on May 7 <https://wiki.mozilla.org/RapidRelease/Calendar>`__. This
will remove a roadblock for simplifying uBO's code base in many areas.
|
| Miscellaneous:
|
- Ability to visually filter out rules in the "My rules" pane in the
dashboard.
- Firefox for Android: improved compatibility with the CodeMirror editor.
- `Responsive design <https://en.wikipedia.org/wiki/Responsive_web_design>`__
of the dashboard user interface has been improved a bit.
|
| **Closed as fixed:**
|
- `Loading a ``.javascript`` file from a WebExtension's
``web_accessible_resources`` messes with macOS file
associations <https://github.com/gorhill/uBlock/issues/3636>`__
- `2 included filterlists by directive are
doubled <https://github.com/gorhill/uBlock/issues/3624>`__
|
| `Commits history since
1.15.20 <https://github.com/gorhill/uBlock/compare/1.15.18...1.15.20>`__.
uBlock Origin 1.15.19rc6 - April 1, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.19rc5 - March 31, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.19rc4 - March 31, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.19rc3 - March 31, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.19rc2 - March 30, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.19rc1 - March 30, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.19rc0 - March 30, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.19b8 - March 28, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.19b7 - March 28, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.19b6 - March 28, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.19b5 - March 27, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.19b4 - March 27, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.19b3 - March 27, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.19b2 - March 23, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.19b1 - March 21, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.19b0 - March 18, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.18 - March 18, 2018
--------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.15.18>`__.
|
| **Closed as fixed:**
|
- `i don't can paste text with right
click <https://github.com/gorhill/uBlock/issues/3614>`__
|
| `Commits history since
1.15.18 <https://github.com/gorhill/uBlock/compare/1.15.16...1.15.18>`__.
uBlock Origin 1.15.17b1 - March 17, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.17b0 - March 17, 2018
----------------------------------------
[no description]
uBlock Origin 1.15.16 - March 17, 2018
--------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.15.16>`__.
|
| **Closed as fixed:**
|
- `"My Rules" tab is not displayed properly in FF
RTL <https://github.com/gorhill/uBlock/issues/3611>`__
|
| `Commits history since
1.15.16 <https://github.com/gorhill/uBlock/compare/1.15.14...1.15.16>`__.
uBlock Origin 1.15.15rc1 - March 16, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.15rc0 - March 16, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.14 - March 16, 2018
--------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.15.14>`__.
|
| **New**
|
| Added a new advanced setting: ``streamScriptInjectFilters``. The purpose is
to tell uBO to use stream filtering to inject scriptlets where possible.
Default to ``false``. Set to ``true`` to bring back scriptlet injection
through stream filtering as was the default before
`1.15.10 <https://github.com/gorhill/uBlock/releases/tag/1.15.10>`__. A fix
has also been added to resolve
https://github.com/uBlockOrigin/uAssets/issues/1492, which was the main
reason to disable stream filtering-based scriptlets injection in 1.15.10.
|
| Integration of `CodeMirror <http://codemirror.net/>`__ in uBO's dashboard.
Please do not open feature requests related to this.
|
| **Changes:**
|
| **Firefox/webext**
|
| From now on, the beta version will be signed and self-hosted here. The stable
version and the beta version auto-update independently of each other.
|
| **Closed as fixed:**
|
- `CSP error notification -> Conflicting with uBlock
Origin? <https://github.com/gorhill/uMatrix/issues/967>`__ [from uMatrix
issue tracker]
- `Filters starting with ``*`` and followed by an uppercase letter are
improperly parsed <https://github.com/gorhill/uBlock/issues/3581>`__
- `HTML Filter with ^ has no
effect <https://github.com/gorhill/uBlock/issues/3562>`__
- `Redirection to neutered scriptlet broken by forbidden redirection to data:
urls <https://github.com/gorhill/uBlock/issues/3474>`__
- `Behind-the-scene websocket's not being filtered by
uBO <https://github.com/gorhill/uBlock/issues/3546>`__
- `Using IPv6 address in dynamic
rule <https://github.com/gorhill/uBlock/issues/3506>`__
- `Normalize all tab id values to
integer <https://github.com/gorhill/uBlock/issues/3428>`__
- `Site CSP's prevent surrogates from being loaded. google-analytics on
Twitter for example <https://github.com/gorhill/uBlock/issues/2823>`__
- `Make Ctrl + S save changes to My
Filters <https://github.com/gorhill/uBlock/issues/1683>`__
|
| `Commits history since
1.15.10 <https://github.com/gorhill/uBlock/compare/1.15.10...1.15.14>`__.
uBlock Origin 1.15.12 - March 16, 2018
--------------------------------------
[no description]
uBlock Origin 1.15.11b15 - March 14, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.11b13 - March 12, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.11b12 - March 12, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.11b11 - March 12, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.11b10 - March 11, 2018
-----------------------------------------
[no description]
uBlock Origin 1.15.11b9 - March 5, 2018
---------------------------------------
[no description]
uBlock Origin 1.15.11b8 - March 4, 2018
---------------------------------------
[no description]
uBlock Origin 1.15.11b7 - March 4, 2018
---------------------------------------
[no description]
uBlock Origin 1.15.11b6 - March 1, 2018
---------------------------------------
[no description]
uBlock Origin 1.15.11b5 - Feb. 28, 2018
---------------------------------------
[no description]
uBlock Origin 1.15.11b4 - Feb. 27, 2018
---------------------------------------
[no description]
uBlock Origin 1.15.11b3 - Feb. 26, 2018
---------------------------------------
[no description]
uBlock Origin 1.15.11b2 - Feb. 26, 2018
---------------------------------------
[no description]
uBlock Origin 1.15.11b1 - Feb. 24, 2018
---------------------------------------
[no description]
uBlock Origin 1.15.10 - Feb. 20, 2018
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.15.10>`__.
|
| I rolled back part of the fix for
`#3069 <https://github.com/gorhill/uBlock/issues/3069>`__: scriptlets are
back to being injected using the delayed path. Using stream filtering to
inject the scriptlets raised two distinct issues lately:
|
- Cause still unknown: https://github.com/gorhill/uBlock/issues/3526
- Cause identified -- but no obvious fix possible:
https://github.com/uBlockOrigin/uAssets/issues/1492
|
| HTML filtering is still available, i.e. filters using the ``##^`` syntax are
unaffected.
|
|
| `Commits history since
1.15.10 <https://github.com/gorhill/uBlock/compare/1.15.8...1.15.10>`__.
uBlock Origin 1.15.8 - Feb. 20, 2018
------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.15.8>`__.
|
| **Emergency fix:**
|
| Fixed a minor memory leak occurring as a result of injecting scriptlets
(through ##script:inject(...) filters) using
`webRequest.filterResponseData <https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/webRequest/filterResponseData>`__.
|
| `Commits history since
1.15.8 <https://github.com/gorhill/uBlock/compare/1.15.6...1.15.8>`__.
uBlock Origin 1.15.6 - Feb. 13, 2018
------------------------------------
| **Emergency fix:**
- `Wrong encoding results in garbled characters on German
site <https://github.com/gorhill/uBlock/issues/3507>`__
uBlock Origin 1.15.4 - Feb. 3, 2018
-----------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.15.4>`__.
|
| **Closed as fixed:**
|
- `Android Firefox corrupted downloads with uBlock
on <https://github.com/gorhill/uBlock/issues/3478>`__
|
| `Commits history since
1.15.4 <https://github.com/gorhill/uBlock/compare/1.15.2...1.15.4>`__.
uBlock Origin 1.15.2 - Feb. 3, 2018
-----------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.15.2>`__.
|
| No change to the code, I just updated the filter lists packaged with the
extension -- due to a `bad EasyList
filter <https://github.com/easylist/easylist/commit/d778925d637a9664286f196ddc7e6b10ea79ac9f>`__
being shipped with the previous package.
|
| `Commits history since
1.15.2 <https://github.com/gorhill/uBlock/compare/1.15.0...1.15.2>`__.
uBlock Origin 1.15.0 - Feb. 1, 2018
-----------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.15.0>`__.
|
| **New**
|
| **HTML filtering**
|
| Ability to remove DOM elements from a source document before it is parsed by
the browser. The platform must support an extension API to modify the
response body on the fly. **Currently only Firefox 57+ allows this.**
|
| The filter syntax is similar to cosmetic filtering, except that the character
``^`` is used before a valid selector to denote that the filter is to be
applied to the source data. Contrary to cosmetic filtering, with HTML
filtering the elements matching a selector are *removed* from the source.
Example:
|
``twitter .com##^meta[http-equiv="refresh"] www.google .ca##^#hplogo boards.4chan .org##^script:has-text(7c9e3a5d51cdacfc)``
|
| Note that procedural operators are supported. Procedural operators which are
senseless to use on source data will be ignored. For example, it makes no
sense to use procedural operator such ``:matches-css(...)`` for HTML
filtering.
|
| Note that HTML filtering essentially brings back support for inline script
tag filtering. I plan on deprecating the syntax ``##script:contains(...)`` in
favor of ``##^script:has-text(...)``. For the time being, uBO will
conveniently convert the old syntax to the new HTML filtering syntax.
|
| Given that HTML filters are to be applied to the source data of a document,
the best way to create such filters is to ``view-source:`` the document and
from there analyze what should be removed. Thus the element picker won't be
extended as a tool to create HTML filters.
|
| In case it's still not clear at point: this is a big deal feature.
|
**Sub-filter lists**
|
| Ability for filter list maintainers to force uBO to load extra filter lists
from within a filter list, using an ``!#include`` directive.
`Example <https://github.com/MajkiIT/polish-ads-filter/issues/4898>`__:
|
| ``!#include adblock_ublock.txt``
|
| When uBO encounters the above directive inside a filter list, it tells uBO to
load the extra filter list and append it to the current one. The main purpose
of such directive is to allow filter list maintainers to be able to make use
of uBO's extended filter syntax, without forfeiting the ABP-compatibility of
their main filter list: ABP will ignore such directive since it will be seen
as a mere comment.
|
| All the details of the new directives syntax is being fleshed out at
https://github.com/AdguardTeam/AdguardBrowserExtension/issues/917. At this
point only ``!#include`` is implemented by uBO, because it solves immediately
a current issue by simplifying the work of filter list maintainers who want
to make use of uBO's extended filter syntax.
|
| **Important:** uBO forbids sublists which are outside the directory of the
main list. Typically, filter list maintainers will just use a single file
name, as seen in the example above, in which case same-origin and same
directory is implicit.
|
| **Changes**
|
| **Logger**
|
| The logger can now be opened in a sidebar on Firefox. Just open the side bar
and "uBlock₀ -- Logger" will be available as a choice.
|
| Given this new ability, I added the following enhancements:
|
- A new entry in the tab selector: "Current tab":
- This will cause the logger to automatically filter out rows which do not
belong to the currently active tab.
- The rows related to behind-the-scene scope are now always shown.
- If you close a tab while "Current tab" is selected, the resulting void rows
will be automatically deleted.
- You can expand/collapse a single row by clicking on the time stamp cell.
|
| Given that uBO's logger is unified, being able to open the logger in a
sidebar means you could end up having multiple views opened for the logger:
only one view will work at any given time.
|
| Mind that there are minor visual issues which I have no control over:
|
- The maximum horizontal space is limited by the browser.
- If you have the logger already opened in a tab or separate window, you will
have to close these for the logger-in-a-sidebar to start working. However
some internal message events are lost in Firefox and as a result the
logger-in-a-sidebar may take over 30 seconds to start working after you
close the logger-in-a-tab or window.
- Firefox: the font size is smaller than dictated in the DOM inspector view: I
have no clue why, uBO's chosen font size is overridden by Firefox for some
reasons.
- Firefox: it's not possible to select text in the logger when it is embedded
in a sidebar.
|
| **Closed as fixed:**
|
- `Not all images blocked 'Block media elements larger than' set to
0kb <https://github.com/gorhill/uBlock/issues/3441>`__
- ```script:contains()`` does not work in
WebExtensions <https://github.com/gorhill/uBlock/issues/3255>`__
- `Evaluate using the new webRequest API to filter a response body on the
fly <https://github.com/gorhill/uBlock/issues/3069>`__
- `Ability to open the logger into the browser's
sidebar <https://github.com/gorhill/uBlock/issues/2854>`__
- `uBO's own reload button does not do a cache-invalidating
reload <https://github.com/gorhill/uBlock/issues/3408>`__
- Press <kbd>Ctrl</kbd> while clicking to force a bypass of the browser
cache.
- `manualUpdateAssetFetchPeriod=0 is
ignored <https://github.com/gorhill/uBlock/issues/3380>`__
- `Blocking meta refresh
redirects <https://github.com/gorhill/uBlock/issues/3378>`__ (works only on
Firefox 57+)
- ```script:inject`` with only negated domains cause cosmetic filtering engine
to crash <https://github.com/gorhill/uBlock/issues/3375>`__
- `Regular expression flags in procedural cosmetic
filters <https://github.com/gorhill/uBlock/issues/3372>`__
- `Some procedural filter chaining not
work? <https://github.com/gorhill/uBlock/issues/3367>`__
- `Scriplet injections are Not
Logged <https://github.com/gorhill/uBlock/issues/2877>`__
- `Scriptlet injection filters counted as cosmetic
filters <https://github.com/gorhill/uBlock/issues/2837>`__
|
| `Commits history since
1.14.24 <https://github.com/gorhill/uBlock/compare/1.14.24...1.15.0>`__.
uBlock Origin 1.14.24 - Jan. 13, 2018
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.14.24>`__.
|
| Emergency fix for `"Cannot full support Domain restrictive Inverse type
options" <https://github.com/nikrolls/uBlock-Edge/issues/101>`__: static
network filters with a mix of negated and non-negated "domain=" option were
instantiated in a way which rendered them unenforceable.
|
| Commits since 1.14.22:
- `bc782be66364 <https://github.com/gorhill/uBlock/commit/384f742c366497b6d75c4b90b57136dd55439f7d%3E384f742c3664%3C/a%3E%0A%3Cli%3E%3Ca%20href=>`__
uBlock Origin 1.14.22 - Dec. 14, 2017
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.14.22>`__.
|
| **Accepted pull requests**
|
- `Change URL for CZ/SK filters and add "sk"
lang <https://github.com/gorhill/uBlock/pull/3312>`__
|
| **Closed as fixed:**
|
- `Filter cost cumulates on endless scrolling sites (facebook) and end up
being disabled until
reload <https://github.com/gorhill/uBlock/issues/3335>`__
- `[Regression] ``domain=`` option fails to match in some rare
cases <https://github.com/gorhill/uBlock/issues/3328>`__
- `[Japanese] Seconds on the logger page not showing
issue <https://github.com/gorhill/uBlock/issues/3293>`__
|
| `Commit history between 1.14.20 and
1.14.22 <https://github.com/gorhill/uBlock/compare/1.14.20...1.14.22>`__.
uBlock Origin 1.14.20 - Nov. 29, 2017
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.14.20>`__.
|
| **Changes**
|
| The filter list *"AAK-Cont Filters For uBlock Origin"* has been removed from
stock filter lists, it is no longer maintained. See
`#3241 <https://github.com/gorhill/uBlock/issues/3241>`__. Note that uBO is
equipped to deal with anti-blockers, it's just a matter of users reporting
instances to `volunteer
maintainers <https://github.com/uBlockOrigin/uAssets/issues>`__. Everybody is
welcomed to assist in finding solutions to reported filter issues.
|
| The `DOM inspector <https://github.com/gorhill/uBlock/wiki/DOM-inspector>`__
has been improved a bit to make it more usable (see
`#407 <https://github.com/gorhill/uBlock/issues/407>`__). Some refactoring
was necessary to move forward this part, and as a result the DOM inspector is
currently not available on legacy Firefox. This will be addressed only as
time allow. Note that I still consider the DOM inspector to be work in
progress. In case you wonder, the DOM inspector is the best way to visualize
the effects of cosmetic filters on a page and to create exception cosmetic
filters.
|
| The semantic of the ``no-csp-reports`` switch has been changed from *"block
CSP reports from"* to *"block CSP reports to"*. This **does not** change the
behavior of the *"Block CSP reports"* setting. This change of semantic makes
sense, and this also removes an incompatibility with NoScript 10 (see
`#3260 <https://github.com/gorhill/uBlock/issues/3260>`__).
|
| **Accepted pull requests:**
|
- @ kasper93: `improve DOM
inspector <https://github.com/gorhill/uBlock/pull/3254>`__
- @ gwarser: `Update supportURL for POL
filters <https://github.com/gorhill/uBlock/pull/3181>`__
|
| **Closed as fixed:**
|
- `NSFW not closed popup <https://github.com/gorhill/uBlock/issues/3287>`__
- `NoScript WebExtension and its CSP
reports <https://github.com/gorhill/uBlock/issues/3260>`__
- [Regression] `Preview of CSS 'style' filters no longer
works <https://github.com/gorhill/uBlock/issues/3257>`__
- `Add Adguard Mobile ads filter to default filter
list <https://github.com/gorhill/uBlock/issues/3210>`__
- *Adguard Mobile Ads* filter list will be automatically selected with
Firefox for Android (for new installations of uBO).
- `A case that a custom RegExp rule doesn't
work <https://github.com/gorhill/uBlock/issues/3208>`__
- `$generichide filter entry appears twice in the Logger on first
load <https://github.com/gorhill/uBlock/issues/3201>`__
- `Use local image in Add-ons
Manager <https://github.com/gorhill/uBlock/issues/3196>`__
- [Performance] `RegExp uses undue amount of memory on Chromium-based
browsers <https://github.com/gorhill/uBlock/issues/3193>`__
- Reported as a core issue because the fix also benefits Firefox
performance-wise.
- `uBlock unhides hidden elements when it's
updated <https://github.com/gorhill/uBlock/issues/3185>`__
- [Regression] `:style filters incorrectly shown in
logger <https://github.com/gorhill/uBlock/issues/3159>`__
- `suspendTabsUntilReady and Violentmonkey compatibility
issue <https://github.com/gorhill/uBlock/issues/3130>`__
- `'Block element' from context menu not working in Firefox, when 0 active
filters <https://github.com/gorhill/uBlock/issues/2963>`__
- [Accessibility] `Screen reader issue, after clicking the toolbar button, the
shown up interface is not accessible with screen reader keyboard
control <https://github.com/gorhill/uBlock/issues/2072>`__
- `DOM inspector not sees <html>
element <https://github.com/gorhill/uBlock/issues/2001>`__
|
| `Commit history between 1.14.18 and
1.14.20 <https://github.com/gorhill/uBlock/compare/1.14.18...1.14.20>`__.
uBlock Origin 1.14.18 - Nov. 8, 2017
------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.14.18>`__.
|
| **Firefox WebExtensions:** Issues with uBO/webext? If so, then `read
carefully <https://github.com/gorhill/uBlock/wiki/Firefox-WebExtensions#read-carefully-if-using-ubowebext>`__
before filing any issue.
|
| **New**
|
| A new setting has been added in the *Privacy* section of the *Settings* pane
in the dashboard: "Block CSP reports". Default is un-checked. Rationale for
this new setting: `issue
#3150 <https://github.com/gorhill/uBlock/issues/3150>`__. Documentation for
this new setting: `Block CSP
reports <https://github.com/gorhill/uBlock/wiki/Dashboard:-Settings#block-csp-reports>`__.
|
| **Changes**
|
| Small improvements to the element picker on touchscreen devices:
|
- The picker dialog box is now rendered with a minimal width.
- After you pick an element, if the picker dialog box is...
- Visible...
- Swiping right will hide it.
- Not visible...
- Swiping left or touching it will un-hide it.
- Swiping right will quit element picker mode.
|
| **Closed as fixed:**
|
- `Static-filtering: $object_subrequest blocking
method <https://github.com/gorhill/uBlock/issues/3187>`__
- `uBlock doesn't work properly with "Medium Security" in Tor browser
7.0.7 <https://github.com/gorhill/uBlock/issues/3156>`__
- `Open in new tab produces 6+ 'popup' lines in
logger <https://github.com/gorhill/uBlock/issues/3165>`__
- `uBO is blocking legitimate CSP
reports <https://github.com/gorhill/uBlock/issues/3140>`__
- `Move pseudo-user stylesheets out of
``contentscript.js`` <https://github.com/gorhill/uBlock/issues/2984>`__
|
| `Commit history between 1.14.16 and
1.14.18 <https://github.com/gorhill/uBlock/compare/1.14.16...1.14.18>`__.
uBlock Origin 1.14.16 - Oct. 21, 2017
-------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.14.16>`__.
|
| **Firefox WebExtensions**
|
| Issues with uBO/webext? If so, then `read
carefully <https://github.com/gorhill/uBlock/wiki/Firefox-WebExtensions#read-carefully-if-using-ubowebext>`__
before filing any issue.
|
| **Firefox for Android 56:** I have observed that the "Options" button does
not appear in ``about:addons`` with this version of uBO (while this works
fine with Nightly, quite probably because of `bugzilla issue
1364945 <https://bugzilla.mozilla.org/show_bug.cgi?id=1364945>`__). However,
unlike with Firefox for Android 55, uBO's entry in the browser menu is
properly shown, so you can access the dashboard through the popup panel.
|
| **Closed as fixed:**
|
- `uBlock doesn't work properly with "Medium Security" in Tor browser
7.0.7 <https://github.com/gorhill/uBlock/issues/3156>`__
- `Specific $popup filters incorrectly converted to
$popunder <https://github.com/gorhill/uBlock/issues/3129>`__
- `Popup detection mistake <https://github.com/gorhill/uBlock/issues/3112>`__
- `Static filtering: left-anchor /
right-anchor <https://github.com/gorhill/uBlock/issues/3110>`__
- ```no-popups: * true`` rule
issue <https://github.com/gorhill/uBlock/issues/2277>`__
|
| `Commit history between 1.14.14 and
1.14.16 <https://github.com/gorhill/uBlock/compare/1.14.14...1.14.16>`__.
uBlock Origin 1.14.14 - Oct. 9, 2017
------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.14.14>`__.
|
| **Firefox WebExtensions**
|
| Issues with uBO/webext? If so, then `read
carefully <https://github.com/gorhill/uBlock/wiki/Firefox-WebExtensions#read-carefully-if-using-ubowebext>`__
before filing any issue.
|
| **Firefox for Android 56:** I have observed that the "Options" button does
not appear in ``about:addons`` with this version of uBO (while this works
fine with Nightly, quite probably because of `bugzilla issue
1364945 <https://bugzilla.mozilla.org/show_bug.cgi?id=1364945>`__). However,
unlike with Firefox for Android 55, uBO's entry in the browser menu is
properly shown, so you can access the dashboard through the popup panel.
|
| **Closed as fixed:**
|
- `has/if filters rejected if contains \`>\` char after recent
changes <https://github.com/gorhill/uBlock/issues/3111>`__
|
| `Commit history between 1.14.12 and
1.14.14 <https://github.com/gorhill/uBlock/compare/1.14.12...1.14.14>`__.
uBlock Origin 1.14.12 - Oct. 8, 2017
------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.14.12>`__.
|
| **Firefox WebExtensions**
|
| Issues with uBO/webext? If so, then `read
carefully <https://github.com/gorhill/uBlock/wiki/Firefox-WebExtensions#read-carefully-if-using-ubowebext>`__
before filing any issue.
|
| **Firefox for Android 56:** I have observed that the "Options" button does
not appear in ``about:addons`` with this version of uBO (while this works
fine with Nightly, quite probably because of `bugzilla issue
1364945 <https://bugzilla.mozilla.org/show_bug.cgi?id=1364945>`__). However,
unlike with Firefox for Android 55, uBO's entry in the browser menu is
properly shown, so you can access the dashboard through the popup panel.
|
| **Changes:**
|
| The filter list category *Social* has been renamed to broader *Annoyances*.
|
| Changes in selection of stock filter lists:
|
| Added:
|
- "Adguard Base Filters"
- Thanks to Adguard's @ameshkov for `going out of his way to make the list
specifically for
uBO <https://github.com/AdguardTeam/AdguardFilters/issues/5138#issuecomment-328883965>`__.
Both Adguard and uBO share some extended filter syntax, and as such uBO
users do benefit from Adguard's filter lists.
- "Adguard Spyware Filters" (in "Privacy" section)
- "Adguard Annoyances" (in "Annoyances" section)
- "Adguard Spanish/Portuguese" (see
`#3089 <https://github.com/gorhill/uBlock/issues/3089>`__)
- "VIE: ABPVN" (see https://github.com/gorhill/uBlock/pull/2600)
|
| Changed:
|
- Instruction URLs added for "RUS: RU AdList" and "CHN: CJX's EasyList Lite"
- So that users can find more about these lists and the recommendations on
how to best use them made by their respective maintainers.
- "RUS: Adguard Russian" and "CHN: CJX's EasyList Lite" will now be selected
by default for new installations.
|
| Removed:
|
- "EasyList without element hiding rules" (not very useful)
- "Reek's AAK" (no longer maintained)
- "uBlock Protector List" (it required Chrom[ium|e], uBO must be browser
vendor agnostic)
- "Fanboy Ultimate" (see
`#3061 <https://github.com/gorhill/uBlock/issues/3061>`__)
- "CHN: CJX's Annoyance" (optional list)
- "EU: Prebake" (no longer maintained)
- "KOR: Fanboy Korean" (marked as "officially unsupported")
- "RUS: BitBlock" (see
https://github.com/gorhill/uBlock/pull/3019#issuecomment-330076525)
- "VIE: Fanboy Vietnamese" (marked as "officially unsupported)
|
| For whoever has one of the removed list selected, it will be moved to the
"Custom" section (i.e. converted into an imported filter list).
|
| **Closed as fixed:**
|
- `Blocked Elements Still Showing
Placeholder <https://github.com/gorhill/uBlock/issues/3077>`__
- `Popup/popunder blocking broken after opening uBO's dashboard through popup
panel <https://github.com/gorhill/uBlock/issues/3057>`__
- `Sync is bogus with the new version of
uBlock <https://github.com/gorhill/uBlock/issues/3006>`__
- If you still have sync issues even after the fix, see if
https://github.com/gorhill/uBlock/issues/3006#issuecomment-332632925
works for you.
`Performance issue when looking up a cosmetic filter's origin in the
logger <https://github.com/gorhill/uBlock/issues/3101>`__
`Zapper and picker mode dont work on firefox
55/56 <https://github.com/gorhill/uBlock/issues/3090>`__
`Prebake - Filter Obtrusive Cookie Notices - not
updated <https://github.com/gorhill/uBlock/issues/2997>`__
`Middle clicking on a link triggers popup
rule <https://github.com/gorhill/uBlock/issues/2919>`__
`ABP new filter not working on
uBO <https://github.com/gorhill/uBlock/issues/2793>`__
`Add Anti-Adblock Killer
Continued <https://github.com/gorhill/uBlock/issues/2685>`__
`Unsupported ``genericblock`` causes supported ``generichide`` to be
ignored <https://github.com/gorhill/uBlock/issues/2283>`__
`no-remote-fonts option not working for inlined
fonts <https://github.com/gorhill/uBlock/issues/1539>`__
`Pushing to cloud storage fails silently: no hint is provided about the
failure <https://github.com/gorhill/uBlock/issues/1510>`__\ `Commit history
between 1.14.10 and
1.14.12 <https://github.com/gorhill/uBlock/compare/1.14.10...1.14.12>`__.
uBlock Origin 1.14.10 - Sept. 13, 2017
--------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.14.10>`__.
|
| **Code review-related fix:** a test was introduced in
`#2950 <https://github.com/gorhill/uBlock/issues/2950>`__, which purpose was
meant to punycode **only** if required for Firefox 52-56. Turns out the regex
used in the test was flawed and this caused the punycoding code path to be
always taken, meaning a pointless added overhead in network request handlers
for when no punycoding is needed. Fixed with
`04a41d8b <https://github.com/gorhill/uBlock/commit/04a41d8b22276c5177c14337ac2d8fe7d781140c>`__.
|
| `Commit history between 1.14.8 and
1.14.10 <https://github.com/gorhill/uBlock/compare/1.14.8...1.14.10>`__.
uBlock Origin 1.14.8 - Sept. 4, 2017
------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.14.8>`__.
|
| **Closed as fixed:**
|
- `Cosmetic filtering broken on Firefox 52
ESR <https://github.com/gorhill/uBlock/issues/2957>`__
|
| `Commit history between 1.14.6 and
1.14.8 <https://github.com/gorhill/uBlock/compare/1.14.6...1.14.8>`__.
uBlock Origin 1.14.4 - Sept. 1, 2017
------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.14.4>`__.
|
| **Closed as fixed:**
|
- `Firefox 52.2.1: uBlock suddenly disabled due to
incompatibility <https://github.com/gorhill/uBlock/issues/2945>`__
- As per popular demand, I set the minimum version to 52.0. However be
warned that some features are not available, like the privacy settings
for example.
- uBO/webext should not be used on Firefox for Android 54 and less, because
there is no way to access uBO's UI. This was fixed in Firefox for Android
55, so best is that you move to the latest stable version of Firefox for
Android.
- `A custom filter not working on uBO v1.13.11rc0 / v1.14.0, but working on
1.13.8 <https://github.com/gorhill/uBlock/issues/2938>`__ (regression from
b2e89c9e).
- I tried to find out how many filters from default filter lists were
affected but I could not find any one filter in default filter lists, or
any of the large regional lists.
|
| `Commit history between 1.14.0 and
1.14.4 <https://github.com/gorhill/uBlock/compare/1.14.0...1.14.4>`__.
uBlock Origin 1.14.0 - Aug. 30, 2017
------------------------------------
| See `release
notes <https://github.com/gorhill/uBlock/releases/tag/1.14.0>`__.
|
| **Changes**
|
| Due to the many reported issues with the webext-hybrid version of uBO, I am
pushing the pure webext version of uBO to AMO. If this causes all your custom
settings to be lost, you can recover them by following the steps outlined in
the `release notes of
1.13.10 <https://github.com/gorhill/uBlock/releases/1.13.10>`__.
|
| As required by AMO review process, the Firefox webext[-hybrid] version of uBO
will no longer fetch the latest version of
```assets/filters/resources.txt`` <https://github.com/uBlockOrigin/uAssets/blob/master/filters/resources.txt>`__
from the project's repository.
|
| The Firefox webext[-hybrid] version of uBO now uses
`indexedDB <https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API>`__
to store its cacheable assets<sup>[1]</sup>. There are positive and negative
consequences as a result. See issue #2925 for details.
|
| <sub>[1] "Cacheable assets" refer to: filter lists downloaded from remote
servers; compiled
(`pre-parsed <https://github.com/gorhill/uBlock/wiki/Launch-and-filter-lists-load-performance>`__)
filter lists; "selfie" (`kind of dated
doc <https://github.com/gorhill/uBlock/wiki/Notes-on-memory-benchmarks,-selfies>`__
but "selfie" part is still relevant).</sub>
|
| **Closed as fixed:**
|
- `Use indexedDB instead of browser.local.storage for cached
assets <https://github.com/gorhill/uBlock/issues/2925>`__
- `Fixed bad
test <https://github.com/gorhill/uBlock/commit/c31d29c2e3305f7602f90846c539ce8d2933118d>`__
(regression from fdcc951).
- `Generate better regex for hostname-anchored generic
filters <https://github.com/gorhill/uBlock/commit/b2e89c9ece38ce431560d0d7c6d0f8b02fd0760d>`__
(there are ~4,500 such filters with default filter lists).
|
|
| `Commit history between 1.13.10 and
1.14.0 <https://github.com/gorhill/uBlock/compare/1.13.10...1.14.0>`__.
|