Skip to content

Commit

Permalink
Added notice for FSUIPC7 Beta on 2024 / Updated FSUIPC C# Client
Browse files Browse the repository at this point in the history
  • Loading branch information
Fragtality committed Nov 27, 2024
1 parent 61b779e commit 6d8d428
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 7 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.2.0</ApplicationVersion>
<ApplicationVersion>0.8.3.0</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>false</BootstrapperEnabled>
Expand Down
13 changes: 12 additions & 1 deletion Installer/InstallerWorker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -351,10 +351,21 @@ private List<string> CheckInstalledVersionsP3d()
private bool CheckFSUIPC7(Simulator simulator, string verion)
{
var task = InstallerTask.AddTask($"FSUIPC7 Installation [{verion}]", "Check State and Version of FSUIPC7 ...");
task.DisplayInSummary = false;
if (simulator != Simulator.MSFS2024) //TEMP
task.DisplayInSummary = false;


if (InstallerFunctions.CheckFSUIPC7(out bool isInstalled))
{
if (isInstalled && simulator == Simulator.MSFS2024) //TEMP
{
task.ReplaceLastMessage($"FSUIPC7 is installed, but the Installer can not detect or update to the correct Version yet!\r\n(As there isn't a Release Version for FSUIPC7 for 2024 yet.)\r\n\r\nCheckout the Forum for the current Beta:");
task.Hyperlink = "FSUIPC 7.5.0 Beta";
task.HyperlinkURL = "https://forum.simflight.com/topic/99118-fsuipc7-version-750-beta-available-for-both-msfs2020-and-msfs2024/\r\n";
task.State = TaskState.WAITING;
return true;
}

if (!InstallerFunctions.CheckPackageVersion(PackagePaths[simulator], Parameters.wasmIpcName, Parameters.wasmIpcVersion))
{
task.SetState($"FSUIPC7 is installed, but its installed WASM Module does not match the Minimum Version {Parameters.wasmIpcVersion}!\r\nIt is not required for the Plugin itself, but could lead to Problems with Profiles/Integrations which use Lua-Scripts and L-Vars.\r\nConsider Reinstalling FSUIPC!",
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.2.0")]
[assembly: AssemblyFileVersion("0.8.2.0")]
[assembly: AssemblyVersion("0.8.3.0")]
[assembly: AssemblyFileVersion("0.8.3.0")]


// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
Expand Down
4 changes: 2 additions & 2 deletions 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.2</Version>
<Version>0.8.3</Version>
<Title>PilotsDeck</Title>
<Authors>Fragtality</Authors>
<Description>Directly check &amp; control your FlightSim from the StreamDeck!</Description>
Expand Down Expand Up @@ -89,7 +89,7 @@

<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
<PackageReference Include="FSUIPCClientDLL" Version="3.3.12" />
<PackageReference Include="FSUIPCClientDLL" Version="3.3.13" />
<PackageReference Include="H.NotifyIcon.Wpf" Version="2.1.4" />
<PackageReference Include="NeoLua" Version="1.3.14" />
<PackageReference Include="Serilog" Version="4.1.0" />
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.2</Version>
<Version>0.8.3</Version>
<Authors>Fragtality</Authors>
<Description>Install Profiles and manage Profile Switching for PilotsDeck</Description>
<Copyright>Copyright © 2024</Copyright>
Expand Down

0 comments on commit 6d8d428

Please sign in to comment.