You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
[Upgrade Notes Critical! Licensee build scripts and DeviceProfiles may need updating]
- Formalizing all TargetPlatforms to have a Client version, rename WindowsNoEditor to Windows, and removing DDPI specification of TargetPlatforms, and generate them programmatically - Updated names DeviceProfiles and Build scripts, as above - Some PlatformInfo class cleanup - Added a TNonDesktopTargetPlatformBase class to make most TargetPlatforms simpler - Added "No Compiled Support" to the Turnkey LaunchOn menu when the TargetPlatforms aren't compiled in (to show that even if you install an SDK, you will need to compile before you can LaunchOn)\ - Starting the transition away from PlatformInfo::FPlatformInfo to FDDPI [CL 13966487 by Josh Adams in ue5-main branch]
This commit is contained in:
+4
-4
@@ -90,7 +90,7 @@ void FTargetDeviceService::AddTargetDevice(TSharedPtr<ITargetDevice, ESPMode::Th
|
||||
const PlatformInfo::FTargetPlatformInfo& Info = InDevice->GetTargetPlatform().GetTargetPlatformInfo();
|
||||
const PlatformInfo::FTargetPlatformInfo* VanillaInfo = Info.VanillaInfo;
|
||||
|
||||
DevicePlatformName = Info.PlatformInfoName;
|
||||
DevicePlatformName = Info.Name;
|
||||
DevicePlatformDisplayName = VanillaInfo->DisplayName.ToString();
|
||||
|
||||
// Sigh the hacks... Should be able to remove if platform info gets cleaned up.... Windows doesn't have a reasonable vanilla platform.
|
||||
@@ -518,7 +518,7 @@ void FTargetDeviceService::HandlePingMessage(const FTargetDeviceServicePing& InM
|
||||
|
||||
// Check if we should also create an aggregate (All_<platform>_devices_on_<host>) proxy
|
||||
Message->Aggregated = DefaultDevice->IsPlatformAggregated();
|
||||
Message->AllDevicesName = DefaultDevice->GetAllDevicesName().IsEmpty() ? VanillaInfo->PlatformInfoName.ToString() : DefaultDevice->GetAllDevicesName();
|
||||
Message->AllDevicesName = DefaultDevice->GetAllDevicesName().IsEmpty() ? VanillaInfo->Name.ToString() : DefaultDevice->GetAllDevicesName();
|
||||
Message->AllDevicesDefaultVariant = DefaultDevice->GetAllDevicesDefaultVariant().IsNone() ? Message->DefaultVariant : DefaultDevice->GetAllDevicesDefaultVariant();
|
||||
|
||||
// Add the data for all the flavors
|
||||
@@ -535,8 +535,8 @@ void FTargetDeviceService::HandlePingMessage(const FTargetDeviceServicePing& InM
|
||||
Variant.DeviceID = TargetDevice->GetId().ToString();
|
||||
Variant.VariantName = TargetDeviceIt.Key();
|
||||
Variant.TargetPlatformName = TargetDevice->GetTargetPlatform().PlatformName();
|
||||
Variant.TargetPlatformId = Info.TargetPlatformName;
|
||||
Variant.VanillaPlatformId = Info.VanillaInfo->PlatformInfoName;
|
||||
Variant.TargetPlatformId = Info.Name;
|
||||
Variant.VanillaPlatformId = Info.VanillaInfo->Name;
|
||||
Variant.PlatformDisplayName = Info.DisplayName.ToString();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user