OSDN Git Service

WinGui:
authorsr55 <sr55@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Fri, 4 Sep 2009 18:42:48 +0000 (18:42 +0000)
committersr55 <sr55@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Fri, 4 Sep 2009 18:42:48 +0000 (18:42 +0000)
- Fix in MacGui preset import feature

git-svn-id: svn://localhost/HandBrake/trunk@2805 b64f7644-9d1e-0410-96f1-a4d463321fa5

win/C#/Changelog.html
win/C#/Presets/Import.cs

index 408583f..787686c 100644 (file)
@@ -14,17 +14,22 @@ Windows Platform Specific Changlog.<br />
     None <br />\r
     \r
     <h4>Minor Improvements / Changes</h4>\r
-    - Updated Growl to 2.0.0.20 from 2.0.0.19\r
-    - Added 2 new options. "Growl when queue completes" and "Growl when encode completes"\r
-    - Added 1 new option. "Disable Resolution Calculation for "None" and "Custom" modes."\r
+    - Updated Growl to 2.0.0.20 from 2.0.0.19<br />\r
+    - Added 2 new options. "Growl when queue completes" and "Growl when encode completes"<br />\r
+    - Added 1 new option. "Disable Resolution Calculation for "None" and "Custom" modes."<br />\r
+    - Removed "Enable DVD drive detection..." and "Load my default preset" preferences<br />\r
+    - Set m4v as default enabled.<br />\r
 \r
     <h4>Fixed</h4>\r
-    - Fix several issues with Picture Settings panel related to aspect ration and resolution calculation. <br />\r
-    - Fix issue where file extension could be mp4 when chapters is enabled. Problem in the autoname function.<br />\r
-    - Fix a regex error in the appcast reader and make it more robust to errors.<br />\r
-    - Fix issue with the destination File box double appending the file extension<br />\r
-    - Fix issue changing file format causing the audio encoder dropdown to be set to ""<br />\r
-    - Fix an issue with autoName function and format dropdown with regards to AC3 in the audio list. Also, CC or SRT<br />\r
+    - Several issues with Picture Settings panel related to aspect ration and resolution calculation. <br />\r
+    - Issue where file extension could be mp4 when chapters is enabled. Problem in the autoname function.<br />\r
+    - A regex error in the appcast reader and make it more robust to errors.<br />\r
+    - Issue with the destination File box double appending the file extension<br />\r
+    - Issue changing file format causing the audio encoder dropdown to be set to ""<br />\r
+    - An issue with autoName function and format dropdown with regards to AC3 in the audio list. Also, CC or SRT<br />\r
+    - A culture issue with the Video Quality slider. Should now work correctly for systems which represent floats as 1,25 instead of 1.25<br />\r
+    - Issue with SRT filepaths not being quoted.<br />\r
+    - An issue with 8x8dct not saving correctly in presets<br />\r
 \r
     \r
     <h4>Backend / Not important changes</h4>\r
index 22e3e78..4d6b1b4 100644 (file)
@@ -146,7 +146,7 @@ namespace Handbrake.Presets
                         switch (value)\r
                         {\r
                             case "0":\r
-                                queryParsed.DeInterlace = "None";\r
+                                queryParsed.DeInterlace = "Off";\r
                                 break;\r
                             case "2":\r
                                 queryParsed.DeInterlace = "Fast";\r
@@ -167,7 +167,7 @@ namespace Handbrake.Presets
                         switch (value)\r
                         {\r
                             case "0":\r
-                                queryParsed.DeNoise = "None";\r
+                                queryParsed.DeNoise = "Off";\r
                                 break;\r
                             case "2":\r
                                 queryParsed.DeNoise = "Weak";\r