summarylogtreecommitdiffstats
path: root/ChangeLog
blob: 361a57ea02045918b3e3c99e094a4ee725536d50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367

=== 1.2.304 (2015.05.04) ===

 * (1b46638) v1.2.304
 * (0eec0b3) Merge pull request #488 from ianstalk/sftp[[BR]]
   Plugins to download from SFTP
 * (c8de466) Fixing the style issues/typos that @gazpachoking pointed out.
 * (64ee28d) Accept both lists and strings for directories list; remove my username from the useage
 * (bca7dd5) Not sure where that character came from
 * (120e298) Fully qualify plugin.PluginError
 * (34fede7) Rewrote directory handling, added better support for Windows-style paths, simplified config
 * (3f2ebe4) Rename variables to be clearer about what they do
 * (414f80b) Now fully pep8  compliant!
 * (b3d030f) Add retry logic for connecting, switch to a more idiomatic way of handling group by
 * (e60d1e6) Fix variable reference before assignment issue.
 * (92a74c3) Fix some copypasta errors
 * (6ab8642) Plugins to download from SFTP
 * (b8b0d2c) Merge branch 'new_lazy2' into develop
 * (f6f51dc) Factor lazy lookup system out of Entry Enable better support for lazy lookups from jinja. refs #2985, fix #2988
 * (ecfe79a) Fix up sort_by plugin
 * (556cdfc) Merge pull request #489 from jpts/develop[[BR]]
   Fix deluge sparse files/movedone functionality. fix #2881
 * (310f8b3) Fixed issue where content_filename not specified in user config
 * (b3da452) Added support for directories in content_filename
 * (3d99290) Updated edited sections to adhere to pep8
 * (4bb5e63) Modified content_filename parsing, so that it doesnt pop the main file to the top of the directory tree. Modified sparse files functionality, to be a subfolder of the top folder
 * (aa57761) Merge pull request #496 from sergiogiogio/develop[[BR]]
   fix for titles with non-ascii characters
 * (8df277e) fix for titles with non-ascii characters
 * (1679a81) Remove set literal from subliminal plugin to maintain python 2.6 compatibility
 * (1bed497) Attempt to fix travis builds
 * (2de8309) force proper provider names
 * (ab36590) Prepare v1.2.304.dev

=== 1.2.303 (2015.04.24) ===

 * (cdc0377) v1.2.303
 * (0680d93) Remove task.session use in remember_rejected. fix #2720
 * (eff9e77) Prepare v1.2.303.dev

=== 1.2.302 (2015.04.23) ===

 * (8b06d6c) v1.2.302
 * (2cb0de5) Merge pull request #481 from programatix/develop[[BR]]
   Updated to use the download plugin
 * (1317fe5) Update utorrent.py[[BR]]
   Removed unneeded duplicate add torrent.[[BR]]
   Fixed the download path for download by download plugin.
 * (854e584) Update utorrent.py[[BR]]
   Fixed problem where urlrewriter not called.
 * (62f0be7) Update utorrent.py
 * (cfe69da) Update utorrent.py[[BR]]
   Updated to use the download plugin.
 * (e2729a3) Merge pull request #482 from matrixagent/patch-2[[BR]]
   Allow history to be filtered by task
 * (70e1910) Allow history to be filtered by task
 * (628c16b) Merge pull request #485 from Flexget/pR0Ps-add_whatcd_ua[[BR]]
   Add what.cd user agent option
 * (644141f) Add what.cd user agent option[[BR]]
   - Add back the option to use a custom user agent for searching on what.cd.[[BR]]
   - Fix small oversight in response handling.
 * (4c1ecca) Prepare v1.2.302.dev

=== 1.2.301 (2015.04.19) ===

 * (9bcdac1) v1.2.301
 * (574929d) Merge pull request #474 from ianstalk/rarfile[[BR]]
   Plugin to decompress Zip and RAR files
 * (977eccb) Python 2.6 doesn't like "with"syntax
 * (3ae14d5) Return when rarfile isn't installed
 * (2545536) Add missing SkipTest import
 * (44cd428) Switch to using __tmp__ instead of rolling my own temp directories
 * (e48e247) Directory test was reversed for zips
 * (03d0e3f) keep_dirs actually works now! For real! Fix test teardown so it doesn't break the build.
 * (66e2278) Use info instead of path for extractions, make sure is_dir doesn't accept anything that's not an Info object.
 * (fbb9e73) Tests and associated files for Decompress plugin
 * (a7bb8a2) Fix keep_dirs behavior
 * (cd03c2b) Merge remote-tracking branch 'upstream/master' into rarfile
 * (05a72de) Fail entry if extraction fails
 * (fd1f789) Don't treat directories in zips as files.
 * (4f41266) You missed a spot.
 * (8dc2934) Rename to avoid confusion with the archive plugin
 * (5db42ed) Fix issue with deleting Zip files.
 * (5b34c43) Add Zip support, change name of plugin to reflect extended functionality.
 * (7723b71) Replace import hack with something cleaner.
 * (6705a96) Wrap rarfile import in a try/except block so it doesn't blow up everything Fix logging statement that was printing the wrong value
 * (db5e9dc) Remove outdated config parameter from example in docstring
 * (b3d2dcb) Remove leaked plugin_transmission_files.py changes
 * (cc956b5) Plugin to extract RAR files
 * (2204153) Revert "Plugin to extract RAR files"[[BR]]
   This reverts commit 3fef155e816048063cccd91da7f2e5eb03a6be4f.
 * (3fef155) Plugin to extract RAR files
 * (b7d56fa) Rename "info_hash" to "torrent_info_hash" to be consistent with task naming conventions. Make sure the Transmission session is created anew each time in case the user is connecting to multiple daemons.
 * (1a8903d) Plugin to list files from a transmission instance
 * (fe0d5c6) Prepare v1.2.301.dev

=== 1.2.300 (2015.04.17) ===

 * (c276e4e) v1.2.300
 * (55ceb98) Merge pull request #487 from sergiogiogio/develop[[BR]]
   fix aria2 plugin
 * (7915a83) fix aria2 plugin
 * (99ab8c1) Prepare v1.2.300.dev

=== 1.2.299 (2015.04.09) ===

 * (3349208) v1.2.299
 * (371a12c) Merge pull request #479 from wakemaster39/yts_search[[BR]]
   added yts
 * (4ba54a1) Update search_yts.py
 * (b6d0604) added yts search engine
 * (70bdd9c) Allows using secrets in any jinja rendered template. fix #2883
 * (f47bf43) Merge pull request #480 from tubedogg/sleep[[BR]]
   Add additional phases of execution to sleep plugin
 * (d9de3c0) Add additional phases of execution
 * (a666126) Prepare v1.2.299.dev

=== 1.2.298 (2015.04.06) ===

 * (69f3453) v1.2.298
 * (6da0770) Allow --inject to be used multiple times
 * (186c737) Prepare v1.2.298.dev

=== 1.2.297 (2015.04.04) ===

 * (bf931f7) v1.2.297
 * (672a7a9) fix exec list
 * (b3e8028) Merge pull request #472 from tubedogg/sleep[[BR]]
   Make sleep more flexible
 * (b8dea65) Make sleep more flexible[[BR]]
   Operate it in any phase for the specified number of seconds.
 * (5060942) Prepare v1.2.297.dev

=== 1.2.296 (2015.04.03) ===

 * (321a23b) v1.2.296
 * (e037372) Merge pull request #470 from patsissons/urllib3-logging-fix[[BR]]
   remove extra urllib3 INFO logging
 * (8e04155) adding the original line back, so that we now have both (with an explanation)
 * (ff43930) apply warn log filter to proper logger name to exclude INFO log messages when opening url's (i.e. Starting new HTTP connection (1): ... )
 * (9214e96) Merge pull request #475 from Ram-Z/exec_list[[BR]]
   Allow list of exec commands
 * (162509f) Allow list of exec commands
 * (3635b8d) Merge pull request #476 from lildadou/doc[[BR]]
   Details to enable the unit test of a development environnement.
 * (249a31a) Details to enable the unit test.
 * (07859f6) Merge pull request #477 from Ram-Z/tvdb_actors[[BR]]
   Add tvdb_actors to api
 * (49f459f) Add tvdb_actors to api
 * (693f23f) Revert "Discover keeps finding episodes as long asnew ones are accepted."[[BR]]
   This reverts commit 2bfe5b252c873ec6ce70eebbde5f71ecaed34d3d.[[BR]]
   Unit tests broke, unable to run them locally.
 * (acbdfed) Fix test in case tvrage_id is not set
 * (9e3e69e) Don't lookup_series if tvrage_id exists in entry
 * (a8fd733) Merge pull request #442 from cvium/rarbg[[BR]]
   search plugin for rarbg
 * (0f279dd) use rarbg's new api
 * (4a7f868) search plugin for rarbg
 * (2bfe5b2) Discover keeps finding episodes as long asnew ones are accepted.[[BR]]
   - Handle cli series with ! in names
 * (5d28d41) Prepare v1.2.296.dev

=== 1.2.295 (2015.03.25) ===

 * (7f22eba) v1.2.295
 * (2eb870a) Merge pull request #462 from patsissons/trans-magnet-wait[[BR]]
   Transmission plugin magnetization waiting
 * (05adfa0) if torrent is a magnet URI, then start as paused. this will allow magnetization to occur before pre-processing the files
 * (1b6970f) If the magnetization_timeout is set and the torrent is a magnet URI (and the file list is empty), then block-wait for magnetization or until the timeout elapses. If magnetization is successful, then re-fetch the torrent total size this addresses issue #2911 http://flexget.com/ticket/2911
 * (1d020f2) adding configuration item, magnetization_timeout, to allow selective enabling of the 'wait for magnetization' feature. By default the value is 0 (seconds) which disables the feature completely.
 * (1cc8815) adding new _wait_for_files function that will block until the rpc client returns a non-empty file list or until the timeout elapses
 * (40332fb) Merge pull request #457 from bozho/develop[[BR]]
   reverting changes from 761c2f206c... (pull request #453)
 * (9d803d0) reverting changes from 761c2f206c... (pull request #453)[[BR]]
   Looks like the old code works again. I could have sworn that while[[BR]]
   testing the patch, KAT was returning 404 if rss wasn't the first query[[BR]]
   parameter. It was late, I may have been seeing things...
 * (88dfd9b) Merge pull request #468 from Ram-Z/newznab_size[[BR]]
   Get content_size from newznab searches
 * (5f0c2ff) Get content_size from newznab searches
 * (3966877) Prepare v1.2.295.dev

=== 1.2.294 (2015.03.24) ===

 * (98067d3) v1.2.294
 * (1de5355) Merge pull request #463 from v17al/topic/extratorrent[[BR]]
   Add search/urlrewrite plugin for extratorrent.cc
 * (869175f) Add search/urlrewrite plugin for extratorrent.cc[[BR]]
   - extratorrent doesn't mesh well with the search_rss plugin as[[BR]]
     the data doesn't alway contains a .torrent link[[BR]]
   - Work around this issue by converting the .html link (always present)[[BR]]
     into a downlad link
 * (64acd8a) Merge pull request #465 from patsissons/remove-redundant-config-default[[BR]]
   removing redundant config default setter for main_file_ratio
 * (0734e4f) removing redundant config default setter for main_file_ratio (it is now set in the transmission base class)
 * (3b889b7) Prepare v1.2.294.dev

=== 1.2.293 (2015.03.22) ===

 * (34626a8) v1.2.293
 * (c92c898) Merge pull request #464 from patsissons/deluge-fix[[BR]]
   fixing deluge plugin crash due to unset main_file_ratio
 * (7ee530a) fixing deluge plugin crash due to main_file_ratio config value not being present in modify_opts see https://github.com/Flexget/Flexget/pull/460#issuecomment-84051984
 * (5a4d092) fix bug created by main_file_ratio #2951
 * (8e7e4a1) Prepare v1.2.293.dev

=== 1.2.292 (2015.03.18) ===

 * (4011595) v1.2.292
 * (6d554b9) Merge pull request #460 from patsissons/main_file_ratio[[BR]]
   Main file ratio
 * (94729bb) adding quotes around torrent title
 * (5148364) adding log warning to transmission plugin when no main file is discovered (similar to deluge plugin)
 * (e9e135c) updating transmission plugin to support using the main_file_ratio config value when discovering the main_id
 * (4d8f9e1) updating torrent_info function in transmission plugin to support fetching main_file_ratio from config (replacing hard coded 90) NOTE: this may need fixing to support a per-torrent main_file_ratio
 * (8678b35) updating transmission plugin to support making the main_file_ratio config value available to use
 * (5f72486) replacing hard coded 90% main file ratio values in deluge plugin with new main_file_ratio config value
 * (089f576) adding new main_file_ratio config option to deluge and transmission plugins, default value is 0.90 (i.e. 90%, as was previously hard coded into the plugins)
 * (4fa8d99) Prepare v1.2.292.dev

=== 1.2.291 (2015.03.13) ===

 * (5b5016f) v1.2.291
 * (b0ac6e6) Add support for T411 login captcha
 * (8d8f338) Add download_auth param to created entries
 * (dc22730) Prepare v1.2.291.dev

=== 1.2.290 (2015.03.12) ===

 * (d31c66f) v1.2.290
 * (e57e0a9) Merge pull request #458 from crawln45/develop[[BR]]
   Fixed BTN Search to allow for non strict searching
 * (cfb01cc) Fixed invalid import of request.exception.Timeout
 * (c684fe8) Reword BTN Search for better code and added what we are doing. Fixed Trakt_List to detect Timeout errors. Fixed Trakt authentication error catching.
 * (a55c823) Fixed BTN Search to allow for non strict searching of series_id since some episodes return series_id - episode_name on certain shows.
 * (68a323a) Prepare v1.2.290.dev

=== 1.2.289 (2015.03.05) ===

 * (1342dba) v1.2.289
 * (5eda00b) fix subtitles_missing field not being set if subs already exist
 * (8f040ff) Prepare v1.2.289.dev

=== 1.2.288 (2015.03.03) ===

 * (f93305b) v1.2.288
 * (761c2f2) Merge pull request #453 from bozho/develop[[BR]]
   fixed kat search plugin URL
 * (e520873) fixed kat search plugin URL
 * (4620b66) Merge pull request #456 from wjohnson5/patch-1[[BR]]
   Fix authentication.py typo for webui username.
 * (e34a217) Update authentication.py[[BR]]
   Seems like a simple typo. Tested locally.
 * (5203e8e) Prepare v1.2.288.dev

=== 1.2.287 (2015.03.01) ===

 * (ff5e0d3) v1.2.287
 * (413f57a) fix bug introduced by latest feature
 * (5fe1ff5) Prepare v1.2.287.dev

=== 1.2.286 (2015.02.28) ===

 * (366efb2) v1.2.286
 * (d7cdb04) new feature to remove non-existing file from queue
 * (eb66aac) change verbosity, fix bug in subliminal #2927
 * (a399b27) Prepare v1.2.286.dev

=== 1.2.285 (2015.02.27) ===

 * (2fe47fa) v1.2.285
 * (9d3e7a3) Merge pull request #454 from jesjimher/develop[[BR]]
   Disabled SSL certificate validation to avoid SSLErrors in TPB
 * (9dd4af7) Disabled SSL certificate validation to avoid SSLErrors
 * (60a40b2) Prepare v1.2.285.dev

=== 1.2.284 (2015.02.23) ===

 * (e7578b2) v1.2.284
 * (12a3073) Merge pull request #450 from guaycuru/master[[BR]]
   Update EZTV URL from .IT to .CH
 * (89f60f7) Update EZTV URL from .IT to .CH
 * (3bc9fb4) Prepare v1.2.284.dev

=== 1.2.283 (2015.02.22) ===

 * (0242e24) v1.2.283
 * (109b446) Merge pull request #448 from krozer/patch-1[[BR]]
   rewrite t411.me to t411.io
 * (95d85dd) rewrite .me to .io[[BR]]
   The tracker changed hostname from t411.me to t411.io
 * (a04af80) Prepare v1.2.283.dev

=== 1.2.282 (2015.02.21) ===

 * (5a4e9b4) v1.2.282
 * (4a2d3ce) encode filenames with utf-8, #2915
 * (9f2c0d4) Prepare v1.2.282.dev

=== 1.2.281 (2015.02.20) ===

 * (e6ccc4c) v1.2.281
 * (c2d5a00) Fix crash in the what.cd plugin
 * (4763616) Prepare v1.2.281.dev

=== 1.2.280 (2015.02.18) ===

 * (a222eff) v1.2.280
 * (44421f6) Merge pull request #438 from cvium/develop[[BR]]
   cleaning up alternate name in series
 * (4dabdaa) add alternate names after if-else
 * (3994d14) cleaning up alternate name in series
 * (c618848) Prepare v1.2.280.dev

=== 1.2.279 (2015.02.17) ===

 * (5418068) v1.2.279
 * (80595d1) Merge pull request #447 from crawln45/develop[[BR]]
   Added new 720hd as match for 720p quality[[BR]]
   Move to new trakt v2 api endpoint
 * (8df61a5) Added new trakt_list cassette.
 * (9d2b17c) Fixed comparison on quality.
 * (0cfe3f4) Fixed 720hd test to correct what it's suppost to find which is 720p
 * (76e4718) Added test for 720hd under test_qualities.py
 * (fe0d822) Reverted new 720 standard added option of "HD" to the 720P subset
 * (24eb594) Added new api url for trakt.
 * (fa7148f) Added new Subset of 720 definition "720HD"
 * (9d3199b) Prepare v1.2.279.dev

=== 1.2.278 (2015.02.15) ===

 * (b836f47) v1.2.278
 * (9e3a413) Merge pull request #446 from aidan-/develop[[BR]]
   use only ascii letters for IPC password generation
 * (094c38c) use only ascii letters for password generation
 * (442be38) Prepare v1.2.278.dev

=== 1.2.277 (2015.02.12) ===

 * (79a1c3d) v1.2.277
 * (32e7020) update kat TLD
 * (952e37c) Prepare v1.2.277.dev

=== 1.2.276 (2015.02.10) ===

 * (8700e0a) v1.2.276
 * (06d3ee6) Merge pull request #441 from lildadou/develop[[BR]]
   [t411] Fix and update WebRip subcategories
 * (1cab8ef) Fix and update WebRip subcategories
 * (1bf65c4) Prepare v1.2.276.dev

=== 1.2.275 (2015.02.09) ===

 * (4a03a92) v1.2.275
 * (d551ce2) Merge pull request #443 from X-dark/develop[[BR]]
   update TPB to new TLD and search API
 * (33bdf85) update TPB to the new search API
 * (30cd4c7) update TPB TLD
 * (1243729) Prepare v1.2.275.dev

=== 1.2.274 (2015.02.06) ===

 * (bcb32d4) v1.2.274
 * (3828bb0) change str representation of subtitle queue to handle no language
 * (7d63cd9) don't queue english as default language
 * (e724e6c) Prepare v1.2.274.dev

=== 1.2.273 (2015.02.05) ===

 * (6ca6206) v1.2.273
 * (5b33567) emit_series will also output a search without parenthetical (year, country). refs #2900
 * (145dbc6) Prepare v1.2.273.dev

=== 1.2.272 (2015.02.02) ===

 * (9c4ccbe) v1.2.272
 * (1ff72d0) Let seen_movies also filter on trakt_movie_id
 * (6cd417e) Allow 'local' mode for seen_movies
 * (f69d137) Allow 'local' mode for seen_info_hash Convert seen plugin family to use schema instead of validator
 * (d338315) Prepare v1.2.272.dev

=== 1.2.271 (2015.01.30) ===

 * (0fcbb19) v1.2.271
 * (607907f) Fix a crash with guessit series parser
 * (cd59c7a) trakt_list now adds year to series names trakt_list uses show ids rather than episode ids for eps split trakt_id field into trakt_show_id, trakt_movie_id and trakt_episode_id
 * (99e6a1a) Prepare v1.2.271.dev

=== 1.2.270 (2015.01.29) ===

 * (60ceee3) v1.2.270
 * (fecc4ed) go through all entries instead of exiting after the first one
 * (4d81b89) Make hide_sparse_files false by default for deluge
 * (440e201) Prepare v1.2.270.dev

=== 1.2.269 (2015.01.26) ===

 * (aa19b5f) v1.2.269
 * (481e105) Merge pull request #436 from Toilal/bootstrap-update[[BR]]
   Bootstrap update
 * (c669983) Update bootstrap.py with latest virtualenv
 * (7366d70) Add virtualenv to jenkins-requirements.txt for paver bootstrap to work
 * (945cd52) Allow 3 digit episodes for series begin (SXXEYYY)
 * (5ee161f) Add itorrents.org to torrent_cache plugin
 * (2b465b4) Prepare v1.2.269.dev

=== 1.2.268 (2015.01.23) ===

 * (d009d3d) v1.2.268
 * (494f2a4) Stop crash during exit for certain commands.
 * (9135514) Prepare v1.2.268.dev

=== 1.2.267 (2015.01.23) ===

 * (4bf25c3) v1.2.267
 * (97a1633) Clean up daemon shutdown: Stops scheduler from adding to the queue once shutdown has been requested. Adds better log message for 'daemon stop' command.
 * (7d61ce5) Prepare v1.2.267.dev

=== 1.2.266 (2015.01.19) ===

 * (ab56d1b) v1.2.266
 * (bc377a1) Allow secrets plugin to run on dict keys
 * (868872e) Fix 'database reset-plugin' cli command. fix #2877
 * (2c998d9) Tweak backlog cli command a bit
 * (d347dc9) Add cli command for viewing/clearing backlog
 * (7c9ce2e) Prepare v1.2.266.dev

=== 1.2.265 (2015.01.18) ===

 * (7627943) v1.2.265
 * (6ead356) Merge pull request #435 from Lugoues/disable_crash_fix[[BR]]
   Fix disable plugin crash when interval not met.
 * (f87e164) fixed an issue with disabled.py where it would crash if the interval was not yet met
 * (026ff0b) Fix unit test crash from manager.crash_report
 * (511330c) Fix some bugs with lazy setting of fields by set plugin.
 * (d9d3111) Don't make crash reports for unit tests.
 * (f0b8317) Merge pull request #433 from Flexget/crash_reports[[BR]]
   Separate crash report logs. fix #2876
 * (d4fe516) Simplify exception handling in task_queue
 * (44bc4df) Add manager.crash_report to write last debug log and traceback to separate log files
 * (385786b) Merge pull request #420 from Ram-Z/exits_movies[[BR]]
   Scan for files and dirs, and allow different qualities.
 * (4047e89) Fix variable name.[[BR]]
   Oops
 * (e5ba9c8) Update documentation
 * (18d3d19) Add unit test for lookup: imdb
 * (4a44a4b) Change syntax to lookup: imdb
 * (23b40c5) use pattern to exclude dirs
 * (2945b42) use path.py
 * (a76b603) precompile pattern
 * (d27b97a) Scan for files and dirs, and allow different qualities.
 * (663ad17) Prepare v1.2.265.dev

=== 1.2.264 (2015.01.17) ===

 * (e96fef1) v1.2.264
 * (6e78dba) Add log message when daemon shutdown requested.
 * (ba7ef17) Fix issue with emit_series outputting duplicates in some cases
 * (cb66e2b) Improve emit_series tests to expose some issues with backfill combined with series begin
 * (5993008) Let trakt_list fill series_name field for show type list items
 * (d9d62b0) Prepare v1.2.264.dev

=== 1.2.263 (2015.01.15) ===

 * (cbdf069) v1.2.263
 * (9371824) Hide DeprecationWarning. Show internal ones when using a dev version. fix #2870
 * (563e5e8) Remember tail plugin position per task. fix #2874
 * (bcce7e9) make sure the request exception has a response object
 * (064a0c7) Merge pull request #431 from cvium/trakt_error_messages[[BR]]
   separate authentication and regular http errors in trakt
 * (28d614c) separate validation and regular http errors
 * (650daaa) warn about empty folders when emitting queue
 * (dfaad2d) Remove input caching for tail plugin.
 * (5894656) Fix specifying exec arguments with inject cli command.
 * (ac4cd7a) Prepare v1.2.263.dev

=== 1.2.262 (2015.01.14) ===

 * (f8761ef) v1.2.262
 * (51c304e) Merge pull request #427 from cvium/develop[[BR]]
   handle disappearing folders (eg. samba shares) in listdir
 * (12a4598) changed log message
 * (08fb5f5) handle disappearing folders (eg. samba shares)
 * (b2fa5cb) Stop replacing dashes in trakt slugs.
 * (6cf01e2) Merge pull request #424 from grasdal/develop[[BR]]
   trakt_emit: fixed parsing error for getting show data
 * (a0d48f4) trakt_emit: fixed parsing error for getting show data[[BR]]
   See example of json response data from[[BR]]
   http://docs.trakt.apiary.io/#reference/users/watched/get-watched[[BR]]
   Previous Flexget code was looking for a "type"-attribute that is no longer available in the response.
 * (d85eecd) Merge pull request #430 from Flexget/lazy_set[[BR]]
   Refactor set plugin to render templates lazily.
 * (0f8c15b) Set plugin won't make non-jinja templates lazy.
 * (574ef5e) Fix comment typo.
 * (f0b240c) Refactor set plugin to render templates lazily.
 * (6cdaa0e) normalize location path so already queued items can be updated
 * (1b0091f) Prepare v1.2.262.dev

=== 1.2.261 (2015.01.13) ^[wiki:UpgradeActions#a2015.1.121.2.261 upgrade actions]^ ===

 * (6248c4a) v1.2.261
 * (3381cb4) Merge pull request #429 from blastcodem/patch-4[[BR]]
   Fix 503 Internal Error with urlrewrite_torrentleech when Char : is in the title.
 * (d8199d6) Update urlrewrite_torrentleech.py[[BR]]
   Fix 503 Internal Error when Char : is in the title.
 * (72c45e6) Add basic test for `series list` cli command.
 * (9e12abf) Combine disable_builtins and disable_plugin into disable plugin.
 * (31bedb9) Prepare v1.2.261.dev

=== 1.2.260 (2015.01.12) ===

 * (e519a86) v1.2.260
 * (5758a0c) Fix default loglevel when sending commands to daemon.
 * (da1b722) Fix loglevel sometimes not being set and causing crash. fix #2849
 * (b91f956) Ensure turning off retry_failed plugin totally turns it off.
 * (a516a55) fix duplicate entries in queue and small changes
 * (895733f) Prepare v1.2.260.dev

=== 1.2.259 (2015.01.12) ===

 * (0f1345a) v1.2.259
 * (0c801c2) Fix accidential deletion from last argparse commit
 * (bb4a99e) Fix custom cli commands to work with latest argparse change
 * (cdebffa) Merge pull request #422 from Flexget/digest[[BR]]
   Digest plugin. refs #1366
 * (fade1f7) Add some more tests for digest plugin
 * (3083dcc) Fix digest plugin unit test
 * (b560bf1) Merge branch 'develop' into digest
 * (c901d4c) Fix problems with cli arg parsing. (daemon loglevel issues)
 * (13a3297) Change how specific task loglevel changing works. Fix up subparser defaults overriding parser action defaults.
 * (7534f15) Change (fix) how nested  namespaces work with our argparse customization
 * (89be2fd) Prepare v1.2.259.dev

=== 1.2.258 (2015.01.11) ===

 * (7229a90) v1.2.258
 * (770f242) Merge pull request #423 from sideeffffect/develop[[BR]]
   Pass on the hide_sparse_files and keep_subs options
 * (25b49b2) Pass on the hide_sparse_files and keep_subs options
 * (333395e) Merge pull request #425 from cvium/develop[[BR]]
   handle pluginerrors in configure_series
 * (b55fee3) catch plugin errors to avoid task aborts
 * (b1a09b7) fix subtitle_queue tests
 * (1ce6d75) Prepare v1.2.258.dev

=== 1.2.257 (2015.01.10) ===

 * (2dfd33e) v1.2.257
 * (0eff479) Update trakt testing url
 * (02396d7) temporarily remove failing tests
 * (0d132ee) Merge remote-tracking branch 'upstream/develop' into udevelop
 * (1430b08) Fix trakt_list crash when there is no title for item.
 * (277e9f3) better approximation of directory name in queue, and handle upper case file extensions
 * (fce5304) fixed missing entry field and queue now handles multi-file torrents
 * (acfa0e2) fix bug from last commit
 * (c0e9c2d) fix unhandled error, pep8 and do not delete from queue in the first 24 hours when file does not exist
 * (56d2758) Prepare v1.2.257.dev

=== 1.2.256 (2015.01.09) ===

 * (2e38e60) v1.2.256
 * (f0e5c6b) Fix bug in last emit_series commit.
 * (181574d) Make sure emit_series only emits next episode when backfill is off.
 * (ef9128a) Add test to make sure backlog isn't emitted from emit_series when backfill is off
 * (c0f01d3) Don't error on warnings during unit tests anymore
 * (5443cee) Add basic test for digest plugin
 * (6ada38f) Change default email template to support digest
 * (891a911) Fix up 'limit' and 'expire' options for digest plugin.
 * (842d20e) Start working on digest expire options.
 * (4371b21) Don't overwrite existing task field with metainfo_task plugin.
 * (0e2bd32) Initial digest plugin implementation.
 * (7505443) Merge pull request #394 from cvium/subtitlequeue_v2[[BR]]
   subtitle queue
 * (7c77ee6) fix entries not marked as downloaded and add more robust subtitle checking
 * (dd19d37) fix bug introduced in last commit
 * (2e94b21) really fix the bug and some session changes
 * (d7c32fa) fixed a dict bug
 * (7afa347) some cleaning up
 * (f3828aa) change missing_subtitles to subtitles_missing
 * (be0d393) Merge remote-tracking branch 'upstream/develop' into subtitlequeue_v2
 * (8613af9) Merge branch 'subtitlequeue_v2' of http://github.com/cvium/Flexget into subtitlequeue_v2
 * (faac0de) set downloaded field if no missing subs, delete from queue if both paths do not exist
 * (1f0c6ef) set field in entry 'missing_subtitles'
 * (90756e0) Merge remote-tracking branch 'upstream/develop' into subtitlequeue_v2
 * (a6917e6) fixed merge conflicts
 * (0bf08b1) changed tests to accommodate new config schema
 * (1d244a3) fixed some unhandled exceptions, changed json schema
 * (26974f4) fixed queueing of accepted entries
 * (2e8b363) fixed nonetype
 * (9349fe8) some refactoring, no more task aborts
 * (75f0217) skip subliminal test if subliminal is not installed
 * (b47e5d6) unix file system is case sensitive
 * (fc4b5fe) slight change
 * (6bf1c37) subliminal requires absolute paths
 * (7bf248e) set literals not in python2.6
 * (20568bc) added a new test that uses subliminal
 * (81d45b6) fixed some bugs (unicode and dict key missing)
 * (74d98ec) fixed a bug in the test
 * (4883b54) more refactoring, fixed some bugs in alternate_path and location handling
 * (d840350) added mock torrent tests
 * (f670e90) refactoring, no more downloading
 * (b0de634) more tests
 * (c915669) Merge remote-tracking branch 'upstream/develop' into subtitlequeue_v2
 * (f35dc29) pep8, use utils/bittorrent, some refactoring
 * (6b4e382) entry langs override config langs
 * (9b51c10) use unicode() instead of __str__()
 * (f04448a) bandaid fix for uniqueness constraints and some other changes
 * (e8faa46) added another test for language uniqueness, emit test fails
 * (a510938) Merge remote-tracking branch 'upstream/develop' into subtitlequeue_v2
 * (9b72da5) https://gist.github.com/darkrho/1126793
 * (97e70a5) fixed bugs and changed some logic
 * (010dc13) added simple tests for subtitle_queue
 * (0fc1527) beta draft of subtitle_queue
 * (a3d8ae2) fixed set/list error
 * (71cfcb9) fixed pep8 compliance and prepared subliminal for subtitle_queue
 * (a56f172) Prepare v1.2.256.dev

=== 1.2.255 (2015.01.08) ===

 * (d26c59e) v1.2.255
 * (95fe35c) Merge pull request #414 from Ram-Z/plugin-path[[BR]]
   Search for plugins in config_base
 * (1f5989b) Don't use mutable default argument
 * (dd21b84) Search for plugins in config_base[[BR]]
   instead of the hardcoded ~/.flexget/plugins. This effectively allows to[[BR]]
   put plugins in $XDG_CONFIG_HOME/flexget/plugins.
 * (f66ea82) Merge pull request #417 from Ram-Z/inject-fields[[BR]]
   Set entry fields when injecting. fix #2845
 * (96b2a45) Set entry fields when injecting. fix #2845
 * (4c661d2) Make sure manual tasks don't run when --tasks * is used. fix #2830
 * (52c3f30) Prepare v1.2.255.dev

=== 1.2.254 (2015.01.07) ===

 * (12976e9) v1.2.254
 * (fc85826) Merge pull request #416 from programatix/patch-1[[BR]]
   Update scheduler.py to ignore certain pytz errors.
 * (36bfd5a) Update scheduler.py[[BR]]
   Removed parenthesis.
 * (6d9d8ae) Update scheduler.py[[BR]]
   Updated exception handling using new catch syntax.
 * (e026fcc) Update scheduler.py
 * (09ac32e) Update scheduler.py[[BR]]
   Added struct.error exception handling
 * (8ea0460) Update scheduler.py[[BR]]
   Catch all type of exception instead of just pytz.UnknownTimeZoneError
 * (655cd6e) Better logging of simple persistence flushes Only flushes taskless simple persistence after tasks when in daemon mode
 * (f3084f2) Catch network errors from rapidpush plugin. refs #2833
 * (8ddc90f) Update cpasbien search for new search api.
 * (2d1c540) Merge branch 'search_api_update' into develop
 * (08ee521) Convert search_rss to use task session
 * (5a2261c) Convert btn and kat search to use task session
 * (6fb4e4b) Update some search plugins to take task argument.
 * (0acb0df) Update search api to take task as an argument.
 * (e0dd388) Stop replacing underscore in trakt slugs.
 * (2ea84c2) Pushover sound default changed, now goes to client default really.
 * (b02ca49) Add missing dependency apscheduler to rtd-requirements.txt
 * (43a0fc8) Prepare v1.2.254.dev

=== 1.2.253 (2015.01.06) ===

 * (c56ab3b) v1.2.253
 * (751a249) Fix database cleanup crash.
 * (1924e28) Prepare v1.2.253.dev

=== 1.2.252 (2015.01.06) ===

 * (3c5a27a) v1.2.252
 * (7bb8ccc) Count ftp_download as an output plugin. fix #2757
 * (bc6e685) Make sure template and include plugins run before all other plugins. refs #2830
 * (571313a) Make db upgrade system use single database session. refs #2838
 * (b9502fc) Fix db locked error when upgrading series plugin database. fix #2838
 * (c6f3747) Merge branch 'develop' of https://github.com/Flexget/Flexget into develop
 * (8248571) Prepare v1.2.252.dev

=== 1.2.251 (2015.01.05) ===

 * (beed92f) v1.2.251
 * (3fc959b) Merge branch 'develop' of https://github.com/Flexget/Flexget into develop
 * (5f657a6) Merge pull request #413 from Flexget/simple_per_update[[BR]]
   Switch simple persistence to load/flush from/to db outside task runs fix #2820, #2672, #2835
 * (fe3f267) Make sure simple persistence flushes taskless key/values on shutdown Fix bug in simple persistence task loading
 * (fdc6f47) Only load simple persistence values from db the first time a task is run
 * (3016652) Make simple persistence load task values before task runs refs #2820, #2762 Add a cleanup method to simple persistence to delete values from removed tasks
 * (a23f2d9) Make manager.db_cleanup event pass manager instance Add task.execute.started event Make sure task.execute.completed event only runs once when task reruns
 * (b829f96) Add a docstring to simple persistence Make sure newly added values are stored to db
 * (4c82773) Implement db flushing for simple persistence
 * (1070f44) Start switching simple_persistence away from immediate db writes
 * (cbc95aa) Prepare v1.2.251.dev

=== 1.2.250 (2015.01.05) ===

 * (95c0158) v1.2.250
 * (4967df4) Merge pull request #406 from Flexget/emit_series_cleanup[[BR]]
   Change how emit_series tries on reruns. fix #2826
 * (b430529) Merge branch 'develop' into emit_series_cleanup[[BR]]
   Conflicts:[[BR]]
   	flexget/plugins/input/emit_series.py
 * (66d59a4) Switch to session context manager in api_tvdb
 * (fcf383c) Switch input cache away from task.session
 * (5b6b264) Fix typo, hvec -> hevc
 * (58b7cc3) Add hvec as alias for h265
 * (1c9dd84) Add h265 codec to quality parser
 * (d43f458) Prepare v1.2.250.dev

=== 1.2.249 (2015.01.04) ===

 * (6c071d0) v1.2.249
 * (de32f33) Remove debug sqlalchemy hook which is no longer needed
 * (2a4c45e) Switch away from task.session in several plugins
 * (857f645) Make sure log_once uses already open session from imdb_lookup
 * (994f966) Convert log_once to use with_session helper
 * (dce7902) Fix trakt_list for collection and watched lists.
 * (80cf715) Merge pull request #411 from cvium/subliminal[[BR]]
   fixed attribute error when downloading subtitles for movies
 * (9a3e6f5) fixed attribute error when downloading subtitles for movies
 * (40211bd) Merge pull request #412 from cvium/guessit[[BR]]
   Don't let guessit parser set global guessit options fix #2775
 * (ad41573) set default settings inside the parserguessit object instead of globally
 * (2a88b86) Prepare v1.2.249.dev

=== 1.2.248 (2015.01.03) ===

 * (a160d46) v1.2.248
 * (d6d47c5) Make sure a db session isn't open when series plugin calls 'set' plugin. refs #2828
 * (ee61602) Update trakt_list test cassette to https
 * (6deffbc) Switch trakt api to use https
 * (2fced04) Prevent blank series name bug with trakt_emit.
 * (ef5b57a) Switch from task.session to session context manager in emit_series
 * (244ec69) Fix advancement to next season in emit_series cleanup branch
 * (af1caa5) Change how emit_series tries on reruns
 * (8d3a474) Prevent crash when giving ambiguous arguments to delete movie from queue
 * (7a8080f) Fix a crash with trakt_list when it gets an item without a title.
 * (1f7d9f5) Prepare v1.2.248.dev

=== 1.2.247 (2015.01.02) ^[wiki:UpgradeActions#a2015.1.11.2.247 upgrade actions]^ ===

 * (b515edd) v1.2.247
 * (a506e95) Merge pull request #409 from Flexget/trakt_v2[[BR]]
   Update trakt_list, trakt_emit, and trakt_add/remove plugins to the v2 api
 * (c55ab41) Get trakt_emit working on trakt v2 api
 * (ce7dd23) Make a helper to construct trakt api endpoint urls.
 * (bec5256) Switch trakt_list test to use vcr
 * (e86c926) Switch trakt to production site.
 * (455da98) Fix trakt_slug setting for movies in trakt_list
 * (1abefb4) Work a bit more on trakt_emit v2
 * (57f4e0e) Merge branch 'develop' into trakt_v2
 * (80be126) Populate a few more fields with trakt_list. Give eps proper urls.
 * (83632ff) Update trakt_add/trakt_remove to trakt v2
 * (5380868) Start updating trakt_emit for trakt v2
 * (46463c5) Separate some common trakt functions to separate file
 * (81c88cd) Initial implementation of trakt api v2 in trakt_list
 * (217668b) Merge pull request #402 from kasperj/develop[[BR]]
   update URL on language match only
 * (f752137) Update urlrewrite_serienjunkies.py
 * (b566663) update URL on language match only[[BR]]
   The URL will only be updated if the language matches the requirements
 * (d349f74) Update urlrewrite_serienjunkies.py
 * (948cc28) Allow skipping of guessit roman numeral test.
 * (f4291bf) Merge pull request #286 from Lugoues/dequeue_movie[[BR]]
   combine queue_movies into movie_queue, add remove functionality
 * (c972873) Fix movie_queue unit test again
 * (b58cbe3) Add 'forget' action to movie_queue plugin.
 * (0e8d64c) Fix a couple things and unit tests for movie_queue refactor
 * (97a76aa) Merge branch 'dequeue_movie' of https://github.com/Lugoues/Flexget into new_movie_queue
 * (97deff3) Update test_movie_queue.py
 * (db37b1d) added unit tests for movie_queue accept/add/remove
 * (7d78d1b) pep8
 * (91fb2f8) remove deprecated queue_movie plugin
 * (836e7d0) removed dequeue_movie plugin and updated movie_queue to support accept/add/remove
 * (b5dbffc) added dequeue_movie plugin
 * (fe6a73a) Prepare v1.2.247.dev

=== 1.2.246 (2015.01.01) ===

 * (05d4634) v1.2.246
 * (f2e4618) Merge pull request #401 from grrr2/develop[[BR]]
   Update plugin_transmission.py to fix #2804
 * (122b21f) Update plugin_transmission.py
 * (a5d8018) Update plugin_transmission.py to fix bug #2804[[BR]]
   Try to fix bug #2804 by making RPC client object re-initiated for every task rather then doing it once for whole plugin.
 * (1a21705) Prepare v1.2.246.dev

=== 1.2.245 (2014.12.31) ===

 * (e258fd2) v1.2.245
 * (6a8824a) Use current session when series plugin adds to backlog. refs #2829
 * (d64c527) Fix db locking issue with thetvdb_favorites. fix #2827
 * (f4b3e37) Prepare v1.2.245.dev

=== 1.2.244 (2014.12.30) ===

 * (2624eba) v1.2.244
 * (4b26031) Stop using task.session in discover plugin. refs #2825
 * (dc1398c) Merge pull request #408 from Bop4yN/develop[[BR]]
   Added url_title parameter to PushOver plugin. Use 'urltitle' to setup your own title for url.
 * (960e29c) Added url_title parameter to pushover plugin
 * (f4ccb0c) Merge pull request #407 from calvin/develop[[BR]]
   Fixes for send_email plugin, hmac only works with `str` type in Python 2
 * (5d3750b) hmac only works with `str` type in Python 2[[BR]]
   See also http://bugs.python.org/issue5285
 * (7dd1871) Prepare v1.2.244.dev

=== 1.2.243 (2014.12.29) ===

 * (a7d00c1) v1.2.243
 * (860e618) Merge pull request #393 from xfouloux/develop[[BR]]
   add search_cpasbien.py for tracker cpasbien.pe fix #2801
 * (65c9a9b) updated plugins/search_cpasbien.py for join to work and modified according to dl link changes on the tracker.
 * (19777d4) posixpath.join utilisation, and sanitize to use only single quotes
 * (a66cdda) modified to have the all category
 * (b192a71) did some change to update flexget doc cpasbien
 * (c8491cb) changed for set literal again
 * (02a7b38) changed set literal
 * (e35ea46) fixed some indent errors in search_cpasbien.py
 * (e66af59) changed pep8 indent as flexget supports 120 char per lines
 * (20453b3) pep8 ok for urlrewrite_frenchtorrentdb.py
 * (379e3be) pep8 indent ok for search_cpasbien.py
 * (f7aa56d) modified urlrewrite_frenchtorrentdb.py now you get the message according to the right issue when the rewriter can't get the torrent file.
 * (b1c3ab7) add search_cpasbien.py for tracker cpasbien.pe
 * (1d214ab) Prepare v1.2.243.dev

=== 1.2.242 (2014.12.28) ===

 * (bfdf488) v1.2.242
 * (be88951) UrlRewriter nyaa now supports new categories, default changed.[[BR]]
   - anime eng (new default)[[BR]]
   - anime raw[[BR]]
   - anime non-eng
 * (4b045d6) Merge pull request #404 from Konubinix/develop[[BR]]
   Add an urlrewriter for the koreus site
 * (52d1ceb) Add an urlrewriter for the koreus site[[BR]]
   It was copied/pasted from the urlrewrite_deadfrog.py file and adapted.[[BR]]
   It rewrite the url from the koreus rss entry to the download url from the[[BR]]
   download page.
 * (d289db9) Merge pull request #403 from Flexget/nullpool[[BR]]
   Test if using a NullPool for db connections helps db issues.
 * (3d41e83) Test if using a NullPool for db connections helps db issues.
 * (db1cf26) Prepare v1.2.242.dev

=== 1.2.241 (2014.12.27) ===

 * (d7ca9b6) v1.2.241
 * (2f7bc45) Make sure --discover-now is not activated on reruns.
 * (8abf2d7) Don't forget identified_by when forgetting an episode if begin episode is set.
 * (993d565) Reduce verbosity on emit_series reruns.
 * (b373cb2) Plugin --dump now can now be instructed to dump only title field.
 * (4caebb5) Quiet down emit_series log about non seq/ep based shows on reruns.
 * (e4d5b92) Add some debug messages to explain emit_series reruns.
 * (45a9cae) Merge pull request #405 from asm0dey/fix_rutracker[[BR]]
   Fix rutracker plugin
 * (5a7e269) Update plugin_rutracker.py[[BR]]
   Removed itertools
 * (4431d02) Update plugin_rutracker.py
 * (16c40d6) Update plugin_rutracker.py
 * (9cc926f) Prepare v1.2.241.dev

=== 1.2.240 (2014.12.25) ===

 * (9c2bcab) v1.2.240
 * (aff0e86) Hide rpyc messages if we aren't running with debug logging. fix #2798
 * (157a49e) Attempt to recover after database errors. refs #2820, #2762
 * (e676bca) Prepare v1.2.240.dev

=== 1.2.239 (2014.12.20) ===

 * (730e13d) v1.2.239
 * (9c8427f) Log error instead of crashing when search_rss has invalid template
 * (73947d5) Prepare v1.2.239.dev

=== 1.2.238 (2014.12.19) ===

 * (cdc284e) v1.2.238
 * (f460460) Merge pull request #395 from kasperj/develop[[BR]]
   changed logging again
 * (925d2b9) Update urlrewrite_serienjunkies.py[[BR]]
   Travis CI should pass now
 * (2efe2d1) changed Logging again[[BR]]
   The changes i made a couple of days ago, are spamming logs even more then before, should be fixed with this update
 * (56cdd05) Merge pull request #400 from cvium/develop[[BR]]
   fixed keyerror in subliminal plugin
 * (3dcdc10) fixed keyerror by forcing languages on config, also pep8 fixes
 * (3a01bd7) Merge pull request #396 from kecksk0enig/develop[[BR]]
   fix broken clean_transmission plugin for seeding only torrent. fix #2803
 * (0b217ea) clean up big elsif mess
 * (42a93e4) Also remove seeding-only torrent after given timeframe
 * (79836c5) fix broken clean_transmission plugin for seeding only torrent see #2803
 * (99dcd02) Prepare v1.2.238.dev

=== 1.2.237 (2014.12.16) ===

 * (95a6aed) v1.2.237
 * (5d6f349) Update tpb domain
 * (fd9d6ff) Update kat search plugin domain
 * (5f1dd09) Fix issue with urlrewrite_redirect in unit tests from last commit
 * (2cd300e) Allow multiple redirects in urlrewrite redirect. Prevent url being set to fragment with urlrewrite redirect. fix #2815
 * (2ef45d6) Allow overriding of different (non-container) types in merge tool. fix #2814
 * (da79dfa) Prepare v1.2.237.dev

=== 1.2.236 (2014.12.14) ===

 * (8d8d1fa) v1.2.236
 * (56fe0da) Fix bug in last urlrewrite commit
 * (affe8fc) Make sure urlrewrite plugin only affects tasks it is configured in. fix #2812
 * (2023f8f) Fix crash when urlrewrite is configured to allow infinite rewriting
 * (34dbc96) Prepare v1.2.236.dev

=== 1.2.235 (2014.12.13) ===

 * (5817493) v1.2.235
 * (d02f1d4) verify_ssl_certificates now runs after include plugin. fix #2800
 * (b3de5c9) Prepare v1.2.235.dev

=== 1.2.234 (2014.12.09) ===

 * (b5e5013) v1.2.234
 * (353cbd5) Fix --test sending executions to live daemon when running
 * (9e36359) Show usage for correct command when invalid arguments given
 * (2543d16) Fix --help not showing plugin options. fix #2807
 * (5a5f769) Refactor filling of content_files field for torrents to be separate than content_filter plugin
 * (2c9c6ad) Prepare v1.2.234.dev

=== 1.2.233 (2014.12.09) ===

 * (06a1c34) v1.2.233
 * (5b5ebff) Merge pull request #385 from kasperj/develop[[BR]]
   Update urlrewrite_serienjunkies.py
 * (9e29d38) Update urlrewrite_serienjunkies.py[[BR]]
   Changed language RegEx, language error is send to urlrewriter, so it doesn't spam logs
 * (070fb20) Update urlrewrite_serienjunkies.py[[BR]]
   english language fixed, debug message added
 * (0250c35) Fix timeframe calculations when assume_quality plugin is used. fix #2797
 * (ac4893c) Prepare v1.2.233.dev

=== 1.2.232 (2014.12.08) ===

 * (5ece527) v1.2.232
 * (5eec1dc) Prevent some crashes from secrets plugin when trying to render non-secrets jinja
 * (0357e48) Prepare v1.2.232.dev

=== 1.2.231 (2014.12.06) ===

 * (439c172) v1.2.231
 * (074c9bb) Try to reduce spamminess of rerun log messages a bit
 * (e4173f0) Prepare v1.2.231.dev

=== 1.2.230 (2014.12.02) ===

 * (9c32854) v1.2.230
 * (373c95d) Fix inject cli command. fix #2795
 * (3c3f1f3) Tweak log message about tasks reamining to execute. refs #2798
 * (78c262e) Fix parser errors going to client instead of daemon
 * (72b5477) Add debug message when ipc runs a command for client
 * (91ea43e) Only log ipc exit codes when they are non-zero
 * (8038772) Fix --help and --version options when connected to daemon
 * (009a46a) Add ability to specify file-like to output parser messages to
 * (744a8df) Fix `schedules: no` turning off scheduler
 * (6dada08) Prepare v1.2.230.dev

=== 1.2.229 (2014.12.01) ===

 * (3a737e3) v1.2.229
 * (1eeb9ef) Merge pull request #390 from vincentbernat/fix/qualities-aac-priority[[BR]]
   qualities: rank aac lower than ac3
 * (3413fb9) qualities: rank aac lower than ac3[[BR]]
   When the audio track is encoded with AAC, it is not uncommon for it to[[BR]]
   be stereo only. On the other hand, the DD5.1 tag usually translates to[[BR]]
   an AC3 audio track.[[BR]]
   Therefore, rank an AAC encoded audio track below a DD5.1 audio track.
 * (7dce196) Merge pull request #391 from vbabiy/720p50[[BR]]
   Add support for 720p50
 * (27f756a) Add support for 720p50
 * (80aa940) Prepare v1.2.229.dev

=== 1.2.228 (2014.11.30) ===

 * (43e3d59) v1.2.228
 * (d52c02d) Delete of alphe version of plugin_plex
 * (c987214) Added TODOs
 * (0929894) Initial commit of new plex plugin.
 * (02d4468) Prepare v1.2.228.dev

=== 1.2.227 (2014.11.25) ===

 * (db6c89c) v1.2.227
 * (2cf423d) Update kickass domain for kat search plugin kat search plugin now tries next search on failure instead of aborting
 * (f668d34) Change qualities tests so that guessit mismatches are skipped and logged, not failed
 * (467b3c8) Prepare v1.2.227.dev

=== 1.2.226 (2014.11.23) ===

 * (961a3c2) v1.2.226
 * (95ac517) Some cleanups to commands using manager.execute events
 * (0e05b16) Fix many debug options to execute command to work when sending to daemon
 * (daad63b) Improve Manager.start and handle_cli documentation
 * (e9f8ff8) Strip out some unneeded locking code. Document Manager initialization better.
 * (ad6341d) Return root logger level to default when changed by capture_output context manager
 * (4d2fba2) Fix logging formatter on python 2.6
 * (35f072d) Switch 'setting loglevel' messages to verbose log.
 * (c8f0fb1) Prepare v1.2.226.dev

=== 1.2.225 (2014.11.22) ===

 * (d2efdac) v1.2.225
 * (d4a0aca) Fix unit tests for config validation change
 * (066606b) Change before_config_validate event so that it can run on not currently active configs Fix 'flexget check' on running daemon with secrets plugin
 * (213e067) Allow events to modify argument before passing it to next handler
 * (e6a8abf) Fix 'check' command for running daemon
 * (ed06234) Properly report config errors on manager startup
 * (8caa25d) Fix an error with last commit
 * (f30e4fd) Make remote streamer for ipc allow both str and unicode
 * (1cd575f) Fix non-built-in commands
 * (238708f) Prepare v1.2.225.dev

=== 1.2.224 (2014.11.22) ^[wiki:UpgradeActions#a2014.11.221.2.224 upgrade actions]^ ===

 * (bf752fb) v1.2.224
 * (609dde7) Merge pull request #379 from Flexget/cli-daemon[[BR]]
   Refactor client/daemon architecture:[[BR]]
   - Second process doesn't load db/plugins/config[[BR]]
   - All commands are proxied to running daemon[[BR]]
   - Multiple execute commands can now queue into eachother[[BR]]
   - --cron now a base flexget option (goes before 'execute')
 * (8d22b95) Switch some plugins to use console method instead of print
 * (efaf872) Remove Tee helper
 * (8a0aa4e) Move all output redirection logic into logger module. Get output redirecting to proper stream via ipc.
 * (8a48036) Make execute command wait for tasks to finish (without --cron)
 * (f840cf9) CLI commands now sent to running daemon without loading plugins/config/db (still a bit more work/cleanup to do)
 * (83b2193) Refactor logging capture to better handle threads
 * (aaf7369) Fix last commit for python 2.6
 * (8d8c1de) Refactor how contextual information is added to log records a bit. Prepare for adding command information to log records.
 * (40097c7) Move --cron option to root level instead of execute command
 * (f8cef65) Convert retry_failed to do its own rejecting instead of using remember_rejected
 * (08ec260) Fix --dump showing failed entries
 * (3de11b0) Convert backlog plugin to do its own db session management (drop task.session)
 * (1195eb5) Make mock plugin generated urls constant per title.
 * (2e75764) Merge pull request #386 from camon/develop[[BR]]
   Fix language code prob and add extra config options to subliminal plugin
 * (0dc2cef) Updated name variables and cleaned up a bit[[BR]]
   Updated name variables and cleaned up the code that fixes[[BR]]
   subtitles_subliminal plugin
 * (7316709) Fix language code prob and add extra config options[[BR]]
   There was a problem with Language codes, e.g. pt-BR was not supported.[[BR]]
   Subliminal already supports this by using IETF codes[[BR]]
   Added two extra options (that are not mandatory off course):[[BR]]
   providers - allows to chose specific providers that are used for[[BR]]
   subliminal to download subtitles[[BR]]
   single - allows to download subtitles in single mode (no language code[[BR]]
   added to subtitle filename)
 * (01e0947) Merge pull request #377 from cvium/develop[[BR]]
   Store series alternate_name in db[[BR]]
   Use alternate_name in emit_series. fix #2530, #2588
 * (7fbc35f) changed alt_name_lower column to alt_name_normalized
 * (046e2da) added db unit-test and made other tests clearer
 * (6fe0262) removed table edit
 * (2087007) added unit-test for duplicate alternate names
 * (29c1e89) raise pluginerror if duplicate alternames across multiple series
 * (5a57468) Merge remote-tracking branch 'upstream/develop' into develop
 * (856cc92) Prepare v1.2.224.dev

=== 1.2.223 (2014.11.22) ===

 * (e5587ea) v1.2.223
 * (33b36ce) Merge pull request #382 from cvium/subliminal[[BR]]
   subtitles_subliminal.py
 * (408e947) actually save subtitles next to files
 * (c5d1ed0) Merge pull request #383 from tnwhitwell/develop[[BR]]
   Preventing AttributeError: object has no attribute 'title', BUG #2786
 * (8821266) Changed warning to debug[[BR]]
   -Removes some bloat from the log
 * (240d6fa) Prevented AttributeError throwing more pythonly[[BR]]
   throws warning if there is no title in first feed entry
 * (5820177) Prevented throwing AttributeError if no title attr
 * (f339d5a) Prepare v1.2.223.dev

=== 1.2.222 (2014.11.20) ===

 * (1278ccb) v1.2.222
 * (dd0cad7) Merge pull request #381 from blastcodem/patch-2[[BR]]
   Update urlrewrite_redirect.py
 * (37793ec) Update urlrewrite_redirect.py[[BR]]
   not log in = redirect[[BR]]
   logged in = not redirect[[BR]]
   we need to check the headers logged in.
 * (a6de2e9) More unit tests
 * (b09975b) Moved alternate names extraction inside search_entry
 * (9db657b) added unit tests for alternate names
 * (dc62414) Some more cleaning up
 * (5f287ed) Cleaned up a bit and added better uniqueness constraints (per series) and duplicate handling.
 * (08bd7d4) added log debug
 * (e3f46e7) Fetching alternatenames from database instead of config
 * (3901a94) Added table for AlternateNames, which is referenced in Series
 * (cf7c766) Fixed unhandled iteration on NoneType
 * (c4ac887) Handling alternate_name in emit_series.
 * (e329501) Fixed typo
 * (2ac1b3b) Prepare v1.2.222.dev

=== 1.2.221 (2014.11.17) ===

 * (fa12e55) v1.2.221
 * (95e8edf) Fix crash in imdb_list with unexpected imdb page format. fix #2777
 * (efa220c) Improve imdb_list schema: - Don't require user_id when using a custom list - Better error messages for invalid list specifications
 * (6d31981) Make sure series timeframe doesn't crash when no qualifying releases in db. fix #2779
 * (4ecbd1d) Make sure configured series are marked in database again. fix #2772
 * (4649412) Prepare v1.2.221.dev

=== 1.2.220 (2014.11.13) ===

 * (5faeec0) v1.2.220
 * (128c363) Merge pull request #376 from Flexget/quality_tweaks[[BR]]
   Tweak quality parsing and interaction between series/quality/assume_quality plugins, fix #2748
 * (3ad0659) Some cleanups to assume_quality plugin
 * (8e16c8d) Stop passing quality into series parsers Make series parsing run before metainfo quality plugin Make assume_quality run after all other quality parsing
 * (335bf15) Some cleanups to secrets plugin
 * (321bf59) Regexp plugin reports errors properly for invalid regexps with options defined. fix #2769
 * (e57ca00) Do not count plain 'web' as webdl quality. refs #2748
 * (c62489e) Prepare v1.2.220.dev

=== 1.2.219 (2014.11.11) ===

 * (7320ef5) v1.2.219
 * (3e945b1) Revert the prowl newline handling tweaks. They come through with proper yaml quoting.
 * (20ce993) Make sure WAL mode is disabled on DB to prevent errors. refs #2749
 * (224aedd) Merge pull request #374 from wick2o/develop[[BR]]
   Removed Fancy encoding for simple replace()
 * (280d3f9) added utf encoding
 * (b05a234) Prepare v1.2.219.dev

=== 1.2.218 (2014.11.09) ===

 * (6a5843a) v1.2.218
 * (b16b482) Merge pull request #373 from wick2o/develop[[BR]]
   removed quote_plus in favore of quote
 * (d3775bf) added utf encoding
 * (1047b26) added utf encoding
 * (2f73b1d) removed quote_plus in favore of quote
 * (d9fb60b) Prepare v1.2.218.dev

=== 1.2.217 (2014.11.09) ===

 * (5a21352) v1.2.217
 * (f12c947) Fix frenchtorrentdb urlrewriter. fix #2652
 * (6d1803e) Stop sqlalchemy warning from series plugin when running with no tasks. fix #2539
 * (e3a1300) Fix transmission rename when file already exists. fix #2765
 * (a8396bb) Merge pull request #372 from wick2o/develop[[BR]]
   adding \n support for prowl description
 * (9481807) repaced replace() with urllib.quote_plus
 * (d1f013e) adding \n support for prowl description
 * (dfddd0f) Merge pull request #371 from wick2o/develop[[BR]]
   adding \n support for prowl description
 * (a601ebc) adding \n support for prowl description
 * (d6ed8ee) Raise match requirement when comparing movies to imdb names.
 * (390fbe5) Prepare v1.2.217.dev

=== 1.2.216 (2014.11.09) ===

 * (094fad7) v1.2.216
 * (b8b1c3d) Make sure plugin loading doesn't try to travers non-directories.
 * (79a6317) Make sure imdb cache doesn't ever have negative expiration dates. fix #2759
 * (9f095c8) Fix scheduler when no system timezone at all is specified. fix #2741
 * (2bff7de) Prepare v1.2.216.dev

=== 1.2.215 (2014.11.06) ===

 * (4118e95) v1.2.215
 * (b71b423) Merge pull request #370 from hordurk/develop[[BR]]
   Improved date parsing in RSS feeds
 * (6ec898e) Improved date parsing in RSS feeds
 * (87214d7) Catch ValueErrors from plugin imports. refs #2755
 * (c0340be) Prepare v1.2.215.dev

=== 1.2.214 (2014.10.31) ===

 * (5664ea2) v1.2.214
 * (121616e) Don't let parsing plugin touch other plugin instances too early refs #2754
 * (35d19c5) Fix bad traceback being printed for an rss debug statement
 * (3bbc4d6) Prepare v1.2.214.dev

=== 1.2.213 (2014.10.30) ===

 * (1ac6703) v1.2.213
 * (f6cf7ef) Merge pull request #369 from Flexget/release_process_version_changes[[BR]]
   Release process and versioning changes
 * (71fff53) Stop including unit tests in our releases
 * (7011fc5) Fix increment_version tool to handle versions without revision number properly Add some notes about versions and releases in _version.py
 * (ee8a800) Clean up pavement.py
 * (680ff8a) Clean up --version implementation a bit
 * (e18592b) Remove references to {git} version number
 * (2cf86bf) Refactor how pavement version management works some more
 * (61e15a4) Move version number to its own file
 * (14e1eb9) Start storing version number in source Redo some paver tasks to manage version number
 * (ad22507) Add pep8 and flake8 defaults to setup.cfg
 * (62e5988) Merge pull request #358 from malkavi/develop[[BR]]
   Urlrewriter for anime-index.org
 * (1769045) Simplify a lot the urlrewrite for anime-index
 * (c7b5e0d) Merge pull request #2 from Flexget/develop[[BR]]
   Don't have scheduler wait on jobs to finish when shutdown requested
 * (cbdda7c) removed copy/paste line
 * (47c38cd) Merge pull request #1 from Flexget/develop[[BR]]
   Merge last changes
 * (5871bf1) code cleaned
 * (266cecc) First version of the urlrewriter for anime-index.org
 * (3f9e6e0) Merge pull request #368 from nikdoof/develop[[BR]]
   Add Cinemageddon rewrite plugin.
 * (d0c65c2) Remove extra unneeded empty line.
 * (527328b) Minor style/pep8 fixes for urlrewrite_cinemaggedon
 * (4be1fcd) Add Cinemageddon rewrite plugin.
 * (6c953eb) Another cleanup to search_rss
 * (2470108) Make sure emit_series doesn't create duplicate search terms for sequence series
 * (30b4c81) Fix search_rss plugin to handle multiple search terms properly
 * (a329e31) Try another fix for scheduler timezones. refs #2741
 * (4d643d0) Remove some magic and start documenting the parsing api
 * (81b5acb) Clean up some unneeded bits from series parser
 * (0ab3ee0) Add some tests to validate modular parsing api
 * (11f5b91) Merge pull request #367 from z00nx/develop[[BR]]
   Updated notifymyandroid api url
 * (8e2448d) Updated notifymyandroid api url The old notifymyandroid url no longer has a valid ssl certificate and also all notifymyandroid documentation no longer refer to the old url.
 * (831901e) Simplify plugin loading to not use pkgutil
 * (3f801f6) Merge pull request #366 from Flexget/parsing_cleanup[[BR]]
   Modular parsing system simplification
 * (265d6b1) Remove metainfo argument to guessit series parser
 * (bd85125) Use guessit autodetect type for metainfo
 * (273394a) Merge branch 'develop' into parsing_cleanup
 * (5f5e101) Series parser now take name param optionally and guess if not given A bunch of cleanup to the new parser code
 * (b5bf408) Prevent tests that run against guessit/internal parsers from running a third time

=== 1.2.212 (2014.10.25) ===

 * (53047b6) Disable caching in find plugin

=== 1.2.211 (2014.10.24) ===

 * (012b015) Fix imdb genres test
 * (b4ebc83) IPTorrents code cleanup
 * (95d52d6) Use python's html parser for IPT search plugin
 * (3ef1619) TSH search plugin add option to filter between P2P and scene releases
 * (6cda5d8) Actually fix problems with unknown timezones in scheduler. fix #2741
 * (b842318) Merge pull request #365 from geirgp/feature/imdb_filter_accept_genres[[BR]]
   Added 'accept_genres' parameter to imdb plugin
 * (c8a4eef) Added 'accept_genres' parameter to imdb plugin
 * (d46dbe4) Fix urllib3 warning filtering on older versions of urllib3
 * (2c1dcdc) Merge pull request #364 from Flexget/vcrpy[[BR]]
   VCR.py
 * (f7e667f) Add test for imdb_lookup caching
 * (7f0bbcc) use_vcr will pass cassette as argument into function Add 'off' mode for vcr
 * (66e8274) Set vcr record mode to none for travis
 * (4273ee9) Remove some unused imports
 * (b0fe590) Add vcr.py to jenkins requirements
 * (00061e2) Switch all online tests to use vcr.py
 * (7620458) Add use_vcr decorator to test suite Refactor domain_delay handling so that it can be mocked away
 * (b06d6ad) Remove some unused imports

=== 1.2.210 (2014.10.22) ===

 * (dd5de57) Merge pull request #363 from nikdoof/develop[[BR]]
   Add additional Torrentz domains to url rewrite_torrentz
 * (c70a0eb) Update Torrentz domains
 * (a8b2b47) Fix imdb_lookup caching
 * (b2f8e5b) Fix path.py dependency in rtd-requirements
 * (55ccd1d) Don't have scheduler wait on jobs to finish when shutdown requested

=== 1.2.209 (2014.10.20) ===

 * (7f12e48) Tweak log language about tasks still executing when shutdown is called
 * (bcd55a0) Merge pull request #351 from sideeffffect/develop[[BR]]
   hide sparse files Deluge creates when main_file_only is set
 * (605b5cc) hide sparse files Deluge creates when main_file_only is set
 * (a191739) Fix crash when invalid config was given for cronlike schedule. fix #2742
 * (e8b8a1a) Merge pull request #356 from xetix/ftplist_patch[[BR]]
   Ftplist patch
 * (4bc96e8) Pep8-ized
 * (e91c772) Better error handling
 * (f74cce1) Added support to disable the size-check to speed up process if needed.
 * (3d6b677) Fix for exception raised when issuing nlst on empty directories
 * (2848e84) Merge pull request #361 from jawilson/pushbullet-links[[BR]]
   Add support for pushbullet "Link" types with config specified URL
 * (05bd67c) Add support for pushbullet "Link" types with config specified URL
 * (7c5fd1f) Fix issue with updating local cache with tvdb info
 * (03c507e) Make with_session decorator default sessions not expire_on_commit Should fix some DetachedInstanceErrors
 * (65a026e) Scheduler stores times in UTC when local tz name cannot be determined. fix #2741
 * (1099f99) Some cleanups to trakt_lookup
 * (5d661db) Fix trakt_lookup db session usage
 * (d3378e6) Fix imdb language test for changed imdb data.
 * (b80b222) Catch tvrage library crash. fix #2739
 * (e85cfc0) Cleanups in plugin_parsing
 * (1190c21) Series plugin no longer tries to parse description field

=== 1.2.208 (2014.10.15) ===

 * (754bfbf) Merge pull request #357 from kabracity/patch-4[[BR]]
   Update urlrewrite_divxatope
 * (03d5e4e) Update urlrewrite_divxatope.py[[BR]]
   Some changes to reflect format changes on divxatope

=== 1.2.206 (2014.10.14) ^[wiki:UpgradeActions#a2014.10.141.2.206 upgrade actions]^ ===

 * (35f7563) Merge pull request #343 from Flexget/apscheduler[[BR]]
   replacing our scheduler with apscheduler
 * (6e91391) Rename key for advanced schedules from 'cron' to 'schedule' in config
 * (3c3d08e) Fix running of schedules that were due while daemon was offline
 * (7c4b3b3) Ensure schedules not fired faster than they can finish with new scheduler
 * (3b984ef) Fix plugin importing code on python 2.6
 * (97df321) Adjust apscheduler logging to be quieter unless we are at debug level Improve apscheduler debug messages to display tasks being scheduled
 * (3bd865a) Fix running schedules with a single task listed in apscheduler
 * (d00941f) Adjust plugin loading so plugins can still be imported by regular means
 * (1a784a1) Implement (still a bit broken) adding of jobs to apscheduler
 * (6a60ec7) Remove unneeded bit from cron schedule schema
 * (dedcce3) Start work replacing our scheduler with apscheduler

=== 1.2.205 (2014.10.13) ===

 * (fc8a92d) Stop warning about invalid encoded filenames to avoid path.py bug refs #2704, #2719

=== 1.2.204 (2014.10.12) ===

 * (efaa2cd) Let beautifulsoup do text decoding instead of requests in html plugin

=== 1.2.203 (2014.10.11) ===

 * (734c11c) Add --wait option to 'daemon stop' command, to wait for all tasks to finish task queue now logs how many tasks have to finish before shutdown
 * (3165bb9) Improve output streaming from daemon to client process. refs #2721
 * (213c547) Switch task to use new capture_output context manager
 * (5acd94f) Make a context manager to capture all output to a stream.

=== 1.2.202 (2014.10.10) ===

 * (eabd5cf) Merge pull request #353 from Flexget/session_changes[[BR]]
   Cleanup usage of database sessions
 * (be24334) Alter how api_tvrage does subqueries and session management.
 * (603983f) Don't expire automatic created sessions for tvdb lookup_series
 * (2b4cdfe) Fix some imdb online tests
 * (c853584) Move commits in imdb_lookup to only store new data.
 * (4ed35cc) Remove unneeded db commits from api_tmdb. Improve documentation for api_tmdb behavior.
 * (049dcdd) Remove unneeded db commits from api_tvdb. Document api_tvdb lookup behavior.
 * (300abf5) Allow specifying arguments for Session when using with_session decorator
 * (82d5126) Remove unused import
 * (53c4cd6) Improve --debug-db-sessions output
 * (6f32ae8) Shorten transaction lengths in api_tvdb
 * (a2064c8) Update api_tmdb to minimize transaction open time
 * (2e7291c) Update imdb_lookup Session usage
 * (deb4d16) fix error in log message
 * (7821049) Simplify with_session definition
 * (99eb72b) SimpleTaskPersistence now  manages its own Session
 * (b06aa81) Make session context manager close session as well as transaction Prevents any instances from session opening a new transaction
 * (3a8b2b9) Stop using task.session in series plugin Split up long transaction into one per series
 * (4408cea) Stop storing Release db instances on entries
 * (bf999d1) Split imdb_lookup session usage into chunks to reduce open transaction time
 * (2420c8b) Add another missing dep to RTD requirements file
 * (79e2a17) Attempt to fix RTD builds
 * (a4c6c25) Handle ctrl-c when executing task on remote daemon. fix #2727
 * (4b2bcfa) Make sure flexget arguments are always used as unicode. fix #2726
 * (077a5b6) Switch some usages of Session to new context manager support
 * (ba5df2d) Make our db Session usable as a context manager

=== 1.2.201 (2014.10.07) ===

 * (0705fad) --debug-db-sessions now logs when a transaction will write to db

=== 1.2.200 (2014.10.07) ===

 * (572ebcb) Add --debug-db-sessions

=== 1.2.199 (2014.10.05) ===

 * (dac3c76) Don't let urlrewrite_redirect rewrite urls it can't handle
 * (6dffda8) Don't log url rewritten message if url hasn't changed. Fix urlrewriting passing task to urlrewriters

=== 1.2.198 (2014.10.05) ===

 * (73a8a70) Merge pull request #349 from skasi7/newpct[[BR]]
   Fixes newpct urlrewrite plugin
 * (3094113) Fixes newpct urlrewrite plugin
 * (6b662c0) Fix a bug with guessit series parser and manually specified name_regexps
 * (7cd21de) Add a warning when locale declares filesystem encoding as ascii. refs #2719, #2704, #2643, #2631, #2623
 * (43024b7) Improve warning about no filters in a task.
 * (7e9acd3) Fix bug in scan_imdb, fix #2722

=== 1.2.197 (2014.09.30) ===

 * (0e4a61b) Fix setting loglevel on python 2.6
 * (35cbed0) Try to eliminate cases wher logging doesn't start properly.
 * (ce8bbe4) Make manager init failure message print to stderr instead of stdout
 * (7f20215) Make console logging go to stdout instead of stderr
 * (6af769c) Error to console when failing to initialize manager, in case logging init failed

=== 1.2.196 (2014.09.30) ===

 * (84d8604) Ensure messages still logged to console when config file missing. Move sys.exit calls out of manager.py and into __init__.py
 * (5facb01) Merge pull request #348 from kabracity/patch-4[[BR]]
   update urwlrewrite_divxatope link handling
 * (0f65266) update urwlrewrite_divxatope link handling[[BR]]
   Update to reflect the new format for the links: "redirectlink" to identify the link and url without the "url" keyword. Backwards compatibility is maintained.
 * (a874f1d) Merge pull request #347 from TomSpyCell/develop[[BR]]
   Correct the entry field where size is saved in ftp_list
 * (07fdc2a) Correct the entry field where size is saved

=== 1.2.195 (2014.09.29) ===

 * (c85a201) Error properly when content_filename is used with transmission <2.8
 * (8a76f95) Merge pull request #345 from crawln45/develop[[BR]]
   Fix rendering content_filename in transmission plugin. Fix #2714
 * (1c30b3f) Fix rendering content_filename in transmission plugin. Fix #2714
 * (d37d4f6) Sceneaccess plugin: Add docstring for process_categories method, session persistence across searches
 * (46864aa) Torrentshack plugin code cleanup, session persistence between searches, fix for unhandled exception when there was no category configured

=== 1.2.194 (2014.09.28) ===

 * (8a49567) Merge pull request #344 from TomSpyCell/develop[[BR]]
   Several fixes to ftp_list plugin
 * (3423e51) Format urls when spaces are present in directories name
 * (09e044e) Workaround for the weird behaviour of nlst function when multiple subdirectories are used
 * (b701dba) Fix size computation for folders when MLST is not supoorted
 * (2ae5aa3) Add proper detection of folders
 * (7e47c1e) Revert "Make __version__ specification PEP8 compliant"[[BR]]
   This reverts commit f79a2adbdf11b86e5590b1d8c241e23ff9034d0c.
 * (795be78) Make session persistent between searches fix download URL construction error
 * (8863d55) PTN plugin: fix for data scraping; login session persistence between searches
 * (1150a96) Increase timeout when waiting for a database lock refs #2699, #2693, #2686, #2360, #2409

=== 1.2.193 (2014.09.28) ===

 * (58b4ce7) Merge pull request #342 from Flexget/per_plugin_sessions[[BR]]
   Per plugin DB sessions[[BR]]
   refs #2699, #2693, #2686, #2360, #2409
 * (6730bdc) Fix emit_series plugin for per plugin sessions
 * (8ed805b) Fix remember_rejected plugin for per plugin sessions
 * (f8beb52) Fix series plugin remembering accepted releases to database
 * (52dec74) Change task.session to be commited per plugin instead of per task
 * (f79a2ad) Make __version__ specification PEP8 compliant
 * (885a5e1) Cleanup redundant request headers in various plugins
 * (86a5b08) Default FlexGet useragent string.
 * (4972493) Move __version__ declaration before imports
 * (71dcf2e) Clean up metainfo_imdb_url plugin
 * (a57d9d0) Rip out old imdb_url hack
 * (207293a) PTN admins were suspicious of python-requests UA - let's identify ourselves properly.

=== 1.2.192 (2014.09.25) ===

 * (b2e5e23) check command now displays the path of config file it is checking
 * (47b6b36) Couple more cleanups to logging setup
 * (d133ac5) No need to set formatter on the log buffer handler
 * (ce8de01) Make sure all log messages emitted before logging start are stored
 * (576f4da) Move --cron back to execute option
 * (aecb857) Simplify logging setup, make messages before manager init more reliable

=== 1.2.191 (2014.09.23) ===

 * (47409aa) Let log_once be used when there is no active manager
 * (a2b18a4) Make sure internal parser warnings are not spammed to log
 * (fa1d4f8) Stop using Thread.join in scheduler
 * (41dc0df) Make sure scheduler can actually be shut down on python 2.6 fix #2705

=== 1.2.190 (2014.09.22) ===

 * (6ce0f85) Merge pull request #341 from vkosh/develop[[BR]]
   Fix log message args in exist_series
 * (f714a78) Fix log message args in exist_series

=== 1.2.189 (2014.09.20) ===

 * (5ee3cce) Merge pull request #326 from Flexget/guessit[[BR]]
   Add parsing plugin with choosable support for guessit
 * (756b078) Make parsing logging debug level
 * (aae6221) Clean up imports in parsing plugins
 * (8d37a15) Change status __str__
 * (7a96e2a) Make travis build less verbose and set guessit logging to info
 * (bccae21) Update guessit to 0.9.3
 * (01a79e2) Make more tests run against both guessit and internal parser
 * (a200942) Add config_functions and tasks_functions to FlexGetBase (testing)
 * (a71171a) Make parsing qualities same results with both parsers (with tests)
 * (bd7eefd) Make movie parser tests run against both guessit and internal parser
 * (cd284c6) Make sure default parser gets reset on task abort
 * (0846bcb) Make series parser tests run against both guessit and internal parser
 * (93abf7a) Make internal parser the default one
 * (7647a8c) Reformat logging message
 * (dce6c0d) Move docstring to good place
 * (1efeeba) Fix custom parser configuration
 * (6f5a25c) Make the parsers verbose
 * (d9cf77d) Merge branch 'develop' into guessit[[BR]]
   Conflicts:[[BR]]
   	pavement.py
 * (6a7d1dd) Use guessit >= 0.9.2
 * (fc17624) Make plugin_parsing a bit more dynamic
 * (d5f44a0) Better parsers validation
 * (7da4c8a) Move common parser code to plugin
 * (66cc91a) Move whole internal parser code to plugin
 * (bbf2df7) Move whole guessit code to plugin
 * (f9b734a) Move parsers and make default parser less hardcoded
 * (e69c5d6) Add plugins parsing (builtin), parser_guessit and parser_internal.
 * (ebfcde7) Merge branch 'develop' into guessit
 * (ce209b8) Fix allow_groups option
 * (89a20af) Update guessit to 0.9.1
 * (f8b7154) Merge branch 'develop' into guessit[[BR]]
   Conflicts:[[BR]]
   	flexget/plugins/filter/exists_movie.py[[BR]]
   	flexget/plugins/filter/exists_series.py[[BR]]
   	pavement.py
 * (3a9d923) Add guessit 0.9.0 dependency
 * (e6ca7c4) Fix date options with latest guessit
 * (b575159) Fix more unit tests for series parser
 * (3383f1f) Fix unit tests for series parser
 * (e5bee59) Change parser in seriesparser unit tests
 * (467e0de) Fix strict_name option for guessit parser
 * (6bc169b) Fix identifier_type option for guessit parser
 * (9644bdb) Add strict_name option to guessit_parser
 * (e9f6353) Remove useless and buggy parsed_name in guessit parser
 * (5a1f8ab) Add prefer_specials option to guessit parser
 * (085ead7) Fix HR resolution quality from guessit parser
 * (a645bd7) Add assume_special option to guessit parser
 * (eaa9a50) Add episode complete and pack validation
 * (7482040) Add allow_seasonless option to guessit parser
 * (fd6ab94) Add proper_count in guessit parser
 * (3aa6dad) Add allow_groups option to guessit parser
 * (19bd3fa) Add id_regexps support in guessit
 * (f9636c7) Use guessit version property for proper_count implementation
 * (8dd375b) Fix idiotic name support (with identified_by: ep)
 * (e8e09be) Add name cleanup and parsed compare support
 * (05bf924) Disable weak episodes transformer for name parsing
 * (a509160) Append year to name for series
 * (19441f0) Add episode_prefer_number option to guessit parser
 * (3a2ff25) Fix name normalization for series metainfo
 * (ffc122f) Add name validation to parser_common
 * (fb12b50) Move series metainfo plugin to new parser API
 * (1b56d5d) Move series filter plugin to new parser API
 * (174a9dd) Add new parsing API
 * (8fbc6e7) Remove SeriesParser from pogcal_acquired
 * (8ac57b2) Fix ParserInternal to work for movies
 * (f210372) Replace MovieParser by guessit
 * (b11bedc) Add guessit parser and get_parser method

=== 1.2.188 (2014.09.17) ===

 * (c054b5c) Merge pull request #339 from fcharlier/transmission_check_seed_limits[[BR]]
   Fix check_seed_limits for transmission plugin
 * (dc44213) Fix check_seed_limits for transmission plugin[[BR]]
   The comparison between torrent.seedRatioLimit and torrent.uploadRatio[[BR]]
   is inverted when checking against the torrent's own seed ratio limit.
 * (3d34bbf) Merge pull request #338 from crawln45/develop[[BR]]
   Fix RenderError Crash make_html
 * (c3f905a) Raise PluginError and log RenderError on make_html
 * (5679512) Added try block to make_html to catch RenderErrors
 * (beda57a) Don't let queue_movies fail items because they were already downloaded

=== 1.2.187 (2014.09.16) ===

 * (067d398) Don't let redirect urlrewriter go online in unit tests.
 * (deff8ff) Add a urlrewriter for urls that redirect. fix #2702
 * (139d0b0) Make sure download plugin replaces % escapes if making filename from url. fix #2683
 * (d940abd) Fix an emit_series debug message

=== 1.2.186 (2014.09.13) ===

 * (3447ceb) Don't join scheduler thread while waiting for it to exit.

=== 1.2.185 (2014.09.13) ===

 * (929048d) Make sure scheduler thread shuts down cleanly.

=== 1.2.184 (2014.09.12) ===

 * (8998028) Fix column type for storing schedule trigger ids.

=== 1.2.183 (2014.09.11) ===

 * (d6f322f) Revert "Try switching to NullPool to solve database locked issues. refs #2360, #2686"[[BR]]
   This reverts commit 756e05d4c1215a6e3785cbde2df8c64998732ae0.
 * (941f4a1) Catch timeouts in form login plugin. fix #2700
 * (756e05d) Try switching to NullPool to solve database locked issues. refs #2360, #2686
 * (4e4c333) Revert "Enable sqlite WAL to try to solve database locked problems." refs #2699 This reverts commit e2c118e32866605abb96bafd5dd7a5f0d1e53863.

=== 1.2.182 (2014.09.09) ===

 * (f4307c4) Fix plex plugin error introduced a few versions ago. refs #2697
 * (921c275) Relax pushover url validation so that jinja works properly.
 * (e714dd9) Clarify bootstrap.py requirements in readme a bit.
 * (a100877) Fix api_tvdb on python 2.6. fix #2695

=== 1.2.181 (2014.09.08) ===

 * (94266cb) Actually set different user agent in torrentz plugin
 * (2ed2d2c) Set different user agent in torrentz plugin. fix #2677, #2678 Improve error messages for torrentz search
 * (45f5cf5) Make errors from search plugins in discover log to error log
 * (2c86cd8) Disallow requests 2.4.0 in requirements. fixes #2690, #2684
 * (4eca7a3) Fix docstring indentation
 * (d2da5d3) Merge pull request #318 from blastcodem/patch-1[[BR]]
   url_rewrite_torrent411  -> Discover+RSS with login
 * (fb0159a) url_rewrite_torrent411  -> Discover+RSS with login[[BR]]
   fixed :)
 * (be20d97) url_rewrite_torrent411  -> Discover+RSS with login[[BR]]
   copy / paste junk
 * (fae6f7a) url_rewrite_torrent411  -> Discover+RSS with login[[BR]]
   Missing S
 * (469503e) url_rewrite_torrent411  -> Discover+RSS with login[[BR]]
   First Fixes.. still need to fix re.compile.
 * (7512d87) url_rewrite_torrent411  -> Discover+RSS with login[[BR]]
   Sorry for double post.. I had to remove a line.. so here it is.. I had time to test it a bit and seems to work nicely![[BR]]
   It will login only once a day. It will store the login info to the database for 1day[[BR]]
   it will search in the html.[[BR]]
   download files with login info..[[BR]]
   all categories, sub-catogories are supported.[[BR]]
   the rss is supported with login info.. works nicely.[[BR]]
   formated with pep8 -> only some lines are too longs.[[BR]]
   Thks!

=== 1.2.180 (2014.09.08) ===

 * (147327f) Fix debugging with pydevd (Eclipse, Intellij and PyCharm at least)
 * (933eb87) Fix root level email configuration
 * (09055c0) Fix torrent_alive crash when not configured in dict form
 * (3f941e0) Fix email plugin schema declaration

=== 1.2.179 (2014.09.07) ===

 * (86502f8) Cleanups for pushbullet plugin
 * (00fba96) Fix pushbullet default device value. fix #2691
 * (c3c4345) Merge pull request #328 from Flexget/sqlite_wal[[BR]]
   Enable sqlite WAL to try to solve database locked problems.
 * (e2c118e) Enable sqlite WAL to try to solve database locked problems. refs #2409, #2360, #2686
 * (581da08) Add httmock as a testing dep Add an offline test for trakt_list

=== 1.2.178 (2014.09.07) ===

 * (817ee34) Merge pull request #332 from crawln45/plugin_repair[[BR]]
   Plugin Fixes
 * (e74125d) Plugin Fixes

=== 1.2.177 (2014.09.07) ^[wiki:UpgradeActions#a2014.9.61.2.177 upgrade actions]^ ===

 * (7c4de4c) Merge pull request #331 from crawln45/develop[[BR]]
   Fix emit_movie_queue prepare_config
 * (cd7bd89) Fix emit_movie_queue prepare_config
 * (8531fa4) Merge pull request #330 from crawln45/develop[[BR]]
   Fix plugins by reverting prepare_config
 * (77f6593) Fix plugins by reverting prepare_config
 * (d739756) Add namespace declaration in test/rss.xml
 * (63eba70) Merge pull request #329 from crawln45/develop[[BR]]
   Plugin schema update 1
 * (d04316a) Plugin fixup
 * (5121886) Update 2 Plugin Schema
 * (532e372) Plugin Schema update 1
 * (f0fe9c4) Catch TMDBErrors on tmdb lookup to prevent aborts. fix #2689

=== 1.2.176 (2014.09.05) ===

 * (dfa991c) Merge pull request #327 from crawln45/develop[[BR]]
   Converting plugins to schema type validator
 * (f359206) Converting plugins to schema type validator
 * (8d6aca2) Make sure lockfile errors happen before daemonizing. refs #2688

=== 1.2.175 (2014.09.04) ===

 * (72c49eb) Attempt to recover if scheduler thread crashes. refs #2686
 * (bf7f39b) custom fields are sanitized properly for feedparser in rss plugin

=== 1.2.174 (2014.09.04) ===

 * (f7953fd) Merge pull request #325 from crawln45/develop[[BR]]
   Add instructions for bootstrap.py in docs
 * (3295691) Fixed rst markup to show correctly
 * (75dec22) Adding more bootstrap.py instructions
 * (87a91a0) Added instruction to bootstrap.py in docs
 * (ee2a1e4) Allow 4 digit seasons in config for 'begin' setting in series. refs #2197
 * (eb6573f) pep8ify all imports in core files
 * (4389351) Remove unused import from scheduler

=== 1.2.173 (2014.09.02) ===

 * (5d59b7c) Merge pull request #322 from vbabiy/custom-virtualenv-readme[[BR]]
   Updated readme, to explain how to get flexget in a custom virtualenv.
 * (088cb00) Update quoting.
 * (ebb79a2) Updated readme, to explain how to get flexget in a custom virtualenv without using bootstrap.
 * (586b4fb) Merge pull request #323 from vbabiy/paver-upgrade[[BR]]
   Upgrader paver and virtualenv version for bootstrap.py
 * (b6854cc) Upgrader paver to 1.2.3
 * (3bfec75) Merge pull request #324 from X-dark/develop[[BR]]
   [FIX] netrc is a valid key for plugin transmission
 * (4936266) [FIX] netrc is a valid key for plugin transmission[[BR]]
   This fix the netrc key not being recognized after the ec1c113d commit.

=== 1.2.172 (2014.08.30) ===

 * (52383cd) Make sure any exceptions in task_queue thread are logged
 * (fcef4ff) Make sure any exceptions in scheduler thread are logged
 * (90c97e6) Make scheduler restartability less hacky
 * (56a9acf) Remove unused imports from download plugin
 * (2abc5eb) Fall back to entry title when jinja render fails in make_rss
 * (9087f5a) make_rss handles rendering errors for the title properly
 * (be60dfb) Merge pull request #317 from thomasleveil/torrent-cache-zoink.it[[BR]]
   [magnet] add zoink.it to list of torrent caches
 * (a683140) [magnet] add zoink.it to list of torrent caches[[BR]]
   See gh-316
 * (f35bfda) Merge pull request #315 from thomasleveil/download-better-err-msg[[BR]]
   [download] improve error message
 * (7d1ab08) [download] improve error message[[BR]]
   while give[[BR]]
   ```[[BR]]
   2014-08-30 12:24 INFO     download      bt-chat.com     Downloading: Bering.Sea.Gold.Under.the.Ice.S03E02.480p.HDTV.x264-mSD[[BR]]
   2014-08-30 12:24 WARNING  download      bt-chat.com     RequestException [Errno 1] _ssl.c:504: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed, while downloading https://torcache.net/torrent/C28D6A86369E095B7D3509D4C86C0BC09286995B.torrent[[BR]]
   ```[[BR]]
    instead of[[BR]]
    ```[[BR]]
    2014-08-30 12:30 INFO     download      bt-chat.com     Downloading: Bering.Sea.Gold.Under.the.Ice.S03E02.480p.HDTV.x264-mSD[[BR]]
   2014-08-30 12:30 WARNING  download      bt-chat.com     RequestException [Errno 1] _ssl.c:504: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed[[BR]]
   ```

=== 1.2.171 (2014.08.30) ===

 * (bcd2552) torrentshack TLD change

=== 1.2.170 (2014.08.28) ^[wiki:UpgradeActions#a2014.8.281.2.170 upgrade actions]^ ===

 * (9b06295) Make webui launchable again. (though still not work properly)
 * (0433837) Fix unicode handling in listdir.
 * (5e67450) Let requests handle url encoding in download plugin. refs #2676 Remove some urllib code from download plugin.
 * (1806694) Fix unicode handling in exists_movie.
 * (7584c31) Fix unicode handling in exists.
 * (8b9cdef) Fix unicode handling in exists_series. Fix #1462
 * (6adc85a) Oops, remove some leftover code.
 * (5db72e4) Fix find plugin when some filenames aren't decodable.
 * (83cf489) Switch to path.py for path handling in find plugin

=== 1.2.169 (2014.08.28) ===

 * (1ec1578) Make sure scheduler error about interval length isn't spammed
 * (5256c91) Switch the hashing for scheduler triggers. All schedules will fire on the first run after this upgrade.
 * (005eda0) Ensure tasks are marked as finished no matter what refs #2672

=== 1.2.168 (2014.08.26) ===

 * (c67bc46) Make sure we close our database sessions in a couple places refs #2672
 * (429f5fb) Remove some unused imports

=== 1.2.167 (2014.08.26) ===

 * (0685ed9) Some cleanups and error message improvements to trakt plugin

=== 1.2.166 (2014.08.24) ===

 * (a1382a4) Turn off scheduler when no schedules defined.
 * (2018736) Clean up scheduler event hooks Fix ability to restart scheduler
 * (3146c8d) Merge branch 'daemon_plugins' into develop
 * (bb4e2bd) Make scheduler loadable/unloadable on config change
 * (4b76484) Change singleton pattern a bit, split it into tools
 * (a353cfa) Fix warning about __new__ not taking arguments
 * (3c04dfc) Change scheduler into a plugin.
 * (5ba2f3b) Make sure error messages about --tasks are shown to ipc client fix #2667

=== 1.2.165 (2014.08.21) ===

 * (5567f06) Reduced rapidpush log level.

=== 1.2.164 (2014.08.19) ===

 * (1d98604) Merge pull request #311 from nielsenj/transbt[[BR]]
   Many fixes and feature additions
 * (6c3958d) Updates torrent start to do fewer queries.
 * (ec1c113) Many fixes and feature additions
 * (da95864) Use SIZE command to retrieve content-size when MLST is not supported
 * (0780d6e) Add content-size to ftp_list produced entries
 * (b92d36a) Add files-only and recursive option to ftp_list
 * (0662ab1) Add proper encoding support to ftp_list

=== 1.2.163 (2014.08.17) ===

 * (6918bc5) Missing title in exception handler.

=== 1.2.162 (2014.08.15) ===

 * (4290f32) Fix for unlikely authentication error.
 * (28c4d4b) Merge pull request #309 from Flexget/manager_refactor2[[BR]]
   Move task execution out of scheduler
 * (9a93e58) Move scheduler starting back to webui code.
 * (da71d58) Fix ipc checking for tasks already in the queue.
 * (5c1df90) Move BufferQueue to tools
 * (b7f63ab) Move task execution to own thread to handle signals/ctrl-c gracefully
 * (fbd9fe6) Fix some references to removed scheduler.execute
 * (d842780) Refactor task queue and execution to be in manager Strip down scheduler to just queue executions
 * (383f2e9) Move Tee class to utils
 * (98bd70b) Remove `Job` class, merge the important bits of it straight to `Task`
 * (b7692d5) Actually fix imdb_list with movies with no date.
 * (f448440) Merge pull request #249 from tarzasai/config_secrets[[BR]]
   Configuration secrets
 * (6f7fc3f) manager.py fixed
 * (add52f0) Plugin mode
 * (3b2e5c8) Configuration secrets[[BR]]
   As discussed in http://flexget.com/ticket/2523

=== 1.2.161 (2014.08.14) ===

 * (58262a3) Merge pull request #310 from dj-nitehawk/develop[[BR]]
   Make imdb_list not assume the number of movies on a page is 250
 * (e61d3c0) make imdb_list not assume the number of movies on a page is 250[[BR]]
   issue discussed here:[[BR]]
   - http://flexget.com/ticket/2663#comment:8

=== 1.2.160 (2014.08.13) ===

 * (0741201) Make sure loglevels don't get touched when not needed. refs #2660

=== 1.2.159 (2014.08.12) ===

 * (02751fa) Switch imdb_list to html5lib parsing and hack it to work
 * (63951b6) Prevent imdb_list from crashing on movies with no year
 * (6e57a24) Merge pull request #307 from Pretagonist/patch-1[[BR]]
   Added keep_extension option, default true
 * (660fadf) Added keep_extension option, default true[[BR]]
   Sometimes it's desirable to be able to change a files extension with move plugin

=== 1.2.158 (2014.08.12) ===

 * (2423f7a) Merge pull request #306 from dj-nitehawk/develop[[BR]]
   imdb_list import from HTML  page instead RSS feed
 * (f221aa3) new and improved imdb_list plugin completed
 * (147912f) imdb_list improvements to include imdb_year
 * (8d5c038) imdb_list finalized
 * (539ccee) imdb_list with multipage html parsing super powers[[BR]]
   this will parse all pages of a given imdb list without the 250 entry[[BR]]
   limit of rss.
 * (b79ef50) html parsing for imdb_list import with multipage support[[BR]]
   html parsing with multipage support for imdb lists. no more 250 entries[[BR]]
   limit of RSS.
 * (821176f) auto fallback to html parsing if rss failed for imdb_list import[[BR]]
   when the imdb watchlist page returns html (as at 11/8/2014) instead of a[[BR]]
   valid rss feed, imdb_list will now automatically parse that html for[[BR]]
   entries. will go back to rss when the feed corrects itself without any[[BR]]
   need for flexget config changes.
 * (0e9927c) imdb_list import from HTML  page instead RSS feed[[BR]]
   imdb watchlist rss feed is broken right now and can't be sure when and[[BR]]
   if it will be back up. this will now parse the html page for movies and[[BR]]
   create entries.
 * (34e861f) Raise loglevel for message about changing loglevel. Try something else to troubleshoot ref #2660
 * (da05d18) Merge pull request #304 from nanulf/develop[[BR]]
   Add content_filename to transmission plugin.
 * (c600ec0) Add content_filename to transmission plugin.[[BR]]
   Add content_filename to transmission plugin, mimics the behavior of deluge plugin.[[BR]]
   Tested with:[[BR]]
   -Transmission 2.84[[BR]]
   -TransmissionRPC 0.11

=== 1.2.157 (2014.08.10) ===

 * (93f4d9b) Fix for kat searches sometimes failing[[BR]]
   For example when search query contains `-`, Kat strips it and redirects to a new search URL with HTTP return code 301.[[BR]]
   This is probably better way to fix than hardcoding any acceptable characters.

=== 1.2.156 (2014.08.09) ===

 * (6cd162e) Add a log message when changing log verbosity. refs #2660

=== 1.2.155 (2014.08.04) ===

 * (0bcc083) Fix some issues with nyaa search

=== 1.2.154 (2014.08.04) ===

 * (6129f77) Merge pull request #298 from mirilex/patch-2[[BR]]
   Update emit_series.py
 * (4242255) Update emit_series.py[[BR]]
   Sequences are documented with leading zeros, but emit_series does not emit any of those.

=== 1.2.153 (2014.08.01) ===

 * (4297dd9) Merge commit '4ee26f6701a422f974ba1fe85f3e4015de17474f'
 * (4ee26f6) Merge pull request #300 from tarzasai/transmission_activitydate[[BR]]
   Int field used instead of datetime. fix #2658
 * (1997be7) Int field used instead of datetime

=== 1.2.152 (2014.07.31) ===

 * (81deb18) Merge commit 'b779ed6c9b19decfb215e8162923d72c31b5cbbb'
 * (b779ed6) Log error when bad data from tvdb. refs #2657
 * (3a67f01) Better error handling for bad tvdb data. fix #2657
 * (6fbae76) Fix make_rss pubDate values. fix #2656

=== 1.2.151 (2014.07.28) ===

 * (37cc773) Merge commit '9651543d25ace9330a3c2ae470ce91f327f8076d'
 * (9651543) Add support for text dates to series plugin. e.g. 1st may 2014
 * (0b90465) Fix exec auto_escape option. fix #2529
 * (fdf02dc) Prevent crash in imdb_list if no status from feedparser. fix #2621
 * (7281c37) pep8
 * (8b3eb9c) --stop-waiting normalizes series name. fix #2624

=== 1.2.150 (2014.07.27) ===

 * (152ca29) Merge commit '774dd237b4524c5a0f8f7e47273396287b72734c'
 * (774dd23) Merge pull request #296 from nielsenj/trmajor[[BR]]
   Added support for only downloading main file and optional subs
 * (540c921) Fixed a few PEP problems and added other subtitles.
 * (bf2b840) Only modify selected files if we find a main file. If addpaused is not defined use client defaults
 * (8109b76) Fixes camelCase
 * (aa183be) Added support for only downloading main file and optional subs

=== 1.2.149 (2014.07.26) ===

 * (eca46e4) Merge commit '8d8fd488fd4c129926c220f77de2cb60c2a8cbf0'
 * (8d8fd48) Remove need for separate --loglevel for execute
 * (efbe05d) Allow loglevel set per execution

=== 1.2.148 (2014.07.23) ===

 * (0b692ed) Merge commit 'd1d33525b23c38701bb70dbc20b359306206cd9f'
 * (d1d3352) Better tvrage error handling. refs #2648
 * (0a730da) Fix est_released crash with invalid movie_year. fix #2637

=== 1.2.147 (2014.07.20) ===

 * (15c9980) Merge commit 'd53e59b75e81abff0f794b723e1c9df76f6d8f39'
 * (d53e59b) Merge pull request #297 from mirilex/patch-1[[BR]]
   Updates urlrewrite_torrentz
 * (913846e) Update urlrewrite_torrentz.py[[BR]]
   search tries to get the wrong field "search_string" instead of "search_strings"

=== 1.2.146 (2014.07.15) ===

 * (0e3fd19) Merge commit '21489ba3ead1864dc65d05026b8810ec210b0e13'
 * (21489ba) Merge pull request #292 from albel727/develop[[BR]]
   Prevent some episode numbers from being treated as quality
 * (da20558) Prevent some episode numbers from being treated as quality

=== 1.2.145 (2014.07.14) ===

 * (4426b89) Merge commit '7a51a5593aff01c47b7436cb50f3ee9d2a5d0b46'
 * (7a51a55) Merge pull request #294 from kabracity/patch-3[[BR]]
   urlrewrite_newpct.py torrent ID update
 * (5d84350) urlrewrite_newpct.py torrent ID update[[BR]]
   Added support for new torrent ID format detection ('id'        : '<id>' instead of torrentID: '<id>'). Backwards compatibility maintained for links using the old format.
 * (8cb82b6) Merge pull request #293 from immenz/develop[[BR]]
   Fixed folder setting with PyLoad
 * (dd888fc) update pyload.py folder looks if SET PATH is given in Entry and chose it over given folder config. This enables setting folder for each entry separately. (maybe reverse: folder setting over path setting)
 * (049f537) update pyload.py Added possibility to change pyload folder dynamicly with jinja support
 * (c655c55) Update pyload.py This fixes #2451 http://flexget.com/ticket/2451 (Pyload raises Internal API Error when adding Links with folder set)

=== 1.2.144 (2014.07.13) ===

 * (a4e7a88) Merge pull request #277 from kabracity/patch-1[[BR]]
   Update to reflect inclusion of newpct1 domain
 * (04b80e0) Update to reflect inclusion of newpct1 domain[[BR]]
   - Detect newpct1 url as re-writable.[[BR]]
   - Switched to regular expressions to simplify.[[BR]]
   - Minor logic changes to save code.

=== 1.2.143 (2014.07.07) ===

 * (1bc8ac3) Merge pull request #290 from wakemaster39/fix_clean_transmission[[BR]]
   Fixed clean transmission plugin torrent removal logic.
 * (fd8be4f) Update plugin_transmission.py[[BR]]
   Fixed a missing bracket causing the internal limits always to allow torrent removal.
 * (39f47e5) Merge pull request #288 from exscriber/develop[[BR]]
   plex plugin additions
 * (a9ce52c) Update plex.py[[BR]]
   change 'strip_non_alpha' option to except apostrophes (')
 * (3fbc9f1) Revert da1156e..54d4e5b[[BR]]
   This rolls back to commit da1156e4ce52b6047915a24a5743cbcc6d44d54c.
 * (54d4e5b) Update plex.py[[BR]]
   can be like this, but python regex smart enough to divide range '-' char from literal '-' without escape.
 * (da1156e) Update plex.py
 * (87d7757) Update plex.py
 * (ba81c36) plex plugin additions[[BR]]
   new option for non-latin letters in title[[BR]]
   new generalized option for stripping all parens

=== 1.2.142 (2014.06.27) ===

 * (d0922ec) Merge commit 'b8c2f083132c20587708af291a21ddfb2935693b'
 * (b8c2f08) To not append the extension to directory name[[BR]]
   About http://flexget.com/ticket/2633

=== 1.2.141 (2014.06.24) ===

 * (645dab3) Merge commit 'b7878a4a9f6d68bb169c355686b02a6079d128f2'
 * (b7878a4) Merge pull request #260 from tarzasai/file_operations[[BR]]
   Added plugins to copy and delete files
 * (0507ba1) Missing spaces
 * (db2f4db) Changes in error handling
 * (f3b8e3b) Just a missing pathscrub
 * (d93e585) Added plugins to copy and delete files[[BR]]
   "move" has been updated too.

=== 1.2.140 (2014.06.23) ===

 * (b31be56) Merge commit 'e985871f6f97bbc2bb3b3e990c8bad7e753073d0'
 * (e985871) Merge pull request #258 from tarzasai/fix_exists[[BR]]
   A more reliable exists plugin
 * (503fef3) A more reliable exists plugin[[BR]]
   The plugin currently compares entries and files/folders by title, but[[BR]]
   the entry title for a file usually doesn't include its extension, so is[[BR]]
   pratically impossible rely on exists when task input is provided by[[BR]]
   find, listdir and several other plugins.
 * (0ca12de) Merge pull request #250 from explo910/patch-1[[BR]]
   pyload plugin updates, fixes #2527
 * (c728eff) Update pyload.py[[BR]]
   fixed http://flexget.com/ticket/2527
 * (3845c05) Merge pull request #280 from wicastchen/patch-2[[BR]]
   fix a bug with 'file_exts' option in aria2 plugin
 * (355b184) fix a bug with 'file_exts' option[[BR]]
   torrent file won't be downloaded in default,because of a 'not'.
 * (c7a0f08) Merge pull request #285 from kabracity/patch-2[[BR]]
   update urlrewrite_newpct.py url
 * (9606bf4) update urlrewrite_newpct.py url[[BR]]
   Updated return link to reflect the new www.newpct1.com links. (old url was working but wrongly matching the tv shows)

=== 1.2.139 (2014.06.23) ===

 * (dda53b4) Merge pull request #279 from Shorny/master[[BR]]
   FIX urlrewrite_torrentleech bug (NONE Type contents)
 * (43db292) Get back function validate_config() webui need
 * (1e59639b) FIX urlrewrite_torrentleech bug NONType contents[[BR]]
   Add size Terabyte to size parser

=== 1.2.138 (2014.06.18) ===

 * (e14460e) Merge pull request #283 from BrainDamage/transmission_seed[[BR]]
   Improvements to transmission plugin
 * (85b042c) forgot to rename entry in option validator in transmission plugin
 * (bb6238e) renamed transmission_seeds_limits config key to transmission_seed_limits, corrected pathc to comply pep8
 * (7ab3099) Edited the transmission plugin so that it can handle transmission internal limits for seed ratio and idle time, they are applied by default on the input plugin when onlycomplete is true, and optional in transmission_clean with transmission_seeds_limits

=== 1.2.137 (2014.06.07) ===

 * (50f75bd) Updated dnspython module name

=== 1.2.136 (2014.05.27) ===

 * (d4d87ed) Strip out categories from titles in imdb_list plugin. refs #2608
 * (2444a03) Escape some characters in series regexes, refs #2608
 * (b599986) Add category options to ptn plugin

=== 1.2.135 (2014.05.27) ===

 * (c1f0663) Remove reliance on manual cookie entry for ptn plugin.
 * (8858a88) Fix issue with regexp plugin within if plugin.

=== 1.2.134 (2014.05.25) ===

 * (99b42bd) Fix PtN downloading.
 * (8ba799b) Add a search plugin for PtN

=== 1.2.133 (2014.05.24) ===

 * (364a646) Don't mark btn as debug plugin
 * (7b6cf14) Fix imdb tests
 * (0f5e068) Merge pull request #259 from atabel/develop[[BR]]
   Added urlrewrite for www.divxatope.com
 * (8bb64fa) use flexget.utils.requests instead of urlopener
 * (2a6d6d2) Added urlrewrite for www.divxatope.com

=== 1.2.132 (2014.05.23) ===

 * (9b43631) Don't validate path exists for transmission plugin. fix #2572
 * (2c3a4da) Merge remote-tracking branch 'origin/deluge_schema' into develop
 * (87d8a19) Update deluge plugin to new config schema
 * (8932a04) Fix crash with est_released_series. fix #2522

=== 1.2.131 (2014.05.21) ===

 * (7cd9072) Fix issue with subliminal errors without messages

=== 1.2.130 (2014.05.21) ===

 * (d7398e4) Merge pull request #255 from tarzasai/content_bigfile[[BR]]
   Filter torrents without a main file
 * (a93c496) Filter torrents without a main file[[BR]]
   An option in content_filter to reject multifile torrents without a file[[BR]]
   at least 90% of total size.
 * (a0b13a8) Merge pull request #262 from tarzasai/trakt_collected_lookup[[BR]]
   A metainfo plugin for owned episodes
 * (464d1d2) A metainfo plugin for owned episodes[[BR]]
   Sets the trakt_in_collection flag for episodes found in the user library[[BR]]
   (i.e. previously sent with trakt_add).
 * (7a6584a) Don't break exec plugin on python 2.6
 * (56e416a) Make sure non-ascii output from commands does not crash exec plugin. fix #2599, #2366, #2203
 * (b0f9675) Switch torrentz search to use requests refs #2575
 * (49b41e5) Fix a crash in set_series_begin output plugin.

=== 1.2.129 (2014.05.20) ===

 * (1801d04) Fix log message when uTorrent path not authorized
 * (689519e) Fix new_eps_after series helper. (fix episode behind notification in cli series list)

=== 1.2.128 (2014.05.19) ^[wiki:UpgradeActions#a2014.5.191.2.128 upgrade actions]^ ===

 * (3c0d13a) Handle corrupted lock files better fix #2566
 * (d889cc6) Make sure regexp_parse isn't sharing cache with text plugin
 * (36698e3) regexp_parse now assumes local files are encoded in utf-8 refs #2584
 * (701b428) Revert "Revert "Merge pull request #171 from scottwallacesh/master""[[BR]]
   This reverts commit 5c8d8170403b269e3bba525e31f3327714e55232.[[BR]]
   Clean up imdb_list now that logging in is dead.
 * (d04ce8e) Fix bug with numeric task names and --tasks. fix #2593
 * (99315e4) Monkey patch tvrage library to work around url change. fixes #2602, #2601, #2596, #2597

=== 1.2.127 (2014.05.02) ===

 * (9e0f699) Added dnspython as plugin requirement[[BR]]
   Without a dns module most systems will loop for minutes (or forever), trying to connect.

=== 1.2.126 (2014.04.16) ===

 * (22b78cf) Added virtualenv activation example in the documentation.
 * (e088354) Merge pull request #257 from gandazgul/patch-2[[BR]]
   Added a new option "delete_files: Boolean" to clean_transmission
 * (2ca2641) Added a new option "delete_files: Boolean"[[BR]]
   Added an option to clean_transmission "delete_files", by default is false. If set to yes it will remove the downloaded files as when removing torrents from transmission. Useful when files have already been copied and were just left behind to finish a seeding goal.

=== 1.2.125 (2014.04.04) ===

 * (98615b6) Fix deprecation warning
 * (6d4e40e) Merge pull request #251 from tarzasai/tvdb_submit[[BR]]
   Manage TVDB favorites
 * (ea212d8) Manage TVDB favorites[[BR]]
   2 plugins to add and remove series from user's tvdb favorites.
 * (7e63ce3) Merge pull request #253 from dj-nitehawk/develop[[BR]]
   fix duplicate pushes with pushbullet
 * (4fb8fb1) minor update to pushbullet plugin
 * (a623054) properly fixed the multi device push duplication[[BR]]
   by not specifying any device idens, the push will be sent to all devices[[BR]]
   of the user. or the user can specify only the devices they want to[[BR]]
   receive pushes on.
 * (28512e9) fix for flexget sending duplicate pushes with pushbullet[[BR]]
   issue described here:[[BR]]
   http://discuss.flexget.com/t/pushbullet-plugin-sending-2-pushes-per-match/81

=== 1.2.124 (2014.04.02) ===

 * (961b7aa) Fix deprecation warning

=== 1.2.123 (2014.03.30) ===

 * (4654abb) Merge branch 'whatcd_plugin' into develop
 * (1eefbbc) Fixed schema formatting
 * (a4a95aa) Enable specifying year as a non-string

=== 1.2.122 (2014.03.29) ===

 * (d4ff020) Merge pull request #242 from Flexget/whatcd_plugin[[BR]]
   What.cd input plugin
 * (b33d9a0) Reduce line-lengths to 120 or less
 * (40d4820) Fix all PEP 8 errors except line length
 * (5485c48) Improve invalid login detection
 * (0ea1476) Made the User-Agent configurable
 * (6baf196) Added some basic tests
 * (f8e893a) Fix taglist
 * (be49cf1) Added documentation
 * (9781132) Change case of input parameters[[BR]]
   This change can be stripped out if it would be better to leave them in[[BR]]
   title case instead of lowercase (except acronyms and brnd names).
 * (b936386) Fix case issue in params
 * (4d1c9fa) Improve isinstance logic
 * (c28fbc1) Fix boolean behaviour
 * (0577779) Added support for the 'searchstr' parameter
 * (bf6d1e5) Fixed boolean options not being correctly used
 * (fadf15e) Fix paging logic
 * (7b6ecd4) Add rate limiting
 * (73f3906) Made dictionary comprehensions Python 2.6 compatible
 * (2245aac) Fix schema
 * (3250f9b) Add parsing of response
 * (abace27) Change API parameters without a mapping to a list instead of a dict
 * (73c0458) Changed config validation to use the schema property instead of the validator
 * (046e4f0) Use PluginError instead of returning None
 * (e913c80) First commit of a what.cd input plugin.[[BR]]
   Nothing works except logging in and performing a search

=== 1.2.121 (2014.03.27) ===

 * (44f46ce) Merge pull request #245 from bepix/develop[[BR]]
   Adding support for Jinja2 enabled specification of package names
 * (94b5eb4) Added 'package' property with Jinja2 support.[[BR]]
   The added property allows for setting indidivual package names.[[BR]]
   Usage:[[BR]]
       pyload:[[BR]]
         api: xxx[[BR]]
         username: xxx[[BR]]
         password: xxx[[BR]]
         parse_url: yes[[BR]]
         queue: no[[BR]]
         hoster:[[BR]]
           - xxx[[BR]]
         multiple_hoster: no[[BR]]
         package: 'Series - {{series_name}} - {{series_id}}'
 * (5c5fc35) Adding support for entry specific package names[[BR]]
   This allows for a Jinja2 enabled specification of package names.[[BR]]
   Usage:[[BR]]
       pyload:[[BR]]
         api: xxx[[BR]]
         username: xxx[[BR]]
         password: xxx[[BR]]
         parse_url: yes[[BR]]
         queue: no[[BR]]
         hoster:[[BR]]
           - xxx[[BR]]
         multiple_hoster: no[[BR]]
       set:[[BR]]
         pyload_package: 'Series - {{series_name}} - {{series_id}}'

=== 1.2.120 (2014.03.26) ===

 * (5b546d3) Support for new sceneaccess section (nonscene releases)

=== 1.2.119 (2014.03.22) ===

 * (144e114) A bit faster

=== 1.2.118 (2014.03.20) ===

 * (df13c4c) Fix some false positives with series pack detection. fix #2521

=== 1.2.117 (2014.03.20) ^[wiki:UpgradeActions#a2014.3.201.2.117 upgrade actions]^ ===

 * (8035038) Rename episode advancement to episode tracking. - rename --disable-advancement to --disable-tracking for CLI - remove `allow_backfill: yes` option in favor of 'tracking: backfill'

=== 1.2.116 (2014.03.20) ===

 * (538c605) Fix login issue for sceneaccess[[BR]]
   Caused when user-agent header is absent

=== 1.2.115 (2014.03.18) ===

 * (f9bdc0b) Work on json api a bit

=== 1.2.114 (2014.03.17) ===

 * (2702066) Merge pull request #247 from thisirs/tvrage[[BR]]
   Force tvrage lookups when no upcoming shows
 * (6642706) Force tvrage lookups when no upcoming shows

=== 1.2.113 (2014.03.16) ===

 * (7c55066) Series parser will not override passed in quality. Fixes assume_quality plugin with series plugin
 * (82e210d) Merge pull request #246 from thisirs/eztv[[BR]]
   Use requests from task in eztv rewriter
 * (2a49cdc) Use requests from task
 * (73307b8) Merge pull request #238 from thisirs/short[[BR]]
   Add url rewriter for shortened urls
 * (6e02077) Add url rewriter for shortened urls

=== 1.2.112 (2014.03.15) ===

 * (e1667ec) Prevent ImportError from twitterfeed plugin
 * (a04ba3f) Order ep shows properly in cli series util. fix #2512

=== 1.2.111 (2014.03.14) ===

 * (9d95fc3) Merge pull request #241 from blastcodem/patch-2[[BR]]
   Update urlrewrite_iptorrents.py
 * (ebd6022) Update urlrewrite_iptorrents.py[[BR]]
   nevermind[[BR]]
   worked[[BR]]
   No results from iptorrents: Page title unexpected: Could it be the login page?...
 * (c88003d) Update urlrewrite_iptorrents.py[[BR]]
   That did the trick for me. Is it how I should raise error? page title is different from logged in/not logged in
 * (384e5f9) Merge pull request #243 from thisirs/eztv[[BR]]
   Use find_all instead of just find to set attr urls
 * (61db65e) Add url rewriter for eztv
 * (839c19c) Merge pull request #235 from thisirs/develop[[BR]]
   Add twitter feed plugin
 * (274390a) Add twitterfeed plugin[[BR]]
   Input plugin that tracks a twitter account for links

=== 1.2.110 (2014.03.10) ===

 * (0634fe4) Add sceneaccess and torrentshack search plugins.

=== 1.2.109 (2014.03.09) ===

 * (8c97bd9) Merge pull request #230 from JimShoe/master[[BR]]
   Pushbullet send notifications to multiple devices
 * (6015304) code formatting
 * (9629f3b) Merge branch 'develop' of https://github.com/Flexget/Flexget into develop
 * (70f21ec) pushbullet can now send notifications to multiple devices

=== 1.2.108 (2014.03.08) ===

 * (31d2b56) Tweaks to iptorrents search fix #2495 - search uses + instead of %20 for spaces - prevent crash

=== 1.2.107 (2014.03.07) ===

 * (48a6c99) Fix possible case of emit_series doing multiple seasons without backfill
 * (4ab2db0) Show series begin with `series show` CLI command

=== 1.2.106 (2014.03.07) ===

 * (5d7de5e) Prevent crash of emit_series when used in discover plugin
 * (4cbb8b3) Remove wheel universal flag, add license-file to setup.cfg

=== 1.2.105 (2014.03.06) ===

 * (0b36d3b) Merge pull request #239 from blastcodem/patch-1[[BR]]
   Add Iptorrents search plugin and urlrewriter
 * (55210f8) Update urlrewrite_iptorrents.py[[BR]]
   Some line size, the rest is too tricky to change tell me what you think thanks![[BR]]
   Style pep8 is done
 * (ba33b32) Update urlrewrite_iptorrents.py[[BR]]
   Style Check. Still need to clean long lines
 * (2051906) Update urlrewrite_iptorrents.py[[BR]]
   removed cookiejar stuff
 * (e92a9ac) IpTorrent url_rewrite for discover plugin[[BR]]
   Hi! Here is my first of any open source project ever :). I just needed a private torrent site other than torrentleech because lately they lost half of their database. So I just took the torrentleech plugin and adapt it to iptorrents. Work super good for me! Just need rss key, uid, and pass from cookies and rss page. Hope you like it, i'm not a super scripter but It work good for me. [[BR]]
   Thanks!
 * (609b04d) Merge pull request #233 from nlf/backfill[[BR]]
   Add series backfill support:[[BR]]
   - Add allow_backfill option for series plugin[[BR]]
   - Add backfill option for emit_series plugin
 * (9390e81) dont keep trying to backfill on reruns that are season advancements
 * (95256b3) test season advancement
 * (0870c92) make sure were on latest season before trying to advance to next season
 * (11cb5ad) check for latest_season before try_next_season so we dont do too much searching in backfill mode
 * (5b42597) more emit_series tests
 * (eb8bb1d) more tests
 * (61cc2e8) clean up discover tests a tad
 * (419d94d) add more emit_series tests
 * (8236600) move backfill tests to their own method
 * (4f1cd64) more meaningful test for backfill: yes
 * (870f68f) add basic backfill test
 * (16defd8) add allow_backfill test
 * (f8ffd88) allow_backfill allows backward advancement
 * (64c8733) restore SeriesTask query
 * (75a6ee3) Merge branch 'develop' into backfill
 * (ae25df3) Merge branch 'develop' into backfill
 * (436e7ce) first pass at backfilling
 * (a4df46d) Merge pull request #236 from tarzasai/trakt_submit_types[[BR]]
   Wrong type for entries with no series_name fix #2488
 * (591e271) Wrong type for entries with no series_name
 * (2955fe4) Merge pull request #237 from thisirs/eztv[[BR]]
   Add url rewriter for eztv
 * (c7987bd) Add url rewriter for eztv

=== 1.2.104 (2014.03.04) ===

 * (1d8492a) Merge pull request #234 from tarzasai/protect_imdb_id[[BR]]
   Protect imdb_id field from rottentomatoes_lookup
 * (0414c6c) Protect imdb_id field from rottentomatoes_lookup[[BR]]
   If the alternate_ids list in rottentomatoes_lookup's movie object does[[BR]]
   not contains a valid imdb_id, the plugin assign it to None on target[[BR]]
   entry, eventually clearing a real value.

=== 1.2.103 (2014.03.01) ===

 * (051ff36) revert 653f67d... Merge pull request #226 from Flexget/subtasks
 * (fd38205) Add a (currently failing) test for emit_series with discover
 * (653f67d) Merge pull request #226 from Flexget/subtasks[[BR]]
   Subtasks!
 * (64d6cc9) Make inputs plugin run using subtasks
 * (2070cc1) make_subtask helper now accepts an options dict
 * (10dbd07) Make if plugin pass through requests session
 * (4aabe30) Add a discover test using new subtask functionality
 * (d4780b0) Allow passing requests session into new Task Make a helper for creating subtasks
 * (8bae8ee) Make crossmatch just run one task for inputs Config format change, crossmatch/from now take a dict
 * (77e1025) Convert discover plugin to running a subtask Config format change, discover/what now take a dict
 * (4a6d8ef) Make a way to pass an already made session into a Task
 * (9671b9f) Convert if plugin to running subtask
 * (a14bb3a) crossmatch and configure_series to use auto_accept task option
 * (c6c1b5b) Make accept_all plugin control task auto_accept option
 * (2a829a1) Add auto_accept option to task
 * (e2f7e60) Improve only_new test
 * (245f7e6) Convert crossmatch to run subtasks
 * (e552a70) Add a test for crossmatch
 * (5bee64a) Test item filtering in subtask Automatically accept_all if no filter plugins
 * (e92744b) Quick conversion of configure_series to run a subtask
 * (c8410b9) Add task option for disabling builtins
 * (f2d9704) Get rid of Task._reset()

=== 1.2.102 (2014.02.28) ===

 * (6e90977) Merge pull request #229 from mingtang/develop[[BR]]
   Pushbullet Plugin[[BR]]
   Thank you for the contribution @mingtang =)
 * (284798e) pushbullet plugin: tweaked positioning of output and declaration of loop-specific (title and body) vs pushbullet (api_key, device_iden, type) options
 * (2b4bd77) pushbullet plugin: changed log.debug for 500 response status to log.warning
 * (c645cda) pushbullet plugin: cleaned up error handling output
 * (1950d64) pushbullet plugin: updated default title
 * (0004dfc) pushbullet output plugin[[BR]]
   Example:[[BR]]
     pushbullet:[[BR]]
       apikey: <API_KEY>[[BR]]
       device: <DEVICE_IDEN>[[BR]]
       [title: <MESSAGE_TITLE>] (default: "{{task}} - Download started" -- accepts Jinja2)[[BR]]
       [body: <MESSAGE_BODY>] (default: "{{series_name}} {{series_id}}" -- accepts Jinja2)

=== 1.2.101 (2014.02.26) ===

 * (2e0a48d) Merge pull request #227 from tubedogg/apple_trailers_2[[BR]]
   Fix bug in apple_trailers
 * (28540f7) Fix bug in apple_trailers[[BR]]
   Download actual file…

=== 1.2.100 (2014.02.25) ===

 * (40ae77d) Fixed regexp for TPB URL rewriter
 * (70207ac) Make sure clean_transmission respects --test mode
 * (a153fae) Merge pull request #223 from tarzasai/trakt_list_ratings[[BR]]
   Personal info on trakt list items.
 * (9337037) Prefix
 * (64bf8e8) Personal info on trakt list items.[[BR]]
   Some info always present in custom list items, might come in handy to[[BR]]
   filter stuff

=== 1.2.99 (2014.02.24) ===

 * (1c4466f) Make tvdb_id from trakt_list an int
 * (dbcd978) Fix some issues with trakt_emit: - 'next' mode now works when next season is not yet in trakt - make tvdb_id an int - comments and cleanup
 * (2683421) Make sure --inject and -v work together.
 * (afdffa0) Fix schema
 * (0cbbb37) Delicious unit tests[[BR]]
   Also axes a defunct import.
 * (53d075b) Allow old-style apple_trailers: 720p config[[BR]]
   Updates docs and also removes some unneeded imports.
 * (b1149e0) Fix trakt_emit schema defaults failing Copy trakt list slug making ability from trakt_list
 * (8645306) Separate making trakt list slug to own function
 * (954a5a4) Merge pull request #222 from tubedogg/apple_trailers_2[[BR]]
   Apple Trailers 2.0
 * (1f64d5e) Reenable apple_trailers unit test
 * (84b8af5) Apple Trailers 2.0[[BR]]
   Fixes the following bugs:[[BR]]
   “The workingness” is now True.[[BR]]
   Add genre filtering option.[[BR]]
   Add movie_year, movie_studio and genres to entry.

=== 1.2.98 (2014.02.21) ===

 * (fe943b1) Merge pull request #221 from philbot9/develop[[BR]]
   Updated deprecated functions in transmission plugin
 * (9fadedd) Updated deprecated functions.[[BR]]
   Updated "Client.info()" to Client.get_torrents()[[BR]]
   and "Client.remove()" to Client.remove_torrent()

=== 1.2.97 (2014.02.21) ===

 * (d319759) Fix some bare excepts
 * (7a42dbe) Fix example in trakt_emit
 * (11fc457) Rename trakt_watched_lookup file
 * (07db76b) Merge pull request #218 from tarzasai/trakt_latest[[BR]]
   Emit episodes from trakt.tv
 * (43c909d) Names
 * (f2d4cb8) Little fixes for empty lists
 * (c802df0) Class name
 * (122da7e) Renamed in trakt_emit[[BR]]
   When a custom list is provided, S01E01 will be the default "next[[BR]]
   episode" for series never marked seen or collected by the user on[[BR]]
   trakt.tv
 * (603a281) Emit episodes from trakt.tv[[BR]]
   The latest/next watched/collected.
 * (bff92a9) Merge pull request #219 from tarzasai/trakt_watched[[BR]]
   Set entries as watched by trakt seen status
 * (e11080b) Name
 * (ce13020) Set entries as watched by trakt seen status
 * (82e34c1) Make utorrent plugin respect --test mode

=== 1.2.96 (2014.02.20) ===

 * (e5baf99) Merge pull request #220 from vergessen/develop[[BR]]
   Changed nzbget plugin
 * (3fbdfcb) added .nzb to the title passed to nzbget.  Without this the downloads do not start as expected.  Tested on nzbget current and develop

=== 1.2.95 (2014.02.19) ===

 * (2ba85fd) Merge pull request #217 from tarzasai/set_series_begin[[BR]]
   Add set_series_begin plugin to set the first episodes to accept
 * (3de4e07) A plugin to set the first episodes to download
 * (07ba834) Fix up fallback filename decoding in bittorrent util. fix #2462
 * (20041b0) Make sure find plugin won't crash on non-ascii extensions either. fix #2461
 * (a0e5e22) Find plugin does not crash with non-decodable filenames. Better error messages when this happens. refs #2462

=== 1.2.94 (2014.02.17) ===

 * (534bfb4) Make sure a couple of seriesparser tests also work in auto mode
 * (c797f2e) Cleanups to series parser and tests. Log when season packs are ignored.

=== 1.2.93 (2014.02.17) ===

 * (5326d81) Expand matching for unwanted_ep_regexps[[BR]]
   Allows unwanted_ep_regexps to match 'Series 04 complete' and[[BR]]
   's04 complete' as well as 'season 04 complete'.
 * (73aeb6d) Catch timeouts looking up from tmdb. fix #2284
 * (573aa0a) More deprecation warnings fixed

=== 1.2.92 (2014.02.16) ===

 * (c3f1338) Merge branch 'master' into develop

=== 1.2.91 (2014.02.16) ^[wiki:UpgradeActions#a2014.2.151.2.91 upgrade actions]^ ===

 * (c609bf2) Merge commit '9764230787afc49bd4d3a6a8a4dd4c1e5dc51eef'

=== 1.2.90 (2014.02.15) ===

 * (5bc3a37) Merge commit '1d0355dd09db8ea8def3fa624c9ec2cda993374c'

=== 1.2.89 (2014.02.14) ===

 * (41fe067) Fix two deprecation warnings about e.message

=== 1.2.88 (2014.02.13) ===

 * (81203c3) Fix deprecation warning by changing e.message -> e.args[0]
 * (1277840) Fix setting series begin for large seasons. fix #2197
 * (9764230) Remove some possible separators for series date identifiers.
 * (acc7222) Add support for series with 4 digit seasons (year). fix #2197
 * (5c8cd3e) Add support for YYYYxMM.DD series date identifiers. fix #2210
 * (3da3859) Convert pogcal to new schema
 * (b6b8db9) Merge pull request #216 from night199uk/transmissiondep[[BR]]
   [transmission] fix #2456: recent changes require a more modern transmissionrpc (0.11)
 * (b432552) [transmission] fix #2456: recent changes require a more modern transmissionrpc (0.11)
 * (1d0355d) Merge pull request #215 from tarzasai/tvdb_overview[[BR]]
   TVDB series overview
 * (21bd417) TVDB series overview
 * (8a229f2) Fix two deprecation warnings about e.message
 * (003e510) Don't crash with invalid lock file. fix #2407
 * (202b7c4) typo
 * (ffa7a3d) Add urlrewriter for frenchtorrentdb from foulou and tuxik fix #1561

=== 1.2.87 (2014.02.12) ===

 * (7d740d2) Make some debug tracebacks a bit more clear they were handled.
 * (3f2c8d9) Make sure PluginError.value is always a string. refs #2454
 * (38e7595) Move history plugin to learn phase.
 * (d788ca9) Make sure no crash when current directory doesn't exist. fix #2452
 * (8210b00) Make sure some possible config paths are native strings. refs #2452

=== 1.2.86 (2014.02.11) ===

 * (28d7649) Fix tvdb online test.
 * (ac5432e) Workaround for tmdb3 bug. refs #2437

=== 1.2.85 (2014.02.10) ===

 * (b83ad3d) Merge pull request #211 from tubedogg/develop[[BR]]
   aria2 Plugin - Bug Fixes
 * (18d6684) Bug fixes[[BR]]
   Set default for aria_config/dir so we don’t have to check it’s[[BR]]
   existence repeatedly[[BR]]
   Set correct parent_folders when multiple directories exist in the[[BR]]
   torrent structure[[BR]]
   Get movie_year and year to be set correctly when parsing movie names[[BR]]
   Fix unicode bug when rendering fields before passing to aria2
 * (9fa4454) Merge remote-tracking branch 'upstream/develop' into develop
 * (7f3d969) s/aria/aria2/
 * (f2c21de) Make bittorrent utility return native strings instead of byte strings. fix #2428
 * (72853b8) Fix a unit test.
 * (0021322) Make sure email plugin does not email on silent aborts.
 * (8500514) Make task abort properties public, for plugins to view.
 * (a01072b) imdb_lookup no longer tries to capitalize non-string errors. fix #2450

=== 1.2.84 (2014.02.10) ===

 * (f878117) Removed joinedload from imdb, improves performance. Refs #2364.
 * (dfdd4b4) Tweak imdb joinedload query a bit.

=== 1.2.83 (2014.02.08) ===

 * (f027cb0) Merge pull request #210 from DColl/patch-1[[BR]]
   Update plugin_transmission.py (base64encode & cli.add_torrent & cli.change_torrent) fix #2415
 * (fab5866) Update plugin_transmission.py[[BR]]
   corrected ommission, thanks Chase
 * (1ed174a) Update plugin_transmission.py[[BR]]
   Verified the access to the id with the return from the new add_torrent() function.[[BR]]
   Valid
 * (7cf4e3a) Update plugin_transmission.py[[BR]]
   As of transmissionrpc-0.11-py2.7.egg/client.py[[BR]]
   add() & add_uri() are deprecated.[[BR]]
   Althought, I was getting transmissionError (Query failed with result:...) when trying to launch a new torrent. So I went in the rpc/client code and used the same syntax they use to base64 the data and everything'sback to normal working order ^^[[BR]]
   Althought I suspect that line 339 (for id in r.keys(): ) won't work with the return from cli.add_torrent(), I'm not equipped to deal with that (don't know when it occurs)
 * (ea538c3) Add description to default make_rss template

=== 1.2.82 (2014.02.07) ===

 * (518659a) Merge pull request #206 from tubedogg/aria_bugfix_1-2-81[[BR]]
   aria2 Plugin - Better sample config; bug fixes
 * (1224a71) Pythonic
 * (b923891) Better sample config; bug fixes[[BR]]
   Provide better sample configuration for cli[[BR]]
   Catch additional render errors[[BR]]
   Bug fix - use correct method of allowing aria2 to set gid
 * (3a27003) Try to make download plugin failure reasons more descriptive.
 * (e082ce5) Merge pull request #207 from tubedogg/prowl_bug_1-2-81[[BR]]
   prowl Plugin - Change API URL
 * (e386cac) Change API URL

=== 1.2.81 (2014.02.06) ===

 * (b188668) Make pylint be quiet
 * (1304a5a) Add no_entries_ok plugin to silence nuisance warning messages

=== 1.2.80 (2014.02.06) ^[wiki:UpgradeActions#a2014.2.61.2.80 upgrade actions]^ ===

 * (5befcd7) Merge pull request #203 from tarzasai/trakt_submit[[BR]]
   New trakt.tv add/remove plugins
 * (2565a37) Small fixes
 * (2b82d20) New trakt.tv acquire/remove plugins[[BR]]
   Movies, series and episodes are automatically recognized and[[BR]]
   added/removed to/from the trakt watchlists, collections, seen and custom[[BR]]
   lists.

=== 1.2.79 (2014.02.06) ===

 * (e2e1626) Make sure find plugin doesn't crash with invalid timestamps. fix #2434
 * (35a54ff) Work around encoding bug in tmdb3. refs #2392
 * (4daebd3) Silence an ImportWarning from deluge plugin
 * (8df3361) Add back --profile
 * (0f4ab3d) Fix --explain-sql

=== 1.2.78 (2014.02.05) ===

 * (af72102) Make path encoding/decoding helpers a bit closer to python 3 ones
 * (ad938d3) Find plugin handles filesystem encoding better. refs #2295, #2065, #989, #1347
 * (6da03be) Cleanups
 * (b296f22) Make sure imdb_id field is being used over imdb_url
 * (fa3a5dc) Fix a bug in subtitles plugin
 * (0fe2150) Remove broken imdb_rated plugin

=== 1.2.77 (2014.02.04) ===

 * (3ef8558) Let dump try converting field values to strings[[BR]]
   Values in some fields can be objects, which may be able to produce[[BR]]
   their own string representations. Give it a shot before outputting[[BR]]
   'not printable'. Mostly for series_parser.

=== 1.2.76 (2014.02.04) ^[wiki:UpgradeActions#a2014.2.31.2.76 upgrade actions]^ ===

 * (507a8b2) Fix archive plugin schema
 * (864d051) Make sure __unicode__ method of PluginError always returns unicode
 * (57e5f95) Update some more plugins to new schemas
 * (3b33a68) Fix series assume_special test
 * (4ec3718) apple_trailers plugin now raises a PluginError Disable apple_trailers test
 * (fbe090d) Rename scenereleases plugin to sceper and update a bit. Fix the unit test for it.
 * (683863b) Add python 2.7 check to subliminal plugin. fix #2420
 * (9b76cc2) Expand default special identifiers

=== 1.2.75 (2014.02.02) ===

 * (7a2a6ce) Make --test mode work properly with a running daemon. fix #2376
 * (b3c774e) Merge pull request #199 from tubedogg/develop[[BR]]
   aria2 - PEP8 & cli documentation
 * (ab28a49) Bug fixes
 * (43892f6) cli documentation
 * (dbc4a15) PEP8 compliance
 * (32a0541) Make sure api_tvdb is supplying unicode text values, fixes some SQLAlchemy warnings
 * (f04cf87) Better debug info for @internet decorator
 * (3f83001) Raise all warnings in unit tests
 * (9f9d7dc) Add --debug-warnings cli flag to raise warnings to errors Catch raised warnings and print traceback without exiting
 * (9fa864a) Merge pull request #196 from tubedogg/develop[[BR]]
   Handle error cases better in aria2 plugin
 * (a6f98f4) Need to import the error class first.
 * (d38dc35) Catch render errors.
 * (b3993c6) Catch socket errors
 * (612fbe4) configure_series now sets series options based on the series plugin schema
 * (5c80625) Tests for assume_special
 * (7f0ead8) Add assume_special support to series[[BR]]
   Series now accepts option 'assume_special'. If true, will cause any[[BR]]
   entries with no IDs found to be flagged and processed as specials.[[BR]]
   Also adds support to configure_series and fixes a typo in[[BR]]
   configure_series.
 * (4e22c8d) assume_special support for SeriesParser[[BR]]
   Flag which, if true, causes any entries with no IDs found to be[[BR]]
   flagged as specials.
 * (935ddac) Reinforce this is only remember_rejected[[BR]]
   Remind users that only rejections known by remember_rejected are[[BR]]
   listed or cleared.
 * (e976c88) Rejected command[[BR]]
   Rejected command, functions the same as failed. Allows rejected[[BR]]
   entries to be listed or cleared.
 * (f7b6c0e) Make some help text a little more dynamic
 * (c575563) List available levels in --loglevel output[[BR]]
   Fixes http://flexget.com/ticket/2421
 * (91f5891) prefer_specials support for configure_series[[BR]]
   Also allows plugin to accept list of special_ids
 * (730b4b9) Add prefer_series support to series[[BR]]
   Series now accepts an option 'prefer_specials'. If true, entries in[[BR]]
   that series which parse as both a normal id type (ep, etc) and a[[BR]]
   special will be flagged as specials. If false, they will be flagged as[[BR]]
   the normal id type.
 * (234b06b) Support for prefer_specials in SeriesParser[[BR]]
   If prefer_specials is True, an entry matching both a normal id type[[BR]]
   and special will be flagged as a special. If false, entry will be[[BR]]
   flagged as the normal id type.[[BR]]
   E.g.: title: the show s03e04 special[[BR]]
   prefer_specials = True -> series_id_type: special[[BR]]
   prefer_specials = False -> series_id_type: ep
 * (421a52e) Tests for prefer_specials[[BR]]
   Will ensure prefer_specials is being obeyed correctly.

=== 1.2.74 (2014.01.31) ===

 * (b5eda12) Fix archive plugin handling of task aborts
 * (5e12001) Fix spy_headers plugin
 * (782e595) Merge pull request #192 from tarzasai/find_filedate[[BR]]
   Find include file timestamp
 * (4a12aa6) Find include file timestamp
 * (78505f8) Merge pull request #194 from tubedogg/aria2[[BR]]
   aria2 plugin
 * (c6e0d39) aria2 plugin[[BR]]
   Plugin for aria2, the "ultra fast download utility".[[BR]]
   Requires [aria2c](http://aria2.sourceforge.net) be installed and[[BR]]
   running in [daemon[[BR]]
   mode](http://aria2.sourceforge.net/manual/en/html/aria2c.html#cmdoption-[[BR]]
   D) with[[BR]]
   [XML-RPC](http://aria2.sourceforge.net/manual/en/html/aria2c.html#rpc-in[[BR]]
   terface) enabled, which are both set in the aria2 config file.[[BR]]
   Plugin documentation can be found[[BR]]
   [here](https://github.com/tubedogg/.flexget/blob/master/plugins/README.m[[BR]]
   d).[[BR]]
   (Note I added as a plugin in the main plugins directory since it is[[BR]]
   [eventually] intended to be both an input plugin and an output plugin.)
 * (bca5255) Merge pull request #195 from tubedogg/develop[[BR]]
   Expose full torrent directory structure in content_files
 * (43b4b22) Expose full torrent directory structure in content_files
 * (771b0e6) Work on the windows service installer a bit more
 * (d85f30a) Merge pull request #193 from tarzasai/metainfo_subtitles[[BR]]
   Local subtitles check
 * (c17d6c0) Local subtitles check[[BR]]
   A metainfo plugin to check local files for subtitles.

=== 1.2.73 (2014.01.30) ===

 * (c651d51) Make sure emit_movie_queue test doesn't go online
 * (53104ef) Add 'special_ids' support to configure_series[[BR]]
   Will now be set for generated series from entry['configure_series_special_ids']
 * (72b5f01) Add ability to specify 'special_ids' to series[[BR]]
   Allow list of identifiers which will cause entry to be id'd as a special[[BR]]
   to be extended.
 * (6d2aa87) Add 'special_ids' to seriesparser[[BR]]
   Allow list of identifiers which will cause entry to be id'd as a special[[BR]]
   to be extended.
 * (8559326) Update usage[[BR]]
   Also remove unneeded debug messages.
 * (1d9eac1) Ability to specify entry states to dump[[BR]]
   Dump now supports multiple arguments, adding 'accepted', 'rejected'[[BR]]
   and/or 'undecided' will cause dump to only output entries with matching[[BR]]
   state.
 * (3806171) Don't notify on travis successes.
 * (a7ae953) Remove pypy test again
 * (7c4e36b) Try some new travis settings
 * (93f7657) Merge pull request #190 from crawln45/dev[[BR]]
   Fixed tests for trakt and thetvdb.
 * (18ed4c3) Fixed tests for trakt and thetvdb. Replaced lookup runtime with status.

=== 1.2.72 (2014.01.29) ===

 * (d92c8c3) Merge pull request #186 from tarzasai/subliminal_fail2retry[[BR]]
   subliminal plugin now fails entries like periscope does
 * (878545e) To fails entries like periscope do
 * (879b8d8) Merge pull request #185 from tarzasai/transmission_better_check[[BR]]
   Completed check fixed github:179
 * (972619f) Completed check fixed[[BR]]
   Now we define a torrent "downloaded" if its total size is greater than 0[[BR]]
   and all selected files are > 0 (and downloaded).
 * (ae966c2) Allow configure_series to set anything series can[[BR]]
   Also ensures values given match the restrictions in schema.

=== 1.2.71 (2014.01.28) ===

 * (9b168f5) Merge pull request #182 from crawln45/develop[[BR]]
   fixing test_trakt
 * (d925c45) fixed typo in test_trakt.py
 * (824065f) fixing test_trakt
 * (b413e65) Fix some issues with trakt plugin
 * (fc14790) Fix a tvdb test
 * (87c2535) Left wrong rottentomatoes key in

=== 1.2.70 (2014.01.28) ^[wiki:UpgradeActions#a2014.1.281.2.70 upgrade actions]^ ===

 * (36cff4c) Make a manager.initialize event
 * (57318b7) Fix client daemon ipc version negotiation
 * (71cbeb5) Bump ipc version
 * (31602c9) Add a 'daemon reload' command to reload the daemon config from disk
 * (e4099fc) Make manager events a bit more consistent Change config loading to not call sys.exit() Moved config pre-check code to the check plugin.
 * (0feedaa) Prefix field name with plugin[[BR]]
   Series alternate names are now loaded from[[BR]]
   entry['configure_series_alternate_name']
 * (5b37b48) Configure_series with alternate_name[[BR]]
   Series output by configure_series will now have alternate_name set to[[BR]]
   the contents of entry['alternate_name'].[[BR]]
   This commit merges tests used in development into test_series.
 * (66017cd) Ability to import single alternate name
 * (bdadf9b) Test for series configure loading alternate name
 * (c93292f) Fix some references to import_series
 * (c3eac19) Don't break python 2.6 compatibility
 * (3804ca7) Rename deluge `user` and `pass` options to `username` and `password` Deprecate old options
 * (545dd7e) Fix some deprecated usage of Exception.message
 * (d6d5238) Stop suppressing deprecation warnings Make unit tests fail due to deprecation warnings Fix a few instances of deprecated get_plugins functions
 * (1d1a9ea) Make our logging capture python warnings

=== 1.2.69 (2014.01.25) ===

 * (a054e34) Revert multiple keys for now, may be against the terms
 * (8978e63) Add a third api key to api_rottentomatoes
 * (2836e52) Add a second api key to api_rottentomatoes
 * (02935c0) Update rottentomatoes_lookup schema
 * (f86ecdc) Put a rate limit on requests to api.rottentomatoes.com Couple other tweaks to rottentomatoes
 * (4be3d82) Allow fractional intervals

=== 1.2.68 (2014.01.25) ^[wiki:UpgradeActions#a2014.1.251.2.68 upgrade actions]^ ===

 * (356c544) fix headers test when run with other tests
 * (748ca8c) Make sure @cached decorator obeys --no-cache flag.
 * (3babb4c) username and password are required with imdb_list now. refs #2377, #2382
 * (4d0c077) Merge pull request #178 from crawln45/develop[[BR]]
   Catch IOErrors in move plugin, fix #2403
 * (aa0eab0) Added full Error output for IOError
 * (e86c819) Fixed up the error Handling a bit. Added the entry as failed.
 * (d3cc072) Added check for single file move
 * (6a9d51f) Make config selected log message actually work

=== 1.2.67 (2014.01.25) ===

 * (66f64d3) Merge pull request #177 from scottwallacesh/revert_pull_request_171[[BR]]
   Revert imdb_list back to using CSV data instead RSS feeds.
 * (5c8d817) Revert "Merge pull request #171 from scottwallacesh/master"[[BR]]
   This reverts commit 41fad297d98ed03534a230ef9b0f2dc9948c5b1f, reversing[[BR]]
   changes made to 3d488fec9c70a45f76737caea69a761182304159.
 * (f0accaa) Merge pull request #176 from theaquamarine/coverage[[BR]]
   Add a nose config file to check coverage in tests
 * (5942b73) Add a nose config file to check coverage in tests[[BR]]
   Also adds appropriate files to .gitignore.

=== 1.2.66 (2014.01.24) ^[wiki:UpgradeActions#a2014.1.241.2.66 upgrade actions]^ ===

 * (c128dec) Periscope plugin now fails entries when subs cannot be found. refs #2398
 * (1640a4b) Couple more tweaks for config loading
 * (992dc9d) Make sure ~ is handled correctly with -c
 * (2ae02d1) Few cleanups to config loading
 * (52fa19f) Merge pull request #175 from crawln45/develop[[BR]]
   Fix for ticket #2401, changed config options
 * (6a666a8) Appeasing Gazpachoking
 * (b6847aa) Fix for ticket #2401
 * (321fab0) Added virutal Env check, added current path to config lookup

=== 1.2.65 (2014.01.24) ===

 * (0d12ee5) Merge branch 'master' into develop
 * (5c96cfd) Re-wrote large portions of plex plugin, should be faster now.
 * (e7c2a27) Update the internal timeout caching a bit. refs #2380
 * (f6a95e8) Set site as unresponsive on requests.ConnectionError.[[BR]]
   Log for this error: https://gist.github.com/Gargauth/b54298ca62119836ddec#file-flexget-log-L85

=== 1.2.64 (2014.01.23) ===

 * (c48f001) Merge branch 'master' of https://github.com/Flexget/Flexget into publichd_fix

=== 1.2.63 (2014.01.23) ===

 * (8c65fb1) Fix email plugin abort sending
 * (a5b9ce2) Merge branch 'learn_phase'
 * (4b4c8f6) Fix some log text
 * (e5f8462) Switch some more plugins to learn phase
 * (4d4c3a3) Add seen plugin test for --learn
 * (b434e8a) Make a 'learn' phase, and move some plugins to use it.
 * (727dd36) Fixed a crash that would occur when publichd found a torrent which size would contain decimal mark with colon (eg. 1,000.00-1024,00MB)

=== 1.2.62 (2014.01.23) ===

 * (2f1f5fa) Added entry statuses: seen, inprogress, unwatched.

=== 1.2.61 (2014.01.21) ===

 * (505cb35) Tweak rerun and discover logging.

=== 1.2.60 (2014.01.21) ===

 * (0271663) Merge remote-tracking branch 'origin/master'

=== 1.2.59 (2014.01.21) ===

 * (f5d31b2) Fix --learn in 1.2

=== 1.2.58 (2014.01.20) ===

 * (41fad29) Merge pull request #171 from scottwallacesh/master[[BR]]
   Moved from CSV to RSS as a data transport for the 'imdb_list' plugin.
 * (44de5cf) Used an already existing method to extract the IMDB ID from the provided URL.
 * (f91ddc0) Moved from CSV to RSS as a data transport for the 'imdb_list' plugin.

=== 1.2.57 (2014.01.20) ===

 * (3d488fe) Merge pull request #113 from tarzasai/xmpp[[BR]]
   Notifications via XMPP
 * (1a24966) Switch to new plugin registration style
 * (c4b084d) Correct import style for SleekXMPP
 * (51d6ece) Notifications via XMPP

=== 1.2.56 (2014.01.20) ===

 * (157e157) Merge pull request #169 from tarzasai/torrentz_fallback[[BR]]
   Alternate access to torrentz feeds
 * (ffd8603) Alternate access to torrentz feeds[[BR]]
   When the original torrentz domain .eu fails (usually for a 429: too many[[BR]]
   requests) the urlrewriter falls back to the .me version.

=== 1.2.55 (2014.01.20) ===

 * (fe28af9) Move email plugin to output phase. refs #2390

=== 1.2.54 (2014.01.19) ===

 * (e43d61f) Merge pull request #168 from Gargauth/kat_search_tweaks[[BR]]
   Tweaked Kat searching
 * (8e08608) Tweaked search to allow for more meaningful search results, especially for older titles.

=== 1.2.53 (2014.01.19) ===

 * (9ad6a72) Merge pull request #158 from Gargauth/publichd[[BR]]
   Adding PublicHD search plugin.
 * (e880a86) - Fixed downloads failing   Download url is now publichd's direct download url instead of torrent cache service - Fixed categories settings   (can now set properly single or multiple categories as intended)
 * (d180aaf) Adding PublicHD search plugin.

=== 1.2.52 (2014.01.19) ===

 * (a82c0bc) Catch error from tmdb3 library. fix #2368, #2377, #2298, #2287

=== 1.2.51 (2014.01.19) ===

 * (e643451) Merge pull request #166 from Gargauth/tvrage_fix_searchfail[[BR]]
   Fix for errors caused when searching tvrage for release estimations
 * (040153f) Fix for errors caused when searching tvrage for episodes release estimations.

=== 1.2.50 (2014.01.19) ===

 * (71ed1d2) Merge pull request #165 from tarzasai/clean_transmission-config-error[[BR]]
   Forgotten prepare_config
 * (6090e69) Forgotten prepare_config

=== 1.2.49 (2014.01.18) ===

 * (d86d63b) Merge pull request #164 from marcoacarvalho/patch-1[[BR]]
   Cleanup entries
 * (241a480) Cleanup entries[[BR]]
   Parsing row returned in order to remove additional text and line feeds around show name returned by BeautyfulSoup

=== 1.2.48 (2014.01.18) ===

 * (85f37cf) Fix the webui (well, at least let it start again)

=== 1.2.47 (2014.01.18) ===

 * (4d45fc5) Merge pull request #163 from Gargauth/fix_ticket_2387[[BR]]
   Fix for config errors not being reported
 * (9ce0bc7) Fix for config errors not being reported (instead flexget crashes with traceback)[[BR]]
   http://flexget.com/ticket/2387

=== 1.2.46 (2014.01.18) ===

 * (6587d00) Some cleanups for api_trakt
 * (b3d71a5) Added support for movies (2356) Added support for downloading art.

=== 1.2.45 (2014.01.17) ===

 * (64a3d65) Merge pull request #161 from Gargauth/SearchKAT_Fix[[BR]]
   Fix for certain TV shows not being discovered with KAT search plugin.
 * (c1f2d64) Fix for certain TV shows not being discovered.

=== 1.2.44 (2014.01.16) ===

 * (0e2053d) Merge pull request #160 from asm0dey/master[[BR]]
   Update template.py
 * (123fe00) Update template.py[[BR]]
   Added some useful custom filters

=== 1.2.43 (2014.01.16) ===

 * (f9abe68) Merge pull request #159 from marcoacarvalho/patch-1[[BR]]
   Change in www.pogdesign.co.uk/cat/showselect.php
 * (249f2df) Change in www.pogdesign.co.uk/cat/showselect.php

=== 1.2.42 (2014.01.16) ===

 * (a146fa4) Merge pull request #152 from tarzasai/move_with[[BR]]
   Move support collecting and moving additional files like subtitles.
 * (9e0e77b) Refining/2[[BR]]
   (forgotten loop)
 * (60039b7) Refining
 * (4653e4c) Move with namesakes[[BR]]
   Video and subtitles can be moved and eventually renamed together.

=== 1.2.41 (2014.01.16) ===

 * (9f2d27b) Merge pull request #156 from asm0dey/master[[BR]]
   Fixes into rutracker plugin
 * (eba0377) fixes error with follow_redirects in rutracker plugin.[[BR]]
   Adds retry to rutracker plugin.

=== 1.2.40 (2014.01.15) ===

 * (5026949) Merge pull request #151 from crawln45/trakt[[BR]]
   adding trakt_lookup
 * (2c1cf46) fixed default.template to properly display trakt_series_banner_url
 * (ad79194) Added nosetests fixed pep8 errors for paranoidi
 * (b14b4a2) adding trakt_lookup api_trakt and adding trakt_* to default rss

=== 1.2.39 (2014.01.15) ===

 * (37bfd11) Switch find plugin from old validator to new schema

=== 1.2.38 (2014.01.15) ===

 * (48d218c) Merge pull request #154 from theaquamarine/failrewriter[[BR]]
   Check entries being urlrewritten are accepted
 * (97ad3b9) Check entries being urlrewritten are accepted[[BR]]
   URLrewriters can now fail/reject entries properly. Previously, there[[BR]]
   was no continued checking entries were accepted so failing/rejecting[[BR]]
   would have no effect and url_rewrite would run in an infinite loop.

=== 1.2.37 (2014.01.15) ===

 * (9fb9c7d) Merge pull request #153 from theaquamarine/rtlookuptest[[BR]]
   Fix test_rottentomatoes
 * (9af310b) Changed test title in test_rottentomatoes[[BR]]
   Dropped 'in' from 'Star Wars: Episode I - The Phantom Menace (in 3D)'[[BR]]
   as parser was not able to strip this, causing rotten tomatoes to be[[BR]]
   unable to find the movie. Test therefore now passes.[[BR]]
   Maybe a relevant thing for parser testing, but the aim here is test[[BR]]
   rt functionality rather than MovieParser so removed.
 * (c86c70f) Switch api_rottentomatoes to use requests[[BR]]
   Removes flexget.utils.urlopener and flexget.utils.json dependencies.[[BR]]
   Appears to fix rottentomatoes api returning ids as either ints or[[BR]]
   strings- all tests which were failing because of this now pass.

=== 1.2.36 (2014.01.14) ===

 * (7287ee8) Fix some issues where task priority plugin wouldn't work properly.

=== 1.2.35 (2014.01.13) ===

 * (4f50899) Merge pull request #146 from tarzasai/cleaning_transmission[[BR]]
   Remove completed torrents from Transmission
 * (18c98ef) Correct evaluation
 * (6eaf5c2) Config defaults
 * (d5ff497) Remove completed torrents from Transmission
 * (29463f9) Merge pull request #147 from asm0dey/master[[BR]]
   Create plugin_rutracker.py
 * (b048233) Fixed Session and formatting
 * (e420169) Create plugin_rutracker.py[[BR]]
   Plugin, which supports authentication and automatic downloading from rutracker.[[BR]]
   Usage: ```[[BR]]
   rutracker_auth:[[BR]]
     username:[[BR]]
     password:

=== 1.2.34 (2014.01.13) ^[wiki:UpgradeActions#a2014.1.21.2.34 upgrade actions]^ ===

 * (50293ce) Merge pull request #149 from tarzasai/subliminal_region_error[[BR]]
   RegionAlreadyConfigured fix
 * (401df43) RegionAlreadyConfigured fix

=== 1.2.33 (2014.01.12) ===

 * (809b1a4) Remove use of deprecated sqlalchemy reflection
 * (2ccd544) No more UserDict

=== 1.2.32 (2014.01.12) ===

 * (8ac232f) Merge pull request #144 from tarzasai/subtitles[[BR]]
   Subtitles plugins
 * (7d059d5) Subtitles plugins

=== 1.2.31 (2014.01.11) ===

 * (892807a) Fixed merge errors.
 * (7444225) Cleanup of plex.py.
 * (560eb42) Merge branch 'master' of https://github.com/Flexget/Flexget

=== 1.2.30 (2014.01.10) ===

 * (e77a750) Ensure schedules are not being executed faster than they can be run.
 * (65dfaee) Merge branch 'planeturban'[[BR]]
   Conflicts:[[BR]]
   	flexget/plugins/input/plex.py
 * (feacbe9) More entries. Added:  plex_duration - duration of media in seconds, as requested in #2357  plex_episode_thumb - url for episode thumbnail.  plex_series_art - url for series cover art.  plex_season_cover - url for season thumbnail.  plex_episode_title - episode title as indexed.  plex_episode_summary - episode sumamry as indexed.  plex_url - original url to media.

=== 1.2.29 (2014.01.10) ===

 * (38fdb03) Fix some bugs introduced in latest torrentleech change. fix #2369

=== 1.2.28 (2014.01.09) ===

 * (7e60230) Merge pull request #138 from jawilson/tl_changes[[BR]]
   Updated torrentleech plugin
 * (5fc1ef1) Updated torrentleech plugin[[BR]]
   Added TV categories[[BR]]
   Allow searching of multiple categories
 * (e1a1291) Merge pull request #140 from jawilson/rt_support[[BR]]
   Add ability to config personal Rotten Tomatoes API key
 * (1e3598c) Fix rottentomatoes boolean config checking
 * (09b07df) Adding user api key ability into rotten tomatoes
 * (032256d) Merge pull request #139 from jawilson/torrentz_changes[[BR]]
   Torrentz improvements
 * (5e33165) Typo in urlrewrite_torrentz.py
 * (6ed2ea4) Allow user to specify extra search terms in torrentz (mostly for limiting feed)

=== 1.2.27 (2014.01.08) ===

 * (bb62b2f) Convert SimplePersistence to a MutableMapping
 * (282d6ae) Add some more tests for simple_persistence
 * (02748d9) Make sure simple_persistence never leaves a session it creates open
 * (c69d1d2) Add download_auth entry field which can contain custom requests authentication handler for download plugin to use Switch rss plugin to use this field to pass auth info to download plugin
 * (0bd0ddf) Interval plugin cleanups

=== 1.2.26 (2014.01.08) ===

 * (27a4621) Set isPermaLink = false in output rss
 * (422d92c) Fix generate

=== 1.2.25 (2014.01.08) ===

 * (9692e0e) Add -L and -l short options for --loglevel and --logfile refs #2359

=== 1.2.24 (2014.01.07) ===

 * (281f50c) Fix error about sqlite thread access. fix #2352

=== 1.2.23 (2014.01.07) ===

 * (f3e8f19) Change back to if entry.get('blah')[[BR]]
   Handles false-y non-None values in a more helpful manner.

=== 1.2.22 (2014.01.07) ===

 * (91f1ca9) Merge pull request #134 from theaquamarine/download[[BR]]
   Download patches
 * (08de18f) Requested tweaks
 * (0bfabac) Implement TODO in download_entry() - filename from URL[[BR]]
   If the end of download_entry() is reached and no filename is set,[[BR]]
   get one from the URL.
 * (6189135) Fix crash in download_entry()[[BR]]
   download_entry() would crash when getting a file with no content-type[[BR]]
   eg http://www.speedtest.qsc.de/1kB.qsc from the tests. Now defaults[[BR]]
   to unknown/unknown

=== 1.2.21 (2014.01.07) ===

 * (993afd9) Fix "FutureWarning: The behavior of this method will change in future versions.  Use specific 'len(elem)' or 'elem is not None' test instead." in api_tvdb

=== 1.2.20 (2014.01.06) ===

 * (98c8e5f) Merge pull request #133 from theaquamarine/test_aq[[BR]]
   Unit tests for assume_quality
 * (36d6280) Fix Python 2.6 compatibility[[BR]]
   Use of assertRaises and therefore assert_raises as a context manager[[BR]]
   was only enabled in Python 2.7 and never backported.[[BR]]
   http://docs.python.org/2/library/unittest.html#unittest.TestCase.assertRaises
 * (002125b) Unit tests for assume_quality

=== 1.2.19 (2014.01.06) ===

 * (5233a2c) Merge pull request #124 from tarzasai/transmission_filename[[BR]]
   Transmission filename
 * (3eb6553) correct path separator
 * (6030026) some fixes
 * (6dfb78e) location for transmission completed downloads[[BR]]
   (untested)

=== 1.2.18 (2014.01.06) ===

 * (82bf581) Open up sqlalchemy requirements. fix gh#127
 * (509a5db) Small optimizations to magnet_btih

=== 1.2.17 (2014.01.05) ===

 * (feb9805) Add magnet_info_hash plugin. Thanks lolilolicon. fix gh#132

=== 1.2.16 (2014.01.04) ===

 * (f0d6f04) Move some plugin methods to output phase from exit phase, to prevent problems with reruns

=== 1.2.15 (2014.01.04) ===

 * (83de8b5) Merge pull request #120 from theaquamarine/assumequality[[BR]]
   AssumeQuality plugin - default quality for tasks
 * (aa3bb37) Correct schema bug[[BR]]
   Can't validate dict keys, so allow any.
 * (61ae896) Update plugin to v1.2.0 compatibility
 * (f787d21) Changed to using 'any' req instead of 'everything'[[BR]]
   Switched to using the real quality component 'any', which allows the[[BR]]
   removal of some special cases. Also tweaked precision().
 * (9dd7269) Documentation updated[[BR]]
   Applies quality components to entries that match specified quality[[BR]]
   requirements.[[BR]]
   When a quality is applied, any components which are unknown in the[[BR]]
   entry are filled from the applied quality. Quality requirements are[[BR]]
   tested in order of increasing precision (ie "720p h264" is more[[BR]]
   precise than "1080p" so gets tested first), and applied as matches are[[BR]]
   found. A pseudo-requirement "everything" is also supported, which will[[BR]]
   match all qualities. Using the simple configuration is the same as[[BR]]
   specifying an "everything" rule.
 * (acb68a3) Improve precision calculation
 * (eb42640) Added advanced usage example
 * (3b1aa47) All rules now tested and applied
 * (6ac5b65) Refactor 'everything' test
 * (423839b) Store rules in sorted list[[BR]]
   Rules are now stored as namedtuples in a sorted list (sorted by[[BR]]
   precision of the rule, see precision()). This allows rules to have[[BR]]
   priorities, currently more specific rule = higher priority.
 * (47091b9) Rule matching now performed
 * (d1a1bdb) Case insensitivity on 'everything'[[BR]]
   Not sure why I wrote the if that way round.
 * (98ac626) Advanced rules now used for default case[[BR]]
   No other rule matching yet
 * (18cf008) Advanced Configuration start[[BR]]
   Plugin now understands advanced configuration in the form of quality[[BR]]
   requirements and qualities to assume if the entry matches them. These[[BR]]
   rules are not yet used for assuming, only tested and stored.[[BR]]
   Also refactored the act of assuming an entry's quality into a separate[[BR]]
   method.
 * (df3eb4a) added underscores to filename & plugin name
 * (481b441) moved to plugins/metainfo
 * (d78aff4) Operate on individual quality components[[BR]]
   Now applies defaults by quality component, so that defaults can be used even if other components are filled by the release.[[BR]]
   For example: "assumequality: 1080p webdl 10bit truehd" and a release flagged 720p h264 is output with "720p webdl h264 truehd"[[BR]]
   Should also handle the addition of more quality components as mentioned in https://github.com/Flexget/Flexget/pull/104#issuecomment-29127271
 * (5d23b7a) AssumeQuality plugin - default quality for tasks[[BR]]
   Many releases no longer explicitly flag 720p, breaking quality filters or requiring complex manipulate setups. This allows a default quality to be applied to entries when none is found.[[BR]]
   http://flexget.com/ticket/1498

=== 1.2.14 (2014.01.04) ===

 * (f3ca1da) Make sure series plugin output handler runs at correct priority.

=== 1.2.13 (2014.01.04) ===

 * (8025897) Add a 'daemon status' command

=== 1.2.12 (2014.01.04) ===

 * (a909a7c) Hide the service plugin, it's not ready yet.

=== 1.2.11 (2014.01.04) ===

 * (95f26db) Update plugin registration in doc example
 * (9c68758) Fix issue with deleting test database when --testing between client and daemon

=== 1.2.10 (2014.01.04) ===

 * (6f9f24b) Fix sending other options to running daemon using inject command. fix #2344 again

=== 1.2.9 (2014.01.04) ===

 * (47a0ebd) Fix an issue when sending some options via ipc to a running daemon. fix #2344

=== 1.2.8 (2014.01.04) ===

 * (7ec739e) Fix issues with series plugin recording downloads during reruns. fix #2345
 * (3dd68da) Add mock_output plugin for debugging.

=== 1.2.7 (2014.01.04) ===

 * (d666f54) Merge pull request #131 from harywilke/patch-1[[BR]]
   Update tdd.rst
 * (c9a119b) Update tdd.rst[[BR]]
   updated the warning. Ironically, the warning was missing 'an'

=== 1.2.6 (2014.01.03) ===

 * (91a4514) Fix imdb_list login issue. fix #2313
 * (ed299b2) Remove bs3 stuff from change_warn

=== 1.2.5 (2014.01.03) ===

 * (ef3c76f) Fix some online unit tests
 * (4a1152b) Futurize!

=== 1.2.4 (2014.01.03) ===

 * (8fdaae8) Make sure 'check' command handles non-ascii configs
 * (4ab7700) Remove unused import
 * (4bf3473) If statement errors now include the offending if statement.

=== 1.2.3 (2014.01.03) ===

 * (f85d00d) Fix download unit test url.
 * (a78b0cb) Catch timeouts while downloading files. fix #1306, #645, #85

=== 1.2.2 (2014.01.02) ===

 * (2f434e0) Lower message about commits without db lock to debug log
 * (17fb99e) Fix movie-queue add

=== 1.2.1 (2014.01.02) ===

 * (4c447b9) Only print bug message if actual changes are tried on db commit

=== 1.2.0 (2014.01.02) ^[wiki:UpgradeActions#a2014.1.21.2.0 upgrade actions]^ ===

 * (8afcbae) Fix locking in unit tests
 * (55c0ad7) Make sure we have a db lock when updating the schema table
 * (5025f18) Upgrade periscope plugin
 * (7d4211d) Merge branch 'master2' into cli_subcommands[[BR]]
   Conflicts:[[BR]]
   	flexget/plugins/output/ftp_download.py[[BR]]
   	flexget/plugins/urlrewrite_newpct.py

=== 1.1.174 (2013.12.22) ===

 * (39bb36b) Merge pull request #126 from foux/master[[BR]]
   ftp_download plugin bugfixes
 * (37da454) Bug fixes in ftp_download : 	- Plugin schema was wrong 	- When reconning, the wrong FTP instance was used
 * (dc8e28b) Merge branch 'master' into develop

=== 1.1.173 (2013.12.21) ===

 * (930f04b) Merge pull request #125 from skasi7/plugin_newpct2[[BR]]
   Updated plugin newpct to flexget.utils.requests
 * (210fbc7) Updated plugin newpct to flexget.utils.requests

=== 1.1.172 (2013.12.19) ===

 * (688d12a) Update tpb domain (again)

=== 1.1.171 (2013.12.16) ===

 * (1e302cf) Merge pull request #119 from tarzasai/subtitles[[BR]]
   Download subtitles with Periscope
 * (ab24cb1) Download subtitles with Periscope
 * (ff21a99) Merge pull request #121 from theaquamarine/plugin_warning[[BR]]
   Change PluginDetails to output warning event
 * (e821e53) Change PluginDetails to output warning event[[BR]]
   Changes PluginDetails to output a warning log event rather than[[BR]]
   verbose when a task with no_entries_ok == false produces no entries.[[BR]]
   Brings it more in line with similar errors (no input plugins, etc) and[[BR]]
   makes problem more obvious in logs.
 * (9c64e3f) Merge branch 'master' into develop
 * (b71d58d) Merge branch 'hotfix/ftp_list_verbosity' into develop
 * (a3f10ff) Merge branch 'hotfix/ftp_download_fixes' into develop
 * (8eb3640) Fix error handling in api_tvdb. fix #2320
 * (145b92f) Upgrade trakt_remove plugin registration
 * (79cb952) Merge branch 'master' into cli_subcommands

=== 1.1.170 (2013.12.12) ===

 * (d9fb337) Update tpb domain
 * (888a9e9) Small cleanups to ftp_download plugin. upgrade plugin registration
 * (938c4ea) Merge branch 'master' into cli_subcommands[[BR]]
   Conflicts:[[BR]]
   	flexget/plugins/download/ftp_download.py[[BR]]
   	flexget/plugins/input/thetvdb_favorites.py[[BR]]
   	flexget/plugins/metainfo/imdb_lookup.py[[BR]]
   	flexget/plugins/plugin_change_warn.py

=== 1.1.169 (2013.12.10) ===

 * (e64a222) TPB rewriter: Make sure the current TLD is in the list of all TLDs

=== 1.1.168 (2013.12.10) ===

 * (c916f58) Merge pull request #117 from JimShoe/patch-1[[BR]]
   updated CUR_TLD in urlrewrite_piratebay.py
 * (d59f766) updated CUR_TLD in urlrewrite_piratebay.py[[BR]]
   The Pirate Bay changed their TLD.

=== 1.1.167 (2013.12.09) ===

 * (4add74c) Merge pull request #116 from foux/master[[BR]]
   Corrections on ftp_download plugin
 * (9e5543c) Merge branch 'hotfix/ftp_list_verbosity'
 * (68dc3b5) Changing verbosity of empty directory Adding log for accepted entries
 * (5c6ae6a) Merge branch 'hotfix/ftp_download_fixes'
 * (8977b6e) Adding schema validation
 * (95f5731) Removing a test that might fail on OSX
 * (5359b6a) Moving ftp_download to an output plugin

=== 1.1.166 (2013.12.08) ===

 * (03a51cc) Merge pull request #115 from foux/master[[BR]]
   Corrections on ftp_download plugin
 * (f7d18f6) Changing log levels
 * (c270bd7) Deleting folders only if the config says so
 * (f4628cf) Correction on folders deletion
 * (0b27446) Functionnal version. Remains some fail test
 * (c958bd3) Adding connexion status tests
 * (c1444e9) Correcting recursion Allowing to resume

=== 1.1.165 (2013.11.27) ===

 * (3780566) Less verbosity for IMDB and TMDB lookups
 * (cd5d5db) Change log levels in html input plugin

=== 1.1.164 (2013.11.19) ===

 * (9a3ccb8) Fix string formatting error

=== 1.1.163 (2013.11.18) ===

 * (256a4a9) Merge pull request #110 from Flexget/handle_no_firstaired[[BR]]
   Handle cases where a series doesn't have a FirstAired date listed
 * (14f442e) Handle cases where a series doesn't have a FirstAired date listed

=== 1.1.162 (2013.11.18) ===

 * (8b79e43) Fix possible crash when validating quality requirements.

=== 1.1.161 (2013.11.18) ===

 * (b67b962) Merge pull request #90 from niawag/patch-4[[BR]]
   Create trakt_remove.py
 * (636b6c0) Update trakt_remove.py
 * (c413b0f) Update trakt_remove.py[[BR]]
   Added watchlist movie support
 * (9a54ca8) Update trakt_remove.py
 * (e30c811) Create trakt_remove.py[[BR]]
   I created trakt_remove.py as discussed here : https://github.com/Flexget/Flexget/pull/88[[BR]]
   I've debugged and tested it and it's working fine for movies, I didn't developped it for TV Shows yet as it doesn't seems really necessary.[[BR]]
   With this plugin you can ask trakt.tv to remove collected movies from a list (Watchlist or custom).[[BR]]
   The code is practically entirely based on trakt_acquired, I just changed the post_url and change the JSON item to respect trakt.tv API : http://trakt.tv/api-docs/lists-items-delete[[BR]]
   I hope you'll find this usefull!

=== 1.1.160 (2013.11.17) ===

 * (9109f21) Handle cases where a series doesn't have a FirstAired date listed. Fixes #2285

=== 1.1.159 (2013.11.13) ===

 * (579c8f3) Merge pull request #98 from Flexget/deprecate_bs3[[BR]]
   Deprecate BeautifulSoup 3
 * (cf80997) Remove BS3 from dependencies
 * (4c5b8fb) Remove BeautifulStoneSoup from TVDB Favorites
 * (47e3dd3) Remove BeautifulStoneSoup from TVDB API
 * (6b2b2cc) Change imdb parsing utils to BS4
 * (ea684e5) Make sure archive inject does not run scheduled tasks
 * (238b8b8) Remove the lock_required option, commands must call manager.acquire_lock on their own now if needed.
 * (fc10968) PEP8 cleanups
 * (c6d19d5) Added deprecation docstrings to task entry properties.
 * (eb6212c) Fix archive injection
 * (9bdb7ef) Fix injection
 * (422c467) Improved docstrings.
 * (097d9c5) Work on windows service installer a bit more
 * (855d59b) Remove --del-db argument
 * (51c3ff4) Add some sanity testing to make sure we have a database lock when commiting
 * (6cf061e) Ensure we are closing sessions properly in a bunch of places
 * (6488bbd) Make sure series database updating happens even when config changes in daemon mode Make sure we don't leave the session open during series repair
 * (f499257) Add wheel info to setup.cfg
 * (6eb6f6b) Add a currently broken plugin to manager a windows service to run the daemon
 * (f625b9d) Fix run_task plugin
 * (85ca3a0) Make sure schedules are not run with execute command
 * (48caf28) Actually fire the manager.lock-acquired event
 * (e33ae6f) Start switching around manager events
 * (adc4d4b) Convert urlrewrite_search to new schema
 * (4366499) Convert queue_movies to new schema
 * (eb23982) Fixed an issue with logging crashing.
 * (3d06410) Merge branch 'master' into cli_subcommands

=== 1.1.158 (2013.11.07) ===

 * (58facf3) Add discovered_from and discovered_with fields to entries created by discover plugin

=== 1.1.157 (2013.11.07) ===

 * (c32e03d) Don't count 'already in queue' as a failure with queue_movies plugin.
 * (f9d40b4) Don't count 'already in queue' as a failure with queue_movies plugin.
 * (e3352a1) Make sure to close the session.
 * (6c0cdb9) Only run the manager.upgrade event if needed. Make sure there is a database lock before running the upgrade event.
 * (e7cd449) Make rpyc use our ipc logger
 * (702808e) Add handler for SIGTERM in daemon mode
 * (1cadd35) Add a version system to the ipc protocol
 * (a16cd46) Oops, missed a spot
 * (b85be0a) Finish implementing ipc auth
 * (e025dab) Break IPC while I work on authentication.
 * (dc282d2) Remove some broken code
 * (2b69fd8) Deprecate api v1
 * (ff8a394) est_released cleanups
 * (93b15ee) Merge branch 'master' into cli_subcommands[[BR]]
   Conflicts:[[BR]]
   	flexget/config_schema.py

=== 1.1.156 (2013.11.04) ===

 * (ccb95a0) jsonschema 2.3.0 support fix #105[[BR]]
   See https://pypi.python.org/pypi/jsonschema/2.3.0, and how it is fixed for built in jsonschema formats https://github.com/Julian/jsonschema/commit/c763ab974c36891e2b8bcb6a6c1ebb1dd84009b6

=== 1.1.155 (2013.11.02) ===

 * (f88486f) Improved bootstrap error message.

=== 1.1.154 (2013.11.02) ===

 * (a347363) Fixes #2262. Crashed with input html plugin.
 * (5f6d6b4) Make sure manual tasks are not run on a default schedule
 * (3c38e51) Misc cleanups and TODO's
 * (33e6e88) Improved bootstrap error message.
 * (e8fa2d3) Fixes #2262. Crashed with input html plugin.
 * (dc810ce) Make if plugin better. fix #1440
 * (2eaa078) Convert all plugins to api v2 Convert a couple more plugins to use schemas
 * (c41cf14) Remove old string replacement
 * (d80fc82) Update betaseries_list to new api
 * (f10f77d) Merge branch 'master' into cli_subcommands

=== 1.1.153 (2013.11.01) ===

 * (74717a1) Merge pull request #101 from thomasleveil/plugin_betaseries_list[[BR]]
   [betaseries_list] add a plugin for querying the series from www.betaseri...
 * (5ce6069) [betaseries_list] fix tests (better)
 * (df6fb49) Merge remote-tracking branch 'flexget/master' into plugin_betaseries_list
 * (cc4fcd4) [betaseries_list] fix tests[[BR]]
   importing the flexget.plugins.filter.series in this module was making lots of other tests to fail
 * (880c3fc) [betaseries_list] fix examples
 * (afdd3d4) [betaseries_list] Sphinx compliant docstrings
 * (2e5771b) [betaseries_list] anticipate Python 3 compatibility
 * (fd9a961) [betaseries_list] remove the ability to define 'members' as null in the config
 * (36a8a22) [betaseries_list] add a plugin for querying the series from www.betaseries.com[[BR]]
   Api key can be requested at http://www.betaseries.com/api.[[BR]]
   The plugin is meant to work with the import_series plugin as follow:[[BR]]
           import_series:[[BR]]
             from:[[BR]]
               betaseries_list:[[BR]]
                 username: xxxxx[[BR]]
                 password: xxxxx[[BR]]
                 api_key: xxxxx
 * (63ff831) Make ipc server choose any open port by default
 * (c471abc) Merge branch 'req-fixes' into cli_subcommands[[BR]]
   Conflicts:[[BR]]
   	pavement.py

=== 1.1.152 (2013.11.01) ===

 * (3394105) Merge pull request #102 from thomasleveil/patch-1[[BR]]
   blacklist python-dateutil v2.2
 * (7687a7a) blacklist python-dateutil v2.2 in pavement.py (again)
 * (9d94d6d) sync rtd-requirements.txt with pavements.py
 * (49117f7) blacklist python-dateutil v2.2 in pavement.py
 * (d162973) blacklist python-dateutil v2.2[[BR]]
   which suffers from a bug as described at https://gist.github.com/thomasleveil/7274698[[BR]]
   Running the Flexget test suite with dateutil 2.2 produces 2 errors and 2 failures ; with 2.1, all pass[[BR]]
   bug reported upstream by contacting the author by email

=== 1.1.151 (2013.11.01) ===

 * (cf67653) Merge pull request #100 from Flexget/tpb_tests[[BR]]
   Add tests to urlrewrite_piratebay.py
 * (cbcada1) Add more pirate bay tests
 * (7d317f0) Fix URL in the pirate bay URL rewriter

=== 1.1.150 (2013.10.29) ===

 * (fe1e744) Restore better error handling to bootstrap.py for missing setuptools/pip Add message about how to fix missing setuptools/pip problem

=== 1.1.149 (2013.10.29) ===

 * (b561c54) Back to virtualenv 1.10.1 bootstrap :P
 * (84b8631) Oops, we want virtualenv 1.9, not 0.9
 * (ad94da7) Revert bootstrap.py to virtualenv 0.9.2 refs #2259
 * (f3f2fd5) Merge pull request #97 from pR0Ps/master[[BR]]
   Add old TLDs for the pirate bay url rewriter.
 * (4046648) Add old TLDs for the pirate bay url rewriter
 * (12270ed) Merge pull request #91 from Toilal/html_increment[[BR]]
   Add incremented variable to support paginated pages
 * (1ace161) Now using jinja2 templating library
 * (b24ac46) increment {...} content is now evaluated only if required
 * (ea1f9ed) Add incremented variable to support paginated pages
 * (cc1841d) Merge pull request #96 from Toilal/build[[BR]]
   Git ignore changes
 * (70cc0df) eclipse configuration added to git ignore
 * (1d37bfb) setuptools and pip added to git ignore
 * (da6a355) Remove overridden bootstrap task in pavement, it is no longer needed Add a manual edit to bootstrap to make sure setuptools/pip missing errors are more clear

=== 1.1.148 (2013.10.27) ===

 * (91ba92e) Update README.rst[[BR]]
   Added travis and download count badges

=== 1.1.147 (2013.10.27) ===

 * (df40aa0) Merge pull request #94 from bitdeli-chef/master[[BR]]
   Add a Bitdeli Badge to README
 * (89219b7) Add a Bitdeli badge to README
 * (065b27e) Scheduler now runs all tasks on a 1 hour interval if no schedules are defined in config
 * (2b66c2d) Fix issue with arg order in Task init make calls to it specify optional arguments explicitly
 * (4509aab) Allow wildcards in schedule task specification Allow a single task instead of a list as task specification Refactor scheduler execute to not take task argument. Tasks can be specified in 'tasks' option Refactor how ipc sends text back to the client
 * (35528a4) Add start and stop actions to `flexget daemon` command
 * (6288777) Fix series begin test for new ep advancement behavior
 * (1424e6d) Make sure series begin episode isn't blocked by episode advancement fix #2236
 * (3fbb9d2) Make sure emit_series doesn't emit negative number sequence shows
 * (95d2956) Fix template plugin working on reruns
 * (229d2a4) Fix merge error in series plugin
 * (8b12f8a) Make current directory config higher priority than home directory one for git installs
 * (77032c1) Merge branch 'master' into cli_subcommands[[BR]]
   Conflicts:[[BR]]
   	flexget/plugins/api_tmdb.py[[BR]]
   	flexget/plugins/cli/series.py[[BR]]
   	flexget/plugins/filter/movie_queue.py[[BR]]
   	flexget/plugins/output/pyload.py[[BR]]
   	flexget/plugins/output/rss.py[[BR]]
   	flexget/plugins/plugin_deluge.py[[BR]]
   	pavement.py

=== 1.1.146 (2013.10.25) ===

 * (e1c201c) Merge pull request #93 from Toilal/tmdb_v3[[BR]]
   TMBD API updated. Fixes #92
 * (03aaf11) Fixed TMDBContainer for empty constructor parameters
 * (df12855) tmdb3 package is now available on PyPI
 * (8363989) API Key fixed and better logging
 * (dd140e2) bootstrap.py generated with paver 1.2.1
 * (f605b86) tmdb3 dependency added to pavement
 * (5fadf91) TMBD API updated. Fixes #92

=== 1.1.145 (2013.10.22) ===

 * (6bb3a43) Merge pull request #89 from pR0Ps/master[[BR]]
   Fix bug in movie lookup code
 * (8163d55) Fix bug in movie lookup code

=== 1.1.144 (2013.10.23) ===

 * (bdadf61) Make sure series episodes with lower case identifiers can be --series-forgotten

=== 1.1.143 (2013.10.22) ===

 * (64109db) Replace thepriratebay.se with thepiratebay.sx fix #2255

=== 1.1.142 (2013.10.22) ===

 * (02db53b) Better error messages for bad templates in make_rss

=== 1.1.141 (2013.10.22) ===

 * (2d2b87b) Fix make_rss to allow setting template for description

=== 1.1.140 (2013.10.17) ===

 * (388b1a6) Rename dts-hd quality to dtshd to not interfere with ranges

=== 1.1.139 (2013.10.17) ===

 * (4c02d34) Add dts-hd and truehd to audio qualities. fix #1716

=== 1.1.138 (2013.10.15) ===

 * (81998c0) Add a unit test for previously fixed issue.
 * (4fdbf9a) Fix issue with series names containing parens which had alternate_name defined.

=== 1.1.137 (2013.10.11) ===

 * (a384187) Fix an issue with pathscrub utility erroring unnecessarily

=== 1.1.134 (2013.10.11) ===

 * (cc96ad9) Change default pushover task name

=== 1.1.133 (2013.10.10) ===

 * (198d6f7) Add more tests for pathscrub, make sure path components are not surrounded by spaces on any platform

=== 1.1.132 (2013.10.10) ===

 * (6804a24) Fix up some pathscrub behavior and add unit tests

=== 1.1.131 (2013.10.09) ===

 * (bf63d5e) Allow latest versions of beautifulsoup and requests

=== 1.1.130 (2013.10.09) ===

 * (bd9b9a2) Don't let series plugin ignore sequence shows with episode 0

=== 1.1.129 (2013.10.07) ===

 * (ee964e5) Catch distributionerrors from deluge on latest version
 * (f57bdc6) Make series plugin populate 'path' and set plugin fields on metainfo phase

=== 1.1.128 (2013.10.07) ===

 * (923ca2f) Merge pull request #86 from miracle2k/patch-1[[BR]]
   Make pyload plugin use requests
 * (147d74f) Remove unused import.
 * (3dc61fc) Assorted improvements.
 * (8a7d7d5) Make pyload plugin use requests[[BR]]
   This would fix #85 (pyLoad server requiring gzip).

=== 1.1.127 (2013.10.06) ===

 * (8c6de53) movie_queue will now use either imdb or tmdb automatically now, with no lookup plugins in the task

=== 1.1.126 (2013.10.06) ===

 * (304bc47) Switch imdb to be first priority with movie queue

=== 1.1.125 (2013.10.06) ===

 * (d2a0e4a) Make --movie-queue cli interface use tmdb and imdb
 * (7a40bdb) Make sure imdb parser doesn't get false positives on rating  ineligibility check.  fix #2223

=== 1.1.124 (2013.10.02) ===

 * (a3079db) Merge pull request #84 from jgnog/patch-1[[BR]]
   Fix little mistake in rottentomatoes.py docstring
 * (31da4aa) Fix little mistake in rottentomatoes.py docstring

=== 1.1.123 (2013.09.30) ===

 * (441af56) Merge pull request #83 from Gyran/master[[BR]]
   new url for myepisodes
 * (00efab2) new url for myepisodes

=== 1.1.122 (2013.09.21) ===

 * (27559ff) Merge pull request #80 from skasi7/master[[BR]]
   Fixes newpct page change.
 * (f051b6f) Fixes newpct page change.
 * (b37d853) Persist the last_run time of schedules
 * (edeeba4) Add rpyc to pavement.py requirements
 * (d7e8da8) Clean up done todo
 * (3bcafad) Add some notes on current state of priority plugin
 * (fd09ea6) Fix make_rss to work with new system
 * (29c806f) Tweak how output is sent back over ipc
 * (01c1ad5) Try out rpyc for ipc communication Make ScopedNamespaces iterable
 * (7525bcc) Switch around a couple manager events for before config load and before validate Switch config pre-check to run only with check command
 * (67a31ca) Fix options parsing for non-execute commands
 * (26618d1) Make --help message a littel better for archive inject
 * (a7ff4cf) Clean up some of the options code Add a custom action to parse remaining arguments with a different parser Allow execute options to be specified during archive inject
 * (c56fc04) Upgrade ipc protocol to support multiple commands
 * (aa3a350) Make sure include plugin validates included config before merging
 * (ed1cea2) Restore root level email configuration for execute command
 * (47e8da9) Switch to new way to handle sqlalchemy sessions in flask
 * (cabcf30) Refactor cli series list a bit
 * (636670d) Rename import_series to configure_series
 * (ad1f8a8) Fix correct subparser help message to show at cli Add option to parse_args to raise instead of exiting
 * (23b0877) Playing with ideas for json api
 * (c66cdd2) Fix cli help messages with new defaults handling
 * (b9b56a4) Fix schedules without at_time
 * (ac0c8af) Fix at_time schedules
 * (c60de1d) Rename some of the properties in the schedule config
 * (72d513b) Fix running scheduled tasks at lower priority
 * (3ec0c9a) Switch schedules to take a new config format
 * (cac7a02) Increase cached_input to 5 minutes
 * (c26ac39) Don't stream back remote log on --cron execution
 * (476f638) Only write the ipc port to the lock file when the ipc server is actually running
 * (e43f23b) Allow explicitly overriding loglevel with --cron
 * (7faa34c) Switch ipc to use SocketServer Switch --ipc-port to be a root level option Better debug messages on task abort
 * (c591e5b) Add 'always' mode to run_task
 * (e82be8f) Add a bit of logging to run_task plugin
 * (953579d) Add run_task plugin
 * (1cb5a70) Move daemonize complete message before detatching from sys.stdout
 * (b22955c) Remove some old code
 * (6552e00) Log the new pid when daemonizing.
 * (202e697) Small tweaks
 * (d60f9e8) Fix cached_input accessing task options
 * (6b0aaae) Make sure IPC is communicating in bytes
 * (5d2eb26) Only bind to a socket once for ipc
 * (39fe631) Improve the ipc loop a little bit
 * (b8de367) small comment fix
 * (ebce251) Fix task priority hack
 * (971cda2) Fix daemonize option crashing on windows
 * (a977f7a) Switch --task to --tasks and make it core option Add a hack to use old task priorities in execute command Actually call daemonize method
 * (7d999a9) Fix --task with upper case task names
 * (8e7a718) Fix the check command
 * (ad2c949) More junk
 * (3da445e) Add and clean up uTorrent plugin from tyjtyj refs #2205
 * (021c601) Rename the preset module to template Fix a bug for tasks that did not define templates
 * (cf3c47b) A bunch of unfinished crap which will eventually serve our schemas.
 * (5aa3215) Fix the templates for blueprint system Start updating scheduler config
 * (86bff47) Fix pavement.py Update webui plugin registration to use blueprints Remove some crap from webui schedule plugin
 * (6acdccc) Tweak BufferQueue usage a bit
 * (0369eeb) Continue work on webui
 * (3ab21c0) Start converting webui to run on new system Webui is now started with `flexget webui`
 * (3aaf64c) Start getting webui ready for 1.2 changes
 * (8cd1ca6) Start fleshing out json api for config
 * (0c89288) Fix default log levels for 'execute' and 'daemon' command
 * (fd387c7) Fix log level with --debug flag
 * (d47126d) Switch exists_movie to a timed cache
 * (89c2414) Add an exception to raise when a plugin database needs reset to upgrade tvrage plugin now caches failed lookups and has less false matches
 * (939eb4e) ctrl-c now schedules shutdown after task completion second ctrl-c aborts currently running task
 * (68772eb) Ctrl-c now interrupts cli execution again
 * (615d21d) Limit emit_series to only emitting missing sequence shows within last 10
 * (5847186) Implement root level config validation Remove prepare phase from tasks Rename presets to templates
 * (a7bff89) Make a manager.config.pre-process event Switch --cli-config to run on it
 * (4b26c7d) Move some plugins using task prepare phase to start
 * (e3cdb41) Fix plugins that modify the config after task start for reruns
 * (6194631) Fix how cli execute command waits for shutdown Remove bits of change_warn that didn't do anything
 * (8ae6bcc) Update metainfo content_size to api v2 and json schema
 * (2c2a46d) Make task.aborted be true even if it was silent
 * (db6ebca) Change --tasks and manual plugin to use task start instead of task prepare phase Change --task to use a space as delimeter instead of comma
 * (2559315) Make sure plugins don't call manager.shutdown prematurely
 * (331c89f) Change task_start and exit phases to only run once, even if the task is rerun multiple times Update the plugins dealing with reruns
 * (85be94e) Fix manager.execute.started/completed events Add manager.daemon.started/completed events
 * (ea2330e) Merge branch 'cli_subcommands' of github.com:Flexget/Flexget into cli_subcommands
 * (d83fd71) Add some more metadata to preset plugin schema
 * (ec1da5c) Refactor memusager and cron_env to use manager.execute.started/completed events
 * (3ec4052) Restore manager.execute.started and completed events, now for cli execute command
 * (c645499) Fix some download tests for python 2.6
 * (1980f14) Fix a few more usages of process_start
 * (1a7d6d0) Fix more plugins reference to backlog
 * (e1f9199) Add a note in developer docs about the schema test in the suite
 * (039d4f1) Switch a few more plugins to json schema
 * (765864b) Fix rss unit test
 * (deb27dc) Fix cookies plugin and switch it to using timed dict cache
 * (c1106ef) Switch cached_input to use timed dict and fix tests for it
 * (9465c17) Implement a timed dictionary to use in caches
 * (5339ae8) Switch how series plugin stores reference to backlog plugin. fix #2207
 * (a4f5844) Fix plugin api tests even better
 * (be14c04) Fix plugin api tests
 * (cf14f2c) Move plugin instantiation to after all plugins are registered
 * (e50a633) Fix a bug in tvrage lookups
 * (f5b61ca) Make sure plugins are only registered once Implement removal of event handlers
 * (cdeb248) Refactor a bit how preparing a task works Handle task aborts better in unit tests
 * (ecb48d3) Tasks now reset config on reruns
 * (5d2cff4) Fix some invalid schemas
 * (0c13007) Fix a couple issues with Manager
 * (562b800) Bump version
 * (acf3c33) TaskAbort is now raised all the way up to the calling scope of execute call Start fixing up a few tests
 * (e00f676) Various fixes
 * (b833a38) Tasks now commit session changes from on_task_abort
 * (da41fdb) Make series plugin database helpers functions
 * (1e95d02) Switch plugin registration to events in more plugins Switch some more plugins to json schema
 * (5b28763) Switch plugin registration to events in plugins Switch some plugins to api v2 Switch some plugins to json schema
 * (157727a) A few cleanups
 * (74ccd91) Fix imdb_lookup plugin Fix manual plugin Remove no longer needed --tasks
 * (de4e671) Add ipc
 * (b819cc4) A few fixes and cleanups
 * (04ed3da) Move --check to its own command
 * (4a632bd) Some cleanups
 * (aab1e48) Refactor --log-start into a plugin
 * (65d67d4) Rename 'register_parser_arguments event' to 'options.register'. The event no longer passes the core parser. Switch all plugins to get the core parser using options.get_parser.
 * (055225d) Rename subcommands to commands
 * (74162ec) Tasks are now instantiated only when executed
 * (062d0a0) Remove global form of email config
 * (dfb596a) Convert --perf-tests to subcommand
 * (c871f84) Switch scheduler shutdown to work with flags
 * (547dec2) Fix a bug with running a schedule on a day
 * (124aed5) Scheduler now runs with `flexget daemon`
 * (81230b6) Make copies of tasks when adding to scheduler, so that changes in manager thread do not affect scheduler thread
 * (d9eb3d3) Move register_config_key to config_schema.py Make ScopedNamespaces copy properly
 * (3bbd072) Make plugins access execute options from task rather than from manager
 * (f1c579c) Small tweaks to interval plugin Fix a couple hard coded phase names in task.py
 * (2a6a6a4) Refactor --archive-inject into subcommand
 * (236ed6e) Refactor some of the on_process_start usages Make scheduler deal directly with tasks
 * (7a05b9c) Don't init plugins until they have all been loaded
 * (09d7989) Get rid of process_start and _end Start factoring out manager.execute
 * (1b1600e) Some refinements
 * (b3db79a) Get the scheduler working enough to run cli execute through it
 * (84f0ffd) Make sure deluge plugin doesn't add bad paths to sys.path
 * (57040b4) Tweak schedule schema a bit
 * (f1dab0a) More work on the core scheduler
 * (f2af356) Start working on having the scheduler in the core
 * (49712dd) Make disable_builtins schema a property
 * (3d23db2) Simplify inject subcommand usage a bit
 * (9f6c442) Remove all arguments to manager.execute except the options namespace Make an inject subcommand
 * (4f6a4d7) Make the nested option namespaces scoped
 * (b0bd820) Remove reference to --reset
 * (844b150) 'exec' subcommand renamed to 'execute' Subcommands are allowed to be shortened non-ambiguously Subcommand options now go in their own namespace get_subparser now throws an ArgumentError if you ask for a parser that doesn't exist when default isn't set
 * (99bf685) Implement filters for CLI series listing
 * (899eb5e) Remove clear-backlog subcommand in favor of database reset-plugin backlog
 * (b551946) Actually pass cli arguments to running webui
 * (d8ee838) Exec calls from cli are now sent to running webui Add /api/ to webui for REST api endpoints
 * (db05ed7) Add a new system for defining which subcommands need a db lock
 * (49a83e4) Split archive CLI into archive subcommand and --archive-inject exec option
 * (3b6d1b5) Small tweaks
 * (b2271cb) Add a run_subcommand method to Manager
 * (b9fbcdd) Switch to use events to register parser arguments and handle subcommands
 * (84d1f6b) Switch to use events to register parser arguments and handle subcommands
 * (159a349) Cleanups
 * (c95ce03) Add some comments about the different parsers in options.py
 * (aefbf31) Add some methods to our ArgumentParser class to deal with subparsers more easily Switch subcommands to use the event system
 * (ea4bc0c) Remove force option of movie_queue
 * (604cb12) Fix the unit testing framework for CLI changes
 * (ec20557) Remove some references to --series
 * (38bfe0b) Update webui to work with new CLI system
 * (a22f296) Convert all seen plugin CLI to subcommand Remove old seen plugin migration
 * (a115d4b) Convert --failed and --clear to 'failed' subcommand
 * (1c24fd7) Convert --movie-queue to a subcommand
 * (65d1533) Convert --history to subcommand, add search option
 * (60eafd1) Remove hack to run plugin method as subcommand
 * (94d2160) Some cleanups to the options file
 * (426edec) Add a database manager for cli
 * (d521699) Remove --reset
 * (9626502) Lockfiles now ignored if the pid is no longer running Manager.acquire_lock is now a context manager
 * (015f644) Fix all the series cli commands Subcommand entry points now get manager as an argument Fix db_cleanup
 * (b7f4a2f) Show help text when there are errors parsing cli arguments
 * (3db8726) Convert clear-backlog to subcommand
 * (4cc2b6e) Make 'series show' command work
 * (dff788c) Convert --plugins to subcommand
 * (b76922b) Update doc, reset-plugin and series CLI interface to use subcommands
 * (054a0d7) Disable some old CLI switches until they are converted
 * (6b63cf4) Keep messing with cli subcommands
 * (9fe65a5) Adjust manager to only load config and lock database when executing tasks
 * (de0f788) Start hacking in subcommands to cli interface

=== 1.1.121 (2013.09.13) ===

 * (8641eb0) Fix some problems with movie-queue del and forget when deleting by movie id
 * (9aa3dd6) More cleanup to include plugin

=== 1.1.120 (2013.09.13) ===

 * (a7cecba) Remove file existence validation from include plugin again, fix #2196 Include plugin fails more gracefully with an invalid file included

=== 1.1.119 (2013.09.12) ===

 * (9057175) Fix a crash in preset plugin when config was malformed
 * (fb08c11) Prevent crash in include plugin when configured incorrectly Update include plugin to api 2 and new config schema

=== 1.1.118 (2013.09.12) ===

 * (68627a0) Make --movie-queue del and forget options better at matching movies in your queue Prevent extra lookups when editing movie queue

=== 1.1.117 (2013.09.10) ===

 * (4d63f49) Don't escape colons in download urls. fix #1804

=== 1.1.116 (2013.09.10) ===

 * (8754c34) Open the range of pack detection a bit. fix #1432

=== 1.1.115 (2013.09.09) ===

 * (4231740) Allow text plugin to work with url or filename. fix #1832 Catch an exception in text plugin when config regex didn't have a capture group.
 * (71562e4) Finally get changelog->upgradeactions linking working properly. (hopefully)

=== 1.1.114 (2013.09.09) ===

 * (0a3d8fe) Allow task names to be numeric. fix #1961, ref #1763
 * (a06d614) Stop false matches with changelog->upgradeactions linking

=== 1.1.113 (2013.09.09) ===

 * (e9915fe) Tweak changelog generator to not use flexget package

=== 1.1.112 (2013.09.09) ===

 * (4235543) Add links to upgrade actions in the change log

=== 1.1.111 (2013.09.08) ===

 * (270b6f2) Add allow_teasers option to series_premiere plugin

=== 1.1.110 (2013.09.07) ===

 * (f4de254) Convert trakt_acquired to use requests, add more debug output for failures.

=== 1.1.109 (2013.09.07) ===

 * (01ec40d) Tweak the changelog generator a bit

=== 1.1.108 (2013.09.07) ===

 * (42bb371) Add a helper script to generate a changelog from git log
 * (6a13295) Make prowl debug output actually go to debug log

=== 1.1.107 (2013.09.07) ===

 * (76bcfe7) Add some debug output to prowl --test

=== 1.1.106 (2013.09.06) ===

 * (b720824) Improve schema for csv plugin. fix #2193

=== 1.1.105 (2013.09.04) ===

 * (6df6d28) Prevent recursive lazy lookups with imdb plugin.

=== 1.1.104 (2013.09.04) ===

 * (65aedc1) imdb_lookup will look up based on movie_name if available refs #2112

=== 1.1.103 (2013.09.03) ===

 * (a8bd46f) Clean up rapidpush plugin

=== 1.1.102 (2013.09.03) ===

 * (dc4bf4f) Clean up serienjunkies plugin

=== 1.1.101 (2013.09.03) ===

 * (d2c311d) Clean up torrent411 plugin

=== 1.1.100 (2013.09.03) ===

 * (18c881e) Cleanups for listdir plugin

=== 1.1.99 (2013.08.31) ===

 * (86cfc8a) Included torrent411 urlrewriter. Fixes #754.

=== 1.1.98 (2013.08.31) ===

 * (be97134) Added support for symbolic links to the other exists-plugins.

=== 1.1.97 (2013.08.31) ===

 * (70a6a6e) Removed dirs_only option since it broke the tests.
 * (32d2645) Updated for exists_series dirs_only parameter, if entry is a dir, don't chop the last word from the name.
 * (b59127f) Merge branch 'master' of https://github.com/Flexget/Flexget

=== 1.1.96 (2013.08.28) ===

 * (06c6a64) Refactor and fix content_filter require_all logic, add some unit tests.

=== 1.1.95 (2013.08.28) ===

 * (a5274e6) Catch potential exception in rss plugin. fix #1880
 * (af7471e) Catch potential network exception in imdb_list. fix #1817
 * (0cdb58f) Allow use of ~ in transmission netrc option. fix #1789

=== 1.1.94 (2013.08.27) ===

 * (3ebaad7) Clean up rtorrent_magnet plugin. refs #1994
 * (2b32271) Add 'watched' option for trakt_list movies. fix #1966

=== 1.1.93 (2013.08.27) ===

 * (c280a8a) Give a proper error message when config is not utf8 encoded. fix #2121

=== 1.1.92 (2013.08.26) ===

 * (b9f0f43) Add 'webhd' as synonym for webdl quality.
 * (a18ed42) Fix pogcal authentication issues. fix #2128

=== 1.1.90 (2013.08.26) ===

 * (2ab373a) Update apple_trailers docstring. fix #2167

=== 1.1.89 (2013.08.26) ===

 * (274aba2) Fix import problem with serienjunkies plugin. fix #2184

=== 1.1.88 (2013.08.26) ===

 * (3733c69) Merge branch 'serienjunkies'
 * (b129840) Fix indentation in serienjunkies urlrewriter
 * (ddc7469) Indention fixed
 * (de7513d) Updated .gitignore
 * (997c913) Final and working version serienjunkies.org urlrewriter
 * (b198e50) Final version serienjunkies.org urlrewriter
 * (7f64157) Update urlrewrite_serienjunkies.py
 * (230aebf) code cleaning
 * (e1bd888) hoster and language configuration
 * (1243bb4) Create urlrewrite_serienjunkies.py

=== 1.1.87 (2013.08.26) ===

 * (9eca252) Merge branch 'tempdir'
 * (e2ddabd) Small cleanups to download tests
 * (0b8b725) chmod -x'ed tests/test_download.py back to normal
 * (b3f7e80) Some cross-platform and regular bugs
 * (db5f874) Download plugin: bugfixes and a bit of PEP8
 * (9a56d35) no idea why that was missing O_o
 * (fd1ee47) download plugin: temp directory and test cases

=== 1.1.86 (2013.08.19) ===

 * (96b9218) Make sure explicitly configured series can never be hidden in a --series summary.

=== 1.1.85 (2013.08.19) ===

 * (30d77bb) Fix --series further so that all series are queryable.

=== 1.1.84 (2013.08.19) ===

 * (78efdf2) Improve --series behavior for shows with similar names. fix #2149

=== 1.1.83 (2013.08.04) ===

 * (473b084) Merge pull request #71 from rpatterson/log-torrentz-request-errors[[BR]]
   Log specific HTTP error messages when searching torrentz
 * (01cc833) Log specific HTTP error messages when searching torrentz

=== 1.1.82 (2013.07.30) ===

 * (b3dcbb4) Add loose matching support for --series NAME

=== 1.1.81 (2013.07.21) ===

 * (51c6d36) Remove invalid rows in series_tasks fix #2115

=== 1.1.80 (2013.07.21) ===

 * (5be2d86) Series db cleanup now no longer messes up relationships
 * (23ad9a4) config_modified flag is now set after a database cleanup
 * (2c716f9) Include quality info in btn search result titles

=== 1.1.79 (2013.07.19) ===

 * (9e9fb96) Disable notify_osd when config is False

=== 1.1.78 (2013.07.18) ===

 * (6d77428) Torrentleech sizes can, surprisingly, be in Bytes
 * (a326b39) Added distribute tarball and man/ to gitignore

=== 1.1.77 (2013.07.16) ===

 * (dfc0cae) Workaround for paver bug with missing module 'version'
 * (2cee8a7) exists_series will now follow symbolic links dirs_only False/True has been added to allow searching for directories only, default: False

=== 1.1.76 (2013.07.16) ===

 * (0662ee9) Merge branch 'master' of https://github.com/Flexget/Flexget

=== 1.1.75 (2013.07.15) ===

 * (0d7b468) Upgrade bootstrap.py to new version

=== 1.1.74 (2013.07.12) ===

 * (0afc219) Make sure movie title parser cuts at "director's"

=== 1.1.73 (2013.07.10) ===

 * (b7a7066) Fix missing space in verbose accept/reject messages
 * (417b76e) Fix cascade not deleting episodes when doing --series-forget for whole series

=== 1.1.72 (2013.07.10) ===

 * (cd93524) Make sure identified_by is not overridden to auto when explicitly specified for series groups

=== 1.1.71 (2013.07.08) ===

 * (e10964e) Allow setting --series-begin for shows not yet in the database

=== 1.1.70 (2013.07.08) ===

 * (9e3bb09) Add from_start option to emit_series
 * (50df981) Make sure no reruns are requested for next season with a non-ep based show

=== 1.1.69 (2013.07.08) ===

 * (aa28cab) Fix --series-begin for sequence identifiers

=== 1.1.68 (2013.07.08) ===

 * (ab26eb4) Make sure series plugin get_latest_download helper only returns episodes that match the identified_by type for the series

=== 1.1.67 (2013.07.08) ===

 * (9a3e6a9) Fix issue with webui series query. fix #2101

=== 1.1.66 (2013.07.05) ===

 * (ee5dc8e) Update beautifulsoup requirements

=== 1.1.65 (2013.07.05) ===

 * (5287ad4) Make previous emit_series fix a bit cleaner.

=== 1.1.64 (2013.07.05) ===

 * (cc2163e) Catch an error with python tvrage api
 * (252c2e0) Fix crash in emit_series

=== 1.1.63 (2013.07.02) ===

 * (9dc2783) Prevent a crash in imdb parser. refs #2091

=== 1.1.62 (2013.06.30) ===

 * (3ded33f) Add some more fields to entries created by apple_trailers

=== 1.1.61 (2013.06.30) ===

 * (4280c93) Fix apple_trailers test

=== 1.1.60 (2013.06.30) ^[wiki:UpgradeActions#a2013.6.301.1.60 upgrade actions]^ ===

 * (300f0b0) Fix apple_trailers plugin

=== 1.1.59 (2013.06.30) ===

 * (1075e83) Fix imdb mpaa test
 * (67c7605) Strip quotes from imdb_original_name

=== 1.1.58 (2013.06.30) ===

 * (1a69757) Add 'remux' as a valid source
 * (015d546) Fix forgotten comma

=== 1.1.57 (2013.06.26) ===

 * (1fd54dc) Try to make sure more specific series name is parsed first in case of ambiguity.

=== 1.1.56 (2013.06.26) ===

 * (36cb425) Fix api_tvrage for shows with non-ascii characters

=== 1.1.55 (2013.06.26) ===

 * (30f6c9b) Fix bug with newtorrents search plugin

=== 1.1.54 (2013.06.25) ===

 * (b0d4387) Fix api_tvrage database caching

=== 1.1.53 (2013.06.25) ===

 * (2aa9eb6) Catch timeouts properly in api_tvrage, prevent task aborts

=== 1.1.52 (2013.06.24) ===

 * (d965def) Reduce log spam when using discover plugin.

=== 1.1.51 (2013.06.24) ===

 * (4e5c811) Small typo in readme

=== 1.1.50 (2013.06.23) ===

 * (77b34e7) Small typo + level logging

=== 1.1.49 (2013.06.23) ^[wiki:UpgradeActions#a2013.6.231.1.49 upgrade actions]^ ===

 * (c429829) if the source extension isn't already present in the destination add source extension to destination when moving.
 * (2feaea4) Merge branch 'planeturban'
 * (e7d602d) Added support for unwatched media only. Fixed naming of some entries.

=== 1.1.48 (2013.06.23) ===

 * (45a6bcf) Merge branch 'planeturban'
 * (4bfb556) Removed some debugging.

=== 1.1.47 (2013.06.22) ===

 * (9679aee) Make sure series_premiere doesn't do anything with shows configured in series plugin. fix #2082

=== 1.1.46 (2013.06.22) ===

 * (0fc2ec9) Jack up the timeout for disconnecting from deluge daemon

=== 1.1.45 (2013.06.22) ===

 * (057222f) Minor improvements to docstrings and log messages.

=== 1.1.44 (2013.06.22) ===

 * (6f570ca) Fix bug with series CircularDependencyError
 * (c84105f) Only log first request for rerun within a task

=== 1.1.43 (2013.06.21) ===

 * (5304505) Episodes that tvrage doesn't know about are now considered unreleased in est_released_series
 * (1f1d3bb) Fix search count in discover plugin
 * (b1243c9) Fix bug in btn plugin when no results

=== 1.1.42 (2013.06.21) ===

 * (bd84698) Fix bug with api_tvrage and None genres Improve how tvrage genres are stored in the database a bit
 * (55b74e4) Fix max_reruns plugin

=== 1.1.41 (2013.06.21) ===

 * (08fa7da) Better log messages for emit_series about shows not being emitted

=== 1.1.40 (2013.06.21) ===

 * (8ac8e54) Removed wait parameter, let's be bursty if we need a more complex system we'll implement it another way.

=== 1.1.39 (2013.06.21) ===

 * (10b414c) Add alternate_name option to series plugin

=== 1.1.38 (2013.06.21) ===

 * (9adeb0d) Add better debug logging if trakt_list fails to decode response from trakt. refs #2083

=== 1.1.37 (2013.06.20) ^[wiki:UpgradeActions#a2013.6.201.1.37 upgrade actions]^ ===

 * (9443993) Merge branch 'emit_series'[[BR]]
   Conflicts:[[BR]]
   	flexget/plugins/generic/archive.py[[BR]]
   	flexget/plugins/search_kat.py
 * (2b8afdd) Cleanups for newznab plugin
 * (6b98975) Cleanups
 * (da521c3) Remove task level entry hooks for now
 * (6ecd020) Add a method to Task to add hooks on all entries added to that task
 * (4831b53) More tweaks to series database updating
 * (d581639) Explicitly set identified_by to ep for all_series and series_premiere
 * (8b2d1d3) Allow ep identifiers to be lower case with 'begin' option
 * (311c323) Combine est_released_tvrage and est_released_series Catch some errors better for shows not in tvrage
 * (82dc2ae) Make sure --series summary never hides series in config
 * (1759260) import_series keeps track if config has changed Fix series db updates to work properly
 * (c84c9fa) Make sure Episode.first_seen doesn't crash when there aren't releases
 * (424f49f) Add docstrings for entry hooks
 * (ffabeb9) pep8 + cleanup
 * (8482bf1) Added DB cleanup, to clean data not updated for 30 days. If tvrage data are more than 7 days old, refetch them from tvrage (purge db for that show and reinsert).
 * (b8833b1) Removed Season utility class in profit of an episode method. Changed test & est_Released_tvrage accordingly
 * (446c62c) Helper functions, comments and cascade relation
 * (bca7069) Useless var for the test (copy / paste is bad)
 * (1b682a1) First persistence changes for tvrage api
 * (0c7cae0) New url rewrite for newznab engines.
 * (a89caec) Support sequence based episodes in emit_series, est_released_tvrage and btn plugins
 * (53cae6b) emit_series now tries to fill in any undownloaded episodes from current season
 * (e472524) Fix grace for large episode batches in series episode advancement Fix small issue with setting series begin
 * (1320a28) Implement super cool auto retry with emit_series for next episode or season
 * (5beb54d) Make --series-begin work with lower case ep identifiers
 * (d34d606) Make --series-begin actually work
 * (1842e56) Start implementing --series-begin. Probably broke some stuff, commiting before I go home.
 * (37e82ab) Merge branch 'emit_series' of https://github.com/Flexget/Flexget into emit_series
 * (6e27b6c) functools.total_ordering is not available in 2.6
 * (a52d8f7) emit_series now starts at 'begin' if specified
 * (54a58ef) Update task.undecided
 * (8b3ade8) Remove some todos about entry phases
 * (caa7e3f) If successful, emit_series tries rerun to get next ep More fixes
 * (047ca23) Add entry.task back More tweaks to the new entry phases
 * (05906c2) --dump now prints title and url above other fields
 * (7049a42) Start refactoring entry phases
 * (31fc167) Merge branch 'emit_series' of https://github.com/Flexget/Flexget into emit_series
 * (59c1fa6) Remove series 'watched' option in favor of 'begin' option, which is now stored in the database.
 * (7d33ec6) Series plugin now accepts any missing episodes from the current season
 * (cf611f8) Update all search plugins to use search_strings
 * (f87b4f1) Fix est_released_series, add a season break estimator
 * (c1406b7) Update some search plugins to use search_strings field
 * (9e1f79b) Make sure urlrewrite_search iterates results in sorted order
 * (fa9a72f) Movie estimator falls back to movie_year
 * (83a6149) More est_released tweaks
 * (2da56c5) Raise DependencyError when series plugin is missing
 * (c15d4c2) Add release estimator based on series history Tweaks to est_released plugins
 * (5958d30) Refactor emit_series a bit
 * (ddce719) Series plugin now unmarks the database when tasks are removed
 * (ca9ceee) Fix btn plugin with no results
 * (424bd70) If any series are configured in tasks, --series will only print the summary for them
 * (e3c7a80) Add info into db for which series are configured in which task emit_series now only emits series from that task
 * (1f6c0d8) Start emit_series branch
 * (c78f306) Start emit_series branch

=== 1.1.36 (2013.06.17) ===

 * (a3b4215) Changed old kat.ph to new kickass.to domain.

=== 1.1.35 (2013.06.13) ===

 * (32028e2) Don't import jsonify from flask.helpers fix #2078

=== 1.1.34 (2013.06.13) ===

 * (8ff63e9) Make sure auto identified by works properly with all_series

=== 1.1.33 (2013.06.12) ===

 * (dea8e78) Some doc updates

=== 1.1.32 (2013.06.11) ===

 * (ffa4b01) Update version number in sphinx documentation
 * (715bb94) Fix imdb parser for movies with no plot. fix #2042, #2071
 * (34af346) fix #2075

=== 1.1.31 (2013.06.10) ===

 * (8ee56df) Merge branch 'ftp'
 * (191b01f) Some ftp plugin cleanups
 * (7bef6bb) bugfixes and suggestions added
 * (57d9a84) first version from ftp_download plugin
 * (ee61b60) Fixed commentaries
 * (b6390ed) First version from ftp_list plugin

=== 1.1.30 (2013.06.08) ===

 * (89fd4aa) Add docs for 'interval' values in schemas

=== 1.1.29 (2013.06.08) ===

 * (b48860a) Merge pull request #57 from andir/invalid_port[[BR]]
   Fixed some issues with torrent_alive related to invalid ports.
 * (0209264) Fixed some issues with torrent_alive related to invalid ports.

=== 1.1.28 (2013.06.05) ===

 * (a3bc27f) Search plugin flexget_archive now produces sensible results.[[BR]]
   - Does not create None fields, Fixes #2069
 * (54c30ac) Increased discover verbosity level on search.
 * (c7ce11b) Entry update_using_map now has ignore_none kwarg.

=== 1.1.27 (2013.06.05) ===

 * (d56b4e5) Fixes make_rss guid failure with unicode.[[BR]]
   - Fixes #2068

=== 1.1.26 (2013.06.02) ===

 * (ece3493) Fix merge problem. fix #2064

=== 1.1.25 (2013.06.01) ===

 * (2760f21) csv plugin now handles unicode input. (hopefully correctly) Also add csv plugin schema and switch to requests

=== 1.1.24 (2013.05.31) ^[wiki:UpgradeActions#a2013.5.301.1.24 upgrade actions]^ ===

 * (55b9516) Find and listdir plugins now strip extension from created entry titles.

=== 1.1.23 (2013.05.31) ===

 * (3070895) Add --clear-backlog option

=== 1.1.22 (2013.05.31) ===

 * (e7adbe7) ascii option to rss plugin now converts whole feed before parsing. can help parse bad feeds. refs #1637

=== 1.1.21 (2013.05.29) ===

 * (d919e67) Re-implement deleting of non-accepted entries after task execution to reduce memory usage. ref #1652
 * (4b76408) Update readme with links to website

=== 1.1.20 (2013.05.27) ===

 * (4532ad1) Don't let strings have u'' representation in config error messages
 * (303bc74) Add imdb_list schema
 * (a3ec316) Import cleanups
 * (49828e7) More schemas

=== 1.1.19 (2013.05.27) ===

 * (861503a) More schemas
 * (79196bf) More schemas
 * (59ebacb) Convert more plugins to use new schemas

=== 1.1.18 (2013.05.27) ===

 * (5b586a1) Require series titles to end at word borders. fix #1949
 * (d26c642) Increase download chunk size to 150kB fix #1622

=== 1.1.17 (2013.05.27) ===

 * (0415501) Fix make_rss schema
 * (91eb66f) Hopefully fix series db cleanup. refs #2034
 * (430c2ed) Convert rss plugin to schema
 * (53ab874) Remove old lazy validator code, issue error if any plugins try to use it.
 * (ab4dea3) Add schema docs on format keyword
 * (3db11c0) Convert cookies to schema
 * (736cc2a) Add download url into package metadata

=== 1.1.16 (2013.05.27) ===

 * (294f1f4) Start some documentation on the new schema system

=== 1.1.15 (2013.05.27) ===

 * (7799d35) Convert regexp plugin to new schema
 * (3b1219e) Remove unused import
 * (9a0a95e) Fix some config error messages not printing
 * (d00100b) Remove add_plugin_validators function
 * (3e42447) Clean up a few TODOs

=== 1.1.14 (2013.05.27) ===

 * (d20705e) Refactor how series plugins share the series settings schema

=== 1.1.13 (2013.05.26) ===

 * (d651d26) Series plugin 'path' option allows any path. fixes #2057

=== 1.1.12 (2013.05.26) ===

 * (2d3b02a) Fix series_premiere validator so allow_seasonless works again. refs #2057

=== 1.1.11 (2013.05.26) ===

 * (a92f3db) Removed tvtorrents input (unmaintained and broken)

=== 1.1.10 (2013.05.26) ===

 * (a11048f) Merge pull request #55 from docpaul/master[[BR]]
   from_transmission input mods
 * (37ddd1f) Update plugin_transmission.py[[BR]]
   Added additional keys (content_size, transmission_comment, transmission_downloadDir, transmission_isFinished, transmission_isPrivate) to from_transmission input entry

=== 1.1.9 (2013.05.26) ===

 * (6ffb5c9) Catch RenderErrors in exists_series
 * (711812e) Don't bother converting movie release estimate to date

=== 1.1.8 (2013.05.25) ===

 * (c18c3e2) Allow jinja replacement in exist_series paths in order to optimize number of files scanned
 * (b905115) Avoid string replacement in a bunch of logging calls when not enabled for that level

=== 1.1.7 (2013.05.25) ===

 * (1177c25) Make sure 'auto' series identifier mode doesn't overwrite learned one
 * (d419562) Update some more plugins with schemas
 * (5362190) More readme formatting

=== 1.1.6 (2013.05.25) ===

 * (b08e84c) Update README some more

=== 1.1.5 (2013.05.25) ===

 * (fa4d1b2) Update README to use rst Add classifiers and long_description to our setup

=== 1.1.4 (2013.05.25) ===

 * (6e78c9e) Fix --ver-file option for release task

=== 1.1.3 (2013.05.24) ===

 * (4f5dcb2) fix #2055

=== 1.1.2 (2013.05.24) ===

 * (6e9a698) Merge branch 'planeturban'
 * (1d45f05) More pep8 fixes. Added skip if episode not could be determined.
 * (352c897) Merge branch 'planeturban'
 * (a0ecb89) New enteties. plex_server         unresolved server name plex_server_ip      resolved server ip plex_port           PMS port plex_section        section number plex_section_name   section name e.g. TV Shows plex_path           path to media on server e.g. /library/parts/44695/file.mkv[[BR]]
   Smarter check if section is TV or not.
 * (98da9d5) Removed temporary debug information.

=== 1.1.1 (2013.05.24) ===

 * (3a0028d) Add jsonschema to technologies used in dev docs

=== 1.1.0 (2013.05.24) ^[wiki:UpgradeActions#a2013.5.241.1.0 upgrade actions]^ ===

 * (3932fe0) Bump version number
 * (43a476e) Fix small merge problem with discover plugin
 * (3f6727d) Merge branch 'jsonschema'[[BR]]
   Conflicts:[[BR]]
   	flexget/plugins/filter/content_filter.py[[BR]]
   	flexget/plugins/filter/queue_base.py[[BR]]
   	flexget/plugins/input/discover.py[[BR]]
   	flexget/plugins/input/mock.py[[BR]]
   	pavement.py
 * (7acf825) Fix backwards compatible validator test
 * (0c3d823) Refactor some schema validator stuff
 * (a1b9c8d) Update jsonary style to be more like yaml
 * (b545911) Tweak getset_item
 * (7a88356) Fix up discover and inputs schemas
 * (4190285) Update jsonary again
 * (20c5596) Update jsonary again
 * (be88238) Tweak series schemas
 * (c442eef) Clean up listing of available keys in editor
 * (5b9ff3a) Switch to yes/no for booleans in editor Clean up some of the style in editor
 * (f018d9c) Fix quotes in schemas
 * (1fb6174) Tweak trakt_list schema
 * (d6c67d4) quotes fix
 * (5b21274) Update jsonary
 * (d485d32) Make sure oneOf validator also chooses our custom child errors
 * (0b50b22) Tweak some schemas for better jsonary representation
 * (d99fab4) Make /configure/jsonary sorta less broken
 * (f3adba6) Add sorta broken /configure/jsonary to webui
 * (0eb1f4a) Add jsonary files to configure plugin static folder
 * (cb6797a) Register root config schema at /schema/root Temporarily hard code some Content-Type headers to test jsonary
 * (2f7cd95) Add RESTful endpoint for config json to webui
 * (6b79938) Reverse order in one_or_more, so that array comes first
 * (286283b) Fill the 'id' keyword in all plugin schemas
 * (b33078b) Make setting defaults when validating a separate method
 * (d5a1642) Only set defaults when validator is called with set_defaults
 * (f17fec3) Mark some required properties in schemas Add some defaults to schemas
 * (a41edae) Mark required fields in crossmatch schema
 * (b8abf61) Add support in for filling default values
 * (cfed56b) Improve error messages from some of our format checkers
 * (3f710cf) Clean up the type error message
 * (21f1dda) Convert apple_trailers to new schema (config is now case sensitive)
 * (02da432) Improve schema for legacy choice validators with ignore_case
 * (8979c3a) validate_config methods now returns a list of ValidationErrors
 * (76b72e2) Clean up any_schema
 * (0d11d7a) Improve error message for enum Simplify one_or_more now that errors are better for anyOf
 * (63f532d) Custom errors are now included in schemas generated from old validators
 * (a7a2bbb) Improve error message for extra keys
 * (8dbc4fe) Make virtual type error test more robust
 * (eed0166) Smarter error behavior for anyOf schemas
 * (c3afa66) Add some notes about deprecated validator testing stuff
 * (cd36bbe) Clean up unit tests for custom validation messages
 * (4a285e9) Fix path validator for paths with jinja
 * (f4d5a11) Make errors raised by format checkers be the validation error
 * (fc0e833) anyOf validator sometimes guesses a branch to give errors from
 * (f2699dc) Convert sequence plugin to json schema
 * (eb9ac01) Fix and refactor how paths are added to error messages Add a custom message for the interval format validator
 * (93303a9) Add the path of the error to the beginning of error messages
 * (693e6df) Add system for creating custom validation error messages Add generic render function to utils.template
 * (a2dbc25) Fix an issue with a series_premiere test
 * (a118f7a) Fix an issue with the pluginapi tests
 * (32a7479) Disable validator tests which we can't support with json schema
 * (db3678b) Add back validate method to old validators to allow unit tests to run Fix choice validator with ignore_case flag Fix path validator with allow_missing flag
 * (e3986d9) Add 'path' format checker
 * (6fb0a18) Convert if plugin to json schema
 * (150a13e) Fix imdb min_score schema to allow numbers
 * (4edb19c) Require jsonschema >= 1.2
 * (7d68681) Add interval format validator
 * (b5656a0) More config schema updates
 * (dd9e847) Convert more config schemas
 * (9f0076b) Convert exists config schema
 * (8598466) Add some forgotten additionalProperties: False
 * (a6f83e3) Convert crossmatch config schema
 * (c46fc7f) Convert content_size config schema
 * (d907a84) Improve the ref validation test. It checks all refs and fragments now.
 * (c76cf7c) Add a unit test to make sure refs in schemas are valid
 * (2ceab4e) Convert download plugin schema
 * (7587732) Convert search_rss plugin schema
 * (da8b7a5) Convert trakt_list plugin schema
 * (1deffb2) Convert rss plugin schema
 * (83a16ba) Convert unit test to test all registered schemas instead of plugins directly.
 * (a9af3ca) Cleanups for jsonschema stuff
 * (ca5755d) Return 404s when schemas are not found
 * (0e1142d) Make schemas available from the webui
 * (1e8fc00) Convert series plugins to use new config schemas
 * (c4df5ca) Optimize one_or_more for better error messages
 * (6973d5d) Add one_or_more helper to generate schemas
 * (b2b6058) Add a few comments.
 * (304acd1) Convert content_filter plugin to use new config schema
 * (9b5ce1d) Convert accept_all plugin to use new config schema
 * (195b154) Convert mock plugin to use new config schema
 * (08dd6f8) Remove some unused imports in inputs plugin.
 * (461062a) Restore 'limit' option to discover plugin.
 * (1d764c1) Re-implement /schema/plugins refs
 * (af68b51) Fix mock validator.
 * (8fa2f5c) Separated new config validation from old validator.py Use new validator to do validation. (unfinished and a bit messy)
 * (a4dd0ab) Rename schema.py to db_schema.py
 * (1c36548) More work on jsonschema validation
 * (0d83edc) Start implementing jsonschema validation

=== 1.0.3414 (2013.05.24) ^[wiki:UpgradeActions#a2013.5.241.0.3414 upgrade actions]^ ===

 * (acd1f17) Merge branch 'discover_refactor'
 * (f7c2d38) Add preliminary btn search plugin
 * (306d557) Move est_released plugins out of metainfo package
 * (cd56331) Implement close matching in urlrewrite_search
 * (5ebc5aa) Change tpb search behavior with dashes
 * (dd9dab2) Few fixes since we have change entry type
 * (02230cb) Few fixes since we have change entry type
 * (814c11e) Refactor interval_expired a bit
 * (4554d4f) Axe comparators!
 * (4aaab5a) Fix for days interval (using a method to have a cleaner code)
 * (30ab992) Addressing "Automatic staggering of search intervals to avoid many searches all in one run", we use the random algorithm.
 * (3b57bea) Add discover test for release estimates
 * (c8a6e4b) Fix test name
 * (be3e5a2) Add some simple test cases for discover
 * (8a5563d) Add index for title and task on discover table Make discover release entries that no estimate could be found
 * (2b5fb02) Merge branch 'master' of https://github.com/Flexget/Flexget into discover_refactor
 * (0b3617a) pep8 spaces
 * (057a0ec) Fixed a "normal" exception in the log that may raise unnecessary questions
 * (2a88b82) Merge branch 'discover_refactor' of https://github.com/Flexget/Flexget into discover_refactor[[BR]]
   Conflicts:[[BR]]
   	flexget/plugins/input/discover.py[[BR]]
   	flexget/plugins/urlrewrite_torrentz.py
 * (2ae0404) Discover refactoring[[BR]]
   - Reduced logging[[BR]]
   - Emit series does now 1x01 format
 * (834a6a6) Fix estimator loop, consider rest plugins as well.
 * (80bf16c) Discover refactoring mayhem.[[BR]]
   - Various tweaks and fixes
 * (29c5925) Compatibility fix for some search plugins with the new discover refactor Added a log when movie is not available yet.
 * (94ba663) Changed from simple_persistence to a Base
 * (70133a4) Simplifications and correction from comments (est_released is no longer a plugins)
 * (ea42e75) Est_released now returns only the estimated date of release for the movies, leaving other plugins to decide what to do with it.
 * (de7c61a) est_released : Renamed function and accept only one entry + fix to the filter + return estimate date of release discover: added a configuration entry so the estimate function can be disabled est_released_movies / series : return estimated date of released for the entry
 * (ed14a7c) Added an interval parameter : for each entry provided by entry an internal interval is created so the same entry won't be search before next interval.
 * (0ae4da3) estimate_released plugin for movies
 * (3869836) Static Cache for api_tvrage in order to speed up multiple query for the same TV Show
 * (5f043ae) Created a filter plugin for est released, with an helper function called by discover Change emit_series to output only one title per series with meta data from the episode two syntax is not useful Added debug information to est_released_series
 * (73a8ccc) Added release estimation for tv series
 * (ef4955e) emit_series now add meta data within the entry serie_name, serie_season, serie_episode
 * (132c6e6) Discover now provide an entry instead of just a title

=== 1.0.3413 (2013.05.24) ===

 * (97c928a) Fix issue with our file:// support on newer requests. fix #2054

=== 1.0.3412 (2013.05.23) ===

 * (8e92072) Add --ver-file option to release task, so jenkins can read version number

=== 1.0.3411 (2013.05.20) ===

 * (e0c2f3f) Fixed issue where all qualities would not be stripped from series names before parsing. fix #2049
 * (982a7c9) Update logo for webui header

=== 1.0.3410 (2013.05.20) ===

 * (ad886df) Merge branch 'plex'
 * (7814e9f) Added support for named sections. Added checks to only allow TV sections.

=== 1.0.3409 (2013.05.19) ===

 * (3440c6e) Fix rejection messages for content_size

=== 1.0.3408 (2013.05.18) ===

 * (a31c83a) Let --test test a bit more in make_rss Fix an issue with non-ascii strings in make_rss

=== 1.0.3407 (2013.05.18) ===

 * (635d974) Merge branch 'plex'
 * (290d7be) Fix for date based series.

=== 1.0.3406 (2013.05.18) ===

 * (8de49d7) Removed test code from previous commit.
 * (38274db) Added more detailed information to seen plugin reject message.

=== 1.0.3405 (2013.05.18) ===

 * (c7c850c) Plugin make_rss now writes guid[[BR]]
   - Fixes #2045

=== 1.0.3404 (2013.05.18) ===

 * (4587f16) Removed IP-only server configuration. Added "original_filename" configuration parameter. Moved resolution in filename to it's "correct" place.

=== 1.0.3403 (2013.05.17) ===

 * (a0bc62d) Add links to some git tutorials to developer docs
 * (71c8f43) Fixed indentation.

=== 1.0.3402 (2013.05.15) ===

 * (a56a8c1) Merge branch 'master' of https://github.com/Flexget/Flexget
 * (df11efb) Merge branch 'plex'
 * (3cf8637) New 'title' and some new configuration parameters: Added video codec, audio codec, video resolution to filename. New configuration parameters:     'lowercase_title'   Convert filename (title) to lower case.     'strip_year'        Remove year from title, ex: Show Name (2012) 01x01 => Show Name 01x01

=== 1.0.3401 (2013.05.15) ===

 * (0b6a18e) New configguration parameters:     'lowercase_title'   Convert filename (title) to lower case.     'strip_year'        Remove year from title, ex: Show Name (2012) 01x01 => Show Name 01x01
 * (f1207dd) New 'title' and some new configuration parameters: Added video codec, audio codec, video resolution to filename. New configuration parameters:     'lowercase_title'   Convert filename (title) to lower case.     'strip_year'        Remove year from title, ex: Show Name (2012) 01x01 => Show Name 01x01

=== 1.0.3400 (2013.05.14) ===

 * (af6bbdb) Add new logo as windows tasktray icon

=== 1.0.3399 (2013.05.15) ===

 * (afe5231) Added myplex and selection support, for real this time.

=== 1.0.3398 (2013.05.14) ===

 * (266a2d8) Revert "Added myplex and selection support"[[BR]]
   This reverts commit afa739fae2b2931ee4dc68d5bed8e3f70565e8e7.

=== 1.0.3397 (2013.05.13) ===

 * (afa739f) Added myplex and selection support

=== 1.0.3396 (2013.05.13) ===

 * (5c280d8) Merge branch 'master' of https://github.com/Flexget/Flexget

=== 1.0.3395 (2013.05.12) ===

 * (26a0c2c) Merge pull request #47 from planeturban/plex[[BR]]
   Plex
 * (56a6d02) Nicer looking urlopen
 * (e0a4d7e) PEP8
 * (19315da) Added plex.py[[BR]]
   Added Plex input plugin. Uses a Plex media server tv-section as input.

=== 1.0.3394 (2013.05.12) ===

 * (0b4560a) Merge pull request #48 from floppym/master[[BR]]
   Include test data in tarballs
 * (0507ecf) Include test data in tarballs
 * (3ee7511) Readthedocs fixes.

=== 1.0.3393 (2013.05.13) ===

 * (c769b90) Added developer database documentation to Sphinx.

=== 1.0.3392 (2013.05.11) ===

 * (4bd9a89) Enable sphinx doctest extension and fix rendering of TDD docs page

=== 1.0.3391 (2013.05.07) ===

 * (2c836c7) Merge pull request #46 from Nemesis7/patch-1[[BR]]
   prowl plugin now supports jinja in 'event' option
 * (930abc0) Update prowl.py
 * (a2a965d) Update prowl.py
 * (3c32df9) Update prowl.py[[BR]]
   This allows for showing the entry metadata in the 'event' part of a push notification.

=== 1.0.3390 (2013.05.06) ===

 * (2bb3b9a) Revert try_every option to emit_movie_queue, replacement will be implemented in discover plugin

=== 1.0.3389 (2013.05.05) ===

 * (d9b3d31) Add some unit tests for emit_movie_queue
 * (887452f) Add try_every option to emit_movie_queue
 * (77446d0) Be even more helpful if encountering tabs in config.
 * (5f31bec) Removed torrage.ws[[BR]]
   - Fixes #2029

=== 1.0.3388 (2013.04.28) ===

 * (02ab856) Developer documentation.

=== 1.0.3387 (2013.04.27) ===

 * (44c16a8) Series plugin logs verbose when quality requirements are not met.
 * (8526ecf) Added developer instructions to Sphinx documentation.

=== 1.0.3386 (2013.04.15) ===

 * (91cbb28) Fix our requests session to properly hand off non http schemas to urllib

=== 1.0.3385 (2013.04.11) ===

 * (47043e5) Make rtorrent_magnet count as an output plugin Make rtorrent_magnet support ~ in paths

=== 1.0.3384 (2013.04.10) ===

 * (a725754) Merge pull request #40 from tpolich/master[[BR]]
   New regex input plugin 
 * (3817e25) Update regexp_parse.py[[BR]]
   added some more detail to the description
 * (4f054f8) fixed pep8 errors
 * (0a225e6) more documenting and added some idea for later work
 * (287a122) fixed some docstrings and added class docstring
 * (a208d72) removed debugging print
 * (ebad7af) fixed more issues with changing regex to regexp
 * (891202e) fixed variable name
 * (d25b07b) added a lot of docstrings and removed special handling code for url and title entry fields
 * (1a8e545) changed config format to differ less between flexget (url and title field) and custom fields
 * (aa73783) renamed to regexp_parse.py
 * (4a7b62a) new regex based input plugin[[BR]]
   added regex input plugin. A more complete offering of what the text plugin currently does.

=== 1.0.3383 (2013.04.09) ===

 * (4760947) add require_all to content_filter validator

=== 1.0.3382 (2013.04.09) ===

 * (f4840d5) add require_all option to content_filter

=== 1.0.3381 (2013.04.07) ===

 * (e11d394) Plugin torrent_alive no longer mangles hostnames with announce[[BR]]
   - Fixes #2013

=== 1.0.3380 (2013.04.04) ===

 * (6766b1c) Remove extra tvdb_ from tvdb_ep_air_date entry field name. fix #2011

=== 1.0.3379 (2013.04.03) ===

 * (0eef2ea) Add a default timeout for our requests sessions

=== 1.0.3378 (2013.04.01) ===

 * (b52942d) Update kat search plugin for changes they made to fields. Thanks flexam

=== 1.0.3377 (2013.04.01) ===

 * (c0cceb2) Make sure from_transmission doesn't crash when no username/password is provided.

=== 1.0.3376 (2013.03.31) ===

 * (f46050d) Merge pull request #38 from TMaYaD/patch-1[[BR]]
   Workaround for http://flexget.com/ticket/2002, http://flexget.com/ticket/1954, http://flexget.com/ticket/1315
 * (ca57933) Workaround for http://flexget.com/ticket/2002

=== 1.0.3375 (2013.03.29) ===

 * (b167e0c) Move webrip quality above sdtv

=== 1.0.3374 (2013.03.28) ^[wiki:UpgradeActions#a2013.3.291.0.3374 upgrade actions]^ ===

 * (3417c7b) Use with statement for a bunch of file handling

=== 1.0.3373 (2013.03.28) ===

 * (dd45c29) Make exec plugin tests run using sys.executable
 * (e6fe1aa) Make sure config_hash is consistent for same config across runs
 * (ae3997f) Make sure rtorrent magnet test closes files
 * (869ba4f) Fix if plugin to work on pypy
 * (d733754) Make sure rss plugin closes files

=== 1.0.3372 (2013.03.22) ===

 * (95dce6f) Only run set plugin on accepted entries

=== 1.0.3371 (2013.03.20) ===

 * (04833c5) Merge branch 'master' of https://github.com/Flexget/Flexget

=== 1.0.3370 (2013.03.18) ===

 * (ba72fb6) Merge pull request #37 from prdatur/master[[BR]]
   RapidPush: Update with new channel feature
 * (0016ade) Merge branch 'master' of github.com:prdatur/Flexget
 * (bf456aa) RapidPush: implemented new broadcast channel feature
 * (737d983) RapidPush: implemented new broadcast channel feature
 * (48b45d1) Added error checking to notify.show and set timeout to 4 seconds instead of the default of 10[[BR]]
   - Added timeout option for setting how long Notifcation lasts

=== 1.0.3369 (2013.03.14) ===

 * (db51cc6) Better error catching, ref #1978

=== 1.0.3368 (2013.02.25) ===

 * (4b2063c) Make torrentz search fill torrent_info_hash field in created entries
 * (a4e7656) Re-enable torcache.net in torrent_cache plugin

=== 1.0.3367 (2013.02.26) ===

 * (d6d158f) Disable zoink.it from torrent_cache

=== 1.0.3366 (2013.02.26) ===

 * (e759127) PEP8 cleanups

=== 1.0.3365 (2013.02.25) ===

 * (a806492) Merge pull request #35 from Redsandro/rewritefix[[BR]]
   Torrentz rewriter fixed
 * (69a62f8) https removes nag-screen
 * (ae38c5b) Torrentz rewriter fixed

=== 1.0.3364 (2013.02.22) ===

 * (61a6229) Add unit tests for series parser with apostrophe & escaping[[BR]]
   - Refs #1605

=== 1.0.3363 (2013.02.22) ===

 * (3334499) Fixes imdb title parsing, online unit tests.

=== 1.0.3362 (2013.02.22) ===

 * (99b663a) Convert html plugin to use requests. refs #1958

=== 1.0.3361 (2013.02.22) ===

 * (54d502e) Merge branch 'master' of https://github.com/Flexget/Flexget

=== 1.0.3360 (2013.02.21) ===

 * (2417dff) fix #1955

=== 1.0.3359 (2013.02.21) ===

 * (5a7168d) Convert api_tmdb to requests. May help #1908
 * (bf51e8c) Reminder for SQLAlchemy debugging.
 * (dde5be7) Minor transmission plugin cleanups.
 * (51fa543) JSON editor changes. Refs #1855.

=== 1.0.3358 (2013.02.19) ===

 * (6077c21) Merge branch 'master' of https://github.com/Flexget/Flexget

=== 1.0.3357 (2013.02.18) ===

 * (12f2c5f) Merge pull request #33 from prdatur/master[[BR]]
   Updated output plugin: RapidPush
 * (5a48e55) RapidPush: Allow selecting which task states should be notified, changed version, removed test code
 * (130f3d4) RapidPush: Allow selecting which task states should be notified
 * (dcd36de) RapidPush: Allow selecting which task states should be notified
 * (a3487e7) Fixes #1952. Series plugin API method crashed with certain data.
 * (3319369) Movie queue cleanups, fixes #1819.
 * (dcde891) PEP8 cleanups.

=== 1.0.3356 (2013.02.18) ===

 * (39db723) Plugin `--cli-config` improvements. Fixes #1951.

=== 1.0.3355 (2013.02.18) ===

 * (64e54a6) Merge branch 'master' of https://github.com/Flexget/Flexget

=== 1.0.3354 (2013.02.15) ===

 * (00fbdb5) Merge pull request #32 from dickoff/pushover-multiuser[[BR]]
   Add multi-userkey support to pushover plugin
 * (0424027) Revert userkeys to userkey, remove excess logging.
 * (2370841) Pushover API plugin improvements.[[BR]]
   multiple userkey support[[BR]]
   custom sound support[[BR]]
   better error handling
 * (240f37c) Add multi-userkey support to pushover plugin
 * (363c97d) Argument --reset-plugin alone will now list all known schemas with details.
 * (6ab2caf) Docstring cleanup.
 * (449434b) Don't verbose about skipped db cleanup if not executing tasks (ie. cli commands).

=== 1.0.3353 (2013.02.15) ===

 * (471ec5b) SeriesParser unit tests. PEP8 cleanups.

=== 1.0.3352 (2013.02.14) ===

 * (9bca7ab) Update flexget/templates/rss/default.template[[BR]]
   Fix rss template for tvdb field name changes.

=== 1.0.3351 (2013.02.14) ===

 * (b844821) Adjustment to --series new_episodes_after to hopefully prevent crash when series or episode is None.

=== 1.0.3350 (2013.02.13) ===

 * (8902002) Some updates to validators to produce better schemas that comply with jsonschema draft 4

=== 1.0.3349 (2013.02.14) ===

 * (ff2ac60) Bugfix for unconfigured `disable_urlrewriters`.
 * (b356536) Merge branch 'master' of https://github.com/Flexget/Flexget

=== 1.0.3348 (2013.02.12) ^[wiki:UpgradeActions#a2013.2.121.0.3348 upgrade actions]^ ===

 * (83cce6b) Remove space from between api keys in rapidpush
 * (6e97450) Standardize all tvdb entry fields to start with tvdb_

=== 1.0.3347 (2013.02.12) ===

 * (f7ddeaa) Make rapidpush plugin accept multiple apikeys as a list

=== 1.0.3346 (2013.02.12) ===

 * (4bd7af9) Merge pull request #31 from prdatur/master[[BR]]
   Updated output plugin: RapidPush
 * (d701cfc) Merge remote-tracking branch 'fork/master'[[BR]]
   Conflicts:[[BR]]
   	flexget/plugins/output/rapidpush.py
 * (2ce6d8f) RapidPush: enhanced code, removed debug stuff
 * (f4d017e) RapidPush: implemented support for multiple api keys
 * (8aeb9e7) Add new plugin `disable_urlrewriters`.[[BR]]
   - This plugin can be used to disable certain urlrewriters,[[BR]]
     thus stopping them being considered as viable urlrewrite result.
 * (5f7b856) Add new urlrewriter for google results.
 * (0ca111a) Fixes RlsLog parsing.[[BR]]
   - Results are now google urls, which cannot be used for anything relevant yet.
 * (b0d2dab) Hides imdb warning about original title not being found.
 * (347cd3c) Fixes torrent_alive unit tests.
 * (118d444) Remove imdb_id support from rottentomatoes_lookup.[[BR]]
   - Fixes unit tests[[BR]]
   - Using imdb_id might have worked with api_key
 * (3295961) PEP8 cleanups
 * (93dcc4d) Disabled test_myepisodes.py - test account blocked?
 * (95000a7) Fixes to imdb uni tests and imdb_lookup enhancements.[[BR]]
   - Populates new field `imdb_original_name`[[BR]]
   - Database migration
 * (4fb5f4b) Add verbose message when creating new database, it takes a while.
 * (64d1b19) Minor Sphinx tweak, too long chapter name.
 * (317d3dc) PyLint fixes. Use explicitly logger in torrent_scrub, etc

=== 1.0.3345 (2013.02.10) ===

 * (0477be9) PEP8 fixes
 * (c7cebc9) Added bunch of git ignores.

=== 1.0.3344 (2013.02.10) ===

 * (2169c1e) PEP8 fixes

=== 1.0.3343 (2013.02.08) ===

 * (f50883f) Add site domain to rss plugin saved error pages. refs #1929

=== 1.0.3342 (2013.02.08) ===

 * (0aa6db9) Transmission pathscrub crash, encode to UTF-8 later.[[BR]]
   - Refs #1935
 * (e7f8f93) PEP8 fixes

=== 1.0.3341 (2013.02.07) ===

 * (30355ee) Use tmdb posters in rss feed if possible

=== 1.0.3340 (2013.02.07) ===

 * (1aad79d) Actually render the fallback description...

=== 1.0.3339 (2013.02.06) ===

 * (a512d4f) trying to fix notify exit code

=== 1.0.3338 (2013.02.06) ===

 * (3b165d6) Update README[[BR]]
   Remove reference to svn.[[BR]]
   Update Windows config location.

=== 1.0.3337 (2013.02.06) ===

 * (16e7ee0) Use <p> and <strong> instead of <br> and <b> for rss templating

=== 1.0.3336 (2013.02.06) ===

 * (9f443a5) Add Notify-osd option for linux based systems

=== 1.0.3335 (2013.02.04) ===

 * (455a03a) Allow new plugins to be loaded after manager has started. Fix external plugin loading unit test.
 * (ee27329) Add a unit test for plugin loading from external directories.

=== 1.0.3334 (2013.02.04) ^[wiki:UpgradeActions#a2013.2.41.0.3334 upgrade actions]^ ===

 * (576d820) Set default for rss plugin all_entries option to true.

=== 1.0.3333 (2013.02.04) ===

 * (46974fc) Merge branch 'master' of https://github.com/Flexget/Flexget

=== 1.0.3332 (2013.02.04) ===

 * (fa11740) Move priority of all notification outputs to last.
 * (828c90f) History plugin enhancements.[[BR]]
   - Argument --history now accepts optional number of entries to show. Fixes #1272[[BR]]
   - History plugin can now be disabled with 'history: no'

=== 1.0.3331 (2013.02.04) ===

 * (c79e8b2) Normalize line endings.

=== 1.0.3330 (2013.02.04) ===

 * (c27e924) Added .gitattributes to deal with line endings.[[BR]]
   - https://help.github.com/articles/dealing-with-line-endings

=== 1.0.3329 (2013.02.04) ===

 * (1e88d82) Fix priority on pushover

=== 1.0.3328 (2013.02.04) ===

 * (5a10a23) Cleanups for plugin.py
 * (a5b60fa) Minor improvements for rss template.

=== 1.0.3327 (2013.02.04) ===

 * (ffec699) Change pushover priority to last to prevent repeated messages due to failing plugins

=== 1.0.3326 (2013.02.04) ===

 * (cd4f492) Add error handling to description rendering

=== 1.0.3325 (2013.02.03) ===

 * (e407000) Fix torrent_scrub dependency loading
 * (48830f5) Refactor plugin loading code.

=== 1.0.3324 (2013.02.03) ===

 * (f452f4e) Removed a bunch of import *

=== 1.0.3323 (2013.02.02) ===

 * (a727d3e) Add filename argument to pathscrub utility. Move plugin now replaces path separators from filenames. fix #1911

=== 1.0.3322 (2013.02.02) ===

 * (5af06c2) Remove git calls in --version

=== 1.0.3321 (2013.02.02) ===

 * (c0450c4) Minor tweaks to imdb_list and make_rss.

=== 1.0.3320 (2013.02.02) ===

 * (9fa8f93) Cleanups to failed preset merging.
 * (2d8d1f9) Fixing issues with make_rss[[BR]]
   - Restore configuration 'title' default back to using 'task' variable as string.[[BR]]
   - Renamed metainfo feed to task
 * (5ef9b86) Merge branch 'master' of https://github.com/Flexget/Flexget

=== 1.0.3319 (2013.02.02) ===

 * (b5f3a98) Switch to a cleaner method of getting version number from server.

=== 1.0.3318 (2013.02.01) ===

 * (11ca52c) Tweak --version a bit more.

=== 1.0.3317 (2013.02.01) ===

 * (7e463d2) Fix bug with {{task}} in jinja templates.

=== 1.0.3316 (2013.02.01) ===

 * (fbedb3b) Merge --check-version into --version

=== 1.0.3315 (2013.02.01) ===

 * (fa954e8) Add note to run git fetch when using --version from a git clone.
 * (ae580fb) Add --check-version to see if you are on latest release.

=== 1.0.3314 (2013.02.01) ===

 * (0a9914e) Merge pull request #28 from prdatur/master[[BR]]
   Added output plugin: RapidPush
 * (a722648) Plugin RapidPush: Fixed invalid tabs, shorten line
 * (1a76aad) Add output plugin: RapidPush
 * (0e823a2) Let requests do the decoding of imdb pages.
 * (40c651b) PEP8 cleanups

=== 1.0.3313 (2013.02.01) ===

 * (ae55b77) Fixes crash with imdb mpaa rating parsing.[[BR]]
   - Fixes #1919

=== 1.0.3312 (2013.02.01) ===

 * (817f81d) Merge branch 'master' of https://github.com/Flexget/Flexget
 * (81e335d) Merge pull request #27 from crawln45/master[[BR]]
   pep8 errors
 * (c2e89a5) Merge branch 'fixing'
 * (9462676) pep8 corrections
 * (a90db70) Fixes crash in make_rss, minor cleanups.
 * (f65d703) Create build directories in paver docs task.

=== 1.0.3311 (2013.01.31) ===

 * (9203cbc) Add some better failure messages for online tests.

=== 1.0.3310 (2013.01.31) ===

 * (6dcfdba) Update the test torrent. Enable remove_trackers test.

=== 1.0.3309 (2013.01.31) ===

 * (093cfc8) Merge pull request #26 from crawln45/master[[BR]]
   code cleanup
 * (5ef2f20) Merge remote-tracking branch 'flexget/master'

=== 1.0.3308 (2013.01.31) ===

 * (82e7be2) Disable online tests for travis
 * (606a42d) Merge remote-tracking branch 'flexget/master'

=== 1.0.3307 (2013.01.31) ===

 * (7aed491) Mark imdb parser test as online.
 * (9fe7b76) Fix imdb director and mpaa rating parsing. Add a separate test for imdb parser.
 * (3699e20) Remove !online parameter for nosetests in setup.cfg
 * (b589ba0) Code Cleanup
 * (03b4c48) pep8 error

=== 1.0.3306 (2013.01.31) ===

 * (b400d1a) Merge pull request #25 from crawln45/master2[[BR]]
   Added rtorrent_magnet and tests
 * (4263d09) Added rtorrent_magnet and tests

=== 1.0.3305 (2013.01.31) ===

 * (cc59f6d) Merge pull request #24 from shockwaver/imdb[[BR]]
   update for MPAA scraping, remove test in test_imdb
 * (7e3802e) fix missing MPAA and update test_imdb.py[[BR]]
   fixes MPAA scraping and removes invalid test from test_imdb.py language[[BR]]
   test
 * (58e9c4f) Added Scripts/ to .gitignore
 * (2b88fb5) Merge remote-tracking branch 'upstream/master'

=== 1.0.3304 (2013.01.31) ===

 * (8bad5a4) Fix imdb parsing for genres and actors.

=== 1.0.3303 (2013.01.31) ===

 * (73627a7) Few more pep8 cleanups.

=== 1.0.3302 (2013.01.31) ===

 * (8f69706) Removed couple accidentally added files.

=== 1.0.3301 (2013.01.30) ===

 * (0f402e2) Merge pull request #22 from crawln45/master[[BR]]
   code cleanup
 * (551cbbb) removing autogenerated folder
 * (a2205ac) Removed Logs
 * (de05e49) PEP8 errors just for Paranoidi

=== 1.0.3300 (2013.01.30) ===

 * (47f2ea1) Merge pull request #21 from StunMan/master[[BR]]
   Added nzbget output plugin
 * (bc8d119) nzbget output plugin with category, priority and add to top functionality

=== 1.0.3299 (2013.01.30) ===

 * (1580fbe) Small cleanups to torrent_alive

=== 1.0.3298 (2013.01.30) ===

 * (18ce131) Merge pull request #19 from crawln45/master[[BR]]
   adding UDP scraping to torrent_alive
 * (08f7698) fixed pep8 errors
 * (ec39dda) fixed pep8 errors
 * (83aff47) Removed unnecessary comments
 * (7eb58b4) Added parsing for announcement set for http only
 * (22dd546) added udp scraping to tracker_alive

=== 1.0.3297 (2013.01.30) ===

 * (e3815dc) Merge pull request #20 from shockwaver/master[[BR]]
   update parsing for rating and language from IMDB. Fixes #1853
 * (428ed96) Few more pep8 cleanups.
 * (7495247) Removed couple accidentally added files.
 * (1136280) removing autogenerated folder
 * (2dfa1cf) Removed Logs
 * (37b8908) PEP8 errors just for Paranoidi
 * (cb9cdad) nzbget output plugin with category, priority and add to top functionality
 * (3bdd365) Small cleanups to torrent_alive
 * (7aeed7f) fixed pep8 errors
 * (5e24f42) fixed pep8 errors
 * (a135308) Removed unnecessary comments
 * (8f75182) Added parsing for announcement set for http only
 * (ef99012) added udp scraping to tracker_alive
 * (913dce2) fix parsing for rating and language on IMDB - fixes #1853

=== 1.0.3296 (2013.01.29) ===

 * (c0bbe79) Merge branch 'master' of https://github.com/Flexget/Flexget

=== 1.0.3295 (2013.01.28) ===

 * (791344d) Merge pull request #18 from shockwaver/urlrewrite_torrentleech[[BR]]
   added urlrewrite_torrentleech
 * (e76bf18) removed boolean root validator, pep8 formatting
 * (a1c388d) added urlrewrite_torrentleech[[BR]]
   Allows the use of torrentleech as a search engine in discover/search
 * (0113a74) Fix template

=== 1.0.3294 (2013.01.28) ===

 * (a3ec0e5) add db-config.sqlite, flexget.log and flexget.log.offset to .gitignore

=== 1.0.3293 (2013.01.28) ===

 * (bfab0c6) Use join to merge genres, actors and guest stars Don't add entry title to series by default, it's in the feed title anyway

=== 1.0.3292 (2013.01.26) ===

 * (5369b0e) Merge branch 'master' of https://github.com/Flexget/Flexget

=== 1.0.3291 (2013.01.25) ===

 * (131d05f) Fix response status code reason for spy_headers from last commit.

=== 1.0.3290 (2013.01.25) ===

 * (02fb343) Add requests support to spy_headers plugin.
 * (9496455) Show entry title always, more IMDb info, add line change after series/movie title
 * (1097941) Fix extraneous newlines in pushover plugin output

=== 1.0.3289 (2013.01.25) ===

 * (62c8064) Use an external, configurable, template file for rss description
 * (28ba9e0) Use a smarter way of figuring out the best title for pushover and rss

=== 1.0.3288 (2013.01.24) ===

 * (bab1509) Use Jinja templates for rss output Improved default title and description

=== 1.0.3287 (2013.01.24) ===

 * (3c39171) Better default templates for pushover

=== 1.0.3286 (2013.01.23) ===

 * (ae1d1cb) Fix webui issue with unicode literals.
 * (da10b31) Fix systray icon creation on windows webui.

=== 1.0.3285 (2013.01.22) ===

 * (cd48d42) Handle HTTP errors (mostly 404) when fetching trailer pages

=== 1.0.3284 (2013.01.18) ===

 * (53f1a6c) Add config.yml to gitignore
 * (71a25df) Fix mpaa rating scraping for imdb. Add unit tests for imdb mpaa scraping. Re-enable imdb directors test.

=== 1.0.3283 (2013.01.18) ===

 * (99d1467) Replace reference to subversion with git. Attempt to get current checkout version with -V when on git install.

=== 1.0.3282 (2013.01.17) ===

 * (6f32040) Merge pull request #16 from shtimn/master[[BR]]
   Correct checking config file with non ascii chars.
 * (07f52db) Patched only Instance, not class.
 * (bdef843) Revamp test for finding loading and pre checking config file.
 * (15ebc54) Merge remote-tracking branch 'upstream/master'[[BR]]
   Conflicts:[[BR]]
   	flexget/manager.py
 * (773ff95) Relative import ui plugins.
 * (a692aff) Correct checking config file with non ascii chars.
 * (b63a718) Write test for capability to check config file with non ascii chars.
 * (307d31b) Fix setting config_name when init MockManager.

=== 1.0.3281 (2013.01.16) ===

 * (dbb4066) Movie parser works with releases with leading junk in brackets. fix #1893, #1781
 * (e1f7561) Add .idea/ to gitignore