Skip to content

Commit

Permalink
allow to save file in any format
Browse files Browse the repository at this point in the history
I left .mp4 as default as I can't guarantee that ffmpeg will work correctly at the moment
  • Loading branch information
fuomag9 committed Mar 4, 2019
1 parent 2f7e5cf commit b1324a2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Binary file modified Installer/Installer-SetupFiles/Installer.msi
Binary file not shown.
Binary file modified Installer/Installer-cache/cacheIndex.txt
Binary file not shown.
8 changes: 4 additions & 4 deletions Installer/Installer.aip
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<ROW Property="AI_PROPPATH_DIR_PERBUILD_Microsoft.WindowsAPICodePack.Shell.dll" Value="..\packages\Microsoft.WindowsAPICodePack-Shell.1.1.0.0\lib"/>
<ROW Property="AI_PROPPATH_DIR_PERBUILD_Microsoft.WindowsAPICodePack.ShellExtensions.dll" Value="..\packages\Microsoft.WindowsAPICodePack-Shell.1.1.0.0\lib"/>
<ROW Property="AI_PROPPATH_DIR_PERBUILD_Microsoft.WindowsAPICodePack.dll" Value="..\packages\Microsoft.WindowsAPICodePack-Core.1.1.0.0\lib"/>
<ROW Property="AI_PROPPATH_DIR_PERBUILD_Video2x.exe" Value="..\Video2x\bin\Debug"/>
<ROW Property="AI_PROPPATH_DIR_PERBUILD_Video2x.exe.config" Value="..\Video2x\bin\Debug"/>
<ROW Property="AI_PROPPATH_DIR_PERBUILD_Video2x.exe" Value="..\Video2x\bin\Release"/>
<ROW Property="AI_PROPPATH_DIR_PERBUILD_Video2x.exe.config" Value="..\Video2x\bin\Release"/>
<ROW Property="AI_PROPPATH_FILENAME_PERBUILD_Microsoft.WindowsAPICodePack.Shell.dll" Value="Microsoft.WindowsAPICodePack.Shell.dll"/>
<ROW Property="AI_PROPPATH_FILENAME_PERBUILD_Microsoft.WindowsAPICodePack.ShellExtensions.dll" Value="Microsoft.WindowsAPICodePack.ShellExtensions.dll"/>
<ROW Property="AI_PROPPATH_FILENAME_PERBUILD_Microsoft.WindowsAPICodePack.dll" Value="Microsoft.WindowsAPICodePack.dll"/>
Expand All @@ -22,10 +22,10 @@
<ROW Property="ARPCOMMENTS" Value="This installer database contains the logic and data required to install [|ProductName]." ValueLocId="*"/>
<ROW Property="CTRLS" Value="2"/>
<ROW Property="Manufacturer" Value="fuomag9"/>
<ROW Property="ProductCode" Value="1033:{B0179C6E-FAFE-4776-BBE6-E94071E116CA} " Type="16"/>
<ROW Property="ProductCode" Value="1033:{9EF1A8BC-5F30-4EBC-9290-8B4E5B3E9377} " Type="16"/>
<ROW Property="ProductLanguage" Value="1033"/>
<ROW Property="ProductName" Value="Video2x [|ProductVersion]"/>
<ROW Property="ProductVersion" Value="1.0.7" Type="32"/>
<ROW Property="ProductVersion" Value="1.0.8" Type="32"/>
<ROW Property="RUNAPPLICATION" Value="1" Type="4"/>
<ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND"/>
<ROW Property="UpgradeCode" Value="{5F4E7CB6-CD9E-42A3-A079-DA074FBD62B8}"/>
Expand Down
2 changes: 1 addition & 1 deletion Video2x/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Video2x"
mc:Ignorable="d"
Title="Video2x 1.0.7" Height="450" Width="800">
Title="Video2x 1.0.8" Height="450" Width="800">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="455*"/>
Expand Down
2 changes: 1 addition & 1 deletion Video2x/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private void Button_Click(object sender, RoutedEventArgs e)
private void Save_button_Click(object sender, RoutedEventArgs e)
{
Microsoft.Win32.SaveFileDialog saveFileDialog = new Microsoft.Win32.SaveFileDialog {
Filter = "mp4|*.mp4"
Filter = "mp4|*.mp4"+"|all files|*.*"
};
saveFileDialog.ShowDialog();

Expand Down

0 comments on commit b1324a2

Please sign in to comment.