#rnx
#rb none
#ROBOMERGE-SOURCE: CL 10869241 via CL 10869527 via CL 10869904
#ROBOMERGE-BOT: (v613-10869866)
[CL 10870586 by ryan durand in Main branch]
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3209340 on 2016/11/23 by Ben.Marsh
Convert UE4 codebase to an "include what you use" model - where every header just includes the dependencies it needs, rather than every source file including large monolithic headers like Engine.h and UnrealEd.h.
Measured full rebuild times around 2x faster using XGE on Windows, and improvements of 25% or more for incremental builds and full rebuilds on most other platforms.
* Every header now includes everything it needs to compile.
* There's a CoreMinimal.h header that gets you a set of ubiquitous types from Core (eg. FString, FName, TArray, FVector, etc...). Most headers now include this first.
* There's a CoreTypes.h header that sets up primitive UE4 types and build macros (int32, PLATFORM_WIN64, etc...). All headers in Core include this first, as does CoreMinimal.h.
* Every .cpp file includes its matching .h file first.
* This helps validate that each header is including everything it needs to compile.
* No engine code includes a monolithic header such as Engine.h or UnrealEd.h any more.
* You will get a warning if you try to include one of these from the engine. They still exist for compatibility with game projects and do not produce warnings when included there.
* There have only been minor changes to our internal games down to accommodate these changes. The intent is for this to be as seamless as possible.
* No engine code explicitly includes a precompiled header any more.
* We still use PCHs, but they're force-included on the compiler command line by UnrealBuildTool instead. This lets us tune what they contain without breaking any existing include dependencies.
* PCHs are generated by a tool to get a statistical amount of coverage for the source files using it, and I've seeded the new shared PCHs to contain any header included by > 15% of source files.
Tool used to generate this transform is at Engine\Source\Programs\IncludeTool.
[CL 3209342 by Ben Marsh in Main branch]
#lockdown nick.penwarden
==========================
MAJOR FEATURES + CHANGES
==========================
Change 2719576 on 2015/10/07 by Chris.Wood
Added check for stale BP classes in FKismetCompilerUtilities::IsTypeCompatibleWithProperty() to stop compiler errors during reinstancing.
[UE-19795] - UMG Compiler error when adding variable to nested Widget
Change 2721474 on 2015/10/08 by Andrew.Rodham
Sequencer: Movie render operations now successfully capture UMG UI
Change 2724958 on 2015/10/12 by Chris.Wood
Added missing resource cleanup code to UMG widgets
[UE-21874] - UWIdget classes with missing ReleaseSlateResources() overrides
Added ReleaseSlateResources() to ListView, TileView and Slider widgets to reset shared pointers to slate widgets.
Change 2733562 on 2015/10/19 by Andrew.Rodham
Sequencer: Fixed spawnables not working in sub-sequences
- The issue here was that sequence track instance updates had no knowledge of which sub-sequence they were being evaluated within. We now pass the active sequence instance into the relevant track instance functions.
- Also addressed some issues to do with save/restore state not getting called correctly on master tracks of sequence instances
- Tidied up spawn track editor
Change 2735264 on 2015/10/20 by Chris.Wood
Improved Engine analytics handling for Editor and games
[UE-21892] - Improve how Engine analytics are handled for Editor and games
Changes:
Added Privacy section to Editor settings
Exposed editor analytics flag in Privacy options
Added Details Customization to make this type of bool property clearer with extra info and hyperlink
Changed AreEditorAnalyticsEnable() to use new flag
Prevented analytics init when disabled by user
Sending event and shutting down analytics when user opts out
Add in-game project setting for anonymous game usage data
Renamed and moved bHardwareSurveyEnabled
Added message about exposing in-game setting to end users
Added anonymous GUID id for in-game analytics
Moved end user settings to global config (defaultengine.ini)
Placeholder loc text on new options for now, pending legal wording sign-off
Change 2735866 on 2015/10/20 by Max.Preussner
Async: Added ability to register an optional callback function that is executed when a Future completes
Change 2739793 on 2015/10/23 by Andrew.Rodham
Sequencer: Refined movie scene capturing to ensure frame accuracies are maintained
- Aborting an in-progress capture now gracefully terminates the process (through a remote session command) to ensure it still creates a valid video
- Level sequece movie capture will now pick up a corresponding level sequence in the world, and use that to capture with. A new actor will be spawned at runtime with the correct asset, should one not already exist.
- Made -nomovie actually work
- Refined how active movie captures are managed
- Added option to 'stage' a sequence before starting the capture. This feature will set the sequence on its first frame for the preroll, to ensure that PPP effects are allowed time to stabilize
Change 2744402 on 2015/10/28 by Max.Preussner
Sequencer: Separated track display names from track identifier names; code cleanup
Change 2745953 on 2015/10/29 by Max.Chen
Sequencer: Attach to socket. Relative attachments.
#jira UETOOL-463
Change 2747028 on 2015/10/29 by Max.Preussner
Sequencer: Another overhaul of track display name handling; code and documentation cleanup pass.
Change 2758888 on 2015/11/09 by Chris.Wood
Integrating changes - 4.10 to Dev-Sequencer
From 4.10 branch fixes:
Added check for debugger present when reporting abnormal termination to analytics. [UE-22844] CL 2750764
Added FSystemWideCriticalSection for desktop platforms. Used by analytics to lock access to editor instances list in the OS. [UE-22844] CL 2753661
Updating wording in privacy settings text. [UE-21892] CL 2753709
Mac and Linux CIS fix [UE-22844] CL 2755381
Change 2761287 on 2015/11/10 by Max.Chen
Sequencer: Add null check when updating the UMG preview if the sequencer doesn't exist/has been closed.
#jira UE-5206
Change 2764945 on 2015/11/12 by Max.Preussner
Core: Templatized TypeContainer implementation to allow for thread-safe objects; updated unit test
Also fixes UE-13850
Change 2765036 on 2015/11/12 by Max.Preussner
UdpMessaging: Fixed message serialization unit test (UE-22571)
#jira: UE-22571
Change 2766149 on 2015/11/13 by Max.Preussner
Media: Implemented event that gets triggered when playback reached the end of media
Also fixes looping.
Change 2768157 on 2015/11/16 by Max.Preussner
Media: Added .m4a to supported WMF file extensions
Change 2769200 on 2015/11/16 by Max.Chen
Editor: Add broadcast messages when snapping objects.
#jira UE-22680
Change 2773066 on 2015/11/19 by Chris.Wood
Upload crashes from CRC to Data Router
[UECORE-249] - Integrate Crash Report Client with the Data Router
Upload to Receiver still active as we are running both in parallel for now.