GameMode::InitNewPlayer trims player name at hardcoded 20-symbols limit

UE - Gameplay - Oct 29, 2015

Need to generally address how to clamp player name. InitNewPlayer seems to be the only place where player name length is enforced, and it's enforced in a poor way. Needs to be enforced uniformly acr ...

Fix forwarding of dedicated flag and number of players when running a functional test

UE - Networking - Jun 21, 2019

As described in the UDN question, some settings aren't forwarded correctly to the game instance in PIE during a functional test. Proposed patch attached. ...

Fix possible crash if Android audio manager does not support certain properties

UE - Platform - Mobile - Jan 15, 2020

Not checking for a property not being supported by audio manager, need to protect it against NULL ...

Fix up IOS errors calling UI API from non-UI threads

UE - Platform - Apple - Jul 27, 2020

Fix iterative cooks to keep track of CookAdditionalFiles and delete them when the package file that created them is invalidated

UE - Foundation - Core - Cooker - Sep 23, 2022

A licensee reports they are using the CookAdditionalFilesOverride function in UObject to add files to the project. This file is properly copied into the Staging area during Packaging, and is appropr ...

20 FPS performance drop between 4.7.6 and 4.8 on devices rendering Metal only

UE - Platform - Mobile - Jun 22, 2015

User reported a considerable performance drop on iOS between versions 4.7.6 and 4.8. I was able to reproduce this perf drop using the steps he provided. ...

Make Custom Event names start with "Event"/Fix "Event Event" issue with overridden Events

UE - Gameplay - Blueprint - Dec 17, 2015

If you name an Event something like "Event Foo", overriding the event in a ChildBP gives you "Event Event Foo" To avoid this, please make Custom Event names Start with "Event" ...