From b65acba4026ec467b8b699612033db005471862f Mon Sep 17 00:00:00 2001 From: sr55 Date: Fri, 4 Sep 2009 18:42:48 +0000 Subject: WinGui: - Fix in MacGui preset import feature git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2805 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/C#/Changelog.html | 23 ++++++++++++++--------- win/C#/Presets/Import.cs | 4 ++-- 2 files changed, 16 insertions(+), 11 deletions(-) (limited to 'win') diff --git a/win/C#/Changelog.html b/win/C#/Changelog.html index 408583fe8..787686c56 100644 --- a/win/C#/Changelog.html +++ b/win/C#/Changelog.html @@ -14,17 +14,22 @@ Windows Platform Specific Changlog.
None

Minor Improvements / Changes

- - Updated Growl to 2.0.0.20 from 2.0.0.19 - - Added 2 new options. "Growl when queue completes" and "Growl when encode completes" - - Added 1 new option. "Disable Resolution Calculation for "None" and "Custom" modes." + - Updated Growl to 2.0.0.20 from 2.0.0.19
+ - Added 2 new options. "Growl when queue completes" and "Growl when encode completes"
+ - Added 1 new option. "Disable Resolution Calculation for "None" and "Custom" modes."
+ - Removed "Enable DVD drive detection..." and "Load my default preset" preferences
+ - Set m4v as default enabled.

Fixed

- - Fix several issues with Picture Settings panel related to aspect ration and resolution calculation.
- - Fix issue where file extension could be mp4 when chapters is enabled. Problem in the autoname function.
- - Fix a regex error in the appcast reader and make it more robust to errors.
- - Fix issue with the destination File box double appending the file extension
- - Fix issue changing file format causing the audio encoder dropdown to be set to ""
- - Fix an issue with autoName function and format dropdown with regards to AC3 in the audio list. Also, CC or SRT
+ - Several issues with Picture Settings panel related to aspect ration and resolution calculation.
+ - Issue where file extension could be mp4 when chapters is enabled. Problem in the autoname function.
+ - A regex error in the appcast reader and make it more robust to errors.
+ - Issue with the destination File box double appending the file extension
+ - Issue changing file format causing the audio encoder dropdown to be set to ""
+ - An issue with autoName function and format dropdown with regards to AC3 in the audio list. Also, CC or SRT
+ - A culture issue with the Video Quality slider. Should now work correctly for systems which represent floats as 1,25 instead of 1.25
+ - Issue with SRT filepaths not being quoted.
+ - An issue with 8x8dct not saving correctly in presets

Backend / Not important changes

diff --git a/win/C#/Presets/Import.cs b/win/C#/Presets/Import.cs index 22e3e788e..4d6b1b43a 100644 --- a/win/C#/Presets/Import.cs +++ b/win/C#/Presets/Import.cs @@ -146,7 +146,7 @@ namespace Handbrake.Presets switch (value) { case "0": - queryParsed.DeInterlace = "None"; + queryParsed.DeInterlace = "Off"; break; case "2": queryParsed.DeInterlace = "Fast"; @@ -167,7 +167,7 @@ namespace Handbrake.Presets switch (value) { case "0": - queryParsed.DeNoise = "None"; + queryParsed.DeNoise = "Off"; break; case "2": queryParsed.DeNoise = "Weak"; -- cgit v1.2.3