Skip to content

Commit

Permalink
Set FSUIPC 7.5.1 as Target / Fixed Installed downloading wrong Runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
Fragtality committed Dec 23, 2024
1 parent 6ab5a8f commit 0ef77cd
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 12 deletions.
Binary file modified Install-PilotsDeck-latest.exe
Binary file not shown.
Binary file modified Installer/BuildTimestamp.cs
Binary file not shown.
2 changes: 1 addition & 1 deletion Installer/Installer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<PublisherName>Fragtality</PublisherName>
<OpenBrowserOnPublish>false</OpenBrowserOnPublish>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>0.8.5.0</ApplicationVersion>
<ApplicationVersion>0.8.6.0</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>false</BootstrapperEnabled>
Expand Down
9 changes: 3 additions & 6 deletions Installer/Parameters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,12 @@ namespace Installer
{
public static class Parameters
{
//public static readonly string pilotsDeckVersion = Assembly.GetExecutingAssembly().GetName().Version.ToString(3);

public static readonly string sdPluginDir = @"\Elgato\StreamDeck\Plugins";
public static readonly string pluginBinary = "PilotsDeck";
public static readonly string pluginName = "com.extension.pilotsdeck.sdPlugin";
public static readonly string unzipPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + sdPluginDir;
public static readonly string pluginDir = unzipPath + "\\" + pluginName;
public static readonly string fileName = "PilotsDeck-release.zip";
public static readonly string importBinary = "ImportProfiles.exe";
public static readonly string pluginConfig = "PluginConfig.json";
public static readonly string colorConfig = "ColorStore.json";

Expand All @@ -28,7 +25,7 @@ public static class Parameters
public static readonly int netMinor = 0;
public static readonly int netPatch = 11;
public static readonly string netVersion = $"{netMajor}.{netMinor}.{netPatch}";
public static readonly string netUrl = "https://download.visualstudio.microsoft.com/download/pr/53e9e41c-b362-4598-9985-45f989518016/53c5e1919ba2fe23273f2abaff65595b/dotnet-runtime-8.0.11-win-x64.exe";
public static readonly string netUrl = "https://download.visualstudio.microsoft.com/download/pr/27bcdd70-ce64-4049-ba24-2b14f9267729/d4a435e55182ce5424a7204c2cf2b3ea/windowsdesktop-runtime-8.0.11-win-x64.exe";
public static readonly string netUrlFile = "windowsdesktop-runtime-8.0.11-win-x64.exe";

public static readonly string sdRegPath = @"HKEY_CURRENT_USER\SOFTWARE\Elgato Systems GmbH\StreamDeck";
Expand Down Expand Up @@ -56,9 +53,9 @@ public static class Parameters
public static readonly string ipcRegValue = "DisplayVersion";
public static readonly string ipcRegInstallDirValue = "InstallDir";
public static readonly Regex ipcRegexVersion = new Regex(@"^v((\d+)\.(\d+)\.(\d+))$", RegexOptions.Compiled);
public static readonly string ipcVersion = "7.5.0";
public static readonly string ipcVersion = "7.5.1";
public static readonly bool ipcOverwriteBeta = true;
public static readonly string ipcUrl = "https://fsuipc.simflight.com/beta/Install_FSUIPC7.zip";
public static readonly string ipcUrl = "https://www.fsuipc.com/download/Install_FSUIPC7.5.1.zip";
public static readonly string ipcSetup = "Install_FSUIPC7";
public static readonly string ipcUrlFile = $"{ipcSetup}.zip";
public static readonly string ipcSetupFile = $"{ipcSetup}.exe";
Expand Down
Binary file modified Installer/PilotsDeck-release.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions Installer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
//(wird verwendet, wenn eine Ressource auf der Seite nicht gefunden wird,
// designspezifischen Ressourcenwörterbuch nicht gefunden werden kann.)
)]
[assembly: AssemblyVersion("0.8.5.0")]
[assembly: AssemblyFileVersion("0.8.5.0")]
[assembly: AssemblyVersion("0.8.6.0")]
[assembly: AssemblyFileVersion("0.8.6.0")]


// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
Expand Down
2 changes: 1 addition & 1 deletion Plugin/PilotsDeck.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<ApplicationIcon>Plugin\Images\PluginIcon.ico</ApplicationIcon>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Platforms>x64</Platforms>
<Version>0.8.5</Version>
<Version>0.8.6</Version>
<Title>PilotsDeck</Title>
<Authors>Fragtality</Authors>
<Description>Directly check &amp; control your FlightSim from the StreamDeck!</Description>
Expand Down
2 changes: 1 addition & 1 deletion Plugin/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
"Name": "PilotsDeck",
"Icon": "Plugin/Images/PluginIcon",
"URL": "https://github.com/Fragtality/PilotsDeck",
"Version": "0.8.5.0",
"Version": "0.8.6.0",
"SDKVersion": 2,
"Software": {
"MinimumVersion": "6.5"
Expand Down
2 changes: 1 addition & 1 deletion ProfileManager/ProfileManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PlatformTarget>x64</PlatformTarget>
<StartupObject>ProfileManager.App</StartupObject>
<ApplicationIcon>PluginIcon.ico</ApplicationIcon>
<Version>0.8.5</Version>
<Version>0.8.6</Version>
<Authors>Fragtality</Authors>
<Description>Install Profiles and manage Profile Switching for PilotsDeck</Description>
<Copyright>Copyright © 2024</Copyright>
Expand Down

0 comments on commit 0ef77cd

Please sign in to comment.