Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Changelog_old.txt « docs - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a6a3a1292a586a03f1741f6f8112a83f46e09a1 (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
Legend:
+ New
* Changed
! Fixed


1.7.6 - 05 July 2014
====================
+ ISR: Add an option to control subtitle renderer behavior regarding anamorphic video
+ ISR: Add an option to render subtitles at the source video resolution like VSFilter.
+ VSFilter: Display more informative names for external subtitles (similar to what is done with the internal subtitle renderer)
+ Add a "Copy to clipboard" feature to the "Play -> Filters" menu so that the list of currently loaded filters can be copied easily
+ Add an option in the "Save Subtitle" dialog to control the export of the default style as an external ".style" file
+ Ticket #1411, Internal Subtitle Renderer/VSFilter: Support loading external PGS subtitles
* Text subtitles: When rendering to the video frame, clip subtitles that go out of the frame
* Text subtitles: Faster subtitle parsing (around 20%)
* Ticket #4144, Move the user interface language selection to the Options dialog and remove the "Language" menu.
  The increasing number of translations had reduced the usability of the menu
* Ticket #3739, Make error reporting less verbose when some non-critical DVD hooks fail
* Don't use auto-zoom feature when the window was positioned using the Aero Snap
* Don't exit fullscreen when losing focus to a window on the same monitor
* Updated Little CMS to v2.6 (git 4da8703)
* Updated Unrar to v5.1.6
* Updated MediaInfoLib to v0.7.69
* Updated ZenLib to v0.4.29 r458
* Updated LAV Filters to stable version 0.62.0:
    - LAV Video: Support VP7 video
    - LAV Video: Use the MediaFoundation WMV decoder on Windows 7+ instead of the DMO WMV decoder
    - Ticket #4032, LAV Video: Fix some issues with DVD subtitles (flashing, overlapping and generally all kind of timing issues)
    - Ticket #3575, LAV Splitter: Alternate audio support for HLS
    - Ticket #4326, LAV Splitter: No subtitles were displayed when using the special "Forced subtitles" track created for PGS subtitles
    - Ticket #4357, LAV Video: Fix some performance regressions introduced in v0.61 (mostly visible on old operating systems like Windows XP)
* Updated Armenian, Basque, Belarusian, Bengali, British English, Catalan, Chinese (simplified and traditional), Croatian,
  Czech, Dutch, French, Galician, German, Greek, Hebrew, Hungarian, Italian, Japanese, Korean, Malay, Polish, Portuguese (Brazil),
  Romanian, Russian, Slovak, Slovenian, Spanish, Swedish, Tatar, Turkish, Ukrainian and Vietnamese translations
! The dockable bars were not updated when changing the UI language
! Statusbar: Fixed occasional flickering of text and media type icon
! D3D Fullscreen last state was inverted and wasn't properly restored with "Remember last window size and position" option
! D3D Fullscreen produced invisible window for audio-only files
! Ticket #34, VSFilter/ISR: Override placement feature was not working even if enabled
! Ticket #1574/#4171, ISR: Subtitle positioning was wrong when using default style override
! Ticket #2244, ISR: Changes in subresync bar were lost after changing style
! Ticket #2671, VSFilter: Video frames were not marked as interlaced
! Ticket #3036, Fix drag-and-drop from some applications. Drag-and-dropping a downloaded file from Chrome failed for example
! Ticket #3701, Subtitle outline was too thick when using default style override
! Ticket #4213, Fix a deadlock when starting MPC-HC in D3D fullscreen and auto-changing the monitor mode
! Ticket #4213, Fix auto-changing the monitor mode when starting in D3D fullscreen with "play 0 time" option
  or the auto-change delay greater than 0s
! Ticket #4213, D3D fullscreen: Obey "Apply default monitor mode on fullscreen exit" option
! Ticket #4214, Fix monitor mode flickering when auto-changing the monitor mode
! Ticket #4284, Auto-zoom feature didn't work properly when the taskbar was docked at the left or the top of the screen
! Ticket #4285, Fix a freeze when opening some files when EVR-CP or Sync renderer are selected
! Ticket #4285, EVR-CP and Sync renderers: Properly set the aspect ratio
! Ticket #4288, Changing the zoom level when in fullscreen mode did nothing
! Ticket #4298, The auto-change fullscreen mode monitor settings could be randomly corrupted or missing
! Ticket #4299, Frame stepping was not working for DVD
! Ticket #4307, ANSI subtitles files with Unix line endings could crash MPC-HC
! Ticket #4408, Remember window position: Ensure the window can't be completely hidden after restoring it


1.7.5 - 01 May 2014
===================
* Updated Catalan, Croatian, Dutch, German, Japanese, Slovenian, Spanish, Ukrainian and Vietnamese translations
! Ticket #3691, PGS subtitles: Some lines stayed visible for too long when using the queue
! Ticket #4231, Don't prevent the users from using the ISR if they choose not to block VSFilter like filters
! Ticket #4240, Crashes could randomly occur when playing files with PGS subtitles (mostly when seeking quickly)


1.7.4 - 16 April 2014
=====================
+ New Bengali and Tatar translations
+ Support for opening "icyx://" stream URLs
+ Ticket #2348/#3583, Automatically refresh the information bar and title bar so that the correct information
  is always shown for streaming (e.g. online radios)
+ Ticket #4043, Statistic: Show playback rate for audio files
* If MPC-HC is configured to override the splitter choice when doing the initial track selection,
  tracks selected at splitter level will be preferred in case more than one tracks match the criteria
* The "Jump to" menu has been split in several smaller submenus displayed in the "Navigate" menu
  depending on the media currently playing
* The internal LAV Splitter will now be used by default to demux AviSynth scripts instead of using the old VFW interface.
  Note that AviSynth is still required even if LAV Splitter is used
* Cleaned up WebUI's Javascript code
* Updated SoundTouch to v1.8.0
* Updated Little CMS to v2.6 (git 40300b1)
* Updated Unrar to v5.1.2
* Updated MediaInfoLib to v0.7.68
* Updated ZenLib to v0.4.29 r456
* Updated LAV Filters to stable version 0.61.2:
    - LAV Audio: Improve error recovery on slightly corrupted audio streams
    - LAV Video: Fix a rare crash that could occur for high resolutions
    - LAV Video: Fix artifacts on some H264 streams with both software and DXVA decoding
    - LAV Splitter: Support ShoutCast metadata
    - LAV Video: Various improvements for DXVA support (native and copy-back)
    - LAV Splitter: Fix the opening of some Blu-ray discs which would take several minutes and could hang the player
    - Ticket #4035, LAV Video: Some frames were dropped when playing RealVideo files
    - Ticket #4057, LAV Splitter: Some WAV files were incorrectly detected as DTS
* Updated Armenian, Basque, British English, Catalan, Simplified and Traditional Chinese, Croatian, Czech, French,
  Galician, German, Greek, Hebrew, Hungarian, Italian, Japanese, Korean, Malay, Polish, Portuguese (Brazil), Romanian,
  Russian, Slovenian, Slovak, Spanish, Swedish, Turkish, Ukrainian and Vietnamese translations
! Properties dialog: Some tracks could have been missing from the streams list
! Fix incorrectly displayed OSD in case the message contained the character '&'. Also make top-left and
  top-right OSD size consistent and improve the behavior when the text is too big to be displayed entirely
! VMR-7 renderless: subtitles were not displayed except in fullscreen
! Ensure dynamic menus dependent on the currently playing media are updated when the media changes while a menu is opened
! DVB subtitles: Subtitles were sometimes only partially rendered with some parts disappearing immediately
! DVB and PGS subtitles: Subtitles were sometimes one frame late. This was invisible most of the time,
  but it could produce blinking in some cases
! ISR: Crop PGS and DVB subtitles if they don't fit into the video frame
! ISR/VSFilter: Use correct colorimetry information for PGS and DVB subtitles
! ISR: Subtitles could be partially rendered when using no subtitle queue
! ISR: Text subtitles were incorrectly displayed after switching from PGS/DVB subtitles
! PGS subtitles: Subtitles being displayed just after seeking could be wrong
! Ticket #1814, Vobsub: Support animated subtitles (with fade in/out)
! Ticket #2588, Subtitle renderer: The subtitles' shadow was not drawn when their border was very thin
! Ticket #2773, Subtitle renderer: Fix possible artifacts when using karaoke effects
! Ticket #2994, Fix toolbar separators not being properly painted
! Ticket #3296, Fix WebUI controls.html error due to unescaped file path
! Ticket #3437, Audio Switcher: Support fallback to another media type. For example, this allows audio decoders
  to fallback to normal decoding if bitstreaming isn't supported
! Ticket #3544, Prevent the low-merit fall-back on internal LAV Splitter to demux raw subtitle formats
! Ticket #3691, PGS subtitle timings were sometimes wrong (subtitles started or ended too late)
! Ticket #3763, VMR-9 renderless and EVR-CP: The displayed subtitle was not updated when seeking while playback was paused
! Ticket #3775, "Play -> Subtitles" menu could be mistakenly disabled when the internal subtitle renderer was unavailable
! Ticket #3980/#4037, Exiting fullscreen sometimes produced visual artifacts
! Ticket #3987, Entering fullscreen when MPC-HC window occupied the whole monitor produced visual artifacts
! Ticket #3999, Work around a crash in the math library for x64 builds
! Ticket #4004, Fullscreen/windowed transition was not as smooth as in 1.7.1 and prior
! Ticket #4011, Fix image saving for streams with characters not supported in path names
! Ticket #4013, Subtitle renderer: Fix a crash on malformed animated transforms ("\t" tags with no parameters)
! Ticket #4020, Update dialog: Fix incorrect version info when using Belarusian, Slovenian or Russian translations
! Ticket #4050, MPC-HC could crash when loading invalid DVB channel settings
! Ticket #4070, Restore compatibility with KatMouse
! Ticket #4079, The "Save image/thumbnails" path was cut off in the status bar
! Ticket #4082, Fullscreen window was misplaced sometimes after monitor mode autochange
! Ticket #4116, "Snap to desktop edges" option wasn't working correctly
! Ticket #4128, Moving mouse over tooltips in fullscreen hid the toolbar under some circumstances
! Ticket #4141, Subtitles were incorrectly displayed in DVD and DVB mode when using the internal subtitle renderer and madVR
! Ticket #4141, DVD subtitles were always re-enabled when clicking on a menu entry related to external subtitles
! Ticket #4163, Shaders option page: the buttons' icons were missing on Windows XP
! Ticket #4173, ASS/SSA subtitles: Fix a possible infinite loop during parsing


1.7.3 - 02 February 2014
========================
+ New Galician and Vietnamese translations
+ Ticket #3873, Display tooltip with H/W decoder name on hover over status message
* Updated Armenian, Basque, British English, Simplified Chinese, French, German, Japanese, Malay,
  Polish, Portuguese (Brazil), Romanian, Slovak, Spanish, Swedish, Turkish and Ukrainian translations
! Some subtitle entries could have been missing depending on how they overlapped in time
! Ticket #2870, Fix rare visual glitches on status bar
! Ticket #3881, DXVA status was invalid with certain decoders
! Ticket #3981, Subtitle renderer: the blur filter was sometimes wrong on some part of the subpicture
! Ticket #3988, DVD favorites: the position in the DVD was not restored. Additionally if "Remember DVD position"
  is enabled and a DVD favorite has a position, the position from the favorite will be used instead of the
  remembered position. Also fix loading of DVD favorites created with no position.
! Ticket #3998, The "Debug Shaders" dialog icon was missing when a translation was used


1.7.2 - 26 January 2014
=======================
+ Added support for XySubFilter, only compatible with embedded subtitles for now
+ New option to auto-hide docked panels together with toolbars
+ Support pixel shader presets (with shortcuts and command line options)
+ Show more descriptive window title in capture mode
+ Ability to add all media files in folder from playlist panel context menu
+ New Croatian and Malay translations
+ Ticket #1556, Ability to move the player window by dragging the video area during DVD playback
+ Ticket #2251, Show hidden main menu with Alt key
+ Ticket #3235, Option to delay playback when auto-change fullscreen monitor mode feature is used
+ Ticket #3284, Option to auto-hide mouse pointer in windowed mode during playback
+ Ticket #3379, "Left Up" mouse keybinding now allows to move the player window by dragging the video area
+ Ticket #3614, Do medium jumps when pressing mouse navigation buttons on the seekbar
* Optimized subtitle renderer:
    - performance has been greatly improved both for subtitle parsing and rendering (often 5 times faster or more)
    - some subtitles which might have been missing before will now be displayed
* The storing mechanism of pixel shaders was redesigned:
    - each pixel shader is now stored in its own file with .hlsl extension
    - shader files are reloaded automatically when MPC-HC detects changes in them
    - internal pixel shader editor was removed, you're supposed to use specialized external
      editors from now on, but can still view compilation output in "Debug Shaders" window
    - internal video renderers now always use the latest supported shader profile to compile
      pixel shaders
* More flexible auto-hide controls in fullscreen configuration options
* Multiple high DPI scaling interface improvements
* Updated LAV Filters to v0.60.1.5:
    - Ticket #3540, LAV Splitter: The current/average bitrate is now shown in the Information panel
    - Ticket #3760, LAV Video: Fix a crash when opening some DVDs on 64-bit
    - Ticket #3793, LAV Video: Fix a decoding issue with some H264 files
    - Ticket #3849, LAV Video: DXVA VC1/WMV3 decoding now works on Intel cards
    - Ticket #3862, LAV Splitter: Fix a crash when opening MKV files with big attachments
    - Ticket #3929, LAV Video: Fix a crash when trying to decode WMV-3/VC1 with the DMO decoder unavailable
* Updated Armenian, Basque, Belarusian, British English, Catalan, Czech, Simplified and Traditional Chinese,
  Dutch, French, German, Hebrew, Hungarian, Italian, Greek, Japanese, Korean, Polish, Portuguese (Brazil),
  Romanian, Russian, Slovak, Slovenian, Spanish, Swedish, Turkish and Ukrainian translations
* Updated MediaInfoLib to v0.7.67
* Updated ZenLib to v0.4.29 r453
* Updated Little CMS to v2.6b (git 579b3aa)
* Updated Unrar to v5.0.0.14
! Internal subtitles renderer: Vobsub/PGS/DVB subtitles are now rendered relative to the video frame
! Warnings were not displayed in pixel shader compilation output
! DVB: It was sometimes impossible to restart playback after it was stopped
! Output property page: Fix VMR-9 renderless settings (some controls were disabled when they shouldn't have been)
! Ticket #720/#1807/#2625/#3161 Improve stability in analog capture mode when using EVR-CP/Sync renderer
! Ticket #1300/#2081, Toolbars auto-hiding now always works properly in multi-display configurations
! Ticket #2460, Some subtitle entries were rendered twice depending on how entries overlapped. This led
  to incorrect transparency
! Ticket #2461, ASS reset style tag (\r) broke "Position subtitle relative to the video frame"
! Ticket #3243, Fix a crash when starting MPC-HC with the WebUI enabled and certain regional settings
! Ticket #3479, Improve the behavior of MPC-HC when some security tools prevent it
  from initializing correctly
! Ticket #3650, Improve the speed of subtitles toggling (on/off) and switching
! Ticket #3668, MPC-HC could crash when reloading subtitles
! Ticket #3922, "Play -> Subtitles" menu actions were off by one when playing a DVD
  and only external subtitles were available
! Ticket #3963, Update the chapter marks on the seekbar when the media length changes.
  The bug was most often seen for MKV with multiple editions


1.7.1 - 17 November 2013
========================
+ Ticket #2655, Internal filters: Support WMV/ASF/DVR-MS splitting
+ Ticket #3548, Add British English translation
+ Ticket #3590, Internal filters: Support for HEVC and VP9
+ Ticket #3605, Support playlists using UTF8 encoding without BOM
+ Ticket #3643, Add Slovenian translation
* Ticket #3569/#3679/#3680, Disable internal WMV/ASF/DVR-MS splitting and WMV decoding by default
  since Microsoft filters are generally more stable
* Updated French, German, Polish, Portuguese (Brazil) and Simplified Chinese translations
* Updated LAV Filters to 0.59.1.26:
    - Ticket #3576, LAV Video: Support H264 Annex B format in MP4 files
    - Ticket #3601, LAV Video: Fix a crash with DXVA on AMD cards when stopping playback
    - Ticket #3676, LAV Audio: Fix a crash when using old versions of the ArcSoft DTS Decoder
      to handle DTS decoding internally
    - Ticket #3688, LAV Audio: Fix a freeze when changing the bitstreaming settings when paused
* Updated VirtualDub to v1.10.4
* Updated Unrar to v5.0.0.12
* Updated Little CMS to v2.6b (git 69ecafd)
! DVD: The chapter marks could be wrong for some titles
! Ticket #1478, Slightly improve the precision of the frame number in the "Go To" dialog.
  The frame number was sometimes off by 1. This was easily noticeable when doing frame-stepping
! Ticket #1555, Use elapsed/remaining time for the chapter change OSD depending on what is selected
  for the time display. Also prevent the OSD from blinking when changing the chapter
! Ticket #3518, Improve the reliability of the [DXVA] indicator in the status bar. Sometimes
  the indicator wasn't shown when hardware acceleration was used
! Ticket #3523/#3533/#3551, Improve the stability of MPC-HC on buggy systems
! Ticket #3530, Internal LAV Splitter: the advanced subtitle selection modes were ignored
! Ticket #3564, If "Keep history of recently opened file" option was enabled, MPC-HC crashed
  when opening very long URLs
! Ticket #3672, "Output" property page: "Shader" and "Rotation" were sometimes wrongly displayed
  as unavailable for "Sync renderer"
! Ticket #3702, External audio was not synced on open if restarting from the last remembered position
! Ticket #3720, DVB: Obey the Auto-zoom option when opening a channel


1.7.0 - 29 September 2013
=========================
+ Replace the internal filters with LAV Filters.
  LAV Filters are modern open source DirectShow filters based on FFmpeg. They are known
  to be reliable and fast and overall should be more stable than the old filters.
  MPC-HC integrates LAV Filters directly and no extra installation steps are required.
  The embedded version of LAV Filters doesn't interfere at all with other installed
  DirectShow filters (including the standalone versions of LAV Filters).
  Note to XP users: hardware decoding is only supported on NVIDIA graphic adapters. If you
  really need a DXVA decoder, you can use a standalone version of MPC Video Decoder.
+ Support loading HTTP/RTSP/UDP/RTP streams using embedded source filters
+ D3DFullscreen can now switch to windowed mode (just like regular fullscreen mode)
+ Audio Switcher: Show all audio tracks available, including all the embedded tracks
  exhibited by the source filter and the external tracks
+ Playlist: Add a "Move to Recycle Bin" right click option, with optional keyboard shortcut
+ Ticket #533, Add a command line switch (/device) to open the default video device
+ Ticket #3107, Add support for playing from standard input.
  Use "-" as a special filename to designate the standard input.
  Examples:
    > mpc-hc.exe - < sample.ts
    > a_prog.exe | mpc-hc.exe -
+ Improved RAR File Source integration:
  - Added support for subtitle database
  - Added support for file properties and MediaInfo
  - "File -> Save a copy" now extracts the file from the RAR archive
+ Windows 8.1 support
* All track selection sub-menus are now centralized in the Play menu, the similar sub-menus
  have been removed from the Navigate menu
* The naming of external subtitles item in "Play -> Subtitles" menu has been improved to get rid
  of the uninformative "Undetermined" name
* When "Prefer external subtitles over embedded subtitles" is enabled, an external track is
  always selected by default even if an embedded track matches a preferred language
* The "Go To" menu entry has been moved to the "Navigate" menu
* D3DFullscreen changes:
  - toggle hotkey is now disabled by default
  - support for madVR has been removed (it already has exclusive mode)
  - 10-bit RBG output now falls back to 8-bit output if the display does not support it
* Remove D2VSource; it's unmaintained and basically unused
* WebUI: Switched to HTML5 and improved the cross browser support
  (IE8 or newer is needed, other browsers should work fine)
* Updated Armenian, Basque, Czech, French, German, Greek, Japanese, Polish, Romanian,
  Simplified and Traditional Chinese, Slovak, Turkish and Ukrainian translations
* Updated Little CMS to v2.5 (git ad2cb04)
* Updated Unrar to v5.0.0
* Updated MediaInfoLib to v0.7.64
* Updated ZenLib to v0.4.29 r444
* Updated VirtualDub to v1.10.4-test11
! D3DFullscreen fixes:
  - fixed strange focus behavior when always on top is enabled
  - fixed VMR9 D3DFS minimizing when losing focus
  - fixed thumb mouse buttons not working when D3DFS has focus
! Various fixes for better playlist support
! Fixed creation date in file properties always being shown as "Not known"
! Ticket #2109/#2975, Fix the handling of aspect ratio changes when using EVR-CP or
  Sync Renderer with DXVA decoding
! Ticket #2189/#3300, Fix graph objects not being properly released when opening another file while
  Properties or Options window is visible
! Ticket #3304, Fix remembering file position when double-clicking on a playlist item.
  If a position was previously saved, it will be restored unless the file is already playing
! Ticket #3425, Audio Switcher: Fix a crash with audio resampling and channel remapping enabled
! Ticket #3440, Disable the "Explore to" feature when the file isn't local in the Properties dialog
  and the playlist context menu
! Ticket #3455, Hide MediaInfo tab when no information is available
! Ticket #3456, Don't show the progress in the taskbar when no duration is available
! Ticket #3478, The "File" menu was slow to open when a drive was unavailable


1.6.8 - 15 June 2013
====================
+ DVB: Show the parental rating and the content type within the EPG information when available
+ Ticket #2872, Add support for DVB-T2 and improve channel switching (new options are available to
  have a finer control on switching process)
+ Ticket #3179, DVB: Support EPG information for Freeview broadcast (UK DVB-T2)
* Updated Basque, Czech, French, German, Greek, Japanese, Romanian, Russian,
  Simplified / Traditional Chinese, Turkish and Ukrainian translations
* Updated Little CMS to v2.5-rc1
* Updated zlib to v1.2.8
* Updated Unrar to v5.0.6
* Updated MediaInfoLib to v0.7.63
* Updated ZenLib to v0.4.29
* Audio Switcher improvements:
  - Ticket #1936, Improve the normalization algorithm to avoid huge volume variations
  - Use percentage for the boost setting since it is easier to understand for most people
  - Add a setting to change the max normalization factor and use a default max normalization
    factor of 4 instead of 10
* Ticket #2567, New About dialog with more detailed information and a "Copy to clipboard"
  feature to ease support
! PGS and DVB subtitles: Fix missing subtitles after resizing the window when using
  the subpicture queue
! Open dialog: if a URL was previously enterer in the "Open" or "Dub" fields an error message
  was shown when clicking the "Browse" button
! Vobsub files with language/title in their filenames weren't auto-loaded
! Fix a memory leak: the memory consumption would increase noticeably until the file was closed
  when the file had chapters and the chapter marks on seekbar were enabled
! Capture mode: Fix reseting the renderer. When reseting the renderer in capture mode playback
  was stopped and never restarted
! Ticket #3110, DVB: Improve compatibility with some drivers for which MPC-HC failed to find
  any channel during the channel scan
! Ticket #3113, MPC-HC was sometimes slow to close (audio kept playing for a few seconds)
! Ticket #3175, DVB: Changing the channel was exiting fullscreen or maximized mode
! Ticket #3176, EVR renderers: Fix high CPU and memory usage when switching the user account


1.6.7 - 25 April 2013
=====================
+ DVB capture: Improve channel switching
+ Subtitle downloader improvements:
  - Ticket #2144, Sort by language and then by filename by default. Subtitles matching a language
    set as preferred in the options are now displayed first in the result list
  - Ticket #2926, Double-clicking or pressing the "Enter" key will download the selected subtitle(s)
+ Ticket #2837, New INI parser: the accesses are now cached for faster settings loading/saving.
  Using the INI file should now be as fast as using the registry
+ Ticket #2987, Playlist improvements:
  - Scroll and select the first newly added item
  - Put MPC-HC on top and give the focus to the playlist after a drag and drop
* Updated Basque, Catalan, Czech, French, German, Greek, Simplified Chinese, Slovak,
  Turkish and Ukrainian translations
* Updated Little CMS to v2.5 (git cde00fd)
* Updated VirtualDub to v1.10.4-test6
* Ticket #2689, Replace "On top -> Never" by "On top -> Default". In most of the
  cases "On top -> Default" will have the exact same behavior than "On top -> Never"
  but it won't try to override the "On top" flag if an external tool sets it
* Ticket #3049, Re-enable VSync by default for Windows XP users
! Fix a crash when VMR-7 (renderless) renderer failed to load
! SSA subtitles rendering: Improve error checking to avoid possible crashes when the SSA script
  was using obviously wrong values
! Ticket #1392, DVD subtitles: Improve rendering in case of overlapping. Ensure that both subtitles
  will be shown.
! Ticket #2991, Fix loading of MicroDVD subtitles
! Ticket #3001, "After Playback": Always give "Once" events a higher priority than "Always" events
! Ticket #3023, "File -> Load Subtitle" didn't work anymore for DVD
! Ticket #3045, Go to dialog: Fix frame rate detection for DVDs


1.6.6 - 17 March 2013
=====================
+ Formats: The space key can now be used to enable/disable formats
+ Miscellaneous: Add button to export key bindings
+ Add the ability to choose the scale factor (relative to the screen size) for
  the auto-fit zoom
+ Internal Subtitles Renderer: Show all subtitles tracks in the "Play -> Subtitles" menu.
  That includes all the embedded tracks exhibited by the source filter and the external tracks.
+ Add a new shader that over brightens with gradient from the bottom to the top of the screen.
  It needs LCD monitors with low viewing angle (~170/160).
+ DVB: Remember audio and subtitle track selection.
+ Add an OSD reminder when Escape is pressed in D3D Fullscreen
+ Ticket #649, Add RARFileSource as an internal filter. Allows rar files without compression to
  be played without unpacking them.
+ Ticket #899, DVB: Add signal statistic to the status bar
+ Ticket #1025/#1054, Add the ability to select the default track directly by its number
  in MPC-HC and the standalone MPEG Splitter
+ Ticket #2050, Add Romanian translation
+ Ticket #2905, Support DTS-HD and E-AC3 passthrough
+ Ticket #2935, Add support for sending "Now playing" information to Skype
* UI: Use a more native look and feel for the options dialog tree
* More resilient support for MPL2 and SRT subtitles formats:
  - Ticket #2779, Support MicroDVD tags in MPL2 subtitles files. This is normally not
    supported but MPL2 files that use MicroDVD tags for formatting are quite common.
  - Support SRT files with missing millisecond part in the timecodes.
* Re-enable the option to bypass the DVD/BD path selection. The user won't be asked to choose
  the location of the DVD/BD player (or folder) when this option is enabled.
* Changed default D3D Fullscreen hotkey to Ctrl+Alt+F
* Disabled Frame Time Correction hotkey by default
* DVB: Some filters that are known to be incompatible with the BDA source filters are now blacklisted
* External filters: Use two separated lists for x86 and x64 since x86 filters only work with MPC-HC x86
  and vice versa
* Ticket #978, Apply the "Repeat" option after "Play next in the folder": the option will now take
  effect after the next file in the folder was played (similarly to what happens for playlist items)
* Ticket #1620, UI: Use the new styled radio bullet for menu's items
* Ticket #2878, Removed obsolete MSN Messenger support
* Ticket #2924, Use the current file directory as default folder for the "Load Subtitles" dialog
* Ticket #2947, VSync is now disabled in the default renderer settings
* Updated FFmpeg (n0.8-19080-g2bac153)
* Updated Little CMS to v2.4 (git 4ba0259)
* Updated Logitech SDK to v3.01 (driver 8.00.100)
* Updated SoundTouch to v1.7.1 r170
* Updated VirtualDub to v1.10.4-test1
* Updated MediaInfoLib to v0.7.62
* Updated ZenLib to v0.4.28 r430
* Updated Basque, Catalan, Czech, German, French, Greek, Japanese, Polish, Russian,
  Traditional and Simplified Chinese, Slovak, Swedish and Ukrainian translations
! Various WebUI fixes:
  - Fix seeking
  - Fix volume slider going out of bounds with IE in player.html
  - Fix incorrect encoding of the parent directory's path in browser.html
! MPCVideoDecoder: Fix low merit internal filter
! MPCVideoDecoder: The "Read Aspect Ratio from stream" option didn't always work right
! DVB EPG: Some strings weren't correctly displayed in some cases
! PGS Subtitles: Some subtitles were displayed with wrong colors or even not displayed at all
! EVR-CP renderer: Fix some cases where VSync breaks smooth playback
! The external filters list was lost when switching from registry to ini or vice-versa
! Ticket #84, WebServer: The filenames weren't correctly URL decoded
! Ticket #593, Fix EVR-CP using the CPU while the player is paused when VSync is on
! Ticket #890, DVB: Disable pause for capture mode to avoid accidental playback stop
! Ticket #1554, The OSD was looking bad when using the EVR Sync renderer
! Ticket #1600, Improve the naming of subtitles tracks (avoid showing a useless and ugly comma)
! Ticket #2396, DVB: Fix default audio track selection when its type is different than
  the first audio track
! Ticket #2423, Fix wrong rounding leading to small black bars when resizing the window.
  This was mostly visible when using the "auto-fit" zoom or when resizing manually.
! Ticket #2783, Fix crash when generating the chapter marks
! Ticket #2805, AviSplitter: Fix a crash when closing the file while re-indexing
! Ticket #2838, The window wasn't draggable anymore by clicking on the information panel
! Ticket #2839, Post-resize shaders didn't work with VMR-9 (renderless)
! Ticket #2855, The filename could be wrong when saving a screenshot or thumbnails
! Ticket #2859, FLACSource: Improve timestamps accuracy. This fixes some cases where the
  end of the file wasn't played.
! Ticket #2863, The OSD was incorrect when restarting the playback of a file after it ended
! Ticket #2864, VobSub subtitles were auto-loaded twice
! Ticket #2881, "Auto-fit" and "Auto-fit (Larger Only)" zooms gave different results
  depending on if they were used in windowed or fullscreen mode
! Ticket #2889, Fix incorrectly displayed OSD when using EVR and VRM-9 (windowed) renderers
! Ticket #2902, DVB: Some old channels weren't deleted when redoing the scan
! Ticket #2913, Fix DXVA1 MPEG2 decoder
! Ticket #2931, DVB Subtitles: Fix a crash with some subtitles streams
! Ticket #2934, MPEG Splitter: Some files couldn't be opened
! Ticket #2939, Some fields of the renderer statistics were wrong
! Ticket #2971, Fix a rare crash on startup
! Ticket #2984, SSA subtitles: Fix outline background with \frx or \fry tags
! Ticket #2985, Prevent the volume OSD message from erasing the filename OSD message on startup


1.6.5 - 16 December 2012
========================
+ Add a hotkey to open the subtitles downloader dialog
+ Web server: various performance improvements
+ VobSub subtitles can now also be loaded by selecting or draging and dropping the .sub file
+ FLACSource: Basic support for embedded metadata
+ Take currently applied delay into account when saving subtitles using "File -> Save" subtitle
+ The volume steps can now be changed on the playback options page
+ Ticket #439, External subtitles: support UTF-8 without BOM
+ Ticket #728, Show tooltips in the information panel so that truncated lines can be read completely
+ Ticket #888, Show the information about the current DVB program in the information bar
+ Ticket #1004, The playing speed steps can now be changed on the playback options page
+ Ticket #1617, Use MPC-HC's icon when registering the context menu entries
+ Ticket #1673, FLACSource: Basic support for embedded CUE sheet
+ Ticket #1680, Add Greek translation
+ Ticket #2425, Improve the "Remember file/DVD position" feature: when a file/DVD that was already
  in the list is reopened, it now goes at the top the list. This way files/DVDs that are often
  used will stay in the list instead of being inexorably pushed out of it.
+ Ticket #2647, Add .3ga to known formats
+ Ticket #2712, MPCVideoDec: Add the ability to force the interlaced flag
+ Ticket #2737, Improve file associations on Windows 8. The system dialog will be used to set
  MPC-HC as default handler since it is not possible anymore to do that programmatically.
+ Ticket #2739, Support custom pixel shaders with madVR v0.85.0
* Updated FFmpeg (n0.8-16738-gcef28b5)
* Updated MediaInfoLib to v0.7.61
* Updated ZenLib to v0.4.28 r411
* Updated Little CMS to v2.4 (git 026ba4f)
* Updated SoundTouch to v1.7.0 r160
* Updated VirtualDub to v1.10.3-test11
* Updated Armenian, Basque, Czech, French, German, Japanese, Russian, Polish, Simplified and
  Traditional Chinese, Slovak and Ukrainian translations
* Removed hotkeys to change the volume by 1%
* VSFilter: Allow floating-point values for \fscx and \fscy
* Increase default subpic buffer size to 10
* Ticket #2698, Allow the App key to be used as a hotkey which opens the player menu by default
! API: CMD_PAUSE was acting as CMD_PLAY and vice versa
! MpaDecFilter: updated CMixer, avoid possible memory leaks
! MPEG Splitter: Fix parsing of some malformed TS files
! VSFilter (auto-loading version) didn't load on Windows 7
! VSFilter: Fix and update the blacklist
! Internal Subtitle Renderer/VSFilter: Fix high RAM usage with some complex subtitles
! DVB EPG: Fix the start time of the current program being off by one hour because of incorrect DST
! Internal Subtitle Renderer/VSFilter: Fix most cases where rotating/shearing is not properly scaled
! Ticket #376, Fix subtitles when switching from animated subs to non-animated subs.
  The subtitles' timings were not correctly respected after switching from an
  animated subtitles track to a non-animated subtitles track.
! Ticket #1782, Correctly empty the "Recent" jump list when erasing the history
  and ensure that no item is added to Windows recent documents menu or to the
  "Recent" jump list when the history is disabled
! Ticket #1953, DVB EPG: Fix default encoding
! Ticket #2105, Fix some crashes when opening the Capture option page
! Ticket #2326, Fix a crash when closing the player with the player menu open
! Ticket #2537, #2554, Fix the "Attempted an unsupported operation" error in the
  Save dialogs on Vista and newer systems
! Ticket #2572, FLACSource: Fix playback for some files
! Ticket #2619, FLVSplitter: PCM audio doesn't play
! Ticket #2658, DVB: Improved channel switching
! Ticket #2673, MPEGSplitter: Fix playback for some TS files
! Ticket #2685, FLACSource: Fix a crash with some corrupted file
! Ticket #2699, AviSplitter: Fix a potential crash with PCM tracks
! Ticket #2703, Fix a crash that could happen when auto-loading some subtitles
! Ticket #2751, Improve DVBSub parsing: some subtitles could have been missing


1.6.4 - 01 October 2012
=======================
+ MPCVideoDec: Add support for 4K for Intel HD Graphics 4000
+ AVI Splitter: Add a property page so that the support for non interleaved files
  can be turned on/off. Support for such files is now enabled by default.
  The old AVI Chunk Viewer dialog has been removed.
+ Added chapter indicators to the seekbar and the chapter name is now displayed
  in the time tooltip.
+ Added keys for changing volume by increments of 1
* Updated FFmpeg (n0.8-13778-g127b70e)
* Updated Little CMS to v2.4 (git 728139a)
* Updated SoundTouch to v1.7.0
* Updated MediaInfoLib to v0.7.60 r5048
* Updated ZenLib to v0.4.28 r403
* Updated VirtualDub to v1.10.3-test6
* Updated Basque, French, German, Russian, Simplified Chinese and Slovak translations
* Remove .dat extension from the icon library and the formats
  (you can still associate it in the "Others" formats)
* Re-enable the embedded resources viewer in the properties dialog and improve
  its "open in browser" function (when double clicking on a resource)
* Store the path to MPC-HC's executable in HKEY_CURRENT_USER for external use.
  External applications that depend on that path should get it from there rather
  than HKEY_LOCAL_MACHINE. The old key in HKEY_LOCAL_MACHINE will be removed in
  the next version
* Changed default maximum subtitle resolution to "Desktop"
! Web interface: Fix the "Deploy" feature
! Subtitles didn't show in some cases when using the internal subtitles renderer
! Improve DVB subtitles handling:
  - Fix missing subtitles
  - Ticket #2589, Fix wrongly colored subtitles
! Ticket #48, #515, #2533, Improve PGS subtitles (BluRay) parsing:
  - Fix missing subtitles
  - Fix wrong display duration
! Ticket #102, Fix playback of VideoCD as disk
! Ticket #790, #1511, #2269, #2612, VSFilter: Fix a bug causing the subtitles not to show
  when using YUY2 color space
! Ticket #2219, #2610, MPEG Splitter/AAC Decoder: Add basic support from AAC LATM tracks
! Ticket #2267, WebUI: added support for '#', '%', '+' and other characters in file names
! Ticket #2452, Fix color controls in certain situations
! Ticket #2455, #2484, #2614, WebServer: Better Unicode support
! Ticket #2540, Fix handling of big API messages
! Ticket #2547, The master window handle was erroneously reset
  when starting a file from the explorer.
! Ticket #2599, Fix "Snap to desktop edges" option for multi-monitor setup
! Ticket #2606, MPEG Splitter: Don't output the fake "No subtitle" track when the file
  contains no subtitles


1.6.3 - 14 August 2012
======================
+ New webpage (http://mpc-hc.sourceforge.net)
+ Source code moved to GitHub (https://github.com/mpc-hc)
+ The DirectX runtime dlls are included in the distribution packages
  so it's no longer needed to install the DirectX runtime
+ MpegSplitter: support for DVD-Audio LPCM and MLP in .aob files
+ Use FFmpeg for AC3 and DTS decoding
+ If the icon library is modified in a way that can break the icons associated to the extensions
  handled by MPC-HC, MPC-HC will automatically try to fix the registry so that each extension
  is associated to the correct icon
* Unrar is statically linked and so MPC-HC and VSFilter no longer need the unrar dll
* Updated Unrar to v4.20
* Updated MediaInfoLib to v0.7.59
* Updated ZenLib to v0.4.28
* Updated FFmpeg (git 603221e)
* Updated Little CMS to v2.4 (git eb67549)
* Updated SoundTouch to v1.7.0pre r143
* Updated Armenian, Basque, Belarusian, Catalan, Chinese Simplified and Traditional, Czech,
  French, German, Japanese, Polish, Russian, Slovak and Ukrainian translations
* The Icon Library was rewritten leading to smaller size
* The Output Options page was redesigned for better usability
* Ticket #625, The translation dll's size was decreased by 2/3 (uncompressed)
* Ticket #2227, Hide the seek bar in capture mode
* Ticket #2276, Use the new user interface on Vista and later for the Save dialogs
* Ticket #2342, MPC-HC will now use the Windows theme font for the Statusbar, OSD messages
  and a few other places on Windows Vista and newer
* Ticket #2378, Move the "Remember last playlist" option into the Options dialog
! The hand cursor wasn't shown in the web links in Keys and WebServer options page
! Toolbar code cleanup and background fix for Windows XP
! The last textbox used in the Goto dialog was not remembered since r3964 and r3965
! Always show an error message instead of crashing when the argument of a command line
  switch is missing
! OggSplitter: Fix crash with some files
! Logitech Keyboard support updated and made optional (Options -> Tweaks)
! WebServer: various bugfixes and improvements
! Improve D3D fullscreen: disable the options dialog and the boss key when using D3D fullcreen
  since the D3D fullscreen window is meant to stay alone on top
! Ticket #504, Fixed rounding errors that prevented a properly centered image
  and caused unneeded resizing because the video size was off by one
! Ticket #2330, Fix the radio buttons in the Logo options page
! Ticket #2349, Recent Files: "Clear List" did not remove all files from the list
! Ticket #2356, The "With icons" and "File(s)" options in the Formats options page
  were not applied if no association was previously modified
! Ticket #2362, [DVB] Fix the Electronic Program Guide (EPG):
    - Fix the parsing of the event's information
    - Fix the parsing of the characters' encoding
    - Fix the display of the start and end time when DST is observed
! Ticket #2363, Fix keys and mouse buttons handling when using D3D fullscreen
! Ticket #2365, The volume slider wasn't properly redrawn in some cases
! Ticket #2427, The command line was not parsed when using slave mode
! Ticket #2470, API: Ensure that a 32-bit application can control MPC-HC 64-bit
! Ticket #2493, Fix a crash when saving subtitles using the sub format
! Numerous other bugfixes and improvements


1.6.2 - 26 May 2012
=========================
+ MatroskaSplitter: Support for QT video formats in Matroska v1 and MPEG-1
+ Added .tak extension
* Changed default settings
    - Global media keys are now activated by default
    - Media volume keys will now change the system's volume when MPC-HC is
      the foreground application
+ Added a new Zoom option "Auto Fit (large only)"
+ Ticket #1792, Show an OSD message and a status message when a favorite is
  created via the keyboard shortcut
+ Ticket #1866, Added support for MLP audio in MpaDecFilter and DTSAC3Source
+ Ticket #2134, Added an auto-update feature to periodically check for new
  update. This feature can be enabled on first launch or via the Miscellaneous
  options page. The delay between the checks is also customizable.
+ Ticket #2193, Add PNG support for custom toolbars
+ Added Basque translation
+ Include unrar.dll in the installer; rar'ed subtitles should be supported out of the box
* Ticket #734, A unicode encoding will now be used for the ini file. Old ASCII
  ini files will be automatically converted to unicode. Favorites with unicode
  filenames are now correctly handled when using an ini file
* Ticket #1693, [VSFilter] Remove the feature preventing the screensaver from
  running when VSFilter is active since that's a job for players not for filters
* Ticket #1733/#2029, Include subfolders when opening a folder using the command
  line or via the explorer context menu
* Ticket #2144/2277, Improve the subtitles downloader dialog:
    - the dialog's size and position are now saved
    - the columns' sizes are saved
    - the subtitle list is now fetched from a worker thread (this way the player won't
      lock anymore when the dialog is being opened)
    - reduced flicker
    - tooltips will now be shown for clipped text
* Ticket #2157, Show the [DXVA] indicator even when playback is paused
* Ticket #2163, Improve the "Save As" dialog: the dialog is updated more regularly and
  the units for the sizes and the speed are now automatically adapted to the values
* Ticket #2165, Improve the "Organize Favorites" dialog:
    - the favorites can now be deleted using the delete key or the backspace key
    - the buttons are disabled when they cannot be used
    - pressing the "Enter" key after selecting a favorite will now start playback
    - multiple selection is now allowed so that more than one favorite can be deleted
      or moved at the same time
    - Ctrl + A will select all items and Ctrl + I inverts the selection.
    - the size and position of the dialog are saved
* Ticket #2216, Show seekbar in compact mode instead of the toolbar since all toolbar
  functions can be accessed easily with keyboard shortcuts
* Ticket #2218, Improve the Go To dialog:
    - use a masked edit for entering the timecode (hh:mm:ss.ms or mm:ss.ms depending on
      the file duration)
    - show an error message when the entered timecode is greater than the file duration
* Ticket #2234, Changed some UI fonts according to the OS; more modern fonts will be used
  on Vista and later
* Reduced the maximum number of packets in the Queue, except for AVI. This will
  reduce the amount of memory consumed by the player
* Improved the "Open directory" dialog:
    - when using XP the checkbox will now use only one line when possible and the overall
      dialog will look better
    - on Vista and later the dialog will use the new user interface
* Use the new user interface for all open folder dialogs on Windows Vista and later
* Avoid using negative option in the Tweaks page: change "Don't use 'search in folder'
  on commands 'Skip back/forward' when only one item in playlist" into "Open next/previous
  file in folder on 'Skip back/forward' when there is only one item in playlist"
* The minidump feature is now enabled by default. The crash dialog has been updated to
  redirect the users to the bug tracker. The minidump feature can be turned off completely
  by using the /nominidump switch
* Updated FFmpeg (git 72261fa)
* Updated MediaInfoLib to v0.7.57
* Updated ZenLib to v0.4.26
* Updated SoundTouch to v1.7.0pre r142
* Updated VirtualDub to v1.10.2-test9
* Updated zlib to v1.2.7
* Updated Detours to v3.0 build 316
* Updated Little CMS to v2.4 (git 9e246ec 23/05/2012)
* Updated French, Turkish, Czech, Russian, Ukrainian, Simplified Chinese, Japanese,
  Traditional Chinese, Italian, German, Polish and Portuguese (Brazil) translations
* Removed GTSdll support since it's dead
* Removed the option to disable XP theming since it's of no use for any OS >= Windows XP
* Removed the option "Use the WM ASF Reader for Windows Media files" since it has no
  effect on any "modern" OS (>= Windows XP)
* Removed SSF support
! Broken playback and picture on H.264 and MPEG-2 interlaced with DXVA on
  integrated Intel adapter
! The settings location is now changed only when applying the changes in the
  options dialog instead of immediately after changing the state of the checkbox
! Improve/Fix the "Open" dialog:
   - the "OK" button will be disabled until a file has been selected
     (this avoids an error when clicking on "OK" while no file was selected)
   - when the selected file cannot be dubbed (for example when opening an rtsp stream)
     the wrong label was grayed out
! MatroskaSplitter: Better detection of fps for some webm files
! MPCVideoDec: Crash with some RV30/40 files when there are no input data from splitter
! MPCVideoDec: H.264 DXVA decoder skipped broken frames on interlaced material
! MpegSplitter: Removed crackling from LPCM tracks when switching and seeking
! MpegSplitter: Fix incorrect detection of MPEG Audio stream as AAC
! AviSplitter: Fix looping not working on short animations
! WebServer: Fix a few errors and typos
! MPCVideoDec: Fix MPEG-2 DXVA for some files
! Fix the remember file/DVD position feature: the positions' cache was not cleared when
  disabling the feature
! The Windows 7 taskbar was sometimes not correctly updated (for example when opening
  another video without closing the previous one). The preview was incorrectly cropped
  when the menu was hidden.
! Ticket #869, The playlist visibility state was incorrectly restored when MPC-HC
  was quit in fullscreen mode while the option "Hide on fullscreen" was enabled
! Ticket #1182, Unable to playback MPEG-2 in AVI
! Ticket #1290, Fix the reversed behavior of the playlist option "Hide on fullscreen"
  when the "Launch files in fullscreen" option is enabled
! Ticket #1589, Crash with "Null (uncompressed)"
! Ticket #1706, CSS 2.1 and HTML 4.01 Validation for the WebServer files
! Ticket #1946, Skipping bug with EVR custom output and .webm with VSync on
! Ticket #2090, Better handling of font fallback in the MediaInfo dialog so that
  the font size is now correctly adapted to the font used
! Ticket #2126, Fix DVBSub: the subtitles' color was incorrect
! Ticket #2133, JavaScript error in "player.html"
! Ticket #2137, Disable animation when pressing the "Boss" key
! Ticket #2155, Change the background color of the options pages caption so that
  it is readable with all Windows themes
! Ticket #2156, MPCVideoDec: Incorrect number of frames at the end of playback
  with software decoding
! Ticket #2161, Prevent the "Open" dialog from being opened multiple times
  (for example when double clicking on the tray icon)
! Ticket #2172, MP4Splitter: skip video tracks with motionless frames
! Ticket #2274, MPCVideoDec: the configured threads count was ignored when the
  decoder had to fallback in software mode because of a DXVA incompatible file, only
  one thread was used in this case
! Ticket #2304, MpaDecFilter: PCM 32-bit output gives cracking sound
! Ticket #2313, Fix crash related to the case sensitivity when using play next/previous
  file in folder
! Numerous other bugfixes and improvements


v1.6.1.4235 - 1 April 2012
==============================
+ Use FFmpeg for RealVideo/RealAudio decoding
+ Support for SIPR and VP30/31
+ Support WMV3 DXVA
+ Support for ALAC
+ MatroskaSplitter: support for QDesign Music, Sorenson and Cinepak video
+ Ticket #552, Add the ability to check if a newer stable version is available
  using "Help --> Check for updates"
+ Ticket #1668, A keyboard shortcut can now be assigned to toggle custom channel mapping on/off
+ Ticket #1738, Support for decoding FLV SWF ADPCM
+ Ticket #2065, CMD_GETCURRENTPOSITION command gives the position with an accuracy of 1 ms
  (only for media files, not for DVD-Video)
+ Ticket #2087, Add some OSD messages when resetting the playback rate
  and changing the zoom level
+ Ticket #2111, A keyboard shortcut can now be assigned to toggle normalization
  and regain volume on/off
* Ticket #1652/#2070, UI improvements:
  - "Tearing Test" and "Display stats" menu entries are now disabled
    if no video is loaded (which means in audio only mode too)
  - The "Organize Favorites" menu entry is disabled if no favorites exist
  - The filename is not highlighted anymore when opening the properties dialog
  - Double-clicking on the file location from the clip properties will now open
    the containing folder and select the current file
  - The information fields in the properties dialog are now correctly aligned with their labels
* Ticket #2098, Improve the behavior of the context menu in the internal filters page: menu items
  are now disabled when it makes sense to do so
* Ticket #2108, Adjust drop-down list width for long shaders name
* Updated libpng to v1.5.10
* Updated Little CMS to v2.3+ (git 839a5b0 23/03/2012)
* Updated FFmpeg
* Updated MediaInfoLib to v0.7.54
* Updated ZenLib to v0.4.25
* Updated VirtualDub to v1.10.2-test5
* New icons for the Windows 7 taskbar controls
* Updated Polish, Japanese, Chinese Simplified, Chinese Traditional, Russian, Ukrainian,
  German, Slovak, French and Armenian translations
! Long opening of MKV files after using the "mkvclean" utility
! Incorrect detection of interlaced flag on some MPEG2 stream with DXVA decoder,
  fix choppy playback with incorrect frame rate
! MPASplitter can't split some .MP3 files
! MPCVideoDec switched to software decoding mode, even if only the DXVA decoder
  was selected, but wasn't supported
! MPEGSplitter can't load MPEG-TS files with corrupted packet header
  (incorrect Adaptation Field)
! Freeze occurs when madVR leaves exclusive mode
! MPCVideoDec bad playback with VC1 files with pulldown in MPEG-TS
! Ticket #90/#971/#1682, MP4Splitter - Fixed hanged image/slow response after seeking
! Ticket #413/#2096, Fixed register command line switches for audio and video files
! Ticket #1007, FLVSplitter: increased the depth of the search for audio and video tags
! Ticket #1815, Only try to expend command line argument into full path name when
  we are sure the argument is supposed to be a path name
! Ticket #1987, MP4Splitter: Fix a deadloop which happened sometimes at the end of a file
! Ticket #2007, Prevent a memory leak in FLACSource
! Ticket #2013, Bug when saving the ASS/SSA subtitle, the header has incorrect values
! Ticket #2014, Embedded subtitle overrides "Prefer external"
! Ticket #2047, Apply button under "EVR Sync Settings" can't be clicked
! Ticket #2057, Don't crash with some incomplete .AVI files
! Ticket #2057, MatroskaSplitter does not use properly cropping parameters
! Ticket #2064, CMD_SETPOSITION command does not start playback when paused
! Ticket #2070, Use MPC-HC's internal formats list when trying to get the format description
  from the file extension
! Ticket #2080, Add fallback fonts for the MediaInfo tab in case Lucida Console isn't available
! Ticket #2088, Fix a crash when double-clicking in the Organize Favorites dialog
  when the favorites list was empty
! Ticket #2093, Fix time display when the Subresync bar is enabled
! Ticket #2116, Fix the "Reset" button in Options/Subtitles/Misc
! Ticket #2128, The "Apply" button is now clickable after modifying the web server root directory,
  the fullscreen modes list, the external filters list and the time tooltip option
! Numerous other bugfixes and improvements


v1.6.0.4014 - 30 January 2012
==============================
+ Add the ability to export MPC-HC settings
+ Add the ability to use different mouse button bindings in windowed and
  fullscreen modes
+ Add colors controls for all EVR based renderers
+ Support NV12 output colorspace, NV12 is now preferred over YUY2
  (on ATI HW Deinterlacing and Post-Processing only works with NV12)
+ Support language info for audio and subtitle streams when playing .IFO files
+ Multithreaded decoder
+ FLV Splitter and MP4/MOV Splitter - add support more NellyMoser
+ VC-1 DXVA Decoder now decodes VC-1 interlaced material
+ Support MJPEG(-B), AVRn, JPGL (for AVI), AVDJ (for MOV), TSCC codec and MPEG-2 in AVI
+ Ticket #372, Add the ability of resetting MPC-HC to its default settings using
  either a new button in "Misc" option page or "/reset" command line option.
  Be careful, when using this feature ALL your current settings will be lost.
+ Ticket #866, Add two new command line options:
  - /regpl will create the file associations for playlist files
  - /regall will create the file associations for all file types MPC-HC can handle
+ Ticket #1018, Add support for m3u8 playlist files (UTF-8 variant of the m3u
  playlist format).
+ Ticket #1155, "After Playback" enhancements:
  - each "After Playback" action can now be associated to a keyboard shortcut.
  - an OSD message is shown when an "After Playback" action is selected.
+ Ticket #1627, Open the file's directory from the clip properties
  (by double clicking on it)
+ Ticket #1951, add support for DTS audio in MP4/MOV Splitter
* Updated Belarusian, Chinese (simplified and traditional), Czech, Dutch,
  French, German, Hebrew, Hungarian, Japanese, Korean, Polish, Russian,
  Slovakian and Ukrainian translations
* Updated libogg to v1.3.0
* Updated SoundTouch to v1.6.1pre r131
* Updated VirtualDub to v1.10.1-test16
* Updated MediaInfoLib to v0.7.53
* Updated ZenLib to v0.4.24
* Updated Little CMS to v2.3
* Updated libpng to v1.5.7
* Updated FFmpeg
* Updated zlib to v1.2.6
* Fixed a couple of UI problems with the Windows classic theme
* Use FFmpeg for AAC, MPEG and Vorbis audio decoding
! If "Play # time(s)" was set to a value higher than one and if the playlist
  had more than one element, the playback never stopped.
! If the playlist had only invalid elements, the player would try to
  open the last element forever. If at least one element was invalid,
  the "Play # time(s)" setting would be ignored and the playlist would
  be repeated forever.
! The audio decoder sometimes tried to decode AC3 stream as E-AC3
! Ticket #19, AviSplitter: fixed detection of absolute chunk addressing
! Ticket #53/#1666, [OGG] splitter fails for latest Theora videos
! Ticket #58/#122/#1857, The internal DXVA decoder has "flickering"
  with some H.264 videos
! Ticket #98, MPEGSplitter: fix A/V sync issue on MPEG-TS with H.264 stream;
  some MPEG-TS with H.264 stream was unable to playback with MPC software decoder
! Ticket #111, [VC1 DXVA] Overlap filter causes corruption
! Ticket #285, Ambarella AVC not correctly split by MPC-HC's internal
  MP4/MOV source filter
! Ticket #311, High dpi awareness
! Ticket #970, "Always load external subtitles" fails if the subtitles
  filename contains LANG postfix
! Ticket #1166, Playlist was erased by pressing the "Close" (default Ctrl+C)
! Ticket #1427, Add the ability to use different mouse button bindings
  in windowed and fullscreen modes
! Ticket #1467, "Save Image" was sometimes skipping some frames
! Ticket #1519, Crackling/stuttering audio in some DTS for SPDIF output
! Ticket #1552, Fix the DVD angle display in the information panel (Ctrl+3)
! Ticket #1553, Fix display for DVD tracks without language information:
  the tracks were incorrectly numbered in the menu and the current OS
  language was displayed instead of "Unknown" in the information panel
  and OSD messages
! Ticket #1555/#1560, Improve OSD for DVD playback: simplify some messages
  and try to be consistent with the information panel
! Ticket #1559, Problem with Win7 Taskbar Preview
! Ticket #1566, Matroska MKV (MPEG2) Aspect Ratio ignored
! Ticket #1575, Time tooltips are cut in full screen mode
! Ticket #1587, AAC file played on MPC-HC 1.3.1249.0 and doesn't play on 1.5.2.3456
! Ticket #1596, correct calculation of the window size when caption hiding/showing
! Ticket #1622, Unable to seek in files when auto-play is off
! Ticket #1624, Full screen is not working with Intel G45 Express Chipset
! Ticket #1686/#1694, Improve MPC-HC web interface and embedded web server
! Ticket #1710/#1827, "On Top While Playing Video" stops working after fullscreen
! Ticket #1899, Improve Hebrew translation: the UI is now correctly displayed
  with a right-to-left layout
! Ticket #1928, MP4Splitter: ignore the bad AR
! Ticket #1941, Volume slider bug
! Ticket #1962, MPC-HC fails to play PCM audio in QuickTime .mov file
  (add support for 'lpcm' in .mov files; partial update for bento4 lib)


v1.5.2.3456 - 22 July 2011
==============================
+ Added optional fp32 (full float point) processing, fp16 is now half float point
+ Support for BluRay chapters
+ Added Hebrew translation (beta version, the right-to-left layout is not applied
  to all dialogs yet)
+ You can switch between the remaining time and the current time by clicking on the
  time itself on the toolbar
+ Ticket #29, Added an option to make the player on top only when playing
  video files. When using this option, the player won't be on top when
  playing an audio-only file
+ Ticket #1216, Added a "Clear" option to the playlist context menu
+ Ticket #1224, Added OSD messages when changing the audio boost and the audio balance
+ Ticket #1311, Added an "After Playback -> Lock" option
+ Ticket #1350, Added a time tooltip for the seek bar whose position can be specified
  (above or below the seekbar)
+ Ticket #1377, Keep the same playback speed for all the items of the playlist
+ Ticket #1382, Added an OSD message when taking a screenshot
+ Ticket #1487, Show the saved position for favorites with "remember position"
  enabled in the "Organize Favorites" dialog
+ Ticket #1489, Add the ability to open favorites from the "Organize Favorites"
  dialog by double-clicking on an item
* The filters' settings are now saved in
  [HKCU\Software\Gabest\Media Player Classic\Filters]
* Improved the OSD message when changing the playback speed
* The hand cursor is not used anymore for the video frame unless the
  mouse pointer hovers a button in a DVD menu.
* Ticket #519, Replace the "Next (Previous) Playlist Item" command by a
  "Next (Previous) File" command which can also be used to play the next
  (previous) file in folder without stopping at chapters.
* Ticket #559, Replace jump forward and backward buttons in Windows 7 taskbar
  by next and previous buttons as they are probably used more often.
* Ticket #846, Use a different program id for x64 builds so that there
  is no conflict over file associations between x86 and x64 builds.
* Updated libpng to v1.5.4
* Updated MediaInfoLib to v0.7.47
* Updated ZenLib to v0.4.20
* Updated SoundTouch to v1.5.1pre r104
* Updated Little CMS to v2.2
* Updated libdca to SVN r90
* Updated French, German, Hungarian, Russian, Turkish, Ukrainian translation
! Ticket #20, [MKV] 2 or more video streams get played back simultaneously
  on top of each other
! Ticket #71, [MPEG] LPCM mono causes 50% playback speed
! Ticket #199, [MpegSplitter] no video with some files
! Ticket #384, Disable Relative drive
! Ticket #613, Bugs of MPC-HC Dialog Fonts
! Ticket #622, Favorites are now correctly saved when changing settings
  location from registry to ini and vice versa.
! Ticket #740, Make EVR Sync stats better looking
! Ticket #760, Fixed playback of old .mov files with 'raw', 'twos' and 'ima4' audio
! Ticket #805, EVR Custom scanline and refresh rate detection fails occasionally,
  causing superspeed video
! Ticket #829, MPC-HC plays recent BBC HD recordings with no video
! Ticket #965, Add Full File Path Parameter to Status.html
! Ticket #989, Sliders at options are consistent with volume slider.
  Scroll/button up will move slider up (increase the value) while going
  other way, scroll/button down will decrease the value.
! Ticket #1029, MPEG-2 Profile detected incorrectly with MPEG splitter
! Ticket #1032, MPC-HC x64 does not work with Flash 64-bit
! Ticket #1059, Don't add files to Windows recent files list when "keep
  history of recently opened files" is unchecked.
! Ticket #1128, Thumbnails wider than 2048p
! Ticket #1157, The mute button had no effect if triggered during startup
! Ticket #1178, Fix OSD messages when toggling "Screen Space Pixel Shader" on/off
! Ticket #1212, Playing "Recent File" clears playlist, even though playlist
  contains file
! Ticket #1220, MPC fails to play specific MKV files
! Ticket #1251, If the window is maximized, it will stay maximized when removing
  the caption or the menus. The video frame will be extended rather than reducing
  the size of the window.
! Ticket #1321, IMpegSplitterFilter uses CString - should be WCHAR or BSTR instead
! Ticket #1383, Fix OSD positioning: messages displayed at the top-right of the window
  before going fullscreen were incorrectly positioned after switching to fullscreen
! Ticket #1483, Wrong order of "Video" and "Audio" in "Properties -> Details"
! Ticket #1509, Fix the "Prev Angle (DVD)" hotkey and add an OSD message when
  changing the angle using the hotkeys or the "Navigate" menu
! Ticket #1515, Disable "Disable Desktop composition (Aero)" menu entry on XP
! DVB, Channel switching for H-264 services is more stable now
! Some OSD messages were not translatable
! Use the correct icon for the message box appearing after the online
  subtitles database has been tested: the warning icon was always used
  even if the test was successful
! Numerous other bugfixes


v1.5.1.2903 - 29 February 2011
==============================
! Crash on Sandy Bridge processor


v1.5.0.2827 - 31 January 2011
==============================
+ Added new options to always default to external subtitles, ignore
  embedded subtitles and to set the autoload subtitle paths
+ Added support for "in24", "fl64", 8-bit "sowt", "IMA4" and "NONE"
  audio (old QuickTime PCM)
+ Added support for "in24", "in32", "fl32", "fl64"
  (both big-endian and little-endian) in .mov files
+ Ticket #784, Enable ctrl+A in the MediaInfo window
+ [DVB] LCN support, added EPG current event information, offset parameter for
  scanning channels, added channel encryption detection for DVB-t during scan
+ Added ignore encrypted channels checkbox during DVB scan
+ Armenian translation
* Updated FFmpeg
* Updated MediaInfoLib to v0.7.39
* Updated ZenLib to v0.4.17
* Updated Little CMS to v2.1
* Updated libpng to v1.4.5
* Updated libogg to v1.2.2
* Updated libvorbis to v1.3.2
* Cleaned up and optimized code for QT PCM, small corrections in MP4Splitter
* DVB: the current channel audio stream is memorized and selected by default
  each time the channel is switched back
* Removed DSM Converter (use the legacy branch if you need this feature)
* Removed RoQ splitter/decoder (same as above)
! Ticket #52,  [playlist] shuffle is broken
! Ticket #78,  ESC key cannot be assigned to other actions
! Ticket #293, giving "remember last window size" a meaning
! Ticket #564, EVR Sync enabled when it shouldn't be
! Ticket #627, Don't create the "AppData\Roaming\Media Player Classic"
  folder if the "Remember items" in playlist is disabled
! Ticket #628, Enable ctrl+A in "Player --> Keys" page
! Ticket #647, Weird "keys" listed
! Ticket #650, Non-media entry in playlist halts playback
! Ticket #651, Make EVR CP stats graph smaller
! Ticket #652, Escape key on certain form causes form to collapse
! Ticket #655, Crash with some BBC-HD samples
! Ticket #678, Remember last window size NOT working and mpc-hc.ini
! Ticket #698, VMR-9 (Renderless) + pixel shaders crashes
! Ticket #699, fix EAC3 mediatype and string
! Ticket #712, Audio renderer menu problem with Haali splitter after r2339
! Ticket #724, Frequency range and bandwidth value are currently
  not taken into account when doing a scan
! Ticket #753, DVB-T, internal MPEG-2 filter & wrong aspect ratio
! Ticket #775, Default options of DVD/OGM Preferred language should be
  "Default" not "English"
! Ticket #776, Mouse pointer hovering over window/video should be normal,
  not hand
! Ticket #778, Playlist interface problem
! Ticket #782, VMR-7 & 9 filter names misspelled
! Ticket #791, Change the cursor behavior
! Ticket #796, MPC HC window doesn't stay snapped to desktop corners
! Ticket #809, Resize-arrows no longer appear with caption hidden
! Ticket #889, [DVB] <enter> keypress in channel list makes whole pane gray
! Ticket #891, [DVB] clicking empty slot in channel list causes small playback
  hiccup
! Ticket #895, [DVB] some characters don't show in EPG OSD
! DVB Screen sizing: takes into account the TV Navigation panel
! Workaround to avoid madVR renderer freezing when switching DVB channels
! Bandwidth value was hardcoded to 8MHz when doing a scan or switching channels.
  The value entered in scan is now saved in the configuration


v1.4.2824.0 - 9 January 2011
==============================
! Crash on Sandy Bridge processor
! Freeze on fast forward with H264 decoder


v1.4.2499.0 - 7 September 2010
==============================
+ Seamless playback support for multi files BRD
+ Support for Windows 7 taskbar and thumbnails features
+ Added Catalan, Dutch and Japanese translations
+ VSFilter x64 is available
+ Added internal VP8 Decoder
+ MPC-HC can be compiled with MSVC2010 and Intel C++ Compiler
+ Support for MCE remote control (values added in AppCommand column in
  "Options/Player/Keys")
+ Support of Broadcom Video decoder for VC1, H.264 and MPEG-2
  (hardware acceleration)
+ Support for DVB subtitles
+ Open files to Recent Documents
+ AUTO HDMI MODE 1080p/24 support for fullscreen mode
+ Ticket #46, add number to AudioDevice list
+ Sync Renderer dialogs
+ Real Video decoder in MPCVideoDecoder
+ Support interlaced mode in fullscreen resolution list
+ Auto change fullscreen resolution for different video content
+ Fullscreen Options page
+ Video decoder, options for DXVA Compatibility check
+ Support for MPEG-2 bitstreaming in the DXVA decoder
+ Full screen resolution - support for native 23.976 and 29.97 mode
  (Vista and above only)
+ Auto resolution change for DVD
+ Always Exit after playback option
+ Support for SRM7500 remote control
+ New panel for switching DVB channels, audio and tuner scan
  accessible through "View --> Navigation" menu when in Capture mode
+ Automatically play next files in a folder
+ Implemented 'Quick add favorite' shortcut (default: Shift+Q)
  will use current settings from 'Add Favorite' dialog
+ Select D3D device for render, including DXVA if two or more video
  adapters are in the system (EVR Custom & VMR9-Renderless only)
+ Statistics - added render device
+ Ability to select OSD font & size
+ Option "Don't use 'search in folder' on commands 'Skip back/forward'
  when only one item in playlist"
+ H.264 L5.1 DXVA support for ATI cards with drivers > v8.14.1.6105
  (Catalyst 10.4)
+ MPCVideoDecoder, disable DXVA (H.264) for SD video (width < 1280)
+ Improved DXVA compatibility check
+ Implemented drag and drop folders with sub-folders
+ Support for MPEG-1/Layer1 audio stream in the Matroska splitter
+ Command to switch video frame mode (key 'P')
+ Video frame options like in TV: Zoom 1 and Zoom 2
+ Auto saving position every 30 seconds
+ Added internal filters context menu (disable/enable)
+ Command to reopen file (Ctrl+E)
+ Support for PGS in Matroska
+ Open root BD movie from command line & shell context menu
+ OSD messages added when switching audio stream or subtitles
+ OSD on Jump Forward/Backward (keyframe)
+ OSD when open DVD/BD
+ OSD for jump to chapter in file
+ Detect system UI language and set interface language at first run
+ Full ICC color management (Little CMS v2.1a library added)
+ Full floating point processing (FP16 temporary textures)
+ High-quality dithering (color management, full floating point
  processing, 10-bit -> 8-bit)
+ Option to force 10-bit EVR mixer input (probably hackish,
  but in many cases it seems to work)
+ Added MediaInfoLib (v0.7.35) (no need for MediaInfo.dll anymore)
+ Added support for MPEG-2_VLD DXVA for Intel G31/33
  (and maybe other Intel) chipset
* Updated UnrarDll. It is now possible to use the 64bit UnrarDll
  with the 64bit MPC-HC
* Updated Detours to v2.1 build 216
* Updated Bento4 to v1.2.3.0
* Updated libpng to v1.4.3
* Updated SoundTouch to v1.5.0
* Updated zlib to v1.2.5
* Updated libogg to v1.2.0
* Updated libvorbis to v1.3.1
* Updated PNGDIB to v3.1.0
* Updated sizecbar to v2.45
* Better support for madVR
* Updated Hungarian, Russian, Polish, Slovak, Portuguese, Ukrainian,
  Spanish, Swedish, Czech, Traditional Chinese, German, Italian, Turkish
  and Hungarian translations
* Updated FFmpeg
* Updated installer script
* "DirectShow Audio" label on "Playback -> Output" now says "Audio Renderer"
* Ticket #27: Allow screensaver to activate when audio only
  (sleep is still stopped)
* Add open file to Recent Document only if "Keep history of recently
  opened files" is checked
* Select and change resolution for selected fullscreen monitor
* Improve options for fullscreen monitor and resolution
* Open DVD root folder (include VIDEO_TS) from explorer context menu
* Many internal code improvements for more stability
* Improved playlist
* Improved subtitle handling
* Rewritten DVXA check for better readability
* Disabled internal H.264 (AVC) decoder for interlaced files
  (bad supported by FFmpeg)
* Show filename in OSD at open, instead "Pause/Play"
* Add 'x64' suffix in Title and in the About dialog for the x64 build
* OSD file name at open show delay up to 3 sec.
* Core rendering code in the DX9AllocatorPresenter class is moved
  to a new class: DX9RenderingEngine
* "10 bit RGB" option changed to "10-bit RGB Output", does not affect
  internal processing anymore
* Removed unnecessary temporary texture allocations
* Removed old player logos and added a new one
! Name of MPC-HC in title bar (Bug #2826963)
! Web interface status.html not showing status/media state when
  Status bar is turned off (Bug #2025675)
! Ticket #12,  crash/hang after standby, hibernate, UAC or CTRL+ALT+DEL
! Ticket #74,  [MP4] AAC sound stops playing
! Ticket #116, issue with some MPEG (mono) audio playback
! Ticket #120, Inner PCM inside QT .mov is supported now
! Ticket #150, issue with playback AMR sound
! Ticket #161 and #414, "no audio capture device"
! Ticket #163, Crash with RealMedia
! Ticket #237, DVB channels are all saved as number 0 when tuning
! Ticket #242, No PCM sowt audio in MOV
! Ticket #258, speaker configuration in Audio Switcher isn't stored
! Ticket #281, [CAPTURE] No video decoding when capturing from DVB-T
  card with internal MPEG2 DVXA Decoder enabled
! Ticket #282, Auto-zoom function problem
! Ticket #295, SSA/ASS and other save subtitle formats problem
! Ticket #300, Regression when hiding Caption and Menubar
! Ticket #333, Missing tracks when playing a TS file
! Ticket #363, #563, Can't open some mp3
! Ticket #385, no chapters with MP4Splitter
! Ticket #455, Bug with PGS subtitles
! Ticket #456, Problem with auto-loading subtitles fixed
! Ticket #465, MPEG/TS splitter can't recognize some video track
! Ticket #477, Internal audio switcher
! Ticket #489, MPC-HC API improvements
! Ticket #502, Problem with D3D9Ex
! Ticket #513, .rmvb interlaced decoding
! Ticket #511, Subtitle renderer crash fixed
! Ticket #528, Unable to scan for dvb-t
! Ticket #536, [MKV] Default values of the specification should be
  strictly followed
! Ticket #576, Next AR Preset Issue
! Ticket #578, VSFilter crash fix with certain malformed drawing lines
! Ticket #599, ignores /audiorender option
! Ticket #601, BD movie length detect wrong
! Ticket #660, Pressing left arrow under "Options -> Logo" causes right
  arrow to disappear
! Ticket #661, Ctrl+C / "File -> Close" form size discrepancy
! Ticket #672, DVB-T - image problems after changing from TV channel
  to radio & back
! Ticket #677, Wrong colors using Color Management
! Ticket #679, add color management status in EVR CP graph settings
! Ticket #680, "Don't hide controls in full screen" does not work
  unless you move the mouse
! Ticket #694, DLL preloading vulnerability
! Ticket #696, [GUI] use options dialog causes main window elements
  to disappear
! Ticket #714, MPEG2 detected as H264
! Ticket #717, Fullscreen controls are not displayed until mouse is moved
! Opening multiple files via Explorer context menu
! Memory leak in libavcodec
! Memory leak in DXVA decoder
! Playback of some broken avi files
! Fix VCD playback
! Better detection of "Used For Reference Flags" (fixes some broken
  DXVA samples)
! Screensaver activating during video playback on XP
! Audio language detection for HDMV (broken by seamless playback feature)
! Bug with prevent sleep mode
! Bug in "Open File" dialog & "Add to Playlist" checked
! Default (center) window position after file close
! Issue with a switch to fullscreen mode
! FavoriteAdd dialog
! Possible buffer overflows
! Bug with launch in fullscreen
! Incorrect decoding with MPEG-2 bitstream decoder on video with
  alternative scan
! Seeking problem with MPEG files
! Don't show OSD message when auto play is disabled
! Checking for duplicates in display modes
! Correct state when done playback (rewind fix)
! Incorrect minimal window height calculation when caption is on
! Search in dir function
! Play video from network share
! Incorrect position (desktop) after fullscreen when playing multiple
  files on multi-monitor systems
! Playback issue for some H.264 media files captured from digital cameras
! Various DVB-T fixes
! DXVA regression: black video with some files
! Crash in Matroska splitter with unknown streams
! OSD shown wrong (previous) audio stream on change
! Improved DVD resume
! Crash with some VOB subtitles
! Undetected H.264 video streams in MPEG splitter
! Incorrect identification of the video stream in MPEG splitter
  (H.264 instead of MPEG-2)
! Logical/numeric sorting in Playlist, "Play next in the folder"
! OSD on open BD
! MPEGSplitter - could not read some MPEG files
! Crashes with MSVC2010 builds
! The EVR mixer output media subtype matches the surface format
  (as a consequence, it's always RGB)
! Incorrect length detection of MPEG, DVD (.ifo)


v1.3.1249.0 - 26 August 2009
============================
+ Support for FLAC audio streams
+ Support for Dolby Digital+ (EAC3) and Dolby true HD (MLP)
+ Nellymoser audio decoder
+ Belarusian, Brazilian and Swedish translation
+ New shader "Sharpen Complex 2" (required hardware compatible with
  pixel shader 2.A)
+ Support for madVR video renderer (http://madshi.net/madVR.zip)
+ Additional information on video using MediaInfo
  (DLL can be download from http://mediainfo.sourceforge.net
  and placed in MPC-HC directory)
+ Internal DXVA decoder support for H.264 with Intel G45
  (thanks to the people who helped me at Intel Corp.)
* Add support of interlaced flags in software mode for MPCVideoDecoder
  filter
* D3DFullScreen mode now takes into account the monitor to full-screen
  mode in options, if monitor is not specified on the command line
* Auto-hide playlist on fullscreen (feature request #2219561)
* Detours library updated to v2.1
* Support for AC3 in MP4 splitter
* Support for EAC3 in Matroska splitter
* Hotkeys added to support more remote control keys
* Support for Theora in Matroska internal splitter
* libvorbis updated to v1.2.3
* libogg updated to v1.1.4
* Improved streaming performances
* Prevent display or computer to sleep during playback
* FAAD library updated to rev 2.2.7
* libpng updated to release 1.2.38 (fix security bug)
* Playlist file is now saved in the MPC-HC folder (patch # 2671496)
* frame by frame modify to support step frame back functionality
  (except for VMR9)
* support for AC3 in MP4 files created with Nero Digital
* EVR Custom and VMR9 Renderless revamped (Beliyaal),
  better synchronization, remove tearing in windowed mode,
  support for dialog box in DirectX exclusive mode, ...
! Support for Theora stream in Ogg internal splitter
! Save thumbnails crash in x64
! Bugs on presentation graphics
  (missing subtitles, better synchronization)
! Audio change on M2TS files reset the selected subtitle
! Switch to "Minimal view" reset main menu language to English
! Bug in MPEG splitter for VC1
! Maximum texture resolution to "Desktop" not working with Haali
  renderer (Bug #2456735)
! Better synchronization with EVR Custom to improve playback smoothness
! 24 bits LPCM not properly play
! Possible deadlock with Reclock
! Support of framestep backward, even if the codec didn't support it
  natively (bug #2600542)
! DXVA decoder support multiple graphics cards
  (PCI vendor id detection on the fly)
! Incorrect aspect ratio for some H.264 files with DXVA1 decoder
  (extended SAR)
! H.264 files with 16 reference frames freeze during playback
  (bug #2795785 and #2784256)
! AVI with H.264 not decoded properly (bug #2794854)
! Revamped DXVA H.264 decoder based on new insights, fixing black screen
  macroblock, support for AVI, ...
! Incorrect playback for padded DTS
! Hang when moving player between monitors


v1.2.908.0 - 30 November 2008
=============================
+ support Multi-Monitor configuration, select Monitor for full-screen
  playback
+ a minidump file is created when MPC-HC crashes
+ Simplified Chinese & Traditional Chinese translations
+ Pixel shader to convert BT601 -> BT701 (request #1911511)
+ YV12 Chroma Upsampling pixel shader added
  (http://forum.doom9.org/showthread.php?p=1184975#post1184975)
+ Recursively adding directories to the Playlist
  (feature request #2013805), add as New Menu item
+ Support for M2TS presentation graphics streams
  (only for EVR Custom and VMR9 Renderless)
+ Command line switches "/startpos hh:mm:ss.ff", "/dvdpos title#chapter"
  and "/dvdpos title#hh:mm:ss.ff" to start playback to position
+ Different icons for each format associated with MPC-HC
+ support H.264 and AAC in FLV splitter
* Add VIRTKEY for "Save Thumbnails" (request #1964399)
* Store the settings for the internal DXVA/FFmpeg decoders
  in a different value than the other internal decoders. This makes
  the settings better interchangeable with older MPC-HC builds.
  Also gives more room in the bitvector for adding more decoders
  in the future (FFmpeg based)
* PAR correction option (for anamorphic video)in VSFilter
  and RealText support
* Updated liba52 & libdts libraries
* The x64 version of MPCVideodec is now built using GCC/MinGW64
  (improves performance)
* GUI option for Explorer Context menu -> Files (see Formats Page)
* GUI option for Explorer Context menu -> Directory (see Formats Page)
* Open directory (shell context menu or MPC-HC menu) -
  load only enqueues audio/video files, those with file extensions
  from the Formats page in MPC-HC options
* Replaced command line switches /unregvid and /unregaud with
  a new switch /unregall. This cleans up all file associations,
  including image/playlist formats
* Change in VideoDecoder Settings for rev.681 (read AR from stream)
* Open DVD detect and open Blu-Ray main movie
* EAC3 support in MPEG splitter
* Number of files and DVD position increase from 5 to 20 (req #1819709)
* Bypass of UOPs for DVD (req #1811508). This feature didn't work
  for the x64 build
* libpng updated to release 1.2.32 (fixes a memory leak)
! Chapter message improperly displayed in status bar (for file only)
! Crash with CoreAVC when changing "preferred decoder" setting
  during playback
! Missing checkmarks on "tearing test" and "display stats" options
  (bug #2010857)
! Save image/thumbnail not working with EVR (bug #2010681)
! Workaround to prevent GraphEdit crash when MPCVideoDec.ax
  was registered.
  (when opening menu "Graph/Insert filter/Direct show filters")
! Fix rare seeking issue with VobSub in VSFilter
! Subtitle style not save in settings
! random freeze when using MPC-HC, VSFilter and Haali renderer
  at the same time
! shortcuts with MEDIA_PLAY, MEDIA_PAUSE not working with some
  remote controls
! shortcuts label in "Option / Key" dialog box is now localized
! MPC-HC file association cleanup bug (rev.731), these commands
  are not working: mplayerc /unregvid, mplayerc /unregaud
! Freeze when playing MPEG-2 or Xvid file
! Remember position not working with some DVDs
! DXVA decoder now support H.264 interlaced video
! Crash/black screen with DXVA decoder with some ATI cards
! Incorrect aspect ratio with some H.264 files (extended SAR)


v1.1.604.0 - 28 June 2008
=========================
+ Subtitle delay support (this one does not modify the subtitle file)
+ Polish, Ukrainian, Italian & Slovak translations
+ Support for M2TS files with H.264, VC1, AC3, DTS, LPCM
+ MPEG-2 support for x64 edition
* Improved support for audio and subtitle switching with the
  internal MPEG splitter
* Size shrink for the translation DLLs
* New property page for "MPC - Video decoder" standalone filter
  to select activated codecs
* Option added in "MPC - Video Decoder" property page to disable
  FFmpeg software decoding (to use other decoder instead)
* Added file extensions EVO, M2TS and M4A in option / format
* Force using 3D surface with EVR Custom Presenter
* x64 executable is now named mplayerc64.exe
! Sorenson video was not played when DXVA was activated
! Minimum EVR buffer set to 3 (instead of 1)
! Better subtitle synchronization with EVR Custom Presenter
  (delay due to buffering remove)
! DXVA compatibility improved with some NVIDIA cards
! Reported subtitle fixes from Guliverkli2
! Incorrect colors with DXVA internal decoder for H.264 files
  with multiple PPS / SPS settings
! Broken FLV playback
! EVR Custom Presenter incompatibility with Microsoft MPEG-2
  and CyberLink decoder
! DXVA decoding bugs for some H.264 files
! Memory leak in the DXVA decoder (bug #1962448)
! Crash on stop/play with the DXVA decoder
! Random crash with EVR Custom Presenter
! Macroblocks with NVIDIA card
  (appear on H.264 streams with custom quantization matrix)
! Access violation using VSFilter as AviSynth plugin
! Some H.264 streams was not recognized by internal MPEG splitter
  (PPS and SPS present on different packets)
! Black screen when OSD or subtitles was displayed in x64 release
! Wrong Aspect Ratio when using "Save thumbnails" with EVR CP


v1.1.0.0 - 6 March 2008
=======================
+ Custom presenter now support DXVA2, and display hardware acceleration
  mode in Jitter test information
+ Internal video decoder based on FFmpeg for Flash video
  (FLV4, VP5, VP6), AMV, MPEG4, SQV, Theora, VC1, XVID, and DivX
+ Internal video decoder H.264 with DXVA 1 acceleration
  (using VMR9 or overlay on XP) and DXVA2 (using EVR on Vista)
+ Korean translation
* FAAD library updated to 2.6
* Standalone filter renamed to be prefixed by "MPC - xxx"
* CSS classes added in WebServer (request #1885296)
! Incorrect colors on video when using YUV mixing
  and "VMR Color controls"
! PN31 driver installation was not working
! MPC-HC graph manager now use the same filter priority as WMP
  and GraphEdit (clsid's patch)
! MPC-HC is now recognized as an application by SUMo
  (http://www.kcsoftwares.com/index.php?sumo)
! Ghost horizontal and vertical lines with Pixel Shader resizer
  (especially on ATI graphics card)
! Crash in FLV splitter with file containing 0 bytes packets
! Button "Video" in format property page didn't select images anymore
! No sound in some FLV video with Nellymoser audio track
! Multimedia keys (mute, vol+-, ...)
  was captured by MPC-HC even if option "global media keys" was off
! YUV mixing is now disable with Vista
  (not supported by Vista VMR9, and cause black screen)


v1.0.11.0 - 14 October 2007
===========================
+ Command Line Option "/dubdelay" applies a positive or negative
  audio delay of ???ms, if filename contains "DELAY ???ms"
  (internal Audio Switcher required)
+ Russian, Turkish, Czech, Spanish and Hungarian translations
+ Internal AVI splitter support AMV files
  (need an ffdshow update to decode)
* File type association. MPC-HC is now recognized as a registered media
  player application. File type registration now compatible with UAC (Vista)
* Matroska internal subtitles are not loaded
  if "auto-load subtitles" option is off
* Allow DirectShow to use a disabled internal source
  and transform filters when no other suitable filter is available
! Subtitle popup menu not working in French
! "Remember file position" option is not working properly
  in playlist mode
! Crash when opening "Navigation" menu while playing DVD
  (German locale only)
! Memory leak with window resize
! Many GUI related things
! Crash when opening zero byte length MP3 files
! Crash when using "Save thumbnails" with number of row or column
  greater than 8 (now internally limited to 8)


v1.0.10.0 - 15 September 2007
=============================
* Latest clsid's patches (Bento4 0.9.3, FAAD2 2.6b, dtsdec 0.0.2,
  libmad 0.15.1b, zlib 1.2.3, MPEG decoder: progressive frames fix,
  MPEG decoder: DSUtil interlaced fix v2)
* libpng 1.2.20
+ Command Line Option "/d3dfs" to start MPC-HC in D3D Fullscreen mode
+ Logitech LCD support (e.g. G15 keyboard)
* Remember File and DVD position works only when "Keep history"
  is active (preserve privacy issue)
* Kick off Screen Saver from Power Options only while video is playing
  (Vista)
+ Build for x64 platforms
+ Multilingual support for English, French and German
* DirectX SDK updated to August 2007 (v35)
! Wrong Aspect Ratio with EVR CP (definitely i hope :-)
! Internal MPEG-2 Decoder was not working with EVR and EVR CP
! Audio sync problems with Blu-Ray/HD DVD DTS files
  [wrong AvgTimePerFrame calculation for DTS and AC3 (madshi)]
! OSD was not working when D3DX9_XX dll was not present
  (random pixels shown in top of video)
! Mouse now working in DVD menu with EVR Custom Presenter (Vista)
! FLV Splitter when video does not start with keyframe
! Vulnerability CAL-20070912-1 in AVI Source Filter
  (arbitrary code execute with users privileges)
! Vulnerability in FLI internal source filter


v1.0.9.0 - 14 July 2007
=======================
* OSD improved for EVR Custom Presenter
! EVR Custom Presenter rendering thread stability
! EVR Custom Presenter doesn't need mfplat.dll anymore
  (the dll is installed with WMP 11)
+ Exit Option in popup menu
! Use same registry key like original Gabest Media Player Classic
! Freeze when playing audio only file with EVR Custom Presenter
! Wrong Aspect Ratio with anamorphic video using EVR Custom Presenter
! When Video pause, frame stepping with EVR Custom Presenter started
  video playback at normal speed
! Save thumbnail with EVR Custom Presenter froze MPC-HC
! FLV splitter did not read width and height out of metadata
  (thanks to Chobits for this fix)
! If more than one subtitle text rows shown, the background
  ("Outline" color) vertically overlapped the other one


v1.0.8.0 - 31 May 2007
======================
+ Kick off Screen Saver from Power Options, only when MPC-HC has focus
  (Vista)
! Jitter test was not displayed with some files
! Crash if statistics should be displayed, when d3dx9_29.dll
  was not present
! Possible crash when closing file, while OSD was displayed
! DVD menu freeze with EVR CP and NVIDIA Pure Video decoder (Win XP)
! Mouse-click to play not working at the bottom of video
! MKV internal subtitles were not displayed from time to time
! Video disappeared when moving MPC-HC to other screen
  with EVR Custom Presenter on dual display


v1.0.7.0 - 27 May 2007
======================
+ "EVR Custom Presenter" mode added as output renderer. In this mode
  EVR supports internal MPC-HC subtitles, D3D Fullscreen, tearing test
  and Pixels Shaders
+ Statistics option currently displays the jitter curve
  (Ctrl+J to activate) for VMR9 Renderless and EVR Custom Presenter
* Output property page, options now are disabled when not supported
  by the selected renderer
! Mouse cursor invisible in Fullscreen mode
! Mouse-click to play was not working with some renderers
! A one pixel width rectangle was not displayed around the video window
  (refresh problem)
! Crash when switching from VMR9 Renderless to VRM7 Renderless (Vista)


v1.0.6.0 - 07 May 2007
======================
+ VP62 codec internal filter re-activated
+ MPEG4 splitter internal filter re-activated
* _xxl patches included (VP62 codec internal filter, MPEG4 splitter
  internal filter)
! Window "flashing" during resize, after video loaded


v1.0.5.0 - 05 May 2007
======================
+ MPC-HC is now Vista ready, added Enhanced Video Renderer (EVR) with OSD support
+ Shuttle PN31 Remote Control support
+ Subtitle synchronization with keyboard shortcuts or remote control
! Fixed bug at internal filter property page


v1.0.4.0 - 09 May 2006
======================
* OSD improvement
+ Remaining time displayed (Ctrl+I or "Remaining_Time" with WinLIRC)
+ OSD Fast forward / rewind speed display
* OSD FF/Rew for DVD playback: slow forward replaced by rewind, no more
  predefined speed limits (feature depends on MPEG-2 decoder capabilities)
! Taskbar Display bug in D3D Fullscreen mode
! Mouse cursor invisible in D3D Fullscreen mode


v1.0.3.0 - 02 May 2006
======================
+ YUV mixer mode for VMR9
+ OSD for VMR9 output for languages selection
+ "DVD Menu Activate" can also be used to start playback
  (useful when using remote control via WinLIRC)
! Aspect Ratio bug in D3D Fullscreen mode


v1.0.2.0 - 23 April 2006
========================
* D3D Fullscreen mode improved
! VMR9 Color control bug


v1.0.1.0 - 09 April 2006
========================
+ DVD open dialog now allows selecting the source folder or drive
+ Possibility to save video position for the last 5 DVDs and/or files
  to resume playback at this position when MPC-HC is restarted
+ Shortcut to inhibit Pixel Shaders (Ctrl+P). Only additional
  Pixel Shaders effects are concerned (always used if resize active)


v1.0.0.0 - 29 March 2006
========================
+ Color control option for VMR renderer
+ Automatically reload Pixel Shaders at startup
+ Tearing test function (Ctrl+T): displays 2 moving bars
  (useful to also show judder)