Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MP1-5219: Install Outdated SQL Server for Outdated Windows like Windows 7 x86 #316

22 changes: 20 additions & 2 deletions Tools/MediaPortal.DeployTool/ApplicationLocations.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,26 @@
<TYPE>Manual</TYPE>
</WindowsMediaPlayer>

<!-- Section used by 1.33.100+ installer -->

<MySQL83>
<URL>https://install.team-mediaportal.com/MySql_8_3</URL>
<FILE>mysql-8.3.0-winx64.msi</FILE>
<TYPE>Automatic</TYPE>
</MySQL83>

<MariaDB10>
<URL>https://install.team-mediaportal.com/MariaDB_10</URL>
<FILE>mariadb-10.11.8-winx64.msi</FILE>
<TYPE>Automatic</TYPE>
</MariaDB10>

<DotNetFramework>
<URL>https://install.team-mediaportal.com/DotNetFramework</URL>
<FILE>dotNetFx40_Full_x86_x64.exe</FILE>
<TYPE>Automatic</TYPE>
</DotNetFramework>

<!-- Section used by 1.31.100+ installer -->

<VCRedist2013>
Expand All @@ -43,8 +63,6 @@
<X64 />
</VCRedist2013>

<!-- VCRedistr 2015-2022 -->

<VCRedist2015>
<URL>https://install.team-mediaportal.com/VcRedist2015</URL>
<FILE>vcredist2015_x86.exe</FILE>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ public CheckResult CheckStatus()
return result;
}

RegistryKey key = Utils.LMOpenSubKey("SOFTWARE\\MariaDB 10.0 (x64)");
RegistryKey key = Utils.LMOpenSubKey("SOFTWARE\\MariaDB 10.11 (x64)");
if (key == null)
{
result.state = CheckState.NOT_INSTALLED;
Expand Down
Loading
Loading