Skip to content

Commit

Permalink
Version 6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
avosskuehler committed Nov 15, 2022
1 parent 56abd4e commit 59759d6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Setup/Setup/Config.wxi
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<?define SupportPhone = "[email protected]"?>
<?define InstallDescription = "Video analysis for science education."?>
<?define UpgradeGuid = "{4830D7E5-685D-4637-B1BD-9A347BB911CF}"?>
<?define ProductVersion="6.4.1" ?>
<?define ProductVersion="6.5.1" ?>

<?if $(var.Platform) = x64 ?>
<?define ProductName = "Viana.NET" ?>
Expand Down
17 changes: 6 additions & 11 deletions Setup/Setup/Libs.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@
<!--<Directory Id="dll" Name="dll">-->
<?if $(var.Platform) = x64 ?>
<!--<Directory Id="x64" Name="x64">-->
<Component Id="C_opencv_videoio_ffmpeg453_64" Guid="{2A8BC680-E6BC-4DDA-BB37-BE3043E8C5EC}" Win64="$(var.Win64)">
<File Id="opencv_videoio_ffmpeg453_64" Name="opencv_videoio_ffmpeg453_64.dll" DiskId="1" Source="$(var.VianaNET.TargetDir)dll\x64\" />
<Component Id="C_opencv_videoio_ffmpeg455_64" Guid="{2A8BC680-E6BC-4DDA-BB37-BE3043E8C5EC}" Win64="$(var.Win64)">
<File Id="opencv_videoio_ffmpeg455_64" Name="opencv_videoio_ffmpeg455_64.dll" DiskId="1" Source="$(var.VianaNET.TargetDir)dll\x64\" />
</Component>
<Component Id="C_OpenCvSharpExtern_64" Guid="{A4D24CD6-4BDC-4501-A4D7-641BB3FD3DD1}" Win64="$(var.Win64)">
<File Id="OpenCvSharpExtern_64" Name="OpenCvSharpExtern.dll" DiskId="1" Source="$(var.VianaNET.TargetDir)dll\x64\" />
</Component>
<!--</Directory>-->
<?else ?>
<!--<Directory Id="x86" Name="x86">-->
<Component Id="C_opencv_videoio_ffmpeg453" Guid="{3F255353-80B4-4CCA-A729-F03C396F0935}" Win64="$(var.Win64)">
<File Id="opencv_videoio_ffmpeg453" Name="opencv_videoio_ffmpeg453.dll" DiskId="1" Source="$(var.VianaNET.TargetDir)dll\x86\" />
<Component Id="C_opencv_videoio_ffmpeg455" Guid="{3F255353-80B4-4CCA-A729-F03C396F0935}" Win64="$(var.Win64)">
<File Id="opencv_videoio_ffmpeg455" Name="opencv_videoio_ffmpeg455.dll" DiskId="1" Source="$(var.VianaNET.TargetDir)dll\x86\" />
</Component>
<Component Id="C_OpenCvSharpExtern" Guid="{8BE9F0EB-A538-44A9-B0F8-05DFFB612659}" Win64="$(var.Win64)">
<File Id="OpenCvSharpExtern" Name="OpenCvSharpExtern.dll" DiskId="1" Source="$(var.VianaNET.TargetDir)dll\x86\" />
Expand Down Expand Up @@ -80,10 +80,6 @@
<File Id="OpenCvSharp" Name="OpenCvSharp.dll" KeyPath="yes" Assembly=".net" AssemblyManifest="OpenCvSharp" AssemblyApplication="OpenCvSharp" DiskId="1"
Source="$(var.VianaNET.TargetDir)" />
</Component>
<Component Id="C_OpenCvSharp.Extensions" Guid="{FE95A073-7D9C-4F4B-8394-A134E6D8582E}" Win64="$(var.Win64)">
<File Id="OpenCvSharp.Extensions" Name="OpenCvSharp.Extensions.dll" KeyPath="yes" Assembly=".net" AssemblyManifest="OpenCvSharp.Extensions" AssemblyApplication="OpenCvSharp.Extensions" DiskId="1"
Source="$(var.VianaNET.TargetDir)" />
</Component>
<Component Id="C_OpenCvSharp.WpfExtensions" Guid="{5DA8BC65-F523-43C7-B63F-83EF81CC6D63}" Win64="$(var.Win64)">
<File Id="OpenCvSharp.WpfExtensions" Name="OpenCvSharp.WpfExtensions.dll" KeyPath="yes" Assembly=".net" AssemblyManifest="OpenCvSharp.WpfExtensions" AssemblyApplication="OpenCvSharp.WpfExtensions" DiskId="1"
Source="$(var.VianaNET.TargetDir)" />
Expand Down Expand Up @@ -180,13 +176,12 @@

<Feature Id='OpenCVFeature' Title='OpenCV' Description='Installs openCV libraries for the application.' Level='1'>
<ComponentRef Id='C_OpenCvSharp' />
<ComponentRef Id='C_OpenCvSharp.Extensions' />
<ComponentRef Id='C_OpenCvSharp.WpfExtensions' />
<?if $(var.Platform) = x64 ?>
<ComponentRef Id='C_opencv_videoio_ffmpeg453_64' />
<ComponentRef Id='C_opencv_videoio_ffmpeg455_64' />
<ComponentRef Id='C_OpenCvSharpExtern_64' />
<?else ?>
<ComponentRef Id='C_opencv_videoio_ffmpeg453' />
<ComponentRef Id='C_opencv_videoio_ffmpeg455' />
<ComponentRef Id='C_OpenCvSharpExtern' />
<?endif ?>
</Feature>
Expand Down
4 changes: 2 additions & 2 deletions VianaNET/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("6.4.*")]
[assembly: AssemblyFileVersion("6.4.1")]
[assembly: AssemblyVersion("6.5.*")]
[assembly: AssemblyFileVersion("6.5.1")]
[assembly: Guid("1E23CAD1-6F4B-4a08-BF9B-91E27D8E2503")]

0 comments on commit 59759d6

Please sign in to comment.