Skip to content

Commit 46d4809

Browse files
author
RandomEngy
committed
Updated to HandBrake svn 4167. Added support for AAC and MP3 passthrough, and DTS and DTS-HD passthrough for MP4. Added splash screen.
Updated version numbers.
1 parent 8478410 commit 46d4809

18 files changed

Lines changed: 69 additions & 25 deletions

Installer/VidCoder-x64.iss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[Setup]
55
AppName=VidCoder
6-
AppVerName=VidCoder 0.9.3 (x64)
6+
AppVerName=VidCoder 1.0.0 (x64)
77

88
DefaultDirName={pf}\VidCoder
99
DisableProgramGroupPage=yes
@@ -13,7 +13,7 @@ Compression=lzma
1313
SolidCompression=yes
1414

1515
OutputDir=BuiltInstallers
16-
OutputBaseFilename=VidCoder-0.9.3-x64
16+
OutputBaseFilename=VidCoder-1.0.0-x64
1717

1818
AppId=VidCoder-x64
1919
UsePreviousAppDir=yes

Installer/VidCoder-x86.iss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[Setup]
55
AppName=VidCoder
6-
AppVerName=VidCoder 0.9.3 (x86)
6+
AppVerName=VidCoder 1.0.0 (x86)
77

88
DefaultDirName={pf}\VidCoder
99
DisableProgramGroupPage=yes
@@ -13,7 +13,7 @@ Compression=lzma
1313
SolidCompression=yes
1414

1515
OutputDir=BuiltInstallers
16-
OutputBaseFilename=VidCoder-0.9.3-x86
16+
OutputBaseFilename=VidCoder-1.0.0-x86
1717

1818
AppId=VidCoder
1919
UsePreviousAppDir=yes

Lib/x64/HandBrakeInterop.dll

512 Bytes
Binary file not shown.

Lib/x64/HandBrakeInterop.pdb

2 KB
Binary file not shown.

Lib/x64/hb.dll

132 KB
Binary file not shown.

Lib/x86/HandBrakeInterop.dll

1 KB
Binary file not shown.

Lib/x86/HandBrakeInterop.pdb

2 KB
Binary file not shown.

Lib/x86/hb.dll

126 KB
Binary file not shown.

VidCoder/Controls/InlineWarning.xaml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,18 @@
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
44
<Grid>
55
<Border Background="#F7F7CD" CornerRadius="4" Padding="3" BorderBrush="LightGray" BorderThickness="1">
6-
<StackPanel Orientation="Horizontal">
7-
<Image Source="/Icons/warning.png" Height="18" />
8-
<TextBlock Name="warningText" FontSize="14" VerticalAlignment="Center" Margin="4,0,0,0" />
9-
</StackPanel>
6+
<Grid>
7+
<Grid.ColumnDefinitions>
8+
<ColumnDefinition Width="Auto" />
9+
<ColumnDefinition Width="*" />
10+
</Grid.ColumnDefinitions>
11+
<Image
12+
Grid.Column="0"
13+
Source="/Icons/warning.png" Height="18" />
14+
<TextBlock
15+
Grid.Column="1"
16+
Name="warningText" FontSize="14" VerticalAlignment="Center" Margin="4,0,4,0" TextWrapping="Wrap" />
17+
</Grid>
1018
</Border>
1119
</Grid>
1220
</UserControl>

VidCoder/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("0.9.3.0")]
55-
[assembly: AssemblyFileVersion("0.9.3.0")]
54+
[assembly: AssemblyVersion("1.0.0.0")]
55+
[assembly: AssemblyFileVersion("1.0.0.0")]

0 commit comments

Comments
 (0)