Skip to content

Commit 0158c70

Browse files
author
RandomEngy
committed
Update version numbers.
1 parent 55be4c8 commit 0158c70

5 files changed

Lines changed: 16 additions & 19 deletions

File tree

HandBrakeInterop/HandBrakeInterop.Test/TestEncodes.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ public class TestEncodes
2121
public static void Init(TestContext context)
2222
{
2323
EnsureOutputVideoDirectoryExists();
24+
25+
FileInfo[] files = new DirectoryInfo(OutputVideoDirectory).GetFiles();
26+
foreach (FileInfo file in files)
27+
{
28+
file.Delete();
29+
}
2430
}
2531

2632
[TestMethod]

HandBrakeInterop/HandBrakeInterop/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.14.0.0")]
36-
[assembly: AssemblyFileVersion("1.14.0.0")]
35+
[assembly: AssemblyVersion("1.15.0.0")]
36+
[assembly: AssemblyFileVersion("1.15.0.0")]

Installer/VidCoder-x64.iss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
; Setup for VidCoder. NOTE: To build this installer you must first build
2-
; VidCoder.sln in Release mode.
2+
; VidCoder.sln and HandBrakeInterop.sln in Release|x64 mode.
33

44
[Setup]
55
AppName=VidCoder
6-
AppVerName=VidCoder 0.8.3 (x64)
6+
AppVerName=VidCoder 0.8.4 (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.8.3-x64
16+
OutputBaseFilename=VidCoder-0.8.4-x64
1717

1818
AppId=VidCoder-x64
1919
UsePreviousAppDir=yes

Installer/VidCoder-x86.iss

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
; Setup for VidCoder. NOTE: To build this installer you must first build
2-
; VidCoder.sln in Release mode.
2+
; VidCoder.sln and HandBrakeInterop.sln in Release|x86 mode.
33

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

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

1515
OutputDir=BuiltInstallers
16-
OutputBaseFilename=VidCoder-0.8.3-x86
16+
OutputBaseFilename=VidCoder-0.8.4-x86
1717

1818
AppId=VidCoder
1919
UsePreviousAppDir=yes
2020

21-
; "ArchitecturesInstallIn64BitMode=x64" requests that the install be
22-
; done in "64-bit mode" on x64, meaning it should use the native
23-
; 64-bit Program Files directory and the 64-bit view of the registry.
24-
; On all other architectures it will install in "32-bit mode".
25-
;ArchitecturesInstallIn64BitMode=x64
26-
; Note: We don't set ProcessorsAllowed because we want this
27-
; installation to run on all architectures (including Itanium,
28-
; since it's capable of running 32-bit code too).
29-
3021
[Languages]
3122
Name: "en"; MessagesFile: "compiler:Default.isl"
3223

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.8.3.0")]
55-
[assembly: AssemblyFileVersion("0.8.3.0")]
54+
[assembly: AssemblyVersion("0.8.4.0")]
55+
[assembly: AssemblyFileVersion("0.8.4.0")]

0 commit comments

Comments
 (0)