Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
Version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
VoidXH committed May 1, 2020
1 parent 4b609ae commit 2a47fda
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions DCP Ripper/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,6 @@
</Grid>
</GroupBox>
<Button x:Name="aboutLink" Content="by VoidX" HorizontalAlignment="Right" Margin="0,0,10,10" VerticalAlignment="Bottom" Width="75" Click="AboutLink_Click" Grid.Column="2"/>
<Label x:Name="version" Content="v?.?.?" Grid.Column="2" Margin="0,0,90,7" HorizontalAlignment="Right" Width="80" Height="26" VerticalAlignment="Bottom" HorizontalContentAlignment="Right"/>
</Grid>
</Window>
2 changes: 2 additions & 0 deletions DCP Ripper/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Windows;
using System.Windows.Controls;

Expand Down Expand Up @@ -33,6 +34,7 @@ public MainWindow() {
failureList.Visibility = Visibility.Hidden;
processor.OnStatusUpdate += ProcessStatusUpdate;
processor.OnCompletion += AfterProcess;
version.Content = 'v' + FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileVersion;
}

void CheckFFmpeg(string dir) {
Expand Down
4 changes: 2 additions & 2 deletions DCP Ripper/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.1")]
[assembly: AssemblyFileVersion("1.0.1")]

0 comments on commit 2a47fda

Please sign in to comment.