television 0.15.6

A very fast, portable and hackable fuzzy finder for the terminal
Documentation
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
# Changelog

All notable changes to this project will be documented in this file.
<!-- ignore lint rules that are often triggered by content generated from commits / git-cliff -->
<!-- markdownlint-disable line-length no-bare-urls ul-style emphasis-style -->

## [0.15.5]https://github.com/alexpasmantier/television/releases/tag/0.15.5 - 2026-04-08

### ⛰️  Features

- [c59b35d]https://github.com/alexpasmantier/television/commit/c59b35d3cd4c6c53ed61cdaa0408aa30313bebba *(cable)* Add dnf-packages channel by @LePetitPrince-4 in [#1017]https://github.com/alexpasmantier/television/pull/1017

- [14664ba]https://github.com/alexpasmantier/television/commit/14664bac0f60d9a945a1c841de0ec3997a91e435 *(cable)* Add git-deletions channel by @Senderman in [#1013]https://github.com/alexpasmantier/television/pull/1013

- [0f78107]https://github.com/alexpasmantier/television/commit/0f78107cb129cd5bf87d4ecc67320d59ea2805b6 *(cable)* Add opencode-sessions channel by @sachin-sankar in [#1010]https://github.com/alexpasmantier/television/pull/1010

- [1a6fa1e]https://github.com/alexpasmantier/television/commit/1a6fa1e7eba82389f1ff29163829de512abca28a *(cable)* Add macOS diskutil and launchd-services channels by @delafthi in [#967]https://github.com/alexpasmantier/television/pull/967

- [65eb60d]https://github.com/alexpasmantier/television/commit/65eb60d4af6557cefb49625845bac2442f2e1b62 *(cable)* Add jujutsu (jj) channels by @delafthi in [#965]https://github.com/alexpasmantier/television/pull/965

- [0e8588d]https://github.com/alexpasmantier/television/commit/0e8588dc5ed13a93f7549a97e65a741deddf1864 *(config)* Add `git switch` to git-branch channel default shell integration triggers by @TakuSemba in [#1019]https://github.com/alexpasmantier/television/pull/1019

- [09d8a40]https://github.com/alexpasmantier/television/commit/09d8a4044332f6ded2acc36be369559535959c5a *(themes)* Add cyberdream themes by @maximilienGilet in [#975]https://github.com/alexpasmantier/television/pull/975

### 🐛 Bug Fixes

- [80c029d]https://github.com/alexpasmantier/television/commit/80c029dcc79a424660e3a9bf6cce4d7c7353da40 *(cable)* Fix channels channel by @rudenkornk in [#992]https://github.com/alexpasmantier/television/pull/992

- [dafbe9c]https://github.com/alexpasmantier/television/commit/dafbe9c05fba9eaafd726217d5cd5f39ce69e300 *(channels)* Deduplicate bash-history entries by @mslugyfw in [#1000]https://github.com/alexpasmantier/television/pull/1000

- [d5cd546]https://github.com/alexpasmantier/television/commit/d5cd546f53bb337500976d4ef77e5888ac662bbb *(tests)* Don't join drain thread in assert_exit_ok by @alexpasmantier

- [0833112]https://github.com/alexpasmantier/television/commit/0833112c235ff957d8cf90987c89b4ae4817fee3 *(tests)* Use background drain thread to avoid blocking read in assert_exit_ok by @alexpasmantier

- [975b21b]https://github.com/alexpasmantier/television/commit/975b21b86e827e1efa2a76dcc834d078e5dcc8a5 *(tests)* Use timeout-based assertions for --take-1 and list-channels tests by @alexpasmantier

- [79d91a7]https://github.com/alexpasmantier/television/commit/79d91a716efa35a90e48ceaa7cf98a1f183b9b8e *(tests)* Drain PTY output in assert_exit_ok to prevent rendering deadlock by @alexpasmantier

- [87c07ba]https://github.com/alexpasmantier/television/commit/87c07bab3abbebde5edcca63456080d13d09940b *(tests)* Add --input filter to fix flaky fd-dependent tests by @qaqland in [#981]https://github.com/alexpasmantier/television/pull/981

- [37897bd]https://github.com/alexpasmantier/television/commit/37897bddc66d768c5baf7dd3bddea82d1e85c52f *(tests)* Use --take-1 in test_cli_working_directory_override by @qaqland in [#964]https://github.com/alexpasmantier/television/pull/964

- [99e1c09]https://github.com/alexpasmantier/television/commit/99e1c095c63b029b1e01ce2b27755367ef9015d0 *(tests)* Replace unsafe env var manipulation with CommandBuilder::env by @qaqland in [#963]https://github.com/alexpasmantier/television/pull/963

- [d12a813]https://github.com/alexpasmantier/television/commit/d12a81359ac04907522b98781ef96ae7da1e2249 *(ui)* Add CJK punctuation unicode ranges to replace_non_printable by @mslugyfw in [#986]https://github.com/alexpasmantier/television/pull/986

- [f5ffcd3]https://github.com/alexpasmantier/television/commit/f5ffcd3a203d0bacfae3a18de498fc91b37bc4aa *(ui)* Reset tick counter when channel stops to ensure immediate rendering by @rucnyz in [#925]https://github.com/alexpasmantier/television/pull/925

### 📚 Documentation

- [c46f06d]https://github.com/alexpasmantier/television/commit/c46f06d4cef7624c78828add04e85beef21878f4 *(installation)* Document fd and bat dependencies by @spik3r in [#945]https://github.com/alexpasmantier/television/pull/945

- [64a8aa7]https://github.com/alexpasmantier/television/commit/64a8aa7735d1bbc93fb91d6af6773689f9054d13 *(uncategorized)* Fix incorrect Windows paths in documentation by @kellyelton in [#974]https://github.com/alexpasmantier/television/pull/974

- [1c48751]https://github.com/alexpasmantier/television/commit/1c487511ab2d346bfd21f3c25cc90e7a22dc2695 *(uncategorized)* Add windows doc note in sample mkdir by @clach04 in [#960]https://github.com/alexpasmantier/television/pull/960

### ⚙️ Miscellaneous Tasks

- [a26117d]https://github.com/alexpasmantier/television/commit/a26117dc2f12f0e4d6cebef61f8ec62449f985e2 *(uncategorized)* Release version 0.15.5



### New Contributors
* @TakuSemba made their first contribution in [#1019]https://github.com/alexpasmantier/television/pull/1019
* @LePetitPrince-4 made their first contribution in [#1017]https://github.com/alexpasmantier/television/pull/1017
* @Senderman made their first contribution in [#1013]https://github.com/alexpasmantier/television/pull/1013
* @sachin-sankar made their first contribution in [#1010]https://github.com/alexpasmantier/television/pull/1010
* @mslugyfw made their first contribution in [#1000]https://github.com/alexpasmantier/television/pull/1000
* @rudenkornk made their first contribution in [#992]https://github.com/alexpasmantier/television/pull/992
* @maximilienGilet made their first contribution in [#975]https://github.com/alexpasmantier/television/pull/975
* @kellyelton made their first contribution in [#974]https://github.com/alexpasmantier/television/pull/974
* @spik3r made their first contribution in [#945]https://github.com/alexpasmantier/television/pull/945
* @rucnyz made their first contribution in [#925]https://github.com/alexpasmantier/television/pull/925
* @clach04 made their first contribution in [#960]https://github.com/alexpasmantier/television/pull/960

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.15.4...0.15.5


## [0.15.4]https://github.com/alexpasmantier/television/releases/tag/0.15.4 - 2026-03-21

### ⛰️  Features

- [795cbe9]https://github.com/alexpasmantier/television/commit/795cbe9492c2e36ef42fd765877b88b0971d35d8 *(cable)* Add podman channels by @delafthi in [#954]https://github.com/alexpasmantier/television/pull/954

- [d6918d8]https://github.com/alexpasmantier/television/commit/d6918d842c26455b4083c43c97301363233b6221 *(cable)* Introduce tailscale-exit-node channel by @lucemans in [#950]https://github.com/alexpasmantier/television/pull/950

- [f2b68c4]https://github.com/alexpasmantier/television/commit/f2b68c4292448127601eb6982f454c318409ffa3 *(shell)* Add a proper standard shell autocomplete generation subcommand by @alexpasmantier in [#930]https://github.com/alexpasmantier/television/pull/930

### 🐛 Bug Fixes

- [c25376d]https://github.com/alexpasmantier/television/commit/c25376de998f18ed081ec2406b0ef5986a3f9372 *(config)* Bat cannot print file paths that starts with '-' on windows by @LeeSF03 in [#946]https://github.com/alexpasmantier/television/pull/946

- [6ba67b1]https://github.com/alexpasmantier/television/commit/6ba67b1c5d76dc7adb4675c482d186514be59364 *(deps)* Resolve dependabot security vulnerabilities by @alexpasmantier

- [4a56d12]https://github.com/alexpasmantier/television/commit/4a56d129b9a2788aace6764887edc526da964388 *(docs)* Escape curly braces in changelog for MDX compatibility by @alexpasmantier

- [0ee2d39]https://github.com/alexpasmantier/television/commit/0ee2d39bd26e847e611bdccf8736947ad42fbf14 *(frecency)* Persist external-action selections before execute by @lalvarezt in [#923]https://github.com/alexpasmantier/television/pull/923

- [e525063]https://github.com/alexpasmantier/television/commit/e52506350b2b4265c2ff4a66d0cc61c70d809385 *(previewer)* Prevent panic when scroll exceeds content lines length by @CodeMarco05 in [#949]https://github.com/alexpasmantier/television/pull/949

- [8f7444a]https://github.com/alexpasmantier/television/commit/8f7444a1472ab3fa4a761121d96d5400e8a78494 *(results)* Fix visual jitter when results first appear by @alexpasmantier in [#952]https://github.com/alexpasmantier/television/pull/952

- [630e537]https://github.com/alexpasmantier/television/commit/630e5371cef56194a7c53494b360b52b6d41a02b *(shell)* Support interactive mode for PowerShell on Windows by @alexpasmantier in [#932]https://github.com/alexpasmantier/television/pull/932

- [6fbfc23]https://github.com/alexpasmantier/television/commit/6fbfc23fc41a9da342679d2573b1c40792d23906 *(tests)* Use timeout-based assertions for flaky selection tests by @alexpasmantier in [#953]https://github.com/alexpasmantier/television/pull/953

- [ebac256]https://github.com/alexpasmantier/television/commit/ebac256bf8779a2c3a705488e5e5b692c535b135 *(uncategorized)* Select-1 with prefilled input by @lalvarezt in [#942]https://github.com/alexpasmantier/television/pull/942

### 🚜 Refactor

- [015495f]https://github.com/alexpasmantier/television/commit/015495f623f944f0551f2e152e42895e98cdc546 *(uncategorized)* Remove redundant install dir branch by @f440 in [#941]https://github.com/alexpasmantier/television/pull/941

### 📚 Documentation

- [c5bb97c]https://github.com/alexpasmantier/television/commit/c5bb97cabe6ea50864bc272390882db2c727c3f4 *(uncategorized)* Fix templating syntax default delimiter. by @alexpasmantier

### ⚡ Performance

- [d1e9963]https://github.com/alexpasmantier/television/commit/d1e996319aff1982ca83d6c85f9b0d09f598c113 *(uncategorized)* Wrap MergedConfig in Arc to avoid deep cloning on every render by @alexpasmantier in [#933]https://github.com/alexpasmantier/television/pull/933

### ⚙️ Miscellaneous Tasks

- [33d84a5]https://github.com/alexpasmantier/television/commit/33d84a5b20a78b02ccca74eebe4ca49ef9b7647f *(website)* Update dependencies and fix docsearch v4 compatibility by @alexpasmantier

- [df02076]https://github.com/alexpasmantier/television/commit/df0207695b54477cb709d5d0968d0c2971445152 *(uncategorized)* Release version 0.15.4 by @alexpasmantier

- [181112b]https://github.com/alexpasmantier/television/commit/181112b06456d2cfd0b27b72b7f17b143099a44e *(uncategorized)* Update nucleo fork dependency to allow publishing on crates.io again by @alexpasmantier

- [3681431]https://github.com/alexpasmantier/television/commit/3681431cd4677f5c93a9c4ad9c0a0164788bc488 *(uncategorized)* Modify nightly source to https format in [#926]https://github.com/alexpasmantier/television/pull/926



### New Contributors
* @delafthi made their first contribution in [#954]https://github.com/alexpasmantier/television/pull/954
* @lucemans made their first contribution in [#950]https://github.com/alexpasmantier/television/pull/950
* @LeeSF03 made their first contribution in [#946]https://github.com/alexpasmantier/television/pull/946
* @f440 made their first contribution in [#941]https://github.com/alexpasmantier/television/pull/941
* @CodeMarco05 made their first contribution in [#949]https://github.com/alexpasmantier/television/pull/949

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.15.3...0.15.4


## [0.15.3]https://github.com/alexpasmantier/television/releases/tag/0.15.3 - 2026-03-01

### ⛰️  Features

- [f6951b5]https://github.com/alexpasmantier/television/commit/f6951b5bc55ffe5e9a2d89505d43194ec0081104 *(cable)* Add git-files channel by @cap153 in [#907]https://github.com/alexpasmantier/television/pull/907

- [f15b679]https://github.com/alexpasmantier/television/commit/f15b6796eb90f58d97fbc5806ee3a7fd33c15a4f *(tests)* Make command order assertions flexible in tests by @qaqland in [#919]https://github.com/alexpasmantier/television/pull/919

- [350e722]https://github.com/alexpasmantier/television/commit/350e722c1480a3402ebb816f556067759757effe *(uncategorized)* Rosé Pine themes by @ThatOneCalculator in [#915]https://github.com/alexpasmantier/television/pull/915

### 🐛 Bug Fixes

- [6d2d7df]https://github.com/alexpasmantier/television/commit/6d2d7df91c7b16a980868c19d02eae0e55d365b2 *(cable)* Use bash for actions with $\{EDITOR:-\} syntax by @alexpasmantier in [#921]https://github.com/alexpasmantier/television/pull/921

- [074dc17]https://github.com/alexpasmantier/television/commit/074dc172a599d178d8a6a8fd2e97ce93eff1137b *(cli)* Handle broken pipe in subcommand stdout writes by @simono in [#905]https://github.com/alexpasmantier/television/pull/905

- [725a265]https://github.com/alexpasmantier/television/commit/725a265da81bdacacbaea7a548052ee5e3903ec5 *(docker)* Add `jq` as needed dependency by @r4v3n6101 in [#914]https://github.com/alexpasmantier/television/pull/914

- [54bdcf9]https://github.com/alexpasmantier/television/commit/54bdcf93dac1050d1687f740a2f5bd3c53e7b1e2 *(stdin)* Read stdin directly instead of spawning `cat` by @alexpasmantier in [#920]https://github.com/alexpasmantier/television/pull/920

- [336411b]https://github.com/alexpasmantier/television/commit/336411b3e4eda85344922adba7af72aa297f5864 *(uncategorized)* Remove alias from builtin channels until command is stabilized by @alexpasmantier

- [ffe4c66]https://github.com/alexpasmantier/television/commit/ffe4c6661835a41aa0d8a649d54929d447d4f1e4 *(uncategorized)* Better display of man-pages by @r4v3n6101

### 🚜 Refactor

- [d32073d]https://github.com/alexpasmantier/television/commit/d32073dc053ce4ece74b181ab72634a2ff8a95a1 *(uncategorized)* Fix clippy warnings by @alexpasmantier

### 📚 Documentation

- [d8df517]https://github.com/alexpasmantier/television/commit/d8df517528db1366e4ed15ed153a786dacf98f9b *(readme)* Add tv.yazi to integrations by @cap153 in [#908]https://github.com/alexpasmantier/television/pull/908

- [d802a21]https://github.com/alexpasmantier/television/commit/d802a210d1f2e45bfe35151a1e23f9f2332c1ca0 *(uncategorized)* Update readme for 0.15.2 by @alexpasmantier

- [b32f4ab]https://github.com/alexpasmantier/television/commit/b32f4ab92ef9558551c1235be57c0936badabade *(uncategorized)* Add 0.15 release notes by @alexpasmantier

- [b070e44]https://github.com/alexpasmantier/television/commit/b070e44146d2565348669686bb2e6cb25f233703 *(uncategorized)* Correct documentation and dependency URLs by @bet4it in [#899]https://github.com/alexpasmantier/television/pull/899

### ⚡ Performance

- [a909dc8]https://github.com/alexpasmantier/television/commit/a909dc8030e76bfad02795c0a5b4f03d8c9f806d *(uncategorized)* Undo 5eaa2c3 and 5019651 that regressed ingestion throughput

### ⚙️ Miscellaneous Tasks

- [6d8a7eb]https://github.com/alexpasmantier/television/commit/6d8a7eb07e1fc77b3972d229ca153d655e7c3159 *(uncategorized)* Release version 0.15.3 by @alexpasmantier

- [c8fcd50]https://github.com/alexpasmantier/television/commit/c8fcd50e5c40b2a0d87d2489cf070162c653c702 *(uncategorized)* Fix changelog job by @alexpasmantier



### New Contributors
* @qaqland made their first contribution in [#919]https://github.com/alexpasmantier/television/pull/919
* @ThatOneCalculator made their first contribution in [#915]https://github.com/alexpasmantier/television/pull/915
* @r4v3n6101 made their first contribution in [#914]https://github.com/alexpasmantier/television/pull/914
* @cap153 made their first contribution in [#907]https://github.com/alexpasmantier/television/pull/907
* @ made their first contribution
* @bet4it made their first contribution in [#899]https://github.com/alexpasmantier/television/pull/899

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.15.2...0.15.3


## [0.15.2]https://github.com/alexpasmantier/television/releases/tag/0.15.2 - 2026-02-05

### ⛰️  Features

- [644c818]https://github.com/alexpasmantier/television/commit/644c818f0be26ac016ff626fbaf2afa4004a379d *(cable)* 20 new channels by @alexpasmantier in [#896]https://github.com/alexpasmantier/television/pull/896

- [f372439]https://github.com/alexpasmantier/television/commit/f372439a773d10be6471b853e50f49106b6efa97 *(cable)* New channel actions by @alexpasmantier

- [c7a5164]https://github.com/alexpasmantier/television/commit/c7a516466adf88e4fbe72452f7d73d9f41f6afce *(config)* Enable a global shell override configuration option by @alexpasmantier in [#892]https://github.com/alexpasmantier/television/pull/892

- [d997d66]https://github.com/alexpasmantier/television/commit/d997d66e46819f5ad5575c1b3cdd0b88f62f9f16 *(fish)* Add channel name completion by @simono in [#891]https://github.com/alexpasmantier/television/pull/891

### 📚 Documentation

- [cc3cb54]https://github.com/alexpasmantier/television/commit/cc3cb54bf433965f139de77fd1ad443f5296dae7 *(uncategorized)* Add frecency fields to channel config docs by @alexpasmantier

- [7bef281]https://github.com/alexpasmantier/television/commit/7bef281d02413aff9613d7fa22f55edd95b1c67d *(uncategorized)* Proofreading by @alexpasmantier in [#887]https://github.com/alexpasmantier/television/pull/887

- [03d5f51]https://github.com/alexpasmantier/television/commit/03d5f51b9a4400c38130f95e4b066ab76276140e *(uncategorized)* Documentation overhaul by @alexpasmantier in [#886]https://github.com/alexpasmantier/television/pull/886

### ⚡ Performance

- [2fde413]https://github.com/alexpasmantier/television/commit/2fde4136255dc73c6bda9708bcb9c7eff0254b6c *(entries)* Remove unnecessary clone by @alexpasmantier

- [2ba6887]https://github.com/alexpasmantier/television/commit/2ba6887c259743d094580df7569d6c7dbdcdeea3 *(frecency)* Remove per-frame frecency cache refresh by @alexpasmantier

- [5eaa2c3]https://github.com/alexpasmantier/television/commit/5eaa2c3bb6a675f4323de04fdd883fba27aede9a *(matcher)* Optimize Utf32 to String conversion for ASCII content by @alexpasmantier

- [b8154d2]https://github.com/alexpasmantier/television/commit/b8154d26485d688cd6b3e2e26f71ce85e382f77d *(matcher)* Skip results pipeline for actions that don't affect results by @alexpasmantier

- [83ee4b9]https://github.com/alexpasmantier/television/commit/83ee4b91a3885d935c08a026c4f9b92152d29440 *(update)* Add update_cycle benchmarks for Television::update() by @alexpasmantier

- [5019651]https://github.com/alexpasmantier/television/commit/50196511002861b3e509d6d641a4404f3bbbd6f2 *(uncategorized)* Avoid unnecessary clones in matcher and entry pipeline by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [9a3a00f]https://github.com/alexpasmantier/television/commit/9a3a00f0bdb5967bd470860ed0da5335fffde391 *(cable_docs)* Fix generate_cable_docs workflow by @alexpasmantier

- [9436217]https://github.com/alexpasmantier/television/commit/94362178f096a9bfa10d204c8b34a342c67d8429 *(uncategorized)* Release version 0.15.2 by @alexpasmantier

- [057c10e]https://github.com/alexpasmantier/television/commit/057c10e02d4806725616d02f8b48e7bc8b7bea90 *(uncategorized)* Release version 0.15.1 by @alexpasmantier

### Build

- [5e4a9bb]https://github.com/alexpasmantier/television/commit/5e4a9bbdccd2abc3135ab64e3171c3e50d323de5 *(dependabot)* Add cargo and rust-toolchain ecosystems by @simono in [#889]https://github.com/alexpasmantier/television/pull/889




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.15.0...0.15.2


## [0.15.0]https://github.com/alexpasmantier/television/releases/tag/0.15.0 - 2026-01-27

### ⛰️  Features

- [f2fa3f8]https://github.com/alexpasmantier/television/commit/f2fa3f8226e842b0914fe5eb5d56d2d045855942 *(actions)* Add a new picker for channel actions by @alexpasmantier in [#880]https://github.com/alexpasmantier/television/pull/880

- [6be1cfb]https://github.com/alexpasmantier/television/commit/6be1cfb83aecbd2daf49834c0241c8c9d37e109e *(cable)* 21 new channels by @alexpasmantier

- [c564ec0]https://github.com/alexpasmantier/television/commit/c564ec02f8c16518fbb4158af6488aabd35393f7 *(cable)* Existing channel improvements, more default actions by @alexpasmantier

- [ab6bbfc]https://github.com/alexpasmantier/television/commit/ab6bbfc675adab15e7447a5ad6c862b277dc1ea3 *(cli)* Sort list-channels output alphabetically by @simono in [#866]https://github.com/alexpasmantier/television/pull/866

- [26ba031]https://github.com/alexpasmantier/television/commit/26ba031df9b1a425aacdfbf386e56a1c479d3047 *(prototypes)* Enable using a custom shell for source, preview and action commands by @alexpasmantier

- [aa6fe62]https://github.com/alexpasmantier/television/commit/aa6fe6290974bc80c190bbb04e995cd66041d717 *(remote)* Add remote control missing requirements popup by @alexpasmantier

- [cf3261e]https://github.com/alexpasmantier/television/commit/cf3261e149c04848aed027fc48f8afe3f28d1fac *(ui)* Add cycle_x keybinding hint next to tab indicator when cycling is enabled by @alexpasmantier in [#876]https://github.com/alexpasmantier/television/pull/876

- [a8ca74a]https://github.com/alexpasmantier/television/commit/a8ca74ae42e38a32a38cf54a74d5b1446c584972 *(ui)* Add cycle_sources and cycle_previews tab indicators by @alexpasmantier in [#870]https://github.com/alexpasmantier/television/pull/870

- [b4b61c7]https://github.com/alexpasmantier/television/commit/b4b61c706c955d58280001ac7bc2fb75e468b1a8 *(update-channels)* Skip channels with unmet requirements by default by @louis-thevenet in [#859]https://github.com/alexpasmantier/television/pull/859

- [6cfca4d]https://github.com/alexpasmantier/television/commit/6cfca4de95d5b6873c8bad006f353ee3a18f766b *(uncategorized)* Frecency sorting by @alexpasmantier in [#869]https://github.com/alexpasmantier/television/pull/869

- [ccec17b]https://github.com/alexpasmantier/television/commit/ccec17b10042000f9e07d0f84dbc66fb2fcb7e3d *(uncategorized)* Generalize support for custom sorting by @alexpasmantier

- [1facb56]https://github.com/alexpasmantier/television/commit/1facb56d90b0e19caa6a344a4f36134336ddad59 *(uncategorized)* Allow disabling automatic sorting of matcher results by @alexpasmantier in [#856]https://github.com/alexpasmantier/television/pull/856

### 🐛 Bug Fixes

- [a16c886]https://github.com/alexpasmantier/television/commit/a16c8864aa2546f0d606d6921a0a0ffc1967c51c *(sesh)* Allow paths containing whitespaces by @alexpasmantier

### 🚜 Refactor

- [86846ec]https://github.com/alexpasmantier/television/commit/86846ecb0ffd155a2ae68b7554bbe40bc36180df *(cable)* Simpler systemd units channel by @alexpasmantier

- [49c8370]https://github.com/alexpasmantier/television/commit/49c8370086ae8cfd35ea8314a7f6f82d02c1fdca *(ui)* Replace stateful spinner by static symbol by @alexpasmantier

### 📚 Documentation

- [767db54]https://github.com/alexpasmantier/television/commit/767db543590d93fd5718de54d0ff22b9f3b369f8 *(uncategorized)* Fix: fix typos and grammar by @simono in [#860]https://github.com/alexpasmantier/television/pull/860

### ⚡ Performance

- [549eed2]https://github.com/alexpasmantier/television/commit/549eed28664b7915437cb21f06f8870ee99d166f *(frecency)* Avoid string allocations in sort comparisons by @lalvarezt in [#877]https://github.com/alexpasmantier/television/pull/877

### 🧪 Testing

- [e259535]https://github.com/alexpasmantier/television/commit/e2595354544301955ad19f95610d1810369f4d94 *(uncategorized)* Faster local testing by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [ded7ef6]https://github.com/alexpasmantier/television/commit/ded7ef6476fa7bc3eeb20a57266ff67af6b5e943 *(uncategorized)* Release version 0.15.0 by @alexpasmantier

- [f4465f0]https://github.com/alexpasmantier/television/commit/f4465f06fdc5f3f4168c79398c191a18eb02d907 *(uncategorized)* Cleaning up mode color dead code by @alexpasmantier



### New Contributors
* @simono made their first contribution in [#866]https://github.com/alexpasmantier/television/pull/866
* @louis-thevenet made their first contribution in [#859]https://github.com/alexpasmantier/television/pull/859

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.14.5...0.15.0


## [0.14.5]https://github.com/alexpasmantier/television/releases/tag/0.14.5 - 2026-01-10

### ⛰️  Features

- [250e7ac]https://github.com/alexpasmantier/television/commit/250e7aced1775ee27937b5e1b317db162617e7db *(preview)* Add word wrapping to the preview panel by @xosxos in [#849]https://github.com/alexpasmantier/television/pull/849

- [d6553e7]https://github.com/alexpasmantier/television/commit/d6553e7ce917b424129fa1660586c8ea2d764f04 *(preview)* Accept Braille Unicode characters by @xosxos in [#848]https://github.com/alexpasmantier/television/pull/848

- [e338cbe]https://github.com/alexpasmantier/television/commit/e338cbe92e388992d91d876749c1552486d88317 *(tldr)* Colored tldr preview by @alexpasmantier

### 🚜 Refactor

- [0bd20fc]https://github.com/alexpasmantier/television/commit/0bd20fc8e70ebd58e2e3c0a65265051e43afadbf *(nix)* Flake using flake-parts, crane, and rust-overlay by @doprz in [#846]https://github.com/alexpasmantier/television/pull/846

### ⚙️ Miscellaneous Tasks

- [c6db6b6]https://github.com/alexpasmantier/television/commit/c6db6b6452fd0325fcdc685bea7e15cf281765ea *(uncategorized)* Release version 0.14.5 by @alexpasmantier



### New Contributors
* @doprz made their first contribution in [#846]https://github.com/alexpasmantier/television/pull/846

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.14.4...0.14.5


## [0.14.4]https://github.com/alexpasmantier/television/releases/tag/0.14.4 - 2026-01-04

### ⛰️  Features

- [8245537]https://github.com/alexpasmantier/television/commit/8245537a51458460759fd0c6b4a3944c1ed11d30 *(cli)* Add `input-position` cli argument by @alexpasmantier in [#840]https://github.com/alexpasmantier/television/pull/840

### 🐛 Bug Fixes

- [e398c36]https://github.com/alexpasmantier/television/commit/e398c36ea29161e57c75b65dcf02e44b5c1ffb97 *(nerdfonts)* Expand nerd fonts support by @alexpasmantier in [#839]https://github.com/alexpasmantier/television/pull/839

### 🚜 Refactor

- [b9efb97]https://github.com/alexpasmantier/television/commit/b9efb97e6aa0d781c655e37aac00df6e511f5ed1 *(zsh)* Revert #830 by @alexpasmantier

### 📚 Documentation

- [c95d48b]https://github.com/alexpasmantier/television/commit/c95d48b6ce12e5e9bb6601352cc2b736798b4d4a *(uncategorized)* Update channel documentation by @alexpasmantier

- [76a12e7]https://github.com/alexpasmantier/television/commit/76a12e70c9be725026442fc547a83605ba12819d *(uncategorized)* Fix high level channel sections by @alexpasmantier

- [6ae0e64]https://github.com/alexpasmantier/television/commit/6ae0e64177b5b4a6b1a101ff2b9e0cdcd90a0d48 *(uncategorized)* Docstring improvements by @alexpasmantier in [#837]https://github.com/alexpasmantier/television/pull/837

- [68667a8]https://github.com/alexpasmantier/television/commit/68667a8a68b45b5c3a0b7865dfcf2006046479a8 *(uncategorized)* Fix github pages links in README by @alexpasmantier

- [1885d27]https://github.com/alexpasmantier/television/commit/1885d277f1c10cb61a13753ac02d0d0b29ed991b *(uncategorized)* Fix link to community-maintained channels page by @nicolasff in [#834]https://github.com/alexpasmantier/television/pull/834

### ⚙️ Miscellaneous Tasks

- [2ca11e9]https://github.com/alexpasmantier/television/commit/2ca11e99c775ffc79c685bdac2f6394921503451 *(uncategorized)* Release version 0.14.4 by @alexpasmantier



### New Contributors
* @nicolasff made their first contribution in [#834]https://github.com/alexpasmantier/television/pull/834

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.14.3...0.14.4


## [0.14.3]https://github.com/alexpasmantier/television/releases/tag/0.14.3 - 2025-12-28

### 🚜 Refactor

- [c4aaa16]https://github.com/alexpasmantier/television/commit/c4aaa162560e5c7deceb6c5f5bc042b57230a4d3 *(previews)* Preview caching is now an opt-out feature by @alexpasmantier

- [903d034]https://github.com/alexpasmantier/television/commit/903d034510d51f8a3c561fbc1b1715768190410c *(zsh)* Use the dedicated channel for the zsh history shell integration by @alexpasmantier in [#830]https://github.com/alexpasmantier/television/pull/830

### 📚 Documentation

- [976d83f]https://github.com/alexpasmantier/television/commit/976d83fdff167e792e918d20a0f2e02e9e99836a *(uncategorized)* Fix command option in README for tv preview by @driftcell in [#828]https://github.com/alexpasmantier/television/pull/828

### ⚡ Performance

- [78acbc7]https://github.com/alexpasmantier/television/commit/78acbc7b03fea6bc0416daf9df7bbd686cac6258 *(preview)* Caching strategy improvements by @alexpasmantier in [#826]https://github.com/alexpasmantier/television/pull/826

### ⚙️ Miscellaneous Tasks

- [5379d40]https://github.com/alexpasmantier/television/commit/5379d40fcfcec9f4fa8f37591b795387f4aacd3d *(uncategorized)* Release version 0.14.3 by @alexpasmantier



### New Contributors
* @driftcell made their first contribution in [#828]https://github.com/alexpasmantier/television/pull/828

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.14.2...0.14.3


## [0.14.2]https://github.com/alexpasmantier/television/releases/tag/0.14.2 - 2025-12-25

### ⛰️  Features

- [103704e]https://github.com/alexpasmantier/television/commit/103704ebe364fe9c35d07d80724c9b016ba243b7 *(uncategorized)* Windows builtin channels by @alexpasmantier

- [fb41de7]https://github.com/alexpasmantier/television/commit/fb41de7c2938c78d330d2bea7e4affc705e45171 *(uncategorized)* Tv's binary now comes bundled with a set of default channels by @alexpasmantier in [#821]https://github.com/alexpasmantier/television/pull/821

### 🐛 Bug Fixes

- [874400d]https://github.com/alexpasmantier/television/commit/874400d4ac72e3f543b9fb7b2e688261817cc4af *(shell)* Honor $SHELL previews for nushell by @alexpasmantier in [#818]https://github.com/alexpasmantier/television/pull/818

- [9628b53]https://github.com/alexpasmantier/television/commit/9628b533e9ec504cdd98c8458b079220bb579250 *(windows)* Improve shell discovery heuristics on windows by @alexpasmantier in [#819]https://github.com/alexpasmantier/television/pull/819

### 📚 Documentation

- [117d35d]https://github.com/alexpasmantier/television/commit/117d35dbf18dc9e97f3496f142e0ef4d436709c2 *(cli)* Some improvements to readability by @alexpasmantier

- [9d45e57]https://github.com/alexpasmantier/television/commit/9d45e57ac9152da1201fc877d8b5171ca2571d4f *(uncategorized)* Add quickstart section to README by @alexpasmantier

- [dfdce6b]https://github.com/alexpasmantier/television/commit/dfdce6bbee0bde0f044c28bd8d4cff83837bd3f6 *(uncategorized)* Cli docs rework + some automation with `tv --help` by @alexpasmantier

- [53e41bd]https://github.com/alexpasmantier/television/commit/53e41bd3d54aceabec2b688fe1dc1d1363f2072c *(uncategorized)* Improve quickstart section with more examples by @alexpasmantier

- [7ae0413]https://github.com/alexpasmantier/television/commit/7ae0413381b7fa1e8f24f49e9f7b2f3f34883f61 *(uncategorized)* Fixing typos and out of date information by @alexpasmantier

- [85fd34a]https://github.com/alexpasmantier/television/commit/85fd34a83a71857bbb92dc98ca90f332a1a491df *(uncategorized)* Update readme title by @alexpasmantier

- [a52c33a]https://github.com/alexpasmantier/television/commit/a52c33a8f2cec916b4f7007f95fec93333f72076 *(uncategorized)* Update demo image with latest version by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [67211d3]https://github.com/alexpasmantier/television/commit/67211d3a32b694917dc51b46551bc94396a1e3e6 *(uncategorized)* Release version 0.14.2 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.14.1...0.14.2


## [0.14.1]https://github.com/alexpasmantier/television/releases/tag/0.14.1 - 2025-12-17

### 🐛 Bug Fixes

- [63d5249]https://github.com/alexpasmantier/television/commit/63d524931ccd5750565eeff309b0ba718aa2d189 *(channel)* Add forgotten quote in preview command by @mheuvel-dev in [#813]https://github.com/alexpasmantier/television/pull/813

### ⚙️ Miscellaneous Tasks

- [a55a630]https://github.com/alexpasmantier/television/commit/a55a630cd056eca18c2336e5b8bdd99b760bf0c1 *(uncategorized)* Release version 0.14.1 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.14.0...0.14.1


## [0.14.0]https://github.com/alexpasmantier/television/releases/tag/0.14.0 - 2025-12-16

### ⛰️  Features

- [c2ebd0f]https://github.com/alexpasmantier/television/commit/c2ebd0fceed095e4920178274eea2a495c14b3de *(channel)* Add ssh hosts channel by @matawed in [#806]https://github.com/alexpasmantier/television/pull/806

- [b971a50]https://github.com/alexpasmantier/television/commit/b971a5093cf3743ef612c4b30bb5eb5b4dd3d6cc *(channel)* Add unicode cable channel by @boydkelly

- [d9850d5]https://github.com/alexpasmantier/television/commit/d9850d5c89d32cf319a40aa0a2b3524978933c20 *(channel)* Add gh channels by @universalmind303

- [905218d]https://github.com/alexpasmantier/television/commit/905218dcaa09cf6b65652b3c2f3f7d10cfbb1203 *(mouse)* General mouse scrolling support for results, previews and remote by @alexpasmantier

- [58eb640]https://github.com/alexpasmantier/television/commit/58eb64073567536d2916f9e627ab961f6039293c *(previews)* Support multiple preview commands + new `cycle_preview` action by @alexpasmantier in [#808]https://github.com/alexpasmantier/television/pull/808

### 🐛 Bug Fixes

- [5d1f358]https://github.com/alexpasmantier/television/commit/5d1f3586df0d8bd7b527d885894f2863f31edf5f *(bindings)* Deactivate custom channel bindings when remote is active by @alexpasmantier

- [237ed5f]https://github.com/alexpasmantier/television/commit/237ed5fd0b76cd73b4dbdef67c781e64a4fe372d *(channels-preview)* Preview configs in cable subdirectories by @hayderhassan in [#794]https://github.com/alexpasmantier/television/pull/794

- [effbe0c]https://github.com/alexpasmantier/television/commit/effbe0ce69a950f13fa026cd6a6259e3b820df7b *(preview)* Better preview sync with results picker by @alexpasmantier

- [2b5408f]https://github.com/alexpasmantier/television/commit/2b5408f3e0fb20a52ce1edcda0b3338264641e5d *(shell)* Don't display status bar for shell integration by @alexpasmantier

- [5bc59a5]https://github.com/alexpasmantier/television/commit/5bc59a56dbcf271cd549c9a2fa4ddfef46a6b875 *(update-channels)* Prevent overwriting user configs by @hayderhassan in [#795]https://github.com/alexpasmantier/television/pull/795

### 🚜 Refactor

- [dd27ffa]https://github.com/alexpasmantier/television/commit/dd27ffa78071f04f6e17cd4d3cc1391eafd6c5d1 *(events)* Drop overcomplicated events abstractions by @alexpasmantier in [#807]https://github.com/alexpasmantier/television/pull/807 [**breaking**]

- [984a8a2]https://github.com/alexpasmantier/television/commit/984a8a230219531e8a8701f4a092207d926c57ef *(uncategorized)* Cleanup hardcoded space strings by @alexpasmantier

### ⚡ Performance

- [f6f8d8b]https://github.com/alexpasmantier/television/commit/f6f8d8bd9e3659fcd6ae1e48006e46d65aa0b294 *(channel)* Batching + threadpool to significantly reduce loading times by @alexpasmantier

- [077e37e]https://github.com/alexpasmantier/television/commit/077e37e5b855525a99bfae342132d74f96b8676a *(preview)* Avoid utf8 roundtrip when processing previews by @alexpasmantier

- [ab197b9]https://github.com/alexpasmantier/television/commit/ab197b9debe6e2f0f3c8ac8685763c70c31ba5c2 *(preview)* Add preview bench by @alexpasmantier

- [e7cdb63]https://github.com/alexpasmantier/television/commit/e7cdb63ee0eb5a714eeffbf62ece96120bd70f80 *(preview)* Move header and footer template processing to previewer thread by @alexpasmantier

- [166b709]https://github.com/alexpasmantier/television/commit/166b709adba8bb191793c903c4c158d61c28526d *(rendering)* Adjust idle rendering interval by @alexpasmantier

- [92cbcee]https://github.com/alexpasmantier/television/commit/92cbceecacbf2d82299b86840f5c7926f3d17cc1 *(rendering)* Avoiding extra indirections and preview cloning by @alexpasmantier

- [cb92cce]https://github.com/alexpasmantier/television/commit/cb92cce9b40be3e966dbd8e1590de03f117cb214 *(results)* Zero copy ansi parsing when rendering result items by @alexpasmantier

- [deb6214]https://github.com/alexpasmantier/television/commit/deb6214606c0a67c7dcdc8cdb59fef3ba328db43 *(strings)* Further compiler optimizations on string procressing by @alexpasmantier

- [47d3387]https://github.com/alexpasmantier/television/commit/47d3387e70ad60145219bfe139dba0353b4a9432 *(strings)* Drastic performance improvements on string processing (x2-x10) by @alexpasmantier

- [cae7572]https://github.com/alexpasmantier/television/commit/cae7572c85ede536a5312b9e671a74474a175ea2 *(uncategorized)* String processing benchmarks by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [c73f964]https://github.com/alexpasmantier/television/commit/c73f9643cc8f233990426490ac77f43ac4268f61 *(television)* Delete unused command index attribute by @alexpasmantier

- [dd1a34a]https://github.com/alexpasmantier/television/commit/dd1a34a26510826cf492105fa8c66ee923bbd62d *(uncategorized)* Release version 0.14.0 by @alexpasmantier

### Build

- [8d6372b]https://github.com/alexpasmantier/television/commit/8d6372bdefee7cbbb0ad212d6470896f41635367 *(uncategorized)* Add staging profile + justfile command by @alexpasmantier



### New Contributors
* @matawed made their first contribution in [#806]https://github.com/alexpasmantier/television/pull/806
* @boydkelly made their first contribution
* @universalmind303 made their first contribution

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.13.12...0.14.0


## [0.13.12]https://github.com/alexpasmantier/television/releases/tag/0.13.12 - 2025-11-28

### ⛰️  Features

- [3b10039]https://github.com/alexpasmantier/television/commit/3b10039621f8c310048c9780444a8892fdfee634 *(channels)* Add channel for selecting PATH directories by @hayderhassan in [#786]https://github.com/alexpasmantier/television/pull/786

- [a775bff]https://github.com/alexpasmantier/television/commit/a775bff2e4913c30a76afbb0a02e18ac0d5e4a32 *(channels)* Add sesh session manager channel by @josephschmitt in [#787]https://github.com/alexpasmantier/television/pull/787

- [81971a1]https://github.com/alexpasmantier/television/commit/81971a19356610bdbdbd7910c593fd1f6b4ab052 *(config)* Add `z` (Zoxide) to `dirs` channel triggers by @nagromc in [#776]https://github.com/alexpasmantier/television/pull/776

### 🐛 Bug Fixes

- [0efad53]https://github.com/alexpasmantier/television/commit/0efad53d967a4c5877f59d040b6c3f657e2feb58 *(channels)* Run reload source after kill_session action by @josephschmitt in [#790]https://github.com/alexpasmantier/television/pull/790

- [c38cf95]https://github.com/alexpasmantier/television/commit/c38cf950449cf987fa8539bb52e7ae59c42083e0 *(fish)* Proper handling of ctrl-space for fish integration by @alexpasmantier

### 📚 Documentation

- [69c7b70]https://github.com/alexpasmantier/television/commit/69c7b70c00a6fc54ac2bfad79ef68501753afc6e *(channels)* Add screenshot for sesh by @josephschmitt in [#791]https://github.com/alexpasmantier/television/pull/791

- [b09a0dc]https://github.com/alexpasmantier/television/commit/b09a0dc246988f4a0134ae117be383e374cbb29c *(config)* Fix misleading windows config paths in docs by @alexpasmantier in [#784]https://github.com/alexpasmantier/television/pull/784

- [d4b32eb]https://github.com/alexpasmantier/television/commit/d4b32eb0e3e9776df78c424b11f6b224133d2cdd *(windows)* Clean up misleading path leftover by @alexpasmantier

- [3d506ae]https://github.com/alexpasmantier/television/commit/3d506ae5c05a73f9d2d9d9d69e4a9ddaf22a5555 *(uncategorized)* Refactor installation methods section by @alexpasmantier

- [ad21f54]https://github.com/alexpasmantier/television/commit/ad21f54aabaedccfc6c82a47a2db50e738d8b081 *(uncategorized)* Add cycle sources docs and other missing keybindings by @alexpasmantier in [#785]https://github.com/alexpasmantier/television/pull/785

### ⚙️ Miscellaneous Tasks

- [8601a18]https://github.com/alexpasmantier/television/commit/8601a1819d81e09660fd95bdcbd994a2e374a88f *(uncategorized)* Release version 0.13.12 by @alexpasmantier

- [ae42426]https://github.com/alexpasmantier/television/commit/ae42426ba7044013b3fa710cb11809dffed2db22 *(uncategorized)* Bump website dependencies + cargo deps by @alexpasmantier

- [614aabe]https://github.com/alexpasmantier/television/commit/614aabecdee52afaa89813d624adfd7da068cf3b *(uncategorized)* Bump cargo deps by @alexpasmantier



### New Contributors
* @josephschmitt made their first contribution in [#791]https://github.com/alexpasmantier/television/pull/791
* @hayderhassan made their first contribution in [#786]https://github.com/alexpasmantier/television/pull/786
* @nagromc made their first contribution in [#776]https://github.com/alexpasmantier/television/pull/776

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.13.11...0.13.12


## [0.13.11]https://github.com/alexpasmantier/television/releases/tag/0.13.11 - 2025-11-23

### 🐛 Bug Fixes

- [3a71a99]https://github.com/alexpasmantier/television/commit/3a71a99b0291ba3996c282e9d086705762304c84 *(pwsh)* Always use `-NoLogo -NoProfile` when starting pwsh commands by @alexpasmantier in [#775]https://github.com/alexpasmantier/television/pull/775

- [b336421]https://github.com/alexpasmantier/television/commit/b336421752d8d3050c6e8f4093e3c738ace5ace6 *(uncategorized)* No more edge case highlight computing panics by @alexpasmantier

### 📚 Documentation

- [3dcc3db]https://github.com/alexpasmantier/television/commit/3dcc3db7c5296bb2ef02a8fbc764b433e6732e10 *(uncategorized)* Update readme with editor integrations by @alexpasmantier

### ⚡ Performance

- [492881f]https://github.com/alexpasmantier/television/commit/492881f823641a429feb59cc00f309801930abf4 *(uncategorized)* Use `tokio::process::Command` for previews by @alexpasmantier

- [0a385f9]https://github.com/alexpasmantier/television/commit/0a385f9b0545990747b6964e262388a3a59b83eb *(uncategorized)* Faster ansi escape sequences stripping with `--ansi` by @alexpasmantier

- [0136626]https://github.com/alexpasmantier/television/commit/0136626a8be6a46279105e8dc5ea6fa2d0a852f1 *(uncategorized)* Avoid blocking async runtime when streaming in candidates by @alexpasmantier

- [d2034a8]https://github.com/alexpasmantier/television/commit/d2034a873fba421ff3d3d2548594744bf3584b45 *(uncategorized)* Add rendering benchmark by @alexpasmantier

- [a6b5240]https://github.com/alexpasmantier/television/commit/a6b5240de00d2d3f7af5e6c3e7f35ee931ea308f *(uncategorized)* Avoid heap allocations when passing context to render thread by @alexpasmantier

- [ad166f1]https://github.com/alexpasmantier/television/commit/ad166f1ed3fd2c1ba67d92aef7ab8b145c1b5167 *(uncategorized)* Use smallvec for match ranges to avoid unnecessary allocations by @alexpasmantier

- [56f19be]https://github.com/alexpasmantier/television/commit/56f19bee3db1a8390f55c60dc6795ab7742ab9d1 *(uncategorized)* Add `load_candidates` benchmark by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [3cabec2]https://github.com/alexpasmantier/television/commit/3cabec2bdeabce3a4176303d7b8729fbdb7b99c8 *(uncategorized)* Release version 0.13.11 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.13.10...0.13.11


## [0.13.10]https://github.com/alexpasmantier/television/releases/tag/0.13.10 - 2025-11-16

### ⛰️  Features

- [0df7303]https://github.com/alexpasmantier/television/commit/0df7303306d8048f001047074f3e2c54aa483174 *(pwsh)* Add pwsh shell integration by @alexpasmantier in [#772]https://github.com/alexpasmantier/television/pull/772

### 🐛 Bug Fixes

- [963334e]https://github.com/alexpasmantier/television/commit/963334ee317e771a5e5e82330336b1713dc858d0 *(channels)* Fix alias channel SIGTTOU signal issue by @alexpasmantier in [#770]https://github.com/alexpasmantier/television/pull/770

- [3680c8e]https://github.com/alexpasmantier/television/commit/3680c8e78bf746578b01f297f4246fbfa011d6f1 *(results)* Update to string_pipeline 0.13.0 to fix the tab issue by @alexpasmantier

- [2b1d96c]https://github.com/alexpasmantier/television/commit/2b1d96c56f95cee1faf814cf56b3c6caccd17176 *(results)* Account for border when calculating the slice of results to display by @alexpasmantier

- [adb2909]https://github.com/alexpasmantier/television/commit/adb29090419c2d472dcc40e4dfef9340e2f54c67 *(tests)* Break out with last frame on frame stability timeout by @alexpasmantier

- [d4738bd]https://github.com/alexpasmantier/television/commit/d4738bd8af2c25882276afad0da0084821493379 *(tests)* Fix flaky cli working directory override test by @alexpasmantier

- [b34ee41]https://github.com/alexpasmantier/television/commit/b34ee41e89191e6a3fbeff3a7489a22d8f2da492 *(windows)* Do not panic when channel command not in path by @alexpasmantier

### 📚 Documentation

- [f4a0a14]https://github.com/alexpasmantier/television/commit/f4a0a1489752ccca65c4661cd0722de9fada0562 *(channels)* Update channel example and add warning about display + ANSI by @alexpasmantier

- [a3eb52b]https://github.com/alexpasmantier/television/commit/a3eb52b446fe9d65ca433ef05ae8fa4c185eb40f *(config)* Add an option reference section to the website by @alexpasmantier in [#769]https://github.com/alexpasmantier/television/pull/769

### ⚙️ Miscellaneous Tasks

- [fa217e9]https://github.com/alexpasmantier/television/commit/fa217e92f380f1978f755169b82ca57636b84800 *(uncategorized)* Release version 0.13.10 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.13.9...0.13.10


## [0.13.9]https://github.com/alexpasmantier/television/releases/tag/0.13.9 - 2025-11-06

### ⛰️  Features

- [0ad27ac]https://github.com/alexpasmantier/television/commit/0ad27ac0e57a7146a6f306162e0b195e7bec2a13 *(files)* New `goto_parent_dir` default action on the files channel by @alexpasmantier

### 🐛 Bug Fixes

- [99c7c65]https://github.com/alexpasmantier/television/commit/99c7c65075cebc71231f14168d50f24036dfc218 *(cable)* Fix alias channel cli invocation sometimes going to bg by @alexpasmantier

- [550b970]https://github.com/alexpasmantier/television/commit/550b970bfd32854dc0abaa7d69123c35c052905c *(tests)* Clean target_dir leftovers and use temp dirs instead by @alexpasmantier

- [b8ed31e]https://github.com/alexpasmantier/television/commit/b8ed31e07ed8ad159541f2d2f932bb7919b37e2c *(ux)* Force immediate render when remote loads its channels by @alexpasmantier

- [e36008b]https://github.com/alexpasmantier/television/commit/e36008bec4bbc6fab3b06d840e6e65da54c998dc *(zsh)* Correctly output newlines in shell integration *history* mode by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [bdda055]https://github.com/alexpasmantier/television/commit/bdda055c361180f7938a65bf62d5932e506d4a67 *(uncategorized)* Release version 0.13.9 by @alexpasmantier

- [397c677]https://github.com/alexpasmantier/television/commit/397c6770f1c72cf906ec83edfe32c9b294b13544 *(uncategorized)* Add zed editor config files to gitignore by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.13.8...0.13.9


## [0.13.8]https://github.com/alexpasmantier/television/releases/tag/0.13.8 - 2025-11-02

### 🐛 Bug Fixes

- [fecdc4b]https://github.com/alexpasmantier/television/commit/fecdc4bb7b7ae1733c22f2a13f0f3cd1d5fd4c90 *(channels)* `update-channels` now takes into account the user's version of tv by @alexpasmantier in [#761]https://github.com/alexpasmantier/television/pull/761

- [5975e6c]https://github.com/alexpasmantier/television/commit/5975e6cc8add1090c8a2bd3601bcc28328c85a6b *(remote)* Use relative rc picker state when rendering remote control by @alexpasmantier in [#762]https://github.com/alexpasmantier/television/pull/762

- [01706b1]https://github.com/alexpasmantier/television/commit/01706b18961a28590956198af4665bdd97774546 *(tests)* Use a proper tempdir when testing custom cli dirs by @alexpasmantier

- [bae2241]https://github.com/alexpasmantier/television/commit/bae2241244f2c71fc52b5fff5f334be94d5f5e6b *(ui)* Add string sanitizing for ansi result items by @alexpasmantier

### 📚 Documentation

- [3f3dd83]https://github.com/alexpasmantier/television/commit/3f3dd837edce815778724a2b7eb8dad9acb48484 *(uncategorized)* Add installation docs to readme and a couple of extra tweaks by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [c894137]https://github.com/alexpasmantier/television/commit/c894137b61de44d9f9fe7a54dbab8328ec812312 *(uncategorized)* Release version 0.13.8 by @alexpasmantier

- [6556d23]https://github.com/alexpasmantier/television/commit/6556d23f3cd8504fe8f6504f6f2913df6a718be2 *(uncategorized)* Nix flake update toolchain sha256 and the lock file by @tukanoidd in [#754]https://github.com/alexpasmantier/television/pull/754




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.13.7...0.13.8


## [0.13.7]https://github.com/alexpasmantier/television/releases/tag/0.13.7 - 2025-10-26

### 🐛 Bug Fixes

- [389f6f9]https://github.com/alexpasmantier/television/commit/389f6f918d2ef97b2522350c1de7dddca5f37fba *(clippy)* Update to stable 1.90 syntax by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [5d41b5e]https://github.com/alexpasmantier/television/commit/5d41b5e2360a502988f3b40dc57dc7b0debf6e8b *(rust)* Update rust toolchain to 1.90 and update deps by @alexpasmantier

- [2e0a9ad]https://github.com/alexpasmantier/television/commit/2e0a9adbde57e2d977e51fec07a1612d4fbfe0f5 *(uncategorized)* Release version 0.13.7 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.13.6...0.13.7


## [0.13.6]https://github.com/alexpasmantier/television/releases/tag/0.13.6 - 2025-10-26

### ⛰️  Features

- [e785e59]https://github.com/alexpasmantier/television/commit/e785e598c1be5174e4bb8063a53a0ac4322c8111 *(cable)* Add tldr channel by @alexpasmantier

- [74af02a]https://github.com/alexpasmantier/television/commit/74af02ae6a683dce77a066ec525264a8b01afa11 *(channels)* Channel for selecting tv channels by @mheuvel-dev in [#738]https://github.com/alexpasmantier/television/pull/738

- [0a256c4]https://github.com/alexpasmantier/television/commit/0a256c470fb2031d343baa9763ab38c1b218d731 *(channels)* Channel for selecting tldr pages by @mheuvel-dev in [#737]https://github.com/alexpasmantier/television/pull/737

### 🐛 Bug Fixes

- [f34b6c3]https://github.com/alexpasmantier/television/commit/f34b6c325612d70c61163b65bf487ba1aaa50eb8 *(ci)* Fix push command when packaging for apt by @alexpasmantier

- [1950cb9]https://github.com/alexpasmantier/television/commit/1950cb95a6309e54a4a956e6d475773208c4d40a *(tests)* Use exponential backoff when waiting on the pty child process by @alexpasmantier

- [3486897]https://github.com/alexpasmantier/television/commit/348689702316d07e367f0f99b0f56842010604b8 *(tests)* Ignore interior mutability clippy warning by @alexpasmantier

### 🚜 Refactor

- [bffa6e6]https://github.com/alexpasmantier/television/commit/bffa6e6b3da665a033692167be9ad81482e5df1d *(ux)* Automatically update channels on first run by @alexpasmantier

### 📚 Documentation

- [dd13418]https://github.com/alexpasmantier/television/commit/dd13418408cccae2b5296336a7e26df97df10954 *(uncategorized)* Add contributors graph to the README by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [725484f]https://github.com/alexpasmantier/television/commit/725484f5d8ad125f19ce606d5aa1515108bc5c8b *(uncategorized)* Release version 0.13.6 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.13.5...0.13.6


## [0.13.5]https://github.com/alexpasmantier/television/releases/tag/0.13.5 - 2025-10-02

### 🐛 Bug Fixes

- [2feedf1]https://github.com/alexpasmantier/television/commit/2feedf16ec99430a99d77815f0b54927ffc70ee8 *(windows)* Actions now always create a new process on windows by @alexpasmantier in [#731]https://github.com/alexpasmantier/television/pull/731

### ⚡ Performance

- [428a2d0]https://github.com/alexpasmantier/television/commit/428a2d0d567b05962a7996ca894a1dd3ffd8f3c1 *(uncategorized)* Update channels concurrently by @alexpasmantier in [#730]https://github.com/alexpasmantier/television/pull/730

### ⚙️ Miscellaneous Tasks

- [ee9ae50]https://github.com/alexpasmantier/television/commit/ee9ae5087b96a22cc8c4e385acdcc049e4787c42 *(uncategorized)* Release version 0.13.5 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.13.4...0.13.5


## [0.13.4]https://github.com/alexpasmantier/television/releases/tag/0.13.4 - 2025-10-01

### ⛰️  Features

- [fb28c72]https://github.com/alexpasmantier/television/commit/fb28c7244bc3ba266c3c4f99984e28391056b481 *(cable)* Add man page channel by @jeffwindsor in [#706]https://github.com/alexpasmantier/television/pull/706

- [dcd6f20]https://github.com/alexpasmantier/television/commit/dcd6f20c37770f69bcff605f5ddae78d3388e59a *(channels)* Add procs channel to manage running processes by @Efterklang in [#719]https://github.com/alexpasmantier/television/pull/719

- [3fee320]https://github.com/alexpasmantier/television/commit/3fee3206a7506f2bc819f79f21c5bf3ad88bf4b6 *(channels)* Channel for managing distrobox containers by @mheuvel-dev in [#725]https://github.com/alexpasmantier/television/pull/725

- [2f6855f]https://github.com/alexpasmantier/television/commit/2f6855f09572eaca58bb411d5e7e613e261d1293 *(channels)* Channel for guix packages by @gs-101 in [#717]https://github.com/alexpasmantier/television/pull/717

- [b3a44be]https://github.com/alexpasmantier/television/commit/b3a44becb47023b653a886c0e459775f0006b5a7 *(uncategorized)* Add external actions support for the help panel by @lalvarezt in [#712]https://github.com/alexpasmantier/television/pull/712

- [19e4bc2]https://github.com/alexpasmantier/television/commit/19e4bc27283874969e7ec389d8dd72c4f3c18bf0 *(uncategorized)* Interactively toggling between landscape and portrait layout by @alexpasmantier in [#702]https://github.com/alexpasmantier/television/pull/702

### 🐛 Bug Fixes

- [9b489d8]https://github.com/alexpasmantier/television/commit/9b489d8bdbf0b00c36910bb41ad6a9267f11f38f *(channels)* Deduplicate history command in nu-history channel by @Efterklang

- [22d334d]https://github.com/alexpasmantier/television/commit/22d334d4957e43e88b8e1de6a90eecebd2d8a349 *(shell)* Use $TTY for paste bracketing override by @forivall in [#707]https://github.com/alexpasmantier/television/pull/707

- [9fbfbf6]https://github.com/alexpasmantier/television/commit/9fbfbf626e388ba9fc2bb05c7d3e50d2241de315 *(uncategorized)* Update binary target in install.sh by @AlexElizard in [#714]https://github.com/alexpasmantier/television/pull/714

### 🧪 Testing

- [7c5adaf]https://github.com/alexpasmantier/television/commit/7c5adaf5c669041bbcee02ff6e92e424ed17c7f1 *(uncategorized)* Support passing custom tv binary path via env `TV_BIN_PATH` by @jcgruenhage in [#715]https://github.com/alexpasmantier/television/pull/715

### ⚙️ Miscellaneous Tasks

- [42c3dce]https://github.com/alexpasmantier/television/commit/42c3dce8621220947eff76bd432c70772784976c *(scripts)* Prefer os-specific channel screenshots over generic ones by @alexpasmantier

- [44a6224]https://github.com/alexpasmantier/television/commit/44a6224e4d9c4185a36dd942036fdf854fcc46bf *(uncategorized)* Release version 0.13.4 by @alexpasmantier

- [77d20d2]https://github.com/alexpasmantier/television/commit/77d20d27c7ceeb715a681e315f6fa9967a1b779f *(uncategorized)* Fix generate-cable-docs.yml by @alexpasmantier

- [5aa990d]https://github.com/alexpasmantier/television/commit/5aa990d27455b238569fc3cf5729e751847bfcc9 *(uncategorized)* Update changelog by @alexpasmantier



### New Contributors
* @Efterklang made their first contribution in [#719]https://github.com/alexpasmantier/television/pull/719
* @gs-101 made their first contribution in [#717]https://github.com/alexpasmantier/television/pull/717
* @jcgruenhage made their first contribution in [#715]https://github.com/alexpasmantier/television/pull/715
* @AlexElizard made their first contribution in [#714]https://github.com/alexpasmantier/television/pull/714
* @jeffwindsor made their first contribution in [#706]https://github.com/alexpasmantier/television/pull/706
* @forivall made their first contribution in [#707]https://github.com/alexpasmantier/television/pull/707

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.13.3...0.13.4


## [0.13.3]https://github.com/alexpasmantier/television/releases/tag/0.13.3 - 2025-08-13

### ⛰️  Features

- [834a3cc]https://github.com/alexpasmantier/television/commit/834a3ccd3ef61feeb675a9c1c07fce3f43c17bcc *(actions)* Improve actions behavior and add support for `exec` by @alexpasmantier in [#689]https://github.com/alexpasmantier/television/pull/689

- [fcebf0a]https://github.com/alexpasmantier/television/commit/fcebf0a3f1384b2d8e81e051f976a153d844d43d *(channels)* Add `update-channels` bash script by @alexpasmantier

- [4b784f7]https://github.com/alexpasmantier/television/commit/4b784f76e4df89263af4ee7b50508db5274b30d3 *(channels)* Channel for Justfile recipes by @mheuvel-dev in [#691]https://github.com/alexpasmantier/television/pull/691

- [d6fd179]https://github.com/alexpasmantier/television/commit/d6fd1793817f5e8999fc7c4251e54644c99a03c2 *(channels)* Kubernetes channels for deployments, pods and services by @LeoVen in [#688]https://github.com/alexpasmantier/television/pull/688

- [9108edd]https://github.com/alexpasmantier/television/commit/9108edd0c30c9d7167c9c147b80bf1616e6b6ee2 *(website)* Improved Algoila search bar UI by @kapobajza in [#700]https://github.com/alexpasmantier/television/pull/700

- [9794ae1]https://github.com/alexpasmantier/television/commit/9794ae1ea967b413eae38938e777aa5453de83da *(uncategorized)* Add support for NetBSD installation by @0323pin in [#690]https://github.com/alexpasmantier/television/pull/690

### 🐛 Bug Fixes

- [14e719f]https://github.com/alexpasmantier/television/commit/14e719f4afafcd14ce3a531ab4f6855aab4628bf *(remote)* Merge channel shortcuts into input map when switching channels by @alexpasmantier

### 🚜 Refactor

- [8c4ac25]https://github.com/alexpasmantier/television/commit/8c4ac2553632ec52738563825a3f92cc20d43d51 *(cli)* Use all lowercase key representations by @alexpasmantier

- [b2b60ee]https://github.com/alexpasmantier/television/commit/b2b60eef9813a258c9ee881b108cea3ceb34e940 *(uncategorized)* Remove stale input map logic from App + add tests by @alexpasmantier

### 📚 Documentation

- [7ff55dc]https://github.com/alexpasmantier/television/commit/7ff55dc1f9154f8c1752def33f383c0d42a1a2b7 *(uncategorized)* Update README example by @alexpasmantier

- [3439e8a]https://github.com/alexpasmantier/television/commit/3439e8a1b9b48f487aab25c6e0626ecadb457d47 *(uncategorized)* Update default keybindings by @pastalian

### 🧪 Testing

- [95fa84c]https://github.com/alexpasmantier/television/commit/95fa84c7207ff8877d0d8844c6b12f085dcf5fb7 *(uncategorized)* Add integration tests for missing CLI ui flags by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [f7406d5]https://github.com/alexpasmantier/television/commit/f7406d53298d6373e1edf4ce1b206f2e3493ec27 *(website)* Setup algolia search by @alexpasmantier

- [d878244]https://github.com/alexpasmantier/television/commit/d878244d8015be60fa879bc2050404e097523006 *(website)* Prepare for algolia search by @alexpasmantier

- [1794435]https://github.com/alexpasmantier/television/commit/179443545e98a5bf054ee6fd3ac61527517b7126 *(uncategorized)* Release version 0.13.3 by @alexpasmantier



### New Contributors
* @pastalian made their first contribution
* @mheuvel-dev made their first contribution in [#691]https://github.com/alexpasmantier/television/pull/691
* @0323pin made their first contribution in [#690]https://github.com/alexpasmantier/television/pull/690

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.13.2...0.13.3


## [0.13.2]https://github.com/alexpasmantier/television/releases/tag/0.13.2 - 2025-08-07

### 🐛 Bug Fixes

- [e0c940c]https://github.com/alexpasmantier/television/commit/e0c940cf991f57b693d04428f032c6c6f2fa8a7f *(uncategorized)* More informative error message when channel not found by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [a478724]https://github.com/alexpasmantier/television/commit/a4787242f227ab025cbfd827bf4886927d10b3b6 *(uncategorized)* Release version 0.13.2 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.13.1...0.13.2


## [0.13.1]https://github.com/alexpasmantier/television/releases/tag/0.13.1 - 2025-08-07

### ⛰️  Features

- [e37f5b4]https://github.com/alexpasmantier/television/commit/e37f5b4e546aa684ead5716ff8c76ad185cd9385 *(uncategorized)* Installation script by @alexpasmantier in [#685]https://github.com/alexpasmantier/television/pull/685

### ⚙️ Miscellaneous Tasks

- [c3fe4b3]https://github.com/alexpasmantier/television/commit/c3fe4b398b100221efe289cacc1a7f3d2324ab91 *(uncategorized)* Release version 0.13.1 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.13.0...0.13.1


## [0.13.0]https://github.com/alexpasmantier/television/releases/tag/0.13.0 - 2025-08-06

### ⛰️  Features

- [63342af]https://github.com/alexpasmantier/television/commit/63342aff5736ef0c27e124fe92fc585a3ab4947b *(ansi)* Bring back text and git-log ansi colored channels by @alexpasmantier

- [01e12b0]https://github.com/alexpasmantier/television/commit/01e12b09af55bf207655bbed2ee0b66b74d3ab89 *(channels)* Use ansi variants for git log, reflog and text channels by @alexpasmantier

- [c93ddee]https://github.com/alexpasmantier/television/commit/c93ddeeadbdb88d621ea00355cec1620b6382631 *(cli)* Registering transparent selection keys for tv by @alexpasmantier

- [a0e3063]https://github.com/alexpasmantier/television/commit/a0e3063702aea2b6730b0a1c3bfc1b8fb948acb2 *(config)* Border styles and padding are now configurable by @raylu in [#642]https://github.com/alexpasmantier/television/pull/642

- [39610e1]https://github.com/alexpasmantier/television/commit/39610e145d2eddfb29ea9b2a244f773ca4d38da8 *(config)* A more expressive bindings system by @lalvarezt

- [e809ccf]https://github.com/alexpasmantier/television/commit/e809ccf686c171d51c609f2679a2428ce15068f5 *(config)* Add support for custom input prompt in user config by @audibleblink in [#648]https://github.com/alexpasmantier/television/pull/648

- [be6cdf8]https://github.com/alexpasmantier/television/commit/be6cdf8a3a4dff6bd72037a6b3b98370e84cee0d *(preview)* Previews can now be cached on a per-channel basis by @alexpasmantier in [#667]https://github.com/alexpasmantier/television/pull/667

- [83f29f7]https://github.com/alexpasmantier/television/commit/83f29f7418a7adb6f5ca9ee5ac057ef38728fa28 *(zsh)* Add tv cli options/arguments/subcommands autocompletion by @ascandella in [#665]https://github.com/alexpasmantier/television/pull/665

- [d040167]https://github.com/alexpasmantier/television/commit/d040167eec541fd31d7ad2583bfc8437bb5f3736 *(uncategorized)* Better handling external action's arguments by @lalvarezt in [#675]https://github.com/alexpasmantier/television/pull/675

- [ea7e152]https://github.com/alexpasmantier/television/commit/ea7e15251e4f574f508aabff6cc6140790c0b9b1 *(uncategorized)* Support for external actions by @lalvarezt in [#669]https://github.com/alexpasmantier/television/pull/669

- [098f3f4]https://github.com/alexpasmantier/television/commit/098f3f4fe407cc942e8fa668db9065f3c90b25bc *(uncategorized)* Ansi-styled results with `--ansi` or corresponding channel option by @alexpasmantier in [#655]https://github.com/alexpasmantier/television/pull/655

### 🐛 Bug Fixes

- [c44abce]https://github.com/alexpasmantier/television/commit/c44abce389302b228abd949dbbb95d4bfb5f0c3e *(channels)* Revert #01e12b09 by @alexpasmantier

- [b8cf712]https://github.com/alexpasmantier/television/commit/b8cf7127718b7cfa629c34f278405d920a78ea5e *(channels)* Keep repo channel backward compatible (pre-actions) by @alexpasmantier

- [c8da07f]https://github.com/alexpasmantier/television/commit/c8da07f3ed36af3a3eb5371c417be6376537a8f4 *(fish)* More robust string escaping by @alexpasmantier in [#656]https://github.com/alexpasmantier/television/pull/656

- [4463579]https://github.com/alexpasmantier/television/commit/4463579d1334cba031aeb8b3ccb2c718974ac6aa *(gh)* Don't panic when parsing newer channels downloaded from github by @alexpasmantier

- [a1a7489]https://github.com/alexpasmantier/television/commit/a1a74890ee74ca030c332775e4bc5ea61ee6d689 *(remote)* Only update remote picker state when in the corresponding mode by @alexpasmantier

- [94e1061]https://github.com/alexpasmantier/television/commit/94e1061b67337ec0a109d36927c34582c5b1593c *(ui)* Adapt input bar height to borders and padding settings by @alexpasmantier

- [a61f261]https://github.com/alexpasmantier/television/commit/a61f26197ec4b19e57d896ad81fb0775ae31502b *(website)* Fixed broken links on home page by @kapobajza in [#662]https://github.com/alexpasmantier/television/pull/662

### 🚜 Refactor

- [0da891d]https://github.com/alexpasmantier/television/commit/0da891df400bbcb2ac7dc4e3fbbf190fceafd444 *(config)* Introduce a new layered config system by @alexpasmantier in [#680]https://github.com/alexpasmantier/television/pull/680

- [c8df962]https://github.com/alexpasmantier/television/commit/c8df96270a0045288fff200f4ecc0a680d12d107 *(help)* More informative help panel by @lalvarezt in [#668]https://github.com/alexpasmantier/television/pull/668

### 📚 Documentation

- [1d6b996]https://github.com/alexpasmantier/television/commit/1d6b996c834bf9b2ec7f1811e202c02b4507096c *(uncategorized)* Update contributing docs and website by @alexpasmantier

- [c789802]https://github.com/alexpasmantier/television/commit/c789802d86eccbabfd6fe5060685e7850524603b *(uncategorized)* Fix discord badge by @alexpasmantier

### ⚡ Performance

- [a019f18]https://github.com/alexpasmantier/television/commit/a019f1822917f3064fce5f79ad956873b389e2e8 *(channel)* Avoid unnecessary allocations by @alexpasmantier

### 🧪 Testing

- [72c3473]https://github.com/alexpasmantier/television/commit/72c34731ec226147db153c35e41b05de0eb25870 *(pty)* Longer delay when checking pty exit code by @alexpasmantier

- [896577e]https://github.com/alexpasmantier/television/commit/896577eabe9b2d5a2acd37c8e8de649564abd442 *(uncategorized)* Improve testing helpers and add configuration merging testing by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [3d5e617]https://github.com/alexpasmantier/television/commit/3d5e617cbc37397f31bfa0af42fa83a2c819299d *(website)* Remove unneeded demo markdown page by @alexpasmantier

- [b038b75]https://github.com/alexpasmantier/television/commit/b038b75de997c46977422dd94953054e2442504a *(uncategorized)* Release version 0.13.0 by @alexpasmantier

- [7967085]https://github.com/alexpasmantier/television/commit/7967085b1b371304720fb69b39054f2bd911475b *(uncategorized)* Fix aarch64-linux-gnu cross compilation by @alexpasmantier



### New Contributors
* @ascandella made their first contribution in [#665]https://github.com/alexpasmantier/television/pull/665
* @raylu made their first contribution in [#642]https://github.com/alexpasmantier/television/pull/642
* @audibleblink made their first contribution in [#648]https://github.com/alexpasmantier/television/pull/648

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.12.5...0.13.0


## [0.12.5]https://github.com/alexpasmantier/television/releases/tag/0.12.5 - 2025-07-18

### ⛰️  Features

- [313c0c3]https://github.com/alexpasmantier/television/commit/313c0c32382e4977955c3a4d9e3fcb4f1f1556ce *(cable)* Channels for AWS Buckets and Instances by @LeoVen in [#647]https://github.com/alexpasmantier/television/pull/647

- [bc7a38b]https://github.com/alexpasmantier/television/commit/bc7a38b1a42dc01ff3cbd78f4ef39f24636f7ad9 *(uncategorized)* Add discord server badge in README file by @MohamedBsh in [#650]https://github.com/alexpasmantier/television/pull/650

### 🐛 Bug Fixes

- [07853f0]https://github.com/alexpasmantier/television/commit/07853f07009c7aa96b6d2587dc1e6cb440622ef0 *(history)* Short-circuit `add_entry` when history size is zero by @alexpasmantier

- [4b84a12]https://github.com/alexpasmantier/television/commit/4b84a12320ac2a998691bfdb374ce88f42b326b5 *(website)* Added gap between home page features on smaller screens by @kapobajza in [#645]https://github.com/alexpasmantier/television/pull/645

- [6a11627]https://github.com/alexpasmantier/television/commit/6a11627546372574ef8cb9f7dd57ef0c7d5f5d17 *(uncategorized)* Text channel colon splitting by @alexpasmantier

- [37e31b2]https://github.com/alexpasmantier/television/commit/37e31b24436fb34d3befdf1ddf1de1df956d7224 *(uncategorized)* Clean exit when fallback channel is not found by @alexpasmantier

### 📚 Documentation

- [c4bcba2]https://github.com/alexpasmantier/television/commit/c4bcba211aa1ea151b62a2f22c28d8f563fe4924 *(uncategorized)* Fix cable channel docs image links by @alexpasmantier

- [14b91f5]https://github.com/alexpasmantier/television/commit/14b91f5e55cb7b429dc82b0a778dc3b429fde8d5 *(uncategorized)* Update discord badge by @alexpasmantier

- [3e4267d]https://github.com/alexpasmantier/television/commit/3e4267dad465a44f8e9931499be5f35e9b2e8d99 *(uncategorized)* Update website features by @alexpasmantier in [#640]https://github.com/alexpasmantier/television/pull/640

### 🧪 Testing

- [6b818b9]https://github.com/alexpasmantier/television/commit/6b818b927c5e4f60c30ffb175cdc99e27482e289 *(uncategorized)* Make file based testing more robust with unique identifiers by @lalvarezt

- [2ae95cd]https://github.com/alexpasmantier/television/commit/2ae95cdbb1125d62b0fc57721dc952000ca170bb *(uncategorized)* Add missing test target directory to flaky tests by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [c533c41]https://github.com/alexpasmantier/television/commit/c533c41540578114eb53c19196b757a6c97bbc51 *(uncategorized)* Release version 0.12.5 by @alexpasmantier

- [4d42a73]https://github.com/alexpasmantier/television/commit/4d42a731bf167793154eafec4404f7b58335ab3c *(uncategorized)* Some gh actions + justfile improvements by @alexpasmantier



### New Contributors
* @LeoVen made their first contribution in [#647]https://github.com/alexpasmantier/television/pull/647

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.12.4...0.12.5


## [0.12.4]https://github.com/alexpasmantier/television/releases/tag/0.12.4 - 2025-07-13

### ⛰️  Features

- [99b5c5c]https://github.com/alexpasmantier/television/commit/99b5c5ce784e64e8930ebdc9cd5117d0750f59dc *(cli)* Add `--force` option to `update-channels` by @alexpasmantier

### 📚 Documentation

- [da9484a]https://github.com/alexpasmantier/television/commit/da9484a4912b93353c970ed25728a9140f6a0f51 *(uncategorized)* Update CONTRIBUTING.md by @alexpasmantier

### 🧪 Testing

- [23f38f9]https://github.com/alexpasmantier/television/commit/23f38f9bb43cb5b0f3f271801014e1992e4aead6 *(uncategorized)* Fix flaky tests and increase frame stability timeout by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [e87f7d3]https://github.com/alexpasmantier/television/commit/e87f7d30a881cab30a5dc8d10c8fa9a2ce5b4a3c *(uncategorized)* Release version 0.12.4 by @alexpasmantier

- [16d7de7]https://github.com/alexpasmantier/television/commit/16d7de7d09f9bf70f4dcf24228baa7bd43b26de9 *(uncategorized)* Fix cross not available in PATH by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.12.3...0.12.4


## [0.12.3]https://github.com/alexpasmantier/television/releases/tag/0.12.3 - 2025-07-12

### ⛰️  Features

- [4e90a35]https://github.com/alexpasmantier/television/commit/4e90a357e86048ae352896ecc5c9552ca83a5e98 *(themes)* Allow users to add theme overrides using their config file by @MohamedBsh in [#604]https://github.com/alexpasmantier/television/pull/604

### 🐛 Bug Fixes

- [521c747]https://github.com/alexpasmantier/television/commit/521c7473b4fa96fca6779eeaa2649fea47d6cd1f *(channels)* Make stdin and adhoc channels inherit from global config by @lalvarezt in [#633]https://github.com/alexpasmantier/television/pull/633

- [781d27c]https://github.com/alexpasmantier/television/commit/781d27cebc7fd6ebeb3bca2e3a773ca1a0781557 *(ci)* Cross compilation for aarch64 deb release by @alexpasmantier

- [229604a]https://github.com/alexpasmantier/television/commit/229604a7659f1d97e9e0778d0438f1a21b0afcec *(fish)* Fix --inline terminal behavior for fish integration by @alexpasmantier

- [6023d02]https://github.com/alexpasmantier/television/commit/6023d020f11265af58315402885fb45911465c6c *(nix)* Set meta.mainProgram field by @samirettali in [#634]https://github.com/alexpasmantier/television/pull/634

- [7079d48]https://github.com/alexpasmantier/television/commit/7079d48aa7080836b24c06a6aa879d3f88380776 *(nushell)* Append to existing nu keybindings instead of replacing them by @alexpasmantier

- [fb97f01]https://github.com/alexpasmantier/television/commit/fb97f011be9a7a1575a3516225d4dd87a0518461 *(themes)* `selection_fg` was not applied correctly + code improvements by @alexpasmantier

- [83711f6]https://github.com/alexpasmantier/television/commit/83711f6d3073bb5b2f1eac0ec7bddab4fc8b843d *(zsh)* Improve zsh integration inline mode by @alexpasmantier

### 🚜 Refactor

- [23cf584]https://github.com/alexpasmantier/television/commit/23cf584f67f62de0f74a6f4813878d6732d123a9 *(bash)* Improve bash integration script by @alexpasmantier

### 📚 Documentation

- [f0d17b7]https://github.com/alexpasmantier/television/commit/f0d17b70114db03154f5889987d7ab5067e5aee2 *(uncategorized)* Add links to various repo docs by @alexpasmantier

- [1bbda8e]https://github.com/alexpasmantier/television/commit/1bbda8e62f2d9698f522cd673ff68ca2253819c5 *(uncategorized)* Add link to shell integration local dev note by @alexpasmantier

### 🧪 Testing

- [ecf05a0]https://github.com/alexpasmantier/television/commit/ecf05a0148c8d0d3d29af941aa7187b169b1ee14 *(cli)* Fix some flaky tests, reinstate exact mode testing by @lalvarezt in [#632]https://github.com/alexpasmantier/television/pull/632

### ⚙️ Miscellaneous Tasks

- [d5adad0]https://github.com/alexpasmantier/television/commit/d5adad03231795f2ad9e0deaa983827d0f4e2f58 *(uncategorized)* Release version 0.12.3 by @alexpasmantier

- [e9ef8d8]https://github.com/alexpasmantier/television/commit/e9ef8d8150fba8dd1f748baadb4560b390542d1b *(uncategorized)* Add recipes to allow testing shell integrations locally less of a pain by @alexpasmantier



### New Contributors
* @samirettali made their first contribution in [#634]https://github.com/alexpasmantier/television/pull/634

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.12.2...0.12.3


## [0.12.2]https://github.com/alexpasmantier/television/releases/tag/0.12.2 - 2025-07-10

### 🐛 Bug Fixes

- [177ac79]https://github.com/alexpasmantier/television/commit/177ac79bcfaf9ddb0281b9dcd568ea5346d649a0 *(cable)* Quote shell arguments and fix line endings for linux files by @lalvarezt in [#619]https://github.com/alexpasmantier/television/pull/619

- [a663c47]https://github.com/alexpasmantier/television/commit/a663c47e4cd36710040740c20fe5fb69173d300e *(ci)* Install cross by @alexpasmantier

- [e4a6447]https://github.com/alexpasmantier/television/commit/e4a6447d75f54dbf81cd4da14c248dfe9fe95f0e *(themes)* Make channel mode background optional by @kapobajza in [#614]https://github.com/alexpasmantier/television/pull/614

- [20be709]https://github.com/alexpasmantier/television/commit/20be709ee9f66f7e6c9c1362fcdcf598a59ec2c8 *(tui)* Better handling of cursor position by @lalvarezt in [#621]https://github.com/alexpasmantier/television/pull/621

- [799dcd8]https://github.com/alexpasmantier/television/commit/799dcd875d374edb788cf5f5a52d386099ef2cd6 *(tui)* Account for cursor position when determining the size by @lalvarezt in [#620]https://github.com/alexpasmantier/television/pull/620

### 📚 Documentation

- [b2c4353]https://github.com/alexpasmantier/television/commit/b2c43539ffed34c7a97a71f2ca236f6dd3aa8305 *(uncategorized)* Update installation page by @alexpasmantier

- [381ddde]https://github.com/alexpasmantier/television/commit/381dddeab20aad6aa7b6f8746b3f0792814a2d6b *(uncategorized)* Update readme link by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [d05b22d]https://github.com/alexpasmantier/television/commit/d05b22d82ba650b9f623b68d06dc31e9ab8ca6e1 *(uncategorized)* Bump to 0.12.2 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.12.1...0.12.2


## [0.12.1]https://github.com/alexpasmantier/television/releases/tag/0.12.1 - 2025-07-09

### 🐛 Bug Fixes

- [75ea895]https://github.com/alexpasmantier/television/commit/75ea8953a21f14dba20c973f9be0230022350ea1 *(cable)* No more panics on empty cable by @alexpasmantier

- [bcf9f1a]https://github.com/alexpasmantier/television/commit/bcf9f1a3a62e8677392dbfdc3c460fcff693c54e *(cable)* No panic when listing empty cable by @alexpasmantier

- [427ca36]https://github.com/alexpasmantier/television/commit/427ca3619c2b70bef1cf071f069d3701fab59ec1 *(shell)* Set fish keybinds for both default and insert modes by @joelazar in [#610]https://github.com/alexpasmantier/television/pull/610

- [20a55cf]https://github.com/alexpasmantier/television/commit/20a55cf1429565990debda5df31c6a357870ed87 *(tui)* Fix incorrect height calculation when there is not enough space by @lalvarezt in [#611]https://github.com/alexpasmantier/television/pull/611

- [c392ae8]https://github.com/alexpasmantier/television/commit/c392ae891c9fef8673ffe52072b056c524da2bd7 *(ui)* Config now takes precedence when no cli args on `ui_scale` by @alexpasmantier

### 📚 Documentation

- [b6e9990]https://github.com/alexpasmantier/television/commit/b6e9990b2f93bbaddb33b14f6824f66f5556a1d2 *(uncategorized)* Made the landing page more responsive by @kapobajza in [#605]https://github.com/alexpasmantier/television/pull/605

- [0876520]https://github.com/alexpasmantier/television/commit/0876520938febd38893c2a2ac7a30b1a996b4f4c *(uncategorized)* Update patch notes by @alexpasmantier

- [333bf63]https://github.com/alexpasmantier/television/commit/333bf63e3a92f3d1f5f4e3ab7691233d4b0e0a2c *(uncategorized)* Update readme links by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [ee180d7]https://github.com/alexpasmantier/television/commit/ee180d72fb6efde5f3f27e249f14807379f06a8b *(docs)* Add missing pnpm installation step to tests by @alexpasmantier

- [85a538d]https://github.com/alexpasmantier/television/commit/85a538d257e952430a0fb0cfd2d26a7c5c71e62a *(uncategorized)* Bump to 0.12.1 by @alexpasmantier

- [4fd42ac]https://github.com/alexpasmantier/television/commit/4fd42acd7e1ff238ab2260e82bdece29a39a00d7 *(uncategorized)* Update issue and pr templates by @alexpasmantier



### New Contributors
* @joelazar made their first contribution in [#610]https://github.com/alexpasmantier/television/pull/610
* @Vijayabaskar56 made their first contribution in [#607]https://github.com/alexpasmantier/television/pull/607

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.12.0...0.12.1


## [0.12.0]https://github.com/alexpasmantier/television/releases/tag/0.12.0 - 2025-07-07

### ⛰️  Features

- [c34fa57]https://github.com/alexpasmantier/television/commit/c34fa5731213afc1bd890b4cb76e5a9f6c689095 *(binary)* Host our own apt repo by @kapobajza in [#568]https://github.com/alexpasmantier/television/pull/568

- [7b40e76]https://github.com/alexpasmantier/television/commit/7b40e769aebf55000daa6437fcc27774ceb5c70b *(cable)* Migrate windows channels by @alexpasmantier

- [6b38ce2]https://github.com/alexpasmantier/television/commit/6b38ce2058ca14265ad2a4c93ee3a2603944987f *(cable)* Migrate the rest of unix channels by @alexpasmantier

- [a49f104]https://github.com/alexpasmantier/television/commit/a49f1046709d911761761f373df4e32179950341 *(channel)* Add channel global shortcuts by @lalvarezt

- [1891736]https://github.com/alexpasmantier/television/commit/18917362beb039ef5336b8b60b977e2d608b7d8f *(cli)* Add watch flag to trigger reload of channels by @lalvarezt

- [2ecbc8a]https://github.com/alexpasmantier/television/commit/2ecbc8a170693bb68f3f517dcf95c6b690c1771f *(cli)* Initial support for source and preview overrides, layout, take_1 and take_1_fast by @lalvarezt

- [bc8d636]https://github.com/alexpasmantier/television/commit/bc8d6360056d73eb868d54272f703436dfe6ca15 *(cli)* Add cli options to override configuration and cable directories by @alexpasmantier

- [f887a23]https://github.com/alexpasmantier/television/commit/f887a2390ede0a5f30d61f2bb9d4e1e421109d63 *(cli)* Add a `--ui-scale` [0,100] cli parameter by @alexpasmantier in [#492]https://github.com/alexpasmantier/television/pull/492

- [7067a2b]https://github.com/alexpasmantier/television/commit/7067a2ba939bba803d4a6d54423ba87476e40dc4 *(remote)* Rework remote UI and add description and requirements panels by @alexpasmantier

- [cfe49ce]https://github.com/alexpasmantier/television/commit/cfe49ce81c1eb428b7c38fe5b524d67141099946 *(remote)* Redirect `Action::Quit` to `Action::ToggleRemoteControl` when in remote mode by @alexpasmantier in [#508]https://github.com/alexpasmantier/television/pull/508

- [4d80e95]https://github.com/alexpasmantier/television/commit/4d80e95c6b42bd3d5b9d891e780df66b5a6235cc *(shell)* Add support for integration with NuShell by @alexpasmantier in [#410]https://github.com/alexpasmantier/television/pull/410

- [0f4d879]https://github.com/alexpasmantier/television/commit/0f4d87915b76c066a9a4f9ac01f81763271ce37e *(shell)* Improve zsh completion system by @lalvarezt in [#525]https://github.com/alexpasmantier/television/pull/525

- [be8008e]https://github.com/alexpasmantier/television/commit/be8008e97d5ab5063aff27bea52b6315b9f878f7 *(shell)* Improve fish completion system by @lalvarezt in [#494]https://github.com/alexpasmantier/television/pull/494

- [639caa1]https://github.com/alexpasmantier/television/commit/639caa1a30cf1a9df78e2462e8cce98cf4c53d16 *(stdin)* Accept various entry separator characters by @alexpasmantier in [#572]https://github.com/alexpasmantier/television/pull/572

- [ccc12e2]https://github.com/alexpasmantier/television/commit/ccc12e2644aa329589ca55c112a131fc16163a86 *(tui)* Add special testing conditions for overlay testing by @lalvarezt in [#585]https://github.com/alexpasmantier/television/pull/585

- [4ed48cc]https://github.com/alexpasmantier/television/commit/4ed48ccdadf05f4b4ca09aeea8eaf82c6d798486 *(ui)* Support for non-fullscreen UI by @lalvarezt in [#578]https://github.com/alexpasmantier/television/pull/578

- [23f52d4]https://github.com/alexpasmantier/television/commit/23f52d4533d55223f2b60d431d9a7915409795ef *(ui)* Optional scrollbar and mouse support for the preview panel by @lalvarezt

- [ad4e254]https://github.com/alexpasmantier/television/commit/ad4e254ae652e9e2706a81abe01e9ae6e1b2dc51 *(ui)* New keybindings panel and status bar by @lalvarezt

- [510e7b6]https://github.com/alexpasmantier/television/commit/510e7b633829e34adb21ade72163993fd11b3c15 *(ui)* Add support for customizing `input_header`, `preview_header` and `preview_footer` by @lalvarezt

- [783d96b]https://github.com/alexpasmantier/television/commit/783d96bb678de59a10fff63a8719efe4dd5e50fc *(ui)* Preview size customization by @lalvarezt

- [1086899]https://github.com/alexpasmantier/television/commit/1086899ba76f9b3377a4f67d8d7aef5da2cd310d *(ui)* Add a UI portrait mode #489 by @cr4ftx in [#496]https://github.com/alexpasmantier/television/pull/496

- [3b3a0ec]https://github.com/alexpasmantier/television/commit/3b3a0ec1ffc8a2ccd9b7f2dd890d752933c8ff31 *(windows)* Add text channel with preview offset for windows by @alexpasmantier in [#514]https://github.com/alexpasmantier/television/pull/514

- [4513945]https://github.com/alexpasmantier/television/commit/45139457a15773b10c6b1963f02947c2738d7eed *(uncategorized)* Add global/channel input history by @lalvarezt in [#573]https://github.com/alexpasmantier/television/pull/573

- [9e306d9]https://github.com/alexpasmantier/television/commit/9e306d93bc3e95441c042452d503770d8af0c6e4 *(uncategorized)* New channel and added reload and toggle actions by @lalvarezt

### 🐛 Bug Fixes

- [dbff3a3]https://github.com/alexpasmantier/television/commit/dbff3a330b169c422ae384e373b934dceb8e01b2 *(alias)* Move terminal raw mode before loading bat assets #444 by @cr4ftx in [#484]https://github.com/alexpasmantier/television/pull/484

- [0514a91]https://github.com/alexpasmantier/television/commit/0514a914b630719391d66df61eb9d53c58933c3f *(alias)* Rename the aliases channel to `alias` by @alexpasmantier in [#485]https://github.com/alexpasmantier/television/pull/485

- [67195e7]https://github.com/alexpasmantier/television/commit/67195e756c85514c144232800db21b49d8aa0de1 *(app)* Channel keybindings are ignored by @lalvarezt

- [415dd38]https://github.com/alexpasmantier/television/commit/415dd38c66b93b96bdc6d1701494c1fbb068a78d *(app)* Honor cli no-help and no-preview by @lalvarezt

- [6b3c4ee]https://github.com/alexpasmantier/television/commit/6b3c4ee773fb53cd72e384e892faf29d83fd63c7 *(cable)* Don't panic when unable to format user template with entry by @alexpasmantier in [#516]https://github.com/alexpasmantier/television/pull/516

- [5d730cd]https://github.com/alexpasmantier/television/commit/5d730cdf71141ea8224e2a7d617a5431a705aaf6 *(channel)* Only allow reload and cycle_sources in channel mode by @alexpasmantier

- [17439da]https://github.com/alexpasmantier/television/commit/17439dace5c5bfad49fd7e4c1344e520a1fd3c6b *(channels)* Quote bat arguments by @Ktoks in [#590]https://github.com/alexpasmantier/television/pull/590

- [07556ea]https://github.com/alexpasmantier/television/commit/07556eac79f08c74472e3da276df3be2d71e85b1 *(cli)* Fix validation rules when reading from stdin by @alexpasmantier

- [ca5808a]https://github.com/alexpasmantier/television/commit/ca5808affe9166babea5f194d6ccc58daef37f38 *(cli)* Fix parsing of arguments for autocomplete-prompt by @lalvarezt in [#569]https://github.com/alexpasmantier/television/pull/569

- [090d71a]https://github.com/alexpasmantier/television/commit/090d71aff0112b22631764ffae5b73d2bb8a87c5 *(cli)* Using --exact now works on the --input text aswell by @domaschh

- [dfbdd65]https://github.com/alexpasmantier/television/commit/dfbdd65107ebd189fc3ebaa9b1650d012391aeee *(config)* Use the config `default_channel` field as a fallback when no channel is specified by @alexpasmantier in [#524]https://github.com/alexpasmantier/television/pull/524

- [653c986]https://github.com/alexpasmantier/television/commit/653c986b7ee9d5bcb130b50483a83be3ca48e0e1 *(github)* Copy github prototypes' content directly by @alexpasmantier

- [3e98475]https://github.com/alexpasmantier/television/commit/3e98475e3529e0cf63bf1e5f1667888e4e0d41cd *(github)* Improve ux when downloading cable channels by @alexpasmantier

- [9a80919]https://github.com/alexpasmantier/television/commit/9a80919f66c576177c76f6468eb462ee746dbc0f *(keybindings)* Add cmd as an option for modifrs by @domaschh

- [cd33151]https://github.com/alexpasmantier/television/commit/cd33151bac9422dcef8edcfd16a6553228611631 *(layout)* Double check whether preview is enabled by @nkxxll in [#499]https://github.com/alexpasmantier/television/pull/499

- [d429a9a]https://github.com/alexpasmantier/television/commit/d429a9a6ee97022d21d7f914a4288efe291a1cc1 *(matcher)* Better handling of reloading and cycling through sources by @alexpasmantier

- [94e34c1]https://github.com/alexpasmantier/television/commit/94e34c16682e2af56a60511dce5c44e26e8aa914 *(os)* No more panicking on cwd-related errors by @alexpasmantier

- [0f8a585]https://github.com/alexpasmantier/television/commit/0f8a585c85befebcdbcbba1b12ca774c3f973b64 *(preview)* Default to no offset when offset template formatting fails by @alexpasmantier

- [a81a86f]https://github.com/alexpasmantier/television/commit/a81a86f1fd01e049b33a6afdb58adfcadaad1095 *(preview)* Don't panic when the previewer attempts to send to a closed channel by @alexpasmantier

- [1741a15]https://github.com/alexpasmantier/television/commit/1741a15e526ea0a304bb1cccb5f75bb46d42a6a2 *(preview)* Add a post-processing step to clean out ansi text from non-displayable characters by @alexpasmantier in [#509]https://github.com/alexpasmantier/television/pull/509

- [a8fb0f0]https://github.com/alexpasmantier/television/commit/a8fb0f0b0e771ae3574b71630ff43e15b7ffc9ef *(reload)* Avoid UI flickering while reloading channel by @alexpasmantier

- [1f0c178]https://github.com/alexpasmantier/television/commit/1f0c178a2d79ccf1e6cbe13ea3ec246f987bfbf2 *(results)* Remove keymap hint if help is disabled by @nkxxll in [#480]https://github.com/alexpasmantier/television/pull/480

- [39dd9ef]https://github.com/alexpasmantier/television/commit/39dd9efd5dfa1fb36281f9f97b753152af82095f *(shell)* Paste not working in zsh shell integration by @kapobajza in [#512]https://github.com/alexpasmantier/television/pull/512

- [1de2866]https://github.com/alexpasmantier/television/commit/1de28665d90af0a566a2ab16c92194738faa04d7 *(templates)* Handle case when template contains brackets that shouldn't be interpreted by the parser by @alexpasmantier

- [dde3193]https://github.com/alexpasmantier/television/commit/dde319359fba900f03deae566bfbb17633a2c081 *(tui)* Fixed shell completion widget not rendering, add poc for fish by @lalvarezt in [#588]https://github.com/alexpasmantier/television/pull/588

- [dc75e80]https://github.com/alexpasmantier/television/commit/dc75e80fb93223d3e9992ff21ac67b5ff28987fa *(ui)* Avoid glitches caused by programs outputting control sequences by @alexpasmantier in [#579]https://github.com/alexpasmantier/television/pull/579

- [e5a13ef]https://github.com/alexpasmantier/television/commit/e5a13ef8a12823e8369af9bce68fe18749e7b1ec *(uncategorized)* Reset picker selection when cycling through sources by @alexpasmantier

- [b0c25b1]https://github.com/alexpasmantier/television/commit/b0c25b19be2437ef250c4064906e006d55343816 *(uncategorized)* Rollback unwanted modifications on text and env prototypes by @alexpasmantier

- [175015d]https://github.com/alexpasmantier/television/commit/175015d470f3e3bc7e78fe41a56f9be87123c9b4 *(uncategorized)* Load new channel after zapping with the remote by @alexpasmantier

- [c80e9b1]https://github.com/alexpasmantier/television/commit/c80e9b18cb39d97927c93317b599ba12d4d80cef *(uncategorized)* "toggle source" leftovers by @alexpasmantier

### 🚜 Refactor

- [2fdb47f]https://github.com/alexpasmantier/television/commit/2fdb47fc196347e9076da48bb873e9968ad4e0c4 *(cable)* Add helper function to get keybindings by @lalvarezt

- [e06e5e6]https://github.com/alexpasmantier/television/commit/e06e5e6a379f52580126e9bbbd8d0722a6168fc3 *(cable)* Update preview size for `files` and `env` by @alexpasmantier

- [e76a3df]https://github.com/alexpasmantier/television/commit/e76a3df776ffd71b12eadee9bf82bd2abda0e553 *(cable)* Cable format redesign by @alexpasmantier [**breaking**]

- [b372fe8]https://github.com/alexpasmantier/television/commit/b372fe86ea5532e5e0c400d9f45e1517b95595ad *(cable)* Add `files` and `text` channels with the new configuration format by @alexpasmantier in [#534]https://github.com/alexpasmantier/television/pull/534

- [e2f52b8]https://github.com/alexpasmantier/television/commit/e2f52b835d6447c251d7fca6724cf409ed153546 *(cable)* Improve naming and documentation for `prototypes.rs` by @alexpasmantier in [#487]https://github.com/alexpasmantier/television/pull/487

- [4385317]https://github.com/alexpasmantier/television/commit/4385317e069db287d8d86f987e11e079a7ff6d1c *(cable)* Split cable related code into separate submodules by @alexpasmantier in [#486]https://github.com/alexpasmantier/television/pull/486

- [1a5fa5d]https://github.com/alexpasmantier/television/commit/1a5fa5dd4cb485e2b0b08301ca457fa1c6d06094 *(channels)* Some renaming and refactoring the channels module by @alexpasmantier in [#503]https://github.com/alexpasmantier/television/pull/503

- [a2ebbb3]https://github.com/alexpasmantier/television/commit/a2ebbb35573dff9d06954962f8e5a58b84ab84cc *(cli)* Add validation logic + docs by @lalvarezt

- [ebca4d2]https://github.com/alexpasmantier/television/commit/ebca4d2017bd8298e2d50df3d1fbcfd0e56805c1 *(cli)* Move cli overrides to dedicated function by @alexpasmantier

- [80cb6c3]https://github.com/alexpasmantier/television/commit/80cb6c3606481bfad26a4ad453848d5b9d25785f *(picker)* New movement system by @lalvarezt

- [b9f42e8]https://github.com/alexpasmantier/television/commit/b9f42e8c29a7eca86a91a6cb00d9c4ee46bb2bd3 *(preview)* Simplify channel previews code and remove intermediate `PreviewKind` struct by @alexpasmantier in [#490]https://github.com/alexpasmantier/television/pull/490

- [67c067f]https://github.com/alexpasmantier/television/commit/67c067ff40f97eef9090c2a5addca5da50a7fa0f *(previewer)* A much more efficient preview system for tv by @alexpasmantier in [#506]https://github.com/alexpasmantier/television/pull/506

- [f138e8a]https://github.com/alexpasmantier/television/commit/f138e8a591ca4d3ff173ec316ce59b02fb5aca47 *(screen)* Remove leftover line number, not used anymore by @lalvarezt

- [7ac2f28]https://github.com/alexpasmantier/television/commit/7ac2f28be7c475fb59b1388e443f0f33898ce0b6 *(screen)* New result line abstraction that can be reused by @lalvarezt

- [4b338f5]https://github.com/alexpasmantier/television/commit/4b338f524284dcbff547776af19611a5ca58b930 *(shell)* Make use the new Binding system by @lalvarezt

- [58d90c6]https://github.com/alexpasmantier/television/commit/58d90c6d03c237b5b4f45cc04ef55b7b081c4638 *(ui)* Feature based UI by @lalvarezt

- [8fd9163]https://github.com/alexpasmantier/television/commit/8fd91633e271099d83694ccbce26101da2faabcf *(uncategorized)* More stable behavior for `--inline`, `--width` and `--height` by @alexpasmantier in [#589]https://github.com/alexpasmantier/television/pull/589

- [d82bf72]https://github.com/alexpasmantier/television/commit/d82bf7226b853c65638a42298cc31f773631d40e *(uncategorized)* Extract overlay tui logic into separate function and call it on resize events by @alexpasmantier

- [4faab40]https://github.com/alexpasmantier/television/commit/4faab403d22e4dc7e745c1d40d266704719ad2c3 *(uncategorized)* QOL improvements on channels and CLI override logic by @lalvarezt in [#584]https://github.com/alexpasmantier/television/pull/584

- [292c521]https://github.com/alexpasmantier/television/commit/292c5212051f9ecf212b248dc7914fe107986042 *(uncategorized)* Use super for linux and windows and cmd for macos by @alexpasmantier in [#571]https://github.com/alexpasmantier/television/pull/571

- [51617b1]https://github.com/alexpasmantier/television/commit/51617b1775d56180f9cd09ceef7777447d414c14 *(uncategorized)* Clearer separation of channels vs remote, better deserialization of prototype sub-structures, etc. by @alexpasmantier

- [53c36f0]https://github.com/alexpasmantier/television/commit/53c36f040c8ab0ef4a2da88aa4b8d4c07568e2a7 *(uncategorized)* Add reload and cycle source to default keymaps + default keymap changes by @alexpasmantier

- [466a743]https://github.com/alexpasmantier/television/commit/466a74341d7f64cc0f1164a1878467c760277012 *(uncategorized)* Strip new channels to their bare minimum config by @alexpasmantier

- [2b2654b]https://github.com/alexpasmantier/television/commit/2b2654b6aab86707577c0bb5c65301106422e737 *(uncategorized)* Drop TelevisionChannel enum and all associated macros by @alexpasmantier in [#498]https://github.com/alexpasmantier/television/pull/498

- [cc27b5e]https://github.com/alexpasmantier/television/commit/cc27b5ec6bf3a5a71d6785558e57976db9f2d129 *(uncategorized)* Drop dependency to the `ignore` crate by @alexpasmantier

- [c2f4cc2]https://github.com/alexpasmantier/television/commit/c2f4cc258f5f3b21601e8c7ce98f4584222813b2 *(uncategorized)* Tv no longer needs to write the default cable channel recipes to the user's configuration directory by @alexpasmantier in [#482]https://github.com/alexpasmantier/television/pull/482

- [67677fb]https://github.com/alexpasmantier/television/commit/67677fb917b6d59d8217eaf6369b95f5ba940ff0 *(uncategorized)* All channels are now cable channels by @alexpasmantier in [#479]https://github.com/alexpasmantier/television/pull/479 [**breaking**]

### 📚 Documentation

- [8bdebd3]https://github.com/alexpasmantier/television/commit/8bdebd382ef9fe1f8ac74106b91cbdfdd308ef27 *(channels)* Autogenerate channel documentation + CI action by @alexpasmantier

- [6015809]https://github.com/alexpasmantier/television/commit/601580953a11b4c1061c97c5417ffeacd154354d *(tests)* Simple documentation for the `PtyTester` by @alexpasmantier

- [7bbf538]https://github.com/alexpasmantier/television/commit/7bbf5388984ea4a9afa4daad695add4c258c0fb1 *(utils)* Add documentation for string formatting logic by @alexpasmantier in [#517]https://github.com/alexpasmantier/television/pull/517

- [0112b40]https://github.com/alexpasmantier/television/commit/0112b40df3d12a2f540ee7bbd5d6e24da6c2d048 *(uncategorized)* Update installation docs by @alexpasmantier

- [e5654fc]https://github.com/alexpasmantier/television/commit/e5654fcddee638905a5e6478763e6b738ec469d1 *(uncategorized)* Add docusaurus website by @alexpasmantier

- [e797aba]https://github.com/alexpasmantier/television/commit/e797aba7c1e5fbdc6afabac69d2bbcb32767bf80 *(uncategorized)* Reorganize docs by @alexpasmantier

- [106004d]https://github.com/alexpasmantier/television/commit/106004de948327f248c14f8eebdc40b54af58a4c *(uncategorized)* Architecture by @alexpasmantier

- [1d33c93]https://github.com/alexpasmantier/television/commit/1d33c9391039f703b3b9848784ab58d3f5372a7d *(uncategorized)* Add readme banner by @alexpasmantier

- [3ac6c76]https://github.com/alexpasmantier/television/commit/3ac6c762335dd239a72556e36368858e97a13691 *(uncategorized)* Update readme by @alexpasmantier

- [1c5810f]https://github.com/alexpasmantier/television/commit/1c5810fe75d3a049c9387bac6503b2be863a100a *(uncategorized)* Add assets + update readme image by @alexpasmantier

- [d9d6554]https://github.com/alexpasmantier/television/commit/d9d6554697275208bd75ecbcba256d591c828e36 *(uncategorized)* Migrate some of the wiki's content to the docs/ folder by @alexpasmantier

- [9364b3e]https://github.com/alexpasmantier/television/commit/9364b3eb1561af8725e45bc36b01c505951ee7f4 *(uncategorized)* Some cleaning and reorganizing by @alexpasmantier

- [f52d4ef]https://github.com/alexpasmantier/television/commit/f52d4ef524631b6b9a77a525d64f4a1094bf1857 *(uncategorized)* Update README by @alexpasmantier

- [c25a5bd]https://github.com/alexpasmantier/television/commit/c25a5bd75f311a1fbe8b11d20f8022678042c755 *(uncategorized)* Update readme and add new format docs by @alexpasmantier

- [aac7e4d]https://github.com/alexpasmantier/television/commit/aac7e4dc4570d5e0caf305b738009f2b077da7be *(uncategorized)* Update terminal emulators compatibility list by @alexpasmantier

- [9127e41]https://github.com/alexpasmantier/television/commit/9127e419fb4628dc3e65ee669315038a169bb8fe *(uncategorized)* Add index.md by @alexpasmantier

- [d3bb3b0]https://github.com/alexpasmantier/television/commit/d3bb3b0a5610b6896a698f89afcf2fb7a2aab44a *(uncategorized)* Cleanup old todo list by @alexpasmantier in [#483]https://github.com/alexpasmantier/television/pull/483

### ⚡ Performance

- [fc2f8b9]https://github.com/alexpasmantier/television/commit/fc2f8b9473d1d84712951184da8d4e59edeedc86 *(previews)* Avoid unnecessary preview content copy by @alexpasmantier in [#507]https://github.com/alexpasmantier/television/pull/507

- [14804f5]https://github.com/alexpasmantier/television/commit/14804f50a27fa688ebed2afcacb96dd0453e89dc *(uncategorized)* Pre-allocate result vectors, and reuse picker entries to avoid reallocations by @lalvarezt

- [19d1ca1]https://github.com/alexpasmantier/television/commit/19d1ca155813a966c0ddc8650e664ab4030d6275 *(uncategorized)* More pre-allocations and avoid unnecessary ascii string parsing work by @lalvarezt

### 🧪 Testing

- [f60b492]https://github.com/alexpasmantier/television/commit/f60b492383031fb23756b3b2f5d732d174e74033 *(cli)* Add test that validates piping tv is working as expected by @alexpasmantier

- [42e2728]https://github.com/alexpasmantier/television/commit/42e272826915685fe71bd6d879e603e5fdeab86b *(cli)* New cli test suite by @lalvarezt

- [47b99c4]https://github.com/alexpasmantier/television/commit/47b99c43d067f9a51d8e12a14ff3c87ea7db1fae *(e2e)* Better pty tooling and more tests by @alexpasmantier

- [b780fa1]https://github.com/alexpasmantier/television/commit/b780fa1ba547ac2842bdcab60f963c0870b76626 *(e2e)* Add proper e2e tests and pty-testing utils by @alexpasmantier

- [f6dcedc]https://github.com/alexpasmantier/television/commit/f6dcedc196f068f9077da28a93511a1e64749d6a *(e2e)* Fallback to a default value of 0 when failing to parse preview offset by @alexpasmantier

- [3b57710]https://github.com/alexpasmantier/television/commit/3b5771000622ee02bba414cadd4419d466fd8116 *(e2e)* More end to end tests by @alexpasmantier

- [8d822cd]https://github.com/alexpasmantier/television/commit/8d822cd2fcfdc3a00c612e30674391426e988040 *(e2e)* Add e2e tests for secondary cli commands (version, init, list-channels, ...) by @alexpasmantier

- [6662544]https://github.com/alexpasmantier/television/commit/666254498ee54b9ee09d01424b7382e0d30e7614 *(television)* Add test to check channel keybindings precedence by @alexpasmantier

- [a59aab6]https://github.com/alexpasmantier/television/commit/a59aab67a9da94965432cdd800e207929ab3d28f *(uncategorized)* Add integration test for `--watch` by @alexpasmantier

- [dd832fc]https://github.com/alexpasmantier/television/commit/dd832fcfc9e5113f2a57924bc845b85ee6728aac *(uncategorized)* A cleaner integration tests directory structure by @alexpasmantier

- [fe8bdc6]https://github.com/alexpasmantier/television/commit/fe8bdc632b8e101fdf235ef24e68920ea52c4b0d *(uncategorized)* Add test to check cli overrides by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [2e99fba]https://github.com/alexpasmantier/television/commit/2e99fba9c0dbe572727fca6f0a9593309f8cbe54 *(nix)* Update sha of rust toolchain in flake.nix by @tukanoidd in [#530]https://github.com/alexpasmantier/television/pull/530

- [738fe08]https://github.com/alexpasmantier/television/commit/738fe08fbb5fae9f1185b9980c7c344652b7b9d4 *(rust)* Update rust edition to 2024 and version to 1.87 by @alexpasmantier in [#528]https://github.com/alexpasmantier/television/pull/528

- [f6b2205]https://github.com/alexpasmantier/television/commit/f6b22051cdfbce8f6598c5d36c4b75887ff65998 *(tui-input)* Add credit and license for `television/utils/input.rs` by @alexpasmantier in [#544]https://github.com/alexpasmantier/television/pull/544

- [f1c6816]https://github.com/alexpasmantier/television/commit/f1c68167eae6c1d77cdaac9c9039f3aeef95849d *(uncategorized)* Bump to 0.12.0 by @alexpasmantier

- [429bfae]https://github.com/alexpasmantier/television/commit/429bfaeb2f3dbbc7015213db1c2f12564615e5ca *(uncategorized)* Remove unused serde renames by @alexpasmantier

- [141d3e7]https://github.com/alexpasmantier/television/commit/141d3e7fb928c7020aa47240e97d9ff8dc0e753f *(uncategorized)* Update dependencies by @alexpasmantier

- [ab1efed]https://github.com/alexpasmantier/television/commit/ab1efed88de7c5d30c4f8ae2c1644ac207d31cc3 *(uncategorized)* Remove stale FIXME comment by @alexpasmantier

- [11c2ef4]https://github.com/alexpasmantier/television/commit/11c2ef4eef77cbdf8c5676be3e3dcb6d9812bc03 *(uncategorized)* Create github action workflow for pages by @alexpasmantier

- [0f6b29b]https://github.com/alexpasmantier/television/commit/0f6b29ba817f54da7c6cc694c21127c8588709a0 *(uncategorized)* Add sponsorhips button to the repo by @alexpasmantier



### New Contributors
* @Ktoks made their first contribution in [#590]https://github.com/alexpasmantier/television/pull/590
* @lalvarezt made their first contribution in [#588]https://github.com/alexpasmantier/television/pull/588
* @kapobajza made their first contribution in [#568]https://github.com/alexpasmantier/television/pull/568
* @domaschh made their first contribution
* @cr4ftx made their first contribution in [#496]https://github.com/alexpasmantier/television/pull/496

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.11.9...0.12.0


## [0.11.9]https://github.com/alexpasmantier/television/releases/tag/0.11.9 - 2025-04-21

### ⛰️  Features

- [bbbdcb0]https://github.com/alexpasmantier/television/commit/bbbdcb02710ffe656fa49567ecd247813523b557 *(cli)* Add substring matching with `--exact` flag by @nkxxll in [#477]https://github.com/alexpasmantier/television/pull/477

### ⚡ Performance

- [ce02824]https://github.com/alexpasmantier/television/commit/ce02824f3c4c6a750a30651b478ff255d68ff0de *(stdin)* Avoid unnecessary allocations when streaming from stdin by @alexpasmantier in [#475]https://github.com/alexpasmantier/television/pull/475

### ⚙️ Miscellaneous Tasks

- [f28c18e]https://github.com/alexpasmantier/television/commit/f28c18ed64b50e9be7b95fcfbfd9536837c3ebe3 *(uncategorized)* Release version 0.11.9 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.11.8...0.11.9


## [0.11.8]https://github.com/alexpasmantier/television/releases/tag/0.11.8 - 2025-04-20

### ⛰️  Features

- [0bd4d42]https://github.com/alexpasmantier/television/commit/0bd4d4274edb00df7847f8be44b952389ad76d1c *(cli)* Add custom header for input field by @nkxxll in [#472]https://github.com/alexpasmantier/television/pull/472

### 🐛 Bug Fixes

- [2be2ae7]https://github.com/alexpasmantier/television/commit/2be2ae7cdef9ab356d276271352d284c5ac98ca7 *(unicode)* Add support for more unicode characters by @alexpasmantier in [#470]https://github.com/alexpasmantier/television/pull/470

### ⚡ Performance

- [a938c1c]https://github.com/alexpasmantier/television/commit/a938c1c46929eb2306bca5201af98c6467be59db *(ui)* Add frame rate throttling to avoid consuming unnecessary CPU resources by @alexpasmantier in [#473]https://github.com/alexpasmantier/television/pull/473

### 🧪 Testing

- [315a9f7]https://github.com/alexpasmantier/television/commit/315a9f71fa33910d702ff9e577f582316afc0775 *(benches)* Refactor benches into a simpler and more scalable structure by @alexpasmantier in [#467]https://github.com/alexpasmantier/television/pull/467

### ⚙️ Miscellaneous Tasks

- [b4438ab]https://github.com/alexpasmantier/television/commit/b4438ab83585053406a946d242f8760184787d39 *(uncategorized)* Bump to 0.11.8 by @alexpasmantier



### New Contributors
* @nkxxll made their first contribution in [#472]https://github.com/alexpasmantier/television/pull/472

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.11.7...0.11.8


## [0.11.7]https://github.com/alexpasmantier/television/releases/tag/0.11.7 - 2025-04-12

### ⛰️  Features

- [cb0a46f]https://github.com/alexpasmantier/television/commit/cb0a46fff517e5f3f995ca4828956b6ea1a3ffeb *(input)* Add action to delete input line by @alexpasmantier in [#464]https://github.com/alexpasmantier/television/pull/464

- [de6200e]https://github.com/alexpasmantier/television/commit/de6200e45d30e82864434a1d58b4df0081634e14 *(shell)* Support completion in the middle of a prompt by @dkmar in [#450]https://github.com/alexpasmantier/television/pull/450

### 🐛 Bug Fixes

- [425be1e]https://github.com/alexpasmantier/television/commit/425be1e01b024a0b45433676cb2b05b8820b7f0f *(ui)* Fix slight responsiveness regression in 0.11.6 by @alexpasmantier in [#461]https://github.com/alexpasmantier/television/pull/461

### ⚙️ Miscellaneous Tasks

- [6771ecd]https://github.com/alexpasmantier/television/commit/6771ecdde57040f1eb996d9ee4c9c931a18a2c25 *(project)* Migrate from Makefile to Just by @alexpasmantier in [#463]https://github.com/alexpasmantier/television/pull/463

- [1693584]https://github.com/alexpasmantier/television/commit/169358442b9d619ddbab2367de8934022f4f241c *(uncategorized)* Bump to 0.11.7 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.11.6...0.11.7


## [0.11.6]https://github.com/alexpasmantier/television/releases/tag/0.11.6 - 2025-04-09

### ⛰️  Features

- [5bf3d20]https://github.com/alexpasmantier/television/commit/5bf3d20c83d5ea0d5e4c8e146d40f0cc37423611 *(cli)* Add a `--no-help` flag to allow disabling showing the help panel by @alexpasmantier in [#456]https://github.com/alexpasmantier/television/pull/456

- [b818737]https://github.com/alexpasmantier/television/commit/b81873738a89d1aaa7ac04d67fedf495bc25f062 *(cli)* Add a `--no-remote` flag to lock the application on the cli-invoked channel by @alexpasmantier in [#455]https://github.com/alexpasmantier/television/pull/455

- [4892dc3]https://github.com/alexpasmantier/television/commit/4892dc3c3c5a5b970b21fb431e6411f6f63e26ab *(cli)* Add `--select-1` cli flag to automatically select unique result by @alexpasmantier in [#448]https://github.com/alexpasmantier/television/pull/448

### 🐛 Bug Fixes

- [4a584b4]https://github.com/alexpasmantier/television/commit/4a584b437c413f26c376154fe0751791b9cbd971 *(pwsh)* Use adequate quoting when formatting preview commands for pwsh by @alexpasmantier in [#454]https://github.com/alexpasmantier/television/pull/454

- [d4913d7]https://github.com/alexpasmantier/television/commit/d4913d73f61d13bdfba67c246845c0849a3caf0c *(uncategorized)* Silence the `string match` in tv_smart_autocomplete by @dkmar in [#449]https://github.com/alexpasmantier/television/pull/449

### 🚜 Refactor

- [69c4dcc]https://github.com/alexpasmantier/television/commit/69c4dcc5c57a43bab29f93ce4e14c1cae42d3528 *(debug)* Improve configuration debug logging by @alexpasmantier in [#447]https://github.com/alexpasmantier/television/pull/447

- [82e3f89]https://github.com/alexpasmantier/television/commit/82e3f890c83eb435c6d0d118a7e72ac30dbb3059 *(passthrough)* Drop support for unused passthrough keybindings by @alexpasmantier in [#446]https://github.com/alexpasmantier/television/pull/446 [**breaking**]

### ⚙️ Miscellaneous Tasks

- [a008d3f]https://github.com/alexpasmantier/television/commit/a008d3f4b45f85718087a0b203f132416f3a7dc7 *(uncategorized)* Bump to 0.11.6 by @alexpasmantier in [#457]https://github.com/alexpasmantier/television/pull/457



### New Contributors
* @dkmar made their first contribution in [#449]https://github.com/alexpasmantier/television/pull/449

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.11.5...0.11.6


## [0.11.5]https://github.com/alexpasmantier/television/releases/tag/0.11.5 - 2025-03-31

### 🐛 Bug Fixes

- [6ba235f]https://github.com/alexpasmantier/television/commit/6ba235fa1193323846f1a956dbcdbe7b98baaa8a *(results)* Fix alignment for non unit width unicode characters by @alexpasmantier in [#442]https://github.com/alexpasmantier/television/pull/442

### ⚙️ Miscellaneous Tasks

- [875b63d]https://github.com/alexpasmantier/television/commit/875b63defee9696335e8d5841092096b44efb5da *(uncategorized)* Bump to 0.11.5 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.11.4...0.11.5


## [0.11.4]https://github.com/alexpasmantier/television/releases/tag/0.11.4 - 2025-03-23

### 🚜 Refactor

- [8e17ef6]https://github.com/alexpasmantier/television/commit/8e17ef694e11251faba44069f321b6e5810bd273 *(uncategorized)* Nicer results alignment to improve discoverability of matched patterns by @alexpasmantier in [#435]https://github.com/alexpasmantier/television/pull/435

### ⚙️ Miscellaneous Tasks

- [5f8b240]https://github.com/alexpasmantier/television/commit/5f8b240c8bd499961c036e58c7d8547e03b6749c *(uncategorized)* Bump to 0.11.4 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.11.3...0.11.4


## [0.11.3]https://github.com/alexpasmantier/television/releases/tag/0.11.3 - 2025-03-21

### 🐛 Bug Fixes

- [c573503]https://github.com/alexpasmantier/television/commit/c573503cbfe434ad5927a40e4dcf9be6873bdc72 *(config)* Fix shell integration keybindings not overwriting defaults by @alexpasmantier in [#431]https://github.com/alexpasmantier/television/pull/431

### ⚙️ Miscellaneous Tasks

- [f8bd6c2]https://github.com/alexpasmantier/television/commit/f8bd6c2dd58da37fdda10c61fdb8903f65ec5bce *(x86)* Add statically linked musl build for x86_64 by @alexpasmantier in [#429]https://github.com/alexpasmantier/television/pull/429

- [dae6a88]https://github.com/alexpasmantier/television/commit/dae6a8816a73233b26d7f552e0fc3030428ee0d4 *(uncategorized)* Bump to 0.11.3 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.11.2...0.11.3


## [0.11.2]https://github.com/alexpasmantier/television/releases/tag/0.11.2 - 2025-03-21

### 🐛 Bug Fixes

- [05e3ba3]https://github.com/alexpasmantier/television/commit/05e3ba3b75a94c903d095522e98f8d09250667f0 *(ci)* Fix aarch64 debian builds by @alexpasmantier in [#426]https://github.com/alexpasmantier/television/pull/426

- [ea6deef]https://github.com/alexpasmantier/television/commit/ea6deef11b68fc3b928d03f20d0ee7fcf0dd15da *(ci)* More tweaking to the deb releases configuration by @alexpasmantier in [#424]https://github.com/alexpasmantier/television/pull/424

- [2d74a34]https://github.com/alexpasmantier/television/commit/2d74a3465a506b065e195cae837d743976a67afc *(ui)* Show preview toggle hint conditionally by @alexpasmantier in [#425]https://github.com/alexpasmantier/television/pull/425

### ⚙️ Miscellaneous Tasks

- [918dc66]https://github.com/alexpasmantier/television/commit/918dc6686d2ed72d4f9cabfff1ccbfe3eb839467 *(uncategorized)* Bump to 0.11.2 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.11.1...0.11.2


## [0.11.1]https://github.com/alexpasmantier/television/releases/tag/0.11.1 - 2025-03-20

### 🐛 Bug Fixes

- [4e900d9]https://github.com/alexpasmantier/television/commit/4e900d92c3efa5aa4115dbcc582f96612b26ebd9 *(ci)* Use `fancy-regex` when compiling on arm64 instead of `oniguruma` by @alexpasmantier in [#422]https://github.com/alexpasmantier/television/pull/422

### ⚙️ Miscellaneous Tasks

- [b48127b]https://github.com/alexpasmantier/television/commit/b48127bbba207387bf042f7447de5b5e9e9f11f2 *(uncategorized)* Bump to 0.11.1 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.11.0...0.11.1


## [0.11.0]https://github.com/alexpasmantier/television/releases/tag/0.11.0 - 2025-03-20

### ⛰️  Features

- [3222037]https://github.com/alexpasmantier/television/commit/3222037a02f229d206af79098e9f9e0e6ab60f00 *(cli)* Allow passing custom keybindings through the cli by @alexpasmantier in [#409]https://github.com/alexpasmantier/television/pull/409

- [47ea5a2]https://github.com/alexpasmantier/television/commit/47ea5a2b683f40ece608c4b80da56d37831ce581 *(cli)* Allow passing builtin previewers through the cli (e.g. `--preview ':files:'`) by @alexpasmantier in [#403]https://github.com/alexpasmantier/television/pull/403

- [8eb6ada]https://github.com/alexpasmantier/television/commit/8eb6adafb9272a96fb40eeb3b4a897fd95fec5dd *(config)* Allow remapping input builtin keybindings (ctrl-e, ctrl-a, etc.) by @alexpasmantier in [#411]https://github.com/alexpasmantier/television/pull/411

- [d09f670]https://github.com/alexpasmantier/television/commit/d09f6708bc873bf130cabed08958949444f185d8 *(shell)* Add fallback channel to the config for smart autocomplete by @alexpasmantier in [#413]https://github.com/alexpasmantier/television/pull/413

### 🐛 Bug Fixes

- [731bc7e]https://github.com/alexpasmantier/television/commit/731bc7ee80cd6c98b7461eb6028e31a9936687d9 *(config)* Make user shell integration trigger configuration override defaults entirely by @alexpasmantier in [#417]https://github.com/alexpasmantier/television/pull/417

- [05bd64a]https://github.com/alexpasmantier/television/commit/05bd64afe9973288ebae07bae326ef3dec2c154a *(scheduling)* Don't block the main thread when no actions are available to process by @alexpasmantier in [#416]https://github.com/alexpasmantier/television/pull/416

### 🚜 Refactor

- [7a85728]https://github.com/alexpasmantier/television/commit/7a85728da6adc9b57006902f6e132220da12cddb *(config)* Simplify keybindings configuration syntax by @alexpasmantier in [#404]https://github.com/alexpasmantier/television/pull/404 [**breaking**]

- [fc2f6cd]https://github.com/alexpasmantier/television/commit/fc2f6cde4624575d08b5b6957bcb81ec6c93e3f0 *(preview)* Improve overall previewer scheduling logic by @alexpasmantier in [#415]https://github.com/alexpasmantier/television/pull/415

- [3a5b5ec]https://github.com/alexpasmantier/television/commit/3a5b5ec0cca14b8f0c5cddec88e038f90b8ef384 *(startup)* Improve overall startup time and remove first frames artifacts by @alexpasmantier in [#408]https://github.com/alexpasmantier/television/pull/408

### ⚙️ Miscellaneous Tasks

- [409d951]https://github.com/alexpasmantier/television/commit/409d951d3c2eeb4afd5d34ee4abbca69e5634241 *(uncategorized)* Bump to 0.11.0 by @alexpasmantier

- [97314d6]https://github.com/alexpasmantier/television/commit/97314d629a03ed1e892c6ea9d8ba0a621019cfe0 *(uncategorized)* Add support for arm64 deb releases by @alexpasmantier in [#412]https://github.com/alexpasmantier/television/pull/412




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.10.10...0.11.0


## [0.10.10]https://github.com/alexpasmantier/television/releases/tag/0.10.10 - 2025-03-18

### 🐛 Bug Fixes

- [55705c0]https://github.com/alexpasmantier/television/commit/55705c0855238e2683bf6b4d43f7c7094ddf5126 *(zsh)* Use history command to include recent entries by @keturn in [#379]https://github.com/alexpasmantier/television/pull/379

### 🚜 Refactor

- [ee89b36]https://github.com/alexpasmantier/television/commit/ee89b36b420e2ddc3776afea8658f4930938ebc8 *(stdin)* Disable preview by default and enable when passing `--preview` by @alexpasmantier in [#394]https://github.com/alexpasmantier/television/pull/394

### 📚 Documentation

- [4f35cc6]https://github.com/alexpasmantier/television/commit/4f35cc6dbdc79925783404a729df24cbd004f954 *(cli)* Improve cli documentation by @alexpasmantier in [#395]https://github.com/alexpasmantier/television/pull/395

- [0edf224]https://github.com/alexpasmantier/television/commit/0edf224502cc843500ae48e5290a264247930efa *(man)* Add man pages for tv by @alexpasmantier in [#397]https://github.com/alexpasmantier/television/pull/397

### ⚙️ Miscellaneous Tasks

- [961ebbb]https://github.com/alexpasmantier/television/commit/961ebbba2bbcbe00d6a989ea04ef6392e7b1aa74 *(uncategorized)* Bump to 0.10.10 by @alexpasmantier



### New Contributors
* @keturn made their first contribution in [#379]https://github.com/alexpasmantier/television/pull/379

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.10.9...0.10.10


## [0.10.9]https://github.com/alexpasmantier/television/releases/tag/0.10.9 - 2025-03-17

### ⚙️ Miscellaneous Tasks

- [f954e81]https://github.com/alexpasmantier/television/commit/f954e81e4c75d39db15848ff5a076f983a609794 *(deb)* Fix cargo deb output directory error by @alexpasmantier

- [f397dd5]https://github.com/alexpasmantier/television/commit/f397dd5a70539d6702e90a7fd8565542274676a8 *(uncategorized)* Bump to 0.10.9 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.10.8...0.10.9


## [0.10.8]https://github.com/alexpasmantier/television/releases/tag/0.10.8 - 2025-03-16

### 🐛 Bug Fixes

- [8df4a7a]https://github.com/alexpasmantier/television/commit/8df4a7a2291ab455a6d36dd7018f956da015abf0 *(changelog)* Fix broken links in CHANGELOG.md by @murlakatamenka in [#377]https://github.com/alexpasmantier/television/pull/377

### 🧪 Testing

- [64b2f73]https://github.com/alexpasmantier/television/commit/64b2f730b3841c32f5d30ae2ae1847db297e8bca *(uncategorized)* More tests for cli, app, and main by @alexpasmantier in [#375]https://github.com/alexpasmantier/television/pull/375

### ⚙️ Miscellaneous Tasks

- [e26bd59]https://github.com/alexpasmantier/television/commit/e26bd5919f1a81c9ea1564751c2a871f3b628aaa *(deb)* Temporarily disable old compatibility builds by @alexpasmantier

- [fcf4b35]https://github.com/alexpasmantier/television/commit/fcf4b35272f10488697fb74e493c399e489c6c50 *(uncategorized)* Replace manual convco check and git hook by a dedicated ci step by @alexpasmantier in [#376]https://github.com/alexpasmantier/television/pull/376



### New Contributors
* @bpairet made their first contribution in [#383]https://github.com/alexpasmantier/television/pull/383
* @murlakatamenka made their first contribution in [#377]https://github.com/alexpasmantier/television/pull/377

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.10.7...0.10.8


## [0.10.7]https://github.com/alexpasmantier/television/releases/tag/0.10.7 - 2025-03-06

### ⛰️  Features

- [3441587]https://github.com/alexpasmantier/television/commit/3441587d57879c309e7818ca89375fa2aaced710 *(preview)* Add support for image previews by @I-Azy-I

- [46f5d20]https://github.com/alexpasmantier/television/commit/46f5d20b2c90219b26a17b4803cf9c691c03a461 *(shell)* Allow mapping ctrl-space for builtin shell autocomplete integration by @alexpasmantier

### 🐛 Bug Fixes

- [e2a0fb2]https://github.com/alexpasmantier/television/commit/e2a0fb204724c5b6fc12554a35355a6a419ad198 *(clipboard)* Fix issue where clipboard wouldn't work on X11-based environments by @alexpasmantier in [#364]https://github.com/alexpasmantier/television/pull/364

### 🚜 Refactor

- [63cb976]https://github.com/alexpasmantier/television/commit/63cb9760272067ab8787085b37690255e20ecbb9 *(ui)* Communicate ui state to tv using channels by @alexpasmantier in [#369]https://github.com/alexpasmantier/television/pull/369

### 📚 Documentation

- [d47d6f7]https://github.com/alexpasmantier/television/commit/d47d6f7850a92b197f2046d81cf56dd2a1322010 *(uncategorized)* Docs(readme): Update README.md by @alexpasmantier

- [f14c910]https://github.com/alexpasmantier/television/commit/f14c910fb458040fe1f1133ae59be0676d80b374 *(uncategorized)* Update README by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [5a4c9d3]https://github.com/alexpasmantier/television/commit/5a4c9d329693dcd14c06038cd88f84c72a795744 *(uncategorized)* Bump to 0.10.7 by @alexpasmantier



### New Contributors
* @I-Azy-I made their first contribution

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.10.6...0.10.7


## [0.10.6]https://github.com/alexpasmantier/television/releases/tag/0.10.6 - 2025-02-08

### 🐛 Bug Fixes

- [8e38ffc]https://github.com/alexpasmantier/television/commit/8e38ffc3ab52414df29d8310e3f7a5b66bb2be6c *(clipboard)* Gracefully fail if clipboard isn't available by @alexpasmantier in [#350]https://github.com/alexpasmantier/television/pull/350

- [df2592f]https://github.com/alexpasmantier/television/commit/df2592f2c8aa6edbea0e46a319435e27b8998859 *(events)* Remove sorting and deduplicating incoming actions by @alexpasmantier in [#356]https://github.com/alexpasmantier/television/pull/356

### 🚜 Refactor

- [7f87b2f]https://github.com/alexpasmantier/television/commit/7f87b2fb31db239b4e534e29989b4286f6a7d052 *(cable)* Use HISTFILE for bash and zsh history channels by @alexpasmantier in [#357]https://github.com/alexpasmantier/television/pull/357

- [b706dcb]https://github.com/alexpasmantier/television/commit/b706dcb8ddef8b93dca8de21b5e605360b9b8f07 *(help)* Add multiselect keybindings to help panel by @alexpasmantier in [#353]https://github.com/alexpasmantier/television/pull/353

- [86c100e]https://github.com/alexpasmantier/television/commit/86c100e381b00033f4ae57c53e2070be367333d7 *(ui)* Display current channel in input bar border by @alexpasmantier in [#354]https://github.com/alexpasmantier/television/pull/354

### 📚 Documentation

- [ade69d7]https://github.com/alexpasmantier/television/commit/ade69d7bfff109141ab0709b4feabc66973c582f *(uncategorized)* Update readme by @alexpasmantier

- [d40a86d]https://github.com/alexpasmantier/television/commit/d40a86daa281aaa16ef61017f3dad6d899105ed8 *(uncategorized)* Update readme by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [11e440c]https://github.com/alexpasmantier/television/commit/11e440c151ef02abc9aed52059c1b648d161ffb5 *(deb)* Add arm64 deb packaging to cd by @alexpasmantier in [#351]https://github.com/alexpasmantier/television/pull/351

- [bb727bd]https://github.com/alexpasmantier/television/commit/bb727bd070597c60f2750678e9d2cf589ff6f754 *(glibc)* Packaging for older linux distros by @alexpasmantier

- [56be4dc]https://github.com/alexpasmantier/television/commit/56be4dca4f71a21ead8dc50a97e0036ab3ce7b0b *(winget)* Update winget release configuration by @alexpasmantier

- [28f62f1]https://github.com/alexpasmantier/television/commit/28f62f138dd47c9f0ef3ca33f2daa17a8e9eb909 *(uncategorized)* Bump to 0.10.6 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.10.5...0.10.6


## [0.10.5]https://github.com/alexpasmantier/television/releases/tag/0.10.5 - 2025-02-07

### 🐛 Bug Fixes

- [4eead98]https://github.com/alexpasmantier/television/commit/4eead98fae18cfc4146def7a776fe4497e1cbc59 *(windows)* Bypass mouse capture disabling on windows by @alexpasmantier in [#348]https://github.com/alexpasmantier/television/pull/348

### ⚙️ Miscellaneous Tasks

- [fd8bf61]https://github.com/alexpasmantier/television/commit/fd8bf6100963baaf6967cbf983a9ee620effbd4f *(cd)* Automatically bump winget-pkgs registered version by @kachick in [#340]https://github.com/alexpasmantier/television/pull/340

- [5d552d1]https://github.com/alexpasmantier/television/commit/5d552d1655de46255e6ab62cc8c446bf37ba717d *(uncategorized)* Bump to 0.10.5 by @alexpasmantier



### New Contributors
* @dependabot[bot] made their first contribution in [#345]https://github.com/alexpasmantier/television/pull/345

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.10.4...0.10.5


## [0.10.4]https://github.com/alexpasmantier/television/releases/tag/0.10.4 - 2025-02-02

### 🚜 Refactor

- [8881842]https://github.com/alexpasmantier/television/commit/888184235891313cbc3114344d6935e43cb66725 *(shell)* More default shell integration triggers by @alexpasmantier in [#335]https://github.com/alexpasmantier/television/pull/335

- [a6a73c5]https://github.com/alexpasmantier/television/commit/a6a73c5bb3b23339dfb96538a10f728bb61e1c2d *(shell)* Improve shell integration configuration syntax by @alexpasmantier in [#334]https://github.com/alexpasmantier/television/pull/334

### ⚙️ Miscellaneous Tasks

- [eaafe40]https://github.com/alexpasmantier/television/commit/eaafe40cfbb7dbf906dad24756a7b2070be33a32 *(uncategorized)* Bump to 0.10.4 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.10.3...0.10.4


## [0.10.3]https://github.com/alexpasmantier/television/releases/tag/0.10.3 - 2025-01-31

### 🚜 Refactor

- [5214dd1]https://github.com/alexpasmantier/television/commit/5214dd17d0c9b82409dbd81358beb7afc6e28be2 *(app)* Buffering actions and events handling to improve overall UI responsiveness by @alexpasmantier in [#328]https://github.com/alexpasmantier/television/pull/328

- [be80496]https://github.com/alexpasmantier/television/commit/be804965491b65714613ace52419b9fbb821b9b0 *(draw)* Clearing out mut operations from rendering critical path, avoiding mutexes and perf improvements by @alexpasmantier in [#322]https://github.com/alexpasmantier/television/pull/322

### ⚙️ Miscellaneous Tasks

- [6955c5b]https://github.com/alexpasmantier/television/commit/6955c5b31357088db4debf202ca99cf303866e7d *(uncategorized)* Bump to 0.10.3 by @alexpasmantier in [#329]https://github.com/alexpasmantier/television/pull/329




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.10.2...0.10.3


## [0.10.2]https://github.com/alexpasmantier/television/releases/tag/0.10.2 - 2025-01-26

### 🐛 Bug Fixes

- [f536156]https://github.com/alexpasmantier/television/commit/f536156e7e959fc043dcd972162411bc34b6bc89 *(config)* Add serde default for shell integration configuration by @alexpasmantier in [#319]https://github.com/alexpasmantier/television/pull/319

### 📚 Documentation

- [4b632f8]https://github.com/alexpasmantier/television/commit/4b632f81f8754b59def555099165d0face28e3c1 *(changelog)* Update changelog template by @alexpasmantier in [#317]https://github.com/alexpasmantier/television/pull/317

### ⚙️ Miscellaneous Tasks

- [a03da82]https://github.com/alexpasmantier/television/commit/a03da82c56bab5e1e6ed644b82ce8a220a3a6847 *(uncategorized)* Bump to 0.10.2 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.10.1...0.10.2


## [0.10.1]https://github.com/alexpasmantier/television/releases/tag/0.10.1 - 2025-01-26

### 🐛 Bug Fixes

- [82f471d]https://github.com/alexpasmantier/television/commit/82f471d0aa01285ce82dfb19ab5c81b4b9d1f562 *(cli)* Re-enable clap help feature by @alexpasmantier in [#315]https://github.com/alexpasmantier/television/pull/315

### ⚙️ Miscellaneous Tasks

- [5271b50]https://github.com/alexpasmantier/television/commit/5271b507a04af992f49ef04871abc8edeb5e0b81 *(terminal)* Custom shell keybindings by @bertrand-chardon in [#313]https://github.com/alexpasmantier/television/pull/313




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.10.0...0.10.1


## [0.10.0]https://github.com/alexpasmantier/television/releases/tag/0.10.0 - 2025-01-25

### ⛰️  Features

- [37b71b7]https://github.com/alexpasmantier/television/commit/37b71b7a881aa634f67c0a051eea5d8a23f66a8b *(i18n)* Improve support for non-western scripts by @bertrand-chardon in [#305]https://github.com/alexpasmantier/television/pull/305

### 🐛 Bug Fixes

- [c710904]https://github.com/alexpasmantier/television/commit/c7109044f05dfc967a487ba4583269d3b7b049a5 *(stdout)* Never quote selected entries by @bertrand-chardon in [#307]https://github.com/alexpasmantier/television/pull/307

- [cb565d6]https://github.com/alexpasmantier/television/commit/cb565d667edeeb629c34f10b50b4a0e78682f643 *(uncategorized)* Add repaint command to the fish shell scripts by @jscarrott in [#303]https://github.com/alexpasmantier/television/pull/303

### 🚜 Refactor

- [1e8c8db]https://github.com/alexpasmantier/television/commit/1e8c8dbc963c4796b4720ad69e4572c5e881981c *(uncategorized)* Simplify configuration and build code + leaner crate by @alexpasmantier in [#308]https://github.com/alexpasmantier/television/pull/308

### ⚡ Performance

- [172ba23]https://github.com/alexpasmantier/television/commit/172ba231eec45b2bff30e80eeca2ccb54504cc01 *(async)* Make overall UI much smoother and snappier by @alexpasmantier in [#311]https://github.com/alexpasmantier/television/pull/311

### ⚙️ Miscellaneous Tasks

- [7a54e5a]https://github.com/alexpasmantier/television/commit/7a54e5a50711f5122f7731863afb85db96816494 *(uncategorized)* Bump to 0.10.0 by @alexpasmantier

- [3970f65]https://github.com/alexpasmantier/television/commit/3970f65946ed2753a1ab0841ea01b45ab23b3fba *(uncategorized)* Flatten workspace into a single crate by @alexpasmantier in [#306]https://github.com/alexpasmantier/television/pull/306

- [5750531]https://github.com/alexpasmantier/television/commit/5750531cb2bac6a39aae3348bfc8362a4830fdab *(uncategorized)* Add zip format in a Windows release assets by @kachick in [#298]https://github.com/alexpasmantier/television/pull/298



### New Contributors
* @jscarrott made their first contribution in [#303]https://github.com/alexpasmantier/television/pull/303
* @kachick made their first contribution in [#298]https://github.com/alexpasmantier/television/pull/298

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.9.4...0.10.0


## [0.9.4]https://github.com/alexpasmantier/television/releases/tag/0.9.4 - 2025-01-20

### 🐛 Bug Fixes

- [8bbebf7]https://github.com/alexpasmantier/television/commit/8bbebf7e57600d9f03c607a000188a784728ca11 *(syntect)* Switch back to oniguruma while investigating parsing issues by @alexpasmantier in [#292]https://github.com/alexpasmantier/television/pull/292

### ⚙️ Miscellaneous Tasks

- [40c97c9]https://github.com/alexpasmantier/television/commit/40c97c9c4c5086092f2cfc1bf58b5081e7292f20 *(uncategorized)* Bump workspace to 0.9.4 by @alexpasmantier in [#293]https://github.com/alexpasmantier/television/pull/293




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.9.3...0.9.4


## [0.9.3]https://github.com/alexpasmantier/television/releases/tag/0.9.3 - 2025-01-19

### ⛰️  Features

- [6c3bede]https://github.com/alexpasmantier/television/commit/6c3bede3ca2473d0a9e9d9bd2bc0b42ea9cadbd6 *(preview)* Add support for displaying nerd fonts in preview by @alexpasmantier in [#286]https://github.com/alexpasmantier/television/pull/286

### 🐛 Bug Fixes

- [c227b2a]https://github.com/alexpasmantier/television/commit/c227b2a20137f615123af5d8d8991d93d8080329 *(cable)* Cable channels now take precedence over builtins for the cli / shell integration by @alexpasmantier in [#278]https://github.com/alexpasmantier/television/pull/278

### 🚜 Refactor

- [1934d3f]https://github.com/alexpasmantier/television/commit/1934d3f03f4e0398357e1975777670e3e922cabc *(uncategorized)* Exit application on SIGINT / C-c by @alexpasmantier in [#274]https://github.com/alexpasmantier/television/pull/274

### 📚 Documentation

- [d68ae21]https://github.com/alexpasmantier/television/commit/d68ae21630bfcfff96b283700a2058d1d44a1f3f *(readme)* Link to nucleo directly by @archseer in [#266]https://github.com/alexpasmantier/television/pull/266

### ⚡ Performance

- [a3dc819]https://github.com/alexpasmantier/television/commit/a3dc8196aa5199bedfd62b640c4020a92df9d9d7 *(preview)* Add partial preview rendering and buffer preview requests by @alexpasmantier in [#285]https://github.com/alexpasmantier/television/pull/285

### ⚙️ Miscellaneous Tasks

- [a43ed22]https://github.com/alexpasmantier/television/commit/a43ed226668d9f2cc1078c66b1e31571ccb22e72 *(uncategorized)* Bump workspace to 0.9.3 by @alexpasmantier in [#287]https://github.com/alexpasmantier/television/pull/287



### New Contributors
* @archseer made their first contribution in [#266]https://github.com/alexpasmantier/television/pull/266

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.9.2...0.9.3


## [0.9.2]https://github.com/alexpasmantier/television/releases/tag/0.9.2 - 2025-01-09

### 🐛 Bug Fixes

- [9433fea]https://github.com/alexpasmantier/television/commit/9433fea80df9f6277114d2c27795c35450ad7880 *(cable)* Filter out non-utf8 lines when loading cable candidates by @alexpasmantier in [#263]https://github.com/alexpasmantier/television/pull/263

### ⚙️ Miscellaneous Tasks

- [1a4dae9]https://github.com/alexpasmantier/television/commit/1a4dae9bd82f284e86ef6e83e07b47dda6e3908f *(uncategorized)* Bump to 0.9.2 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.9.1...0.9.2


## [0.9.1]https://github.com/alexpasmantier/television/releases/tag/0.9.1 - 2025-01-09

### ⛰️  Features

- [d9ca7b1]https://github.com/alexpasmantier/television/commit/d9ca7b1f9d7460593b3adeac042a50ee3a03649c *(cable)* Allow custom cable channels to override builtins by @alexpasmantier in [#260]https://github.com/alexpasmantier/television/pull/260

- [ea8b955]https://github.com/alexpasmantier/television/commit/ea8b955e6d34eade1f83de41805cbab6b7eb6335 *(cli)* Add `no-preview` flag to disable the preview pane by @alexpasmantier in [#258]https://github.com/alexpasmantier/television/pull/258

### 🐛 Bug Fixes

- [b388a56]https://github.com/alexpasmantier/television/commit/b388a56745f4ad63ded1ebe5f296241695892c4b *(fish)* Don't add extra space to prompt if it's an implicit cd (`\.`) by @alexpasmantier in [#259]https://github.com/alexpasmantier/television/pull/259

### 🚜 Refactor

- [3b7fb0c]https://github.com/alexpasmantier/television/commit/3b7fb0c6d6e73a6558a99648c5269ae458ab9404 *(cable)* Stream in cable results + better error logging + default delimiter consistency by @alexpasmantier in [#257]https://github.com/alexpasmantier/television/pull/257

- [b5e9846]https://github.com/alexpasmantier/television/commit/b5e9846e1b5f62a757057c5403768e20ff3e7f69 *(providers)* Improve cable provider files loading sequence by @alexpasmantier in [#254]https://github.com/alexpasmantier/television/pull/254

### ⚙️ Miscellaneous Tasks

- [d00d8e4]https://github.com/alexpasmantier/television/commit/d00d8e4f84511c3c8c8c3c0ef2634ca671c7c0bd *(uncategorized)* Bump to 0.9.1 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.9.0...0.9.1


## [0.9.0]https://github.com/alexpasmantier/television/releases/tag/0.9.0 - 2025-01-07

### ⛰️  Features

- [76bff30]https://github.com/alexpasmantier/television/commit/76bff30759612094635cd06366b6eaa240867488 *(cable)* Add default git diff cable channel by @alexpasmantier in [#226]https://github.com/alexpasmantier/television/pull/226

- [e2398ab]https://github.com/alexpasmantier/television/commit/e2398abcfa6d368389456b79723d87842ee5e33f *(channels)* Allow sending currently selected entries to other channels by @alexpasmantier in [#235]https://github.com/alexpasmantier/television/pull/235

- [2e5f65b]https://github.com/alexpasmantier/television/commit/2e5f65baefd7ce10dcb6aa85fd41158f86c6dfcd *(channels)* Add support for multi selection by @alexpasmantier in [#234]https://github.com/alexpasmantier/television/pull/234

- [3bd2bb4]https://github.com/alexpasmantier/television/commit/3bd2bb44bd3ab0d4a3423cdb1df3133ed0f4bf84 *(uncategorized)* Add support for CJK unified ideographs by @alexpasmantier in [#243]https://github.com/alexpasmantier/television/pull/243

### 🐛 Bug Fixes

- [1c00dec]https://github.com/alexpasmantier/television/commit/1c00dece942f09d749699a5d22467b9c279ad950 *(ansi)* Catch implicit reset escape sequences by @alexpasmantier in [#245]https://github.com/alexpasmantier/television/pull/245

- [a2a264c]https://github.com/alexpasmantier/television/commit/a2a264cc4d7868d31c35ff10912e790cd790262d *(ingestion)* Use lossy conversion when source doesn't produce valid utf8 by @alexpasmantier in [#240]https://github.com/alexpasmantier/television/pull/240

### ⚡ Performance

- [8b5beee]https://github.com/alexpasmantier/television/commit/8b5beee1dc3da153d0e4a2c9a9e85ff8540e15d8 *(uncategorized)* Drop deduplication when loading cable candidate lines by @alexpasmantier in [#248]https://github.com/alexpasmantier/television/pull/248

- [072ecdb]https://github.com/alexpasmantier/television/commit/072ecdba73b4e6677f0ce5d313a45a327df44eed *(uncategorized)* Only display the first 200 log entries when previewing git-repos by @alexpasmantier in [#241]https://github.com/alexpasmantier/television/pull/241

- [0624002]https://github.com/alexpasmantier/television/commit/0624002f350d2df0b3aed83c2a8a1b9426757687 *(uncategorized)* Use FxHash instead of SipHash where it makes sense by @alexpasmantier in [#237]https://github.com/alexpasmantier/television/pull/237

### ⚙️ Miscellaneous Tasks

- [da2396e]https://github.com/alexpasmantier/television/commit/da2396e19a73ed6b042a78bf037ca7d2894f8946 *(linting)* Add workspace lints by @xosxos in [#228]https://github.com/alexpasmantier/television/pull/228

- [853da49]https://github.com/alexpasmantier/television/commit/853da494255dcc34d71a6281eee5c353c83bec62 *(uncategorized)* Bump to 0.9.0 by @alexpasmantier in [#249]https://github.com/alexpasmantier/television/pull/249

- [d207848]https://github.com/alexpasmantier/television/commit/d20784891fc034cf401bcfc6f5f522582d5a8f98 *(uncategorized)* Fix linting warnings by @alexpasmantier in [#230]https://github.com/alexpasmantier/television/pull/230



### New Contributors
* @xosxos made their first contribution in [#228]https://github.com/alexpasmantier/television/pull/228

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.8.8...0.9.0


## [0.8.8]https://github.com/alexpasmantier/television/releases/tag/0.8.8 - 2025-01-06

### ⛰️  Features

- [d7e6c35]https://github.com/alexpasmantier/television/commit/d7e6c357357d59152eb198c0d18697d5591ff397 *(ui)* Add support for standard ANSI colors theming and update default theme by @alexpasmantier in [#221]https://github.com/alexpasmantier/television/pull/221

- [53bd4a3]https://github.com/alexpasmantier/television/commit/53bd4a38159edfec4db7d80813a3cf51a36fb491 *(ui)* Add new `television` theme that inherits the terminal bg by @alexpasmantier in [#220]https://github.com/alexpasmantier/television/pull/220

- [931a7bb]https://github.com/alexpasmantier/television/commit/931a7bb5c35d992b53f8c4aeee87b66ee9ab14f9 *(ui)* Make background color optional and fallback to terminal default bg color by @alexpasmantier in [#219]https://github.com/alexpasmantier/television/pull/219

### 🐛 Bug Fixes

- [88b08b7]https://github.com/alexpasmantier/television/commit/88b08b798e5acd39077048ef14e5f33d25067d87 *(cable)* Zsh-history and bash-history cable channels now point to default histfiles locations by @alexpasmantier in [#224]https://github.com/alexpasmantier/television/pull/224

### 🚜 Refactor

- [3d49d30]https://github.com/alexpasmantier/television/commit/3d49d308c1e2d8c1020bdf27e75bb69cd20e2235 *(cable)* More debug information for cable channels by @alexpasmantier in [#223]https://github.com/alexpasmantier/television/pull/223

- [074889b]https://github.com/alexpasmantier/television/commit/074889b43fc36d036b067e90a7977a2fd6b519d3 *(ux)* Don't print the list of available channels on channel parsing error by @alexpasmantier in [#222]https://github.com/alexpasmantier/television/pull/222

### 📚 Documentation

- [21fb3cb]https://github.com/alexpasmantier/television/commit/21fb3cb53cff24b4f30041014c4fa9aa018ba360 *(uncategorized)* Add shell autocompletion GIF to the README by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [6536bbf]https://github.com/alexpasmantier/television/commit/6536bbf32389682b3783a277d176e5e2f4421e60 *(uncategorized)* Bump to 0.8.8 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.8.7...0.8.8


## [0.8.7]https://github.com/alexpasmantier/television/releases/tag/0.8.7 - 2025-01-04

### 🐛 Bug Fixes

- [3e5f0a4]https://github.com/alexpasmantier/television/commit/3e5f0a44a3405826b599de35f9901dfe4fc86351 *(unix)* Use sed instead of tail for bash and zsh default history channels by @alexpasmantier in [#216]https://github.com/alexpasmantier/television/pull/216

### 🚜 Refactor

- [657af5e]https://github.com/alexpasmantier/television/commit/657af5e36d82f7e819c592f7dbc2a2c9a41a067d *(cable)* Always create default cable channels in user directory if no cable channels exist by @alexpasmantier in [#213]https://github.com/alexpasmantier/television/pull/213

- [124c06c]https://github.com/alexpasmantier/television/commit/124c06c403b019438bbd60663eef48fb8172557c *(config)* Check for config file existence before processing subcommands by @alexpasmantier in [#214]https://github.com/alexpasmantier/television/pull/214

- [971a2e7]https://github.com/alexpasmantier/television/commit/971a2e7697d888a09f21fb50a2684e6162ac6329 *(shell)* Use $HISTFILE for cable history channels by @alexpasmantier in [#210]https://github.com/alexpasmantier/television/pull/210

### ⚙️ Miscellaneous Tasks

- [25adee3]https://github.com/alexpasmantier/television/commit/25adee34d8ce35f512cc641c4fc0529545fd2af0 *(uncategorized)* Bump to 0.8.7 by @alexpasmantier in [#217]https://github.com/alexpasmantier/television/pull/217



### New Contributors
* @tangowithfoxtrot made their first contribution in [#208]https://github.com/alexpasmantier/television/pull/208

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.8.6...0.8.7


## [0.8.6]https://github.com/alexpasmantier/television/releases/tag/0.8.6 - 2025-01-01

### 🐛 Bug Fixes

- [bff7068]https://github.com/alexpasmantier/television/commit/bff70687814b6dfa682e737d3eec74a918229eb2 *(uncategorized)* Nix build by @tukanoidd in [#203]https://github.com/alexpasmantier/television/pull/203

- [741ce30]https://github.com/alexpasmantier/television/commit/741ce30b080b462cf8938661ee630a2136b565c5 *(uncategorized)* Automatically create configuration and data directories if they don't exist by @tulilirockz in [#204]https://github.com/alexpasmantier/television/pull/204

### ⚙️ Miscellaneous Tasks

- [df936dd]https://github.com/alexpasmantier/television/commit/df936dd4ebed89d1e7c0fc81892e8230e22aea49 *(uncategorized)* Bump to 0.8.6 by @alexpasmantier



### New Contributors
* @tulilirockz made their first contribution in [#204]https://github.com/alexpasmantier/television/pull/204

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.8.5...0.8.6


## [0.8.5]https://github.com/alexpasmantier/television/releases/tag/0.8.5 - 2024-12-31

### ⛰️  Features

- [2acfc41]https://github.com/alexpasmantier/television/commit/2acfc41ceb9654e3bb1bf28a51bd9afc2b395293 *(ui)* Respect BAT_THEME env var for previewer syntax highlighting theme by @alexpasmantier in [#201]https://github.com/alexpasmantier/television/pull/201

### 🐛 Bug Fixes

- [a74dece]https://github.com/alexpasmantier/television/commit/a74deceb982970ae38b6b9052ed65b0deb14c00c *(shell)* Add space if needed when using smart autocomplete by @alexpasmantier in [#200]https://github.com/alexpasmantier/television/pull/200

### 📚 Documentation

- [0382ff8]https://github.com/alexpasmantier/television/commit/0382ff81b6e0753448cbfbb94c3ff11ae0253eb3 *(config)* Fix typo in default configuration file comment by @alexpasmantier in [#198]https://github.com/alexpasmantier/television/pull/198

- [690e88d]https://github.com/alexpasmantier/television/commit/690e88dd1a0ba58d34b1c0db0cfae7577d385df8 *(uncategorized)* Move parts of README to Wiki by @bertrand-chardon in [#199]https://github.com/alexpasmantier/television/pull/199

### ⚙️ Miscellaneous Tasks

- [8cae592]https://github.com/alexpasmantier/television/commit/8cae59256d0e43a2bf2d1c3ad7db438a9b98a9d8 *(uncategorized)* Bump to 0.8.5 by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.8.4...0.8.5


## [0.8.4]https://github.com/alexpasmantier/television/releases/tag/0.8.4 - 2024-12-31

### ⛰️  Features

- [343ed3c]https://github.com/alexpasmantier/television/commit/343ed3c126c11452a467cbcaae77bfcf53cd937c *(ux)* Automatically create default user configuration file if nonexistent by @alexpasmantier in [#196]https://github.com/alexpasmantier/television/pull/196

### 🐛 Bug Fixes

- [1899873]https://github.com/alexpasmantier/television/commit/1899873680987f797f41dfc682483a4a26ec82b3 *(channels)* List-channels in kebab-case by @fannheyward in [#195]https://github.com/alexpasmantier/television/pull/195

### ⚙️ Miscellaneous Tasks

- [430e325]https://github.com/alexpasmantier/television/commit/430e3255675139d70a11b1e272d08effb7967ae3 *(uncategorized)* Bump version to 0.8.4 by @alexpasmantier



### New Contributors
* @fannheyward made their first contribution in [#195]https://github.com/alexpasmantier/television/pull/195

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.8.3...0.8.4


## [0.8.3]https://github.com/alexpasmantier/television/releases/tag/0.8.3 - 2024-12-30

### 🐛 Bug Fixes

- [26036dd]https://github.com/alexpasmantier/television/commit/26036dd0b9663e3aafd2442009b4ff700e841a7a *(uncategorized)* Bump version to match with the release by @chenrui333 in [#188]https://github.com/alexpasmantier/television/pull/188

### ⚡ Performance

- [b552657]https://github.com/alexpasmantier/television/commit/b552657926eeac37de24fae5684b1f758fc23f72 *(bin)* Compile binary as a single code unit and use fat LTO by @alexpasmantier in [#191]https://github.com/alexpasmantier/television/pull/191

### ⚙️ Miscellaneous Tasks

- [0c5da2a]https://github.com/alexpasmantier/television/commit/0c5da2a0c3e72361300b09e03cd2a9fed1619401 *(uncategorized)* Bump to 0.8.3 by @alexpasmantier in [#192]https://github.com/alexpasmantier/television/pull/192

- [53afed2]https://github.com/alexpasmantier/television/commit/53afed28eebc4be5aab3399cc35a580045033be4 *(uncategorized)* Bump workspace to 0.0.16 by @alexpasmantier in [#189]https://github.com/alexpasmantier/television/pull/189



### New Contributors
* @chenrui333 made their first contribution in [#188]https://github.com/alexpasmantier/television/pull/188

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.8.2...0.8.3


## [0.8.2]https://github.com/alexpasmantier/television/releases/tag/0.8.2 - 2024-12-30

### ⛰️  Features

- [b49a069]https://github.com/alexpasmantier/television/commit/b49a06997b93bc48f9cae2a66acda1e4ccfdb621 *(shell)* Shell integration support for fish by @alexpasmantier in [#186]https://github.com/alexpasmantier/television/pull/186

- [7614fbc]https://github.com/alexpasmantier/television/commit/7614fbc653cd5ec64037a9c5890381ab98269791 *(shell)* Add bash support for smart autocomplete and shell history by @alexpasmantier in [#184]https://github.com/alexpasmantier/television/pull/184

- [0b5facc]https://github.com/alexpasmantier/television/commit/0b5facca6a3c449dcb7335465b11cae169280612 *(shell)* Add separate history binding for zsh integration by @alexpasmantier in [#183]https://github.com/alexpasmantier/television/pull/183

### 📚 Documentation

- [537f738]https://github.com/alexpasmantier/television/commit/537f738424ddbfb11d4f840b06b597caf36ecbaa *(uncategorized)* Move terminal emulator compatibility section to separate docs file by @alexpasmantier in [#179]https://github.com/alexpasmantier/television/pull/179

- [c3d6b87]https://github.com/alexpasmantier/television/commit/c3d6b873d0f5a0ef25087dd09e725dfa4b7ad055 *(uncategorized)* Add a credits section to the readme by @alexpasmantier in [#178]https://github.com/alexpasmantier/television/pull/178




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.8.1...0.8.2


## [0.8.1]https://github.com/alexpasmantier/television/releases/tag/0.8.1 - 2024-12-29

### 🐛 Bug Fixes

- [08fa41b]https://github.com/alexpasmantier/television/commit/08fa41b06c59cc0fc1e0fcc8803a4f77517190b1 *(channels)* Use the number of actual bytes read and not the sample buffer size when calculating the proportion of printable ASCII characters by @alexpasmantier in [#174]https://github.com/alexpasmantier/television/pull/174

- [97343c6]https://github.com/alexpasmantier/television/commit/97343c679d5fd93548226ba34c7c8fd3d52137c9 *(ux)* Make DeletePrevWord trigger channel update by @alexpasmantier in [#175]https://github.com/alexpasmantier/television/pull/175

### 📚 Documentation

- [b74b130]https://github.com/alexpasmantier/television/commit/b74b13075df34cad63b0a45e5face1f240cfa408 *(uncategorized)* Fix broken image in channels.md by @alexpasmantier

- [dc4028f]https://github.com/alexpasmantier/television/commit/dc4028fd7cf0c697083a28d2bd949e00bd022a0b *(uncategorized)* Update readme animations by @alexpasmantier

- [a14dccb]https://github.com/alexpasmantier/television/commit/a14dccb726cd09d43811201e80768d51f0bb8d38 *(uncategorized)* Update README.md by @alexpasmantier in [#171]https://github.com/alexpasmantier/television/pull/171

- [90c2b9c]https://github.com/alexpasmantier/television/commit/90c2b9ce437535f50f0a431a6629e8fc006a2f1d *(uncategorized)* Fix broken link in README by @alexpasmantier in [#168]https://github.com/alexpasmantier/television/pull/168

### ⚙️ Miscellaneous Tasks

- [7434f14]https://github.com/alexpasmantier/television/commit/7434f1476abeaeb71d135389bd02092d68b36446 *(uncategorized)* Bump to 0.8.1 by @alexpasmantier in [#176]https://github.com/alexpasmantier/television/pull/176

- [e9c3ebf]https://github.com/alexpasmantier/television/commit/e9c3ebf05f66060f51b1c75b90e3f7b8af137575 *(uncategorized)* Docs(readme): Update README.md by @bertrand-chardon in [#172]https://github.com/alexpasmantier/television/pull/172




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.8.0...0.8.1


## [0.8.0]https://github.com/alexpasmantier/television/releases/tag/0.8.0 - 2024-12-29

### ⛰️  Features

- [ee71e47]https://github.com/alexpasmantier/television/commit/ee71e4788f8ee3f6fd3891e6c0316a4a4df7b369 *(cable)* Using builtin previewers inside cable channel prototypes by @alexpasmantier in [#156]https://github.com/alexpasmantier/television/pull/156

- [e034615]https://github.com/alexpasmantier/television/commit/e0346155945250defd3298a61aa3f6fee1518283 *(cable)* Make preview optional for cable channels by @alexpasmantier in [#155]https://github.com/alexpasmantier/television/pull/155

- [309ff53]https://github.com/alexpasmantier/television/commit/309ff537a499a0d9350c907735b07bdb016d7538 *(cli)* Allow passing --input \\<STRING> to prefill input prompt by @alexpasmantier in [#153]https://github.com/alexpasmantier/television/pull/153

- [557686e]https://github.com/alexpasmantier/television/commit/557686e1976ef474de314c790270985d6c7c73af *(config)* Allow specifying multiple keymaps for the same action + better defaults by @alexpasmantier in [#149]https://github.com/alexpasmantier/television/pull/149

- [12fdf94]https://github.com/alexpasmantier/television/commit/12fdf94e5de7abff4792db760ca77f7223d6f438 *(input)* Bind ctrl-w to delete previous word by @alexpasmantier in [#150]https://github.com/alexpasmantier/television/pull/150

- [68d1189]https://github.com/alexpasmantier/television/commit/68d118986cbed4d86ccc3006ce5244a358f244ee *(shell)* Autocompletion plugin for zsh by @alexpasmantier in [#145]https://github.com/alexpasmantier/television/pull/145

- [22f1b4d]https://github.com/alexpasmantier/television/commit/22f1b4dc337353782474bf59580cab91b87f9ede *(ui)* Decouple preview title position from input bar position and make it configurable by @alexpasmantier in [#144]https://github.com/alexpasmantier/television/pull/144

- [c3b8c68]https://github.com/alexpasmantier/television/commit/c3b8c68d1bb5b7d4351f66af125af1561dccf248 *(ux)* Print current query to stdout on Enter if no entry is selected by @alexpasmantier in [#151]https://github.com/alexpasmantier/television/pull/151

### 🚜 Refactor

- [157d01c]https://github.com/alexpasmantier/television/commit/157d01c4e71faaaa106f922e9a3b59139d632003 *(cable)* Use tail instead of tac for zsh and bash command history channels by @alexpasmantier in [#161]https://github.com/alexpasmantier/television/pull/161

- [499bfdb]https://github.com/alexpasmantier/television/commit/499bfdb8e5b33d1c4c8554908fc3d71abf8bd0b3 *(ui)* More compact general layout and make preview panel optional by @alexpasmantier in [#148]https://github.com/alexpasmantier/television/pull/148

- [697f295]https://github.com/alexpasmantier/television/commit/697f295afb930298f8e37e536ce89a573b863a29 *(uncategorized)* Update default configuration and simplify channel enum conversions by @alexpasmantier in [#157]https://github.com/alexpasmantier/television/pull/157

### 📚 Documentation

- [8de82fe]https://github.com/alexpasmantier/television/commit/8de82fec5d2bea58ef8f74f0c042088b62ec2a01 *(uncategorized)* Update README with more legible screenshot of the files channel by @alexpasmantier in [#164]https://github.com/alexpasmantier/television/pull/164

- [07a7c7b]https://github.com/alexpasmantier/television/commit/07a7c7b34c87e0e4cb70ce4fff521b70c5b549f2 *(uncategorized)* Replace top image with a screenshot of the application by @alexpasmantier in [#163]https://github.com/alexpasmantier/television/pull/163

- [f83c5d1]https://github.com/alexpasmantier/television/commit/f83c5d1396664fae4d68ed26c7b6dbc60f507bea *(uncategorized)* Update readme by @alexpasmantier in [#160]https://github.com/alexpasmantier/television/pull/160

- [6d706b4]https://github.com/alexpasmantier/television/commit/6d706b4c12bfeae2bb097fe75deb17f3e0fcdcb0 *(uncategorized)* Rearrange README, add a features section, and move more technical stuff to separate files by @alexpasmantier in [#159]https://github.com/alexpasmantier/television/pull/159

### ⚙️ Miscellaneous Tasks

- [f707190]https://github.com/alexpasmantier/television/commit/f7071904397b03f25f8e56df1d5ca2f5bc445fd9 *(uncategorized)* Include cable channels by @alexpasmantier in [#166]https://github.com/alexpasmantier/television/pull/166

- [1bc6f12]https://github.com/alexpasmantier/television/commit/1bc6f127821bdaa93291a04afaf19111737ee42f *(uncategorized)* Bump to 0.8.0 by @alexpasmantier in [#165]https://github.com/alexpasmantier/television/pull/165




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.7.2...0.8.0


## [0.7.2]https://github.com/alexpasmantier/television/releases/tag/0.7.2 - 2024-12-17

### ⛰️  Features

- [882737d]https://github.com/alexpasmantier/television/commit/882737d147ce64bb50f2193a0e47bb10fd2970d8 *(cli)* Add argument to start tv in another working directory by @defigli in [#132]https://github.com/alexpasmantier/television/pull/132

### 📚 Documentation

- [e27c834]https://github.com/alexpasmantier/television/commit/e27c8342e84b195027202b8c92a5e694f0ea6d46 *(readme)* Make channel names consistent everywhere by @peter-fh in [#138]https://github.com/alexpasmantier/television/pull/138



### New Contributors
* @peter-fh made their first contribution in [#138]https://github.com/alexpasmantier/television/pull/138
* @defigli made their first contribution in [#132]https://github.com/alexpasmantier/television/pull/132

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.7.1...0.7.2


## [0.7.1]https://github.com/alexpasmantier/television/releases/tag/0.7.1 - 2024-12-15

### ⛰️  Features

- [18c5213]https://github.com/alexpasmantier/television/commit/18c5213e83955e3a58fc50cf6d948bb93af2c2c0 *(channels)* New channel for directories and associated transitions by @alexpasmantier in [#130]https://github.com/alexpasmantier/television/pull/130

### 📚 Documentation

- [c0c790c]https://github.com/alexpasmantier/television/commit/c0c790cb48011a7ff055d71779ebad3ac20b6f91 *(contributing)* Update contributing.md with hot topics and link todo by @alexpasmantier in [#129]https://github.com/alexpasmantier/television/pull/129




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.7.0...0.7.1


## [0.7.0]https://github.com/alexpasmantier/television/releases/tag/0.7.0 - 2024-12-15

### ⛰️  Features

- [937d0f0]https://github.com/alexpasmantier/television/commit/937d0f0758367eb209f5abfff2ef7afdc09d4971 *(cable)* Support cable channel invocation through the cli by @alexpasmantier in [#116]https://github.com/alexpasmantier/television/pull/116

- [4164e90]https://github.com/alexpasmantier/television/commit/4164e9092b577f577ada87286326b465f07300f6 *(themes)* More builtin UI themes by @alexpasmantier in [#125]https://github.com/alexpasmantier/television/pull/125

- [11da96d]https://github.com/alexpasmantier/television/commit/11da96d7fb1d380a289e33482bd534e1cd4fa4cd *(themes)* Add support for global themes background colors by @alexpasmantier in [#120]https://github.com/alexpasmantier/television/pull/120

- [913aa85]https://github.com/alexpasmantier/television/commit/913aa85af03ad1b819f58388c8f0192b6d3e6b66 *(themes)* Add support for ui themes by @alexpasmantier in [#114]https://github.com/alexpasmantier/television/pull/114

### 🐛 Bug Fixes

- [7b114b7]https://github.com/alexpasmantier/television/commit/7b114b7cb6c7559c98546451461e8af5da4fb645 *(config)* Better handling of default values by @alexpasmantier in [#123]https://github.com/alexpasmantier/television/pull/123

- [ea752b1]https://github.com/alexpasmantier/television/commit/ea752b13e6e2933a0be785cf29a9a7ebac123a23 *(previewers)* Handle crlf sequences when parsing ansi into ratatui objects by @alexpasmantier in [#119]https://github.com/alexpasmantier/television/pull/119

- [9809e74]https://github.com/alexpasmantier/television/commit/9809e742d86443950800854042013ae80094584e *(stdin)* Trim entry newlines when streaming from stdin by @alexpasmantier in [#121]https://github.com/alexpasmantier/television/pull/121

### 🚜 Refactor

- [a7064c1]https://github.com/alexpasmantier/television/commit/a7064c18c8a74a0eba2d93be904c7f72bbff1e1c *(config)* Use `$HOME/.config/television` by default for macOS by @alexpasmantier in [#124]https://github.com/alexpasmantier/television/pull/124 [**breaking**]

- [37b2dda]https://github.com/alexpasmantier/television/commit/37b2dda7297a83f58d35d71de5cb971a355ff3f7 *(help)* Enable help bar by default and add help keybinding by @alexpasmantier in [#122]https://github.com/alexpasmantier/television/pull/122

- [54399e3]https://github.com/alexpasmantier/television/commit/54399e377776ae6a192d4565647a412e3e49354e *(screen)* Extract UI related code to separate crate by @alexpasmantier in [#106]https://github.com/alexpasmantier/television/pull/106

### 📚 Documentation

- [630e791]https://github.com/alexpasmantier/television/commit/630e791961767ae071b883728e901dd201c376bb *(readme)* Add theme previews and udpate readme structure by @alexpasmantier in [#126]https://github.com/alexpasmantier/television/pull/126

### ⚡ Performance

- [758bfc2]https://github.com/alexpasmantier/television/commit/758bfc290a09f708b1f7bcab915cc0465aaa8af8 *(ui)* Improve merging of continuous name match ranges by @alexpasmantier in [#109]https://github.com/alexpasmantier/television/pull/109

- [a4d15af]https://github.com/alexpasmantier/television/commit/a4d15af694cb09a2bf338ea7b6b573d274cdeddb *(uncategorized)* Optimize entry ranges by @bertrand-chardon in [#110]https://github.com/alexpasmantier/television/pull/110

- [5fb02c7]https://github.com/alexpasmantier/television/commit/5fb02c768f82d81af2426661b67183dbc333b21d *(uncategorized)* Merge contiguous name match ranges by @bertrand-chardon in [#108]https://github.com/alexpasmantier/television/pull/108

- [c0db566]https://github.com/alexpasmantier/television/commit/c0db566a48d7821dcdc4bd9ff330b24b8df6b963 *(uncategorized)* Add bench for build results list by @bertrand-chardon in [#107]https://github.com/alexpasmantier/television/pull/107

### ⚙️ Miscellaneous Tasks

- [a8e3ea5]https://github.com/alexpasmantier/television/commit/a8e3ea5f8954e2cde8c81c10c4cf5172ab2a00f1 *(version)* Bump workspace to 0.7.0 by @alexpasmantier in [#127]https://github.com/alexpasmantier/television/pull/127




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.6.2...0.7.0


## [0.6.2]https://github.com/alexpasmantier/television/releases/tag/0.6.2 - 2024-12-06

### 🐛 Bug Fixes

- [f9d33e4]https://github.com/alexpasmantier/television/commit/f9d33e4797e6d21bf27de62d51ecd8985455a5a2 *(windows)* Use cmd on windows instead of sh by @Liyixin95 in [#102]https://github.com/alexpasmantier/television/pull/102

### ⚙️ Miscellaneous Tasks

- [ffc8dae]https://github.com/alexpasmantier/television/commit/ffc8dae4942102a9ec4c8661d6a0adfb1f4813fc *(uncategorized)* Bump workspace to 0.6.2 by @alexpasmantier in [#104]https://github.com/alexpasmantier/television/pull/104

- [4567f26]https://github.com/alexpasmantier/television/commit/4567f26a37995f9af6648777ada491c227bcaccd *(uncategorized)* Use named constant for colors by @bertrand-chardon in [#99]https://github.com/alexpasmantier/television/pull/99



### New Contributors
* @Liyixin95 made their first contribution in [#102]https://github.com/alexpasmantier/television/pull/102

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.6.1...0.6.2


## [0.6.1]https://github.com/alexpasmantier/television/releases/tag/0.6.1 - 2024-12-05

### ⛰️  Features

- [ad3e52d]https://github.com/alexpasmantier/television/commit/ad3e52d3407a25fff6a2a86f64de46a5fd8b89fd *(remote)* Distinguish cable channels with a separate icon by @alexpasmantier in [#94]https://github.com/alexpasmantier/television/pull/94

### 🐛 Bug Fixes

- [795db19]https://github.com/alexpasmantier/television/commit/795db19ffffafb080a54b6fc8d699f9c9d316255 *(cable)* Add cable to unit channel variants by @alexpasmantier in [#96]https://github.com/alexpasmantier/television/pull/96

### 🚜 Refactor

- [6a13590]https://github.com/alexpasmantier/television/commit/6a1359055dc9546c235f6470deabf9dbaa0f8e61 *(helpbar)* Hide the top help panel by default by @alexpasmantier in [#97]https://github.com/alexpasmantier/television/pull/97

### 📚 Documentation

- [b6f12b3]https://github.com/alexpasmantier/television/commit/b6f12b372b85c571539989d73b4bbfec6f548541 *(readme)* Update readme with latest version and fix section link by @alexpasmantier in [#93]https://github.com/alexpasmantier/television/pull/93




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.6.0...0.6.1


## [0.6.0]https://github.com/alexpasmantier/television/releases/tag/0.6.0 - 2024-12-04

### ⛰️  Features

- [a5f5d20]https://github.com/alexpasmantier/television/commit/a5f5d20071a3d58761c1917b34fcd0a12ae7f102 *(cable)* Add support for custom channels by @alexpasmantier in [#75]https://github.com/alexpasmantier/television/pull/75

- [2206711]https://github.com/alexpasmantier/television/commit/220671106e621454e2088ccf08bc9957f240bbec *(layout)* Allow reversing the layout and placing input bar on top by @alexpasmantier in [#76]https://github.com/alexpasmantier/television/pull/76

### 🐛 Bug Fixes

- [1ebec7e]https://github.com/alexpasmantier/television/commit/1ebec7ead22e2bac806450f8a3ab31e840838a4c *(output)* Quote output string when it contains spaces and points to an existing path by @alexpasmantier in [#77]https://github.com/alexpasmantier/television/pull/77

- [128a611]https://github.com/alexpasmantier/television/commit/128a6116c3e7ffb1f850bae309c84b2da43f3d77 *(preview)* Remove redundant tokio task when generating builtin file previews by @alexpasmantier in [#86]https://github.com/alexpasmantier/television/pull/86

- [d3c16af]https://github.com/alexpasmantier/television/commit/d3c16af4e94e2f47b9e966b8bd6284392368a37b *(stdin)* Better handling of long running stdin streams by @alexpasmantier in [#81]https://github.com/alexpasmantier/television/pull/81

### 🚜 Refactor

- [30f1940]https://github.com/alexpasmantier/television/commit/30f194081514d25a3a4e8a13e092cc6c3e896736 *(exit)* Use std::process::exit explicitly by @alexpasmantier in [#84]https://github.com/alexpasmantier/television/pull/84

### 📚 Documentation

- [48ea12e]https://github.com/alexpasmantier/television/commit/48ea12ed7a0f273cf9154b4b3e3aeb2ce5e5add0 *(install)* Update the installation section of the README by @alexpasmantier in [#79]https://github.com/alexpasmantier/television/pull/79

- [20cf83b]https://github.com/alexpasmantier/television/commit/20cf83b72017bec4029fd502b7c730e1bc99dd31 *(installation)* Update homebrew installation command by @alexpasmantier in [#87]https://github.com/alexpasmantier/television/pull/87

### ⚡ Performance

- [fee4ed2]https://github.com/alexpasmantier/television/commit/fee4ed2671be1aee9c6f3fd2c77d45c208525c83 *(uncategorized)* Add cache for icon colors by @bertrand-chardon in [#89]https://github.com/alexpasmantier/television/pull/89

- [b7ddb00]https://github.com/alexpasmantier/television/commit/b7ddb00c4eadacfb5512819798072f112b0bbb07 *(uncategorized)* Skip ratatui span when match at end of string by @bertrand-chardon in [#91]https://github.com/alexpasmantier/television/pull/91

- [4bea114]https://github.com/alexpasmantier/television/commit/4bea114635848e1d26a2226585981e37fd707843 *(uncategorized)* Remove unnecessary clone() calls by @bertrand-chardon



### New Contributors
* @moritzwilksch made their first contribution in [#78]https://github.com/alexpasmantier/television/pull/78

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.5.3...0.6.0


## [0.5.3]https://github.com/alexpasmantier/television/releases/tag/0.5.3 - 2024-11-24

### ⛰️  Features

- [6d39651]https://github.com/alexpasmantier/television/commit/6d3965152e91639babaedb1e8a00953a9b01b05f *(navigation)* Add action to scroll results list by a page by @alexpasmantier in [#72]https://github.com/alexpasmantier/television/pull/72

### 🐛 Bug Fixes

- [21cdaae]https://github.com/alexpasmantier/television/commit/21cdaaee42fade21f43014c983bb650352f61926 *(uncategorized)* Quote file names that contain spaces when printing them to stdout by @fredmorcos in [#51]https://github.com/alexpasmantier/television/pull/51

### 🚜 Refactor

- [b757305]https://github.com/alexpasmantier/television/commit/b757305d7ab8d3ca7059b2a0b603215c8f9a608a *(picker)* Refactor picker logic and add tests to picker, cli, and events by @alexpasmantier in [#57]https://github.com/alexpasmantier/television/pull/57

### 📚 Documentation

- [790c870]https://github.com/alexpasmantier/television/commit/790c870ff39e6c41442706cbc9bc8f24af73c9fe *(contributing)* Added TOC and Code of Conduct link by @MohamedBsh

- [cdcce4d]https://github.com/alexpasmantier/television/commit/cdcce4d9f9afcf852c024f7d54f05a55c3147ddd *(uncategorized)* Terminal emulators compatibility and good first issues by @alexpasmantier in [#56]https://github.com/alexpasmantier/television/pull/56

### ⚡ Performance

- [84d54b5]https://github.com/alexpasmantier/television/commit/84d54b5751611684d30ff287a89a681410b2be84 *(preview)* Cap the number of concurrent preview tokio tasks in the background by @alexpasmantier in [#67]https://github.com/alexpasmantier/television/pull/67

### 🎨 Styling

- [b703e1b]https://github.com/alexpasmantier/television/commit/b703e1b26c9d9816da297f2b8744a22139635f04 *(git)* Enforce conventional commits on git push with a hook by @alexpasmantier in [#61]https://github.com/alexpasmantier/television/pull/61

### ⚙️ Miscellaneous Tasks

- [03fb7d0]https://github.com/alexpasmantier/television/commit/03fb7d0f35740707a3c2612a10f0b3ff5914589c *(changelog)* Update changelog action trigger by @alexpasmantier

- [dc36b21]https://github.com/alexpasmantier/television/commit/dc36b2152d50c377e7c0741112e8038c464f04fc *(update_readme)* Fix `update_readme` workflow by @alexpasmantier

- [2fc9bd9]https://github.com/alexpasmantier/television/commit/2fc9bd9e80797905feea5e6109d398f5a587bb1c *(uncategorized)* Bump crate to 0.5.3 and workspace crates to 0.0.7 by @alexpasmantier

- [0f6aad9]https://github.com/alexpasmantier/television/commit/0f6aad952f2793bb636c148ea472440daba166a2 *(uncategorized)* Add readme version update to github actions by @alexpasmantier in [#55]https://github.com/alexpasmantier/television/pull/55

### Build

- [f0e1115]https://github.com/alexpasmantier/television/commit/f0e1115bab72a0226f728ae17ac1937d2c7d010d *(infer)* Drop infer dependency and refactor code to a simpler heuristic by @alexpasmantier in [#58]https://github.com/alexpasmantier/television/pull/58



### New Contributors
* @github-actions[bot] made their first contribution in [#73]https://github.com/alexpasmantier/television/pull/73
* @MohamedBsh made their first contribution
* @bertrand-chardon made their first contribution in [#59]https://github.com/alexpasmantier/television/pull/59

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.5.1...0.5.3


## [0.5.1]https://github.com/alexpasmantier/television/releases/tag/0.5.1 - 2024-11-20

### 📚 Documentation

- [f43b5bf]https://github.com/alexpasmantier/television/commit/f43b5bf9b8fe034e958bec100f2d4569c87878be *(brew)* Add brew installation method for MacOS to README by @alexpasmantier in [#45]https://github.com/alexpasmantier/television/pull/45

- [30639c6]https://github.com/alexpasmantier/television/commit/30639c66b037733f6db0300b4573a1ccd2e33093 *(config)* Update docs to mention XDG_CONFIG_HOME precedence on all platform by @alexpasmantier in [#48]https://github.com/alexpasmantier/television/pull/48

- [8a7b3da]https://github.com/alexpasmantier/television/commit/8a7b3da7fa20024bf5201c387260a36a16884b45 *(uncategorized)* Add instructions for installing on Arch Linux by @orhun in [#43]https://github.com/alexpasmantier/television/pull/43

### ⚙️ Miscellaneous Tasks

- [9dcb223]https://github.com/alexpasmantier/television/commit/9dcb223dbac93b79f5913c782ab601446bab6052 *(actions)* Remove changelog update from the main branch by @alexpasmantier

- [6540094]https://github.com/alexpasmantier/television/commit/6540094cc9977419a92c4dcf37d761bebd5f052a *(changelog)* Udpate changelog and add corresponding makefile command by @alexpasmantier in [#53]https://github.com/alexpasmantier/television/pull/53

- [ccd7c68]https://github.com/alexpasmantier/television/commit/ccd7c687026ecca6f6d43b843a805089b5bfe4b1 *(config)* Default configuration now uses 100% of terminal screen space by @alexpasmantier in [#47]https://github.com/alexpasmantier/television/pull/47

- [d3564f2]https://github.com/alexpasmantier/television/commit/d3564f2aca060838c5bbba01ad40427379e90060 *(uncategorized)* Bump version to 0.5.1 by @alexpasmantier

- [3bf04d7]https://github.com/alexpasmantier/television/commit/3bf04d77858f69f79c161c94dca7f52ca17ba50f *(uncategorized)* Add CHANGELOG.md by @alexpasmantier in [#44]https://github.com/alexpasmantier/television/pull/44



### New Contributors
* @fredmorcos made their first contribution in [#50]https://github.com/alexpasmantier/television/pull/50
* @orhun made their first contribution in [#43]https://github.com/alexpasmantier/television/pull/43

**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.5.0...0.5.1


## [0.5.0]https://github.com/alexpasmantier/television/releases/tag/0.5.0 - 2024-11-18

### ⛰️  Features

- [5807cda]https://github.com/alexpasmantier/television/commit/5807cda45d0f9935617c92e2b47a6d54712f93bc *(cli)* Allow passing passthrough keybindings via stdout for the parent process to deal with by @alexpasmantier in [#39]https://github.com/alexpasmantier/television/pull/39

- [40d5b20]https://github.com/alexpasmantier/television/commit/40d5b20c7d5fd6dd6b32a07f40eafb37d16b4cfd *(ui)* Make the top UI help bar toggleable by @alexpasmantier in [#41]https://github.com/alexpasmantier/television/pull/41

### 🚜 Refactor

- [75d0bf7]https://github.com/alexpasmantier/television/commit/75d0bf7b6b4c7139b5fd0862e595b63b93e322bb *(config)* Make action names snake case in keybinding configuration by @alexpasmantier in [#40]https://github.com/alexpasmantier/television/pull/40 [**breaking**]

### 📚 Documentation

- [5c44432]https://github.com/alexpasmantier/television/commit/5c44432776cfd1bdaae2d9a82a7caba2af0b7ac9 *(uncategorized)* Update README television version by @alexpasmantier

- [cb7a245]https://github.com/alexpasmantier/television/commit/cb7a24537c3f1e85d8050a39ba0eae49e9f6db69 *(uncategorized)* Update README television version specifier by @alexpasmantier

- [da5c903]https://github.com/alexpasmantier/television/commit/da5c90317792f61abb0d793ed83b4d1728d2cb0e *(uncategorized)* Update README television version by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [480059e]https://github.com/alexpasmantier/television/commit/480059eaaee16da11718ad765eda5e0c90cef4d7 *(rustfmt)* Update rustfmt.toml by @alexpasmantier in [#42]https://github.com/alexpasmantier/television/pull/42




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.4.23...0.5.0


## [0.4.23]https://github.com/alexpasmantier/television/releases/tag/0.4.23 - 2024-11-16

### ⛰️  Features

- [512afa2]https://github.com/alexpasmantier/television/commit/512afa2fda3a679ce0dc4ed37f85b177b3a215f6 *(ui)* Make help bar display optional by @alexpasmantier in [#35]https://github.com/alexpasmantier/television/pull/35

### 🚜 Refactor

- [aa2f260]https://github.com/alexpasmantier/television/commit/aa2f2609a438768866d333713a938453eba1b402 *(configuration)* Modularize code and better handling of default options by @alexpasmantier in [#32]https://github.com/alexpasmantier/television/pull/32

### 📚 Documentation

- [7277a3f]https://github.com/alexpasmantier/television/commit/7277a3f3ab32d61a41ec0d4f8dd083855527e0a5 *(config)* Update docs default configuration by @alexpasmantier in [#34]https://github.com/alexpasmantier/television/pull/34

- [45e14d3]https://github.com/alexpasmantier/television/commit/45e14d3fa20a8e708fdc8ec75f74f34e8b86b0da *(debian)* Add installation docs for debian-based systems by @alexpasmantier in [#33]https://github.com/alexpasmantier/television/pull/33




**Full Changelog**: https://github.com/alexpasmantier/television/compare/0.4.22...0.4.23


## [0.4.22]https://github.com/alexpasmantier/television/releases/tag/0.4.22 - 2024-11-16

### 🐛 Bug Fixes

- [06a4feb]https://github.com/alexpasmantier/television/commit/06a4feb9f2a1b191d7f1773d7fc99cb5565da407 *(config)* Swap out default keymaps with user defined ones instead of stacking by @alexpasmantier in [#26]https://github.com/alexpasmantier/television/pull/26

- [f47b8be]https://github.com/alexpasmantier/television/commit/f47b8be9de8c1bfd29a08eea90e10c2d03865003 *(ghactions)* Only trigger cd workflow on new tags by @alexpasmantier in [#22]https://github.com/alexpasmantier/television/pull/22

### 🚜 Refactor

- [4f0daec]https://github.com/alexpasmantier/television/commit/4f0daec63d868e16b1aa0349652ce9480623a496 *(channels)* Converting between entries and channels is now generic over channels by @alexpasmantier in [#25]https://github.com/alexpasmantier/television/pull/25

### ⚙️ Miscellaneous Tasks

- [dcf9f6a]https://github.com/alexpasmantier/television/commit/dcf9f6a62156f425e378ac346ad6f18466076356 *(cd)* Fix cd configuration for deb packages by @alexpasmantier

- [e9dde70]https://github.com/alexpasmantier/television/commit/e9dde70ecf4bf48ae0f16c19f2b0aa296b6af777 *(cd)* Fix cd configuration for deb packages by @alexpasmantier

- [900bfa5]https://github.com/alexpasmantier/television/commit/900bfa50b92e2f023afc78fe4a4bed618480c2e5 *(deb)* Release deb package for television by @alexpasmantier

- [d0f023c]https://github.com/alexpasmantier/television/commit/d0f023cf1848055a7d83f6b81b286bd5e14237da *(versions)* Bump workspace crates versions by @alexpasmantier

- [d50337b]https://github.com/alexpasmantier/television/commit/d50337b5c51c45f48a5a09431ff1b85c45964da2 *(uncategorized)* Update CD workflow by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/v0.4.21...0.4.22


## [v0.4.21]https://github.com/alexpasmantier/television/releases/tag/v0.4.21 - 2024-11-13

### 🐛 Bug Fixes

- [ff25fb2]https://github.com/alexpasmantier/television/commit/ff25fb2ddeb9c6f70294e5099a617219e30248d8 *(windows)* #20 respect `TELEVISION_CONFIG` env var on windows by @alexpasmantier in [#21]https://github.com/alexpasmantier/television/pull/21

### ⚙️ Miscellaneous Tasks

- [65bb26e]https://github.com/alexpasmantier/television/commit/65bb26ec847e0d2caae49fbaeb3bffef90e094cd *(nix)* Nix flake shell + rust-toolchain.toml setup by @tukanoidd in [#14]https://github.com/alexpasmantier/television/pull/14



### New Contributors
* @tukanoidd made their first contribution in [#14]https://github.com/alexpasmantier/television/pull/14

**Full Changelog**: https://github.com/alexpasmantier/television/compare/v0.4.20...v0.4.21


## [v0.4.20]https://github.com/alexpasmantier/television/releases/tag/v0.4.20 - 2024-11-11

### 🐛 Bug Fixes

- [b1fe018]https://github.com/alexpasmantier/television/commit/b1fe0182f8f8de8ea5834fc3b148b53666d4349a *(cargo workspace)* Fix cargo workspace structure and dependencies by @alexpasmantier in [#15]https://github.com/alexpasmantier/television/pull/15

- [81cf17b]https://github.com/alexpasmantier/television/commit/81cf17bd5d883f581b5958ae70995a8acdd6e9d2 *(config)* More consistent configuration file location for linux and macos by @alexpasmantier in [#9]https://github.com/alexpasmantier/television/pull/9

- [b3760d2]https://github.com/alexpasmantier/television/commit/b3760d2259951cc904f1fde7d7ac18d20f94b73c *(windows)* Bump television_utils to v0.0.1 by @alexpasmantier in [#4]https://github.com/alexpasmantier/television/pull/4

- [e475523]https://github.com/alexpasmantier/television/commit/e475523c797a46c7f229558789e8a1856c5adc23 *(windows)* Ignore `KeyEventKind::Release` events by @ErichDonGubler in [#3]https://github.com/alexpasmantier/television/pull/3

- [d2e7789]https://github.com/alexpasmantier/television/commit/d2e7789612b22174e3ff24b0c7afe2da421cf5e7 *(workspace)* Fix cargo workspace dependencies by @alexpasmantier

### 🚜 Refactor

- [5611ee8]https://github.com/alexpasmantier/television/commit/5611ee8b2d7b02d9af311c31f6c2366dd2224248 *(workspace)* Reorganize cargo workspace by @alexpasmantier in [#12]https://github.com/alexpasmantier/television/pull/12

### 📚 Documentation

- [cc9924d]https://github.com/alexpasmantier/television/commit/cc9924dd614b1b1625e019f76b8465e9b88880c3 *(readme)* Update terminal emulators compatibility list by @alexpasmantier in [#6]https://github.com/alexpasmantier/television/pull/6

- [0c13626]https://github.com/alexpasmantier/television/commit/0c13626d4c1b1799ffc8e5f68b731222c3234dbd *(uncategorized)* Fix table alignments by @alexpasmantier

- [6b0a038]https://github.com/alexpasmantier/television/commit/6b0a0387382f0d1bf61e2adbeca2276dd71b9836 *(uncategorized)* Add terminal emulators compatibility status by @alexpasmantier

### ⚡ Performance

- [62073d6]https://github.com/alexpasmantier/television/commit/62073d69ccc022d75bcc6bc5adc4472bdfe5b7f5 *(preview)* Remove temporary plaintext previews in favor of loading message preview by @alexpasmantier in [#10]https://github.com/alexpasmantier/television/pull/10

### ⚙️ Miscellaneous Tasks

- [3a9ff06]https://github.com/alexpasmantier/television/commit/3a9ff067afad7e317fa5a34a95ba9ccbcca3e9ef *(coc)* Create CODE_OF_CONDUCT.md by @alexpasmantier in [#7]https://github.com/alexpasmantier/television/pull/7

- [7bc6f29]https://github.com/alexpasmantier/television/commit/7bc6f29c30334218da6baaeef1ddb02fdaa06a5c *(crate)* Add include directives to Cargo.toml to make the crate leaner by @alexpasmantier in [#11]https://github.com/alexpasmantier/television/pull/11

- [b8ad340]https://github.com/alexpasmantier/television/commit/b8ad34060d506c41a1ff491258edb09419b33178 *(uncategorized)* Update README.md install section by @alexpasmantier



### New Contributors
* @tranzystorekk made their first contribution in [#5]https://github.com/alexpasmantier/television/pull/5
* @ErichDonGubler made their first contribution in [#3]https://github.com/alexpasmantier/television/pull/3

**Full Changelog**: https://github.com/alexpasmantier/television/compare/v0.4.18...v0.4.20


## [v0.4.18]https://github.com/alexpasmantier/television/releases/tag/v0.4.18 - 2024-11-10

### 🐛 Bug Fixes

- [c70e675]https://github.com/alexpasmantier/television/commit/c70e6756553bbeb1bc9332a7b011fddf24be52c0 *(uncategorized)* Add `winapi-util` dependency for windows builds by @alexpasmantier

- [df7020a]https://github.com/alexpasmantier/television/commit/df7020a7a82e82cace2fa84d24182c7a0911613d *(uncategorized)* Add the correct permissions to release binaries by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/v0.4.17...v0.4.18


## [v0.4.17]https://github.com/alexpasmantier/television/releases/tag/v0.4.17 - 2024-11-10

### ⚙️ Miscellaneous Tasks

- [2f5640f]https://github.com/alexpasmantier/television/commit/2f5640f4cde0a61d6dc9946c8b73bc3c2b54e4dd *(uncategorized)* Testing out the CD pipeline by @alexpasmantier

- [2e49862]https://github.com/alexpasmantier/television/commit/2e49862a7e40b87b704eaf3ef0a30b8cf483cb24 *(uncategorized)* Update Makefile and CONTRIBUTING.md by @alexpasmantier

- [6eafb7b]https://github.com/alexpasmantier/television/commit/6eafb7bfe800e0a96d52674a46903e06238536d0 *(uncategorized)* Udate documentation and dependencies by @alexpasmantier




**Full Changelog**: https://github.com/alexpasmantier/television/compare/v0.4.15...v0.4.17


## [v0.4.15]https://github.com/alexpasmantier/television/releases/tag/v0.4.15 - 2024-11-10

### ⛰️  Features

- [759815a]https://github.com/alexpasmantier/television/commit/759815ae24dd471365455b932922fb66773eb50b *(uncategorized)* More syntaxes and themes for highlighting + configuration by @alexpasmantier

- [d0d453f]https://github.com/alexpasmantier/television/commit/d0d453fe9748c42b7d81d7a2bfbad6fe0d966c84 *(uncategorized)* Send to channel by @alexpasmantier

### 🐛 Bug Fixes

- [32c114a]https://github.com/alexpasmantier/television/commit/32c114aa9fa51c1f74b15b6d38ba904f9cfce557 *(uncategorized)* Gag stdout and stderr while loading theme assets to silence bat warning by @alexpasmantier

- [f449477]https://github.com/alexpasmantier/television/commit/f449477605bb48f6c18334440dbc9d360b0ec43e *(uncategorized)* Doctests imports by @alexpasmantier

- [de74b61]https://github.com/alexpasmantier/television/commit/de74b619b86b81feb165c5518995d36ca9a0bada *(uncategorized)* Stabilize preview scroll initialization by @alexpasmantier

- [dd14bd4]https://github.com/alexpasmantier/television/commit/dd14bd4f8d2ff58aed9bfda2ca6fc8c0f9a74729 *(uncategorized)* Filtering system directories in gitrepos by @alexpasmantier

### 🚜 Refactor

- [8dd7f23]https://github.com/alexpasmantier/television/commit/8dd7f237345601a976c55b112d71e493bf83d2e2 *(uncategorized)* More refactoring and fixing doctests by @alexpasmantier

- [ae938dc]https://github.com/alexpasmantier/television/commit/ae938dcfc0778ef85df3b8f81cd35edec737f644 *(uncategorized)* Split project into separate crates by @alexpasmantier

- [c1f41bf]https://github.com/alexpasmantier/television/commit/c1f41bf107e5352ac910543cd1b447193af494cd *(uncategorized)* Extract matcher logic into separate crate by @alexpasmantier

### 📚 Documentation

- [cd31619]https://github.com/alexpasmantier/television/commit/cd31619c8ab7df6975f6d26d9948617318d05de0 *(readme)* Update README.md by @alexpasmantier

- [51a98db]https://github.com/alexpasmantier/television/commit/51a98db9d564f02e0ef9b3bc3242439ea74c7406 *(readme)* Update README.md by @alexpasmantier

- [c7fbe26]https://github.com/alexpasmantier/television/commit/c7fbe26596561e5155d5a52f04957fbcb168397f *(readme)* Update README.md by @alexpasmantier

- [ef4ab70]https://github.com/alexpasmantier/television/commit/ef4ab705b44d0b4644e859c13bb804815226259f *(readme)* Update README.md by @alexpasmantier

- [068ed88]https://github.com/alexpasmantier/television/commit/068ed8813c5bd51aea290842667eb25cfd26d7b9 *(readme)* Update README.md by @alexpasmantier

- [cfa4178]https://github.com/alexpasmantier/television/commit/cfa41789bc850a3078e97278878336985f487b08 *(readme)* Update README.md by @alexpasmantier

- [37fb013]https://github.com/alexpasmantier/television/commit/37fb013f0cdaf9d97ea84f4432f8348b18bbc340 *(uncategorized)* More work on CONTRIBUTING.md by @alexpasmantier

- [b0ab8a1]https://github.com/alexpasmantier/television/commit/b0ab8a179aa72dbd42c8928d2425bd0d9d7ef22f *(uncategorized)* Some work on CONTRIBUTING.md by @alexpasmantier

- [19f00f5]https://github.com/alexpasmantier/television/commit/19f00f5916e1f3a2a4d2320c84eb2c1ea2858a8b *(uncategorized)* Add default keybindings to README.md by @alexpasmantier

- [96976d9]https://github.com/alexpasmantier/television/commit/96976d93cb4a7859c25599269f6ba87229afecfe *(uncategorized)* Update README.md by @alexpasmantier

### ⚙️ Miscellaneous Tasks

- [4e4ef97]https://github.com/alexpasmantier/television/commit/4e4ef9761b997badd5a57347d62f9c3e617deff8 *(precommit)* Don't allow committing if clippy doesn't pass by @alexpasmantier

- [b04e182]https://github.com/alexpasmantier/television/commit/b04e1824535467f401d7117b0e6048b2dfabb7fe *(previewers)* Unused attributes by @alexpasmantier

- [d2005e1]https://github.com/alexpasmantier/television/commit/d2005e1116b7830ee3d85c0fc7dec35ac4e5e99d *(uncategorized)* Bump version by @alexpasmantier

- [79da161]https://github.com/alexpasmantier/television/commit/79da161943c0cd2865c5931b8c251417035c393d *(uncategorized)* Add license to syntax snippet by @alexpasmantier

- [5b57d6b]https://github.com/alexpasmantier/television/commit/5b57d6b29019a67706ee354d32b23ebbadb710ba *(uncategorized)* Update workspace crates configurations by @alexpasmantier

- [c4863ff]https://github.com/alexpasmantier/television/commit/c4863ff7ae55fd1536caf7a490deb21bf9be7329 *(uncategorized)* Patch by @alexpasmantier

- [9bdbf44]https://github.com/alexpasmantier/television/commit/9bdbf44f35e92740e7b0ac4e8c26d299ca6fa1ef *(uncategorized)* Makefile and dist scripts by @alexpasmantier

- [b913eac]https://github.com/alexpasmantier/television/commit/b913eac4ae0f3767d1495c95902ce8be0d33656d *(uncategorized)* Update dependencies and bump version by @alexpasmantier

- [2dbbd0c]https://github.com/alexpasmantier/television/commit/2dbbd0c4a3b227062402d7c994b4dc6b3a8eeb87 *(uncategorized)* Bump version by @alexpasmantier

- [8fe1246]https://github.com/alexpasmantier/television/commit/8fe1246923939f16536aa276ca5a3b878982001d *(uncategorized)* Update dependencies and bump version by @alexpasmantier

- [3d647b2]https://github.com/alexpasmantier/television/commit/3d647b20103b3609a7d4edb372b24341fa0d03dc *(uncategorized)* Update dependencies and bump version by @alexpasmantier

- [7b18c4f]https://github.com/alexpasmantier/television/commit/7b18c4f88d562e9a1a32d4685fa4d039363c6f3c *(uncategorized)* Unused imports and ci docs by @alexpasmantier

- [e83fabb]https://github.com/alexpasmantier/television/commit/e83fabbc0b6e691a40eff4ffc190dc94516b3841 *(uncategorized)* Bump version by @alexpasmantier

- [dbc4b6c]https://github.com/alexpasmantier/television/commit/dbc4b6c06a57bcc6528bfa180de495a444588515 *(uncategorized)* Bump version by @alexpasmantier



### New Contributors
* @alexpasmantier made their first contribution


<!-- generated by git-cliff -->