Skip to content

Commit

Permalink
Revert "Update RobustToolbox"
Browse files Browse the repository at this point in the history
This reverts commit 1dc8316.
  • Loading branch information
AsnDen committed Oct 20, 2024
1 parent 1dc8316 commit e8a2757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RobustToolbox
Submodule RobustToolbox updated 91 files
+1 −1 MSBuild/Robust.Engine.Version.props
+89 −0 RELEASE-NOTES.md
+6 −0 Resources/EnginePrototypes/entityCategory.yml
+8 −1 Resources/Locale/en-US/custom-controls.ftl
+3 −0 Resources/Locale/en-US/entity-category.ftl
+63 −0 Robust.Analyzers.Tests/DuplicateDependencyAnalyzerTest.cs
+126 −0 Robust.Analyzers/DuplicateDependencyAnalyzer.cs
+2 −0 Robust.Client/ClientIoC.cs
+3 −2 Robust.Client/Console/Commands/LauncherAuthCommand.cs
+18 −6 Robust.Client/GameController/GameController.cs
+8 −0 Robust.Client/GameObjects/EntitySystems/AnimationPlayerSystem.cs
+3 −0 Robust.Client/Graphics/Clyde/Clyde.Events.cs
+13 −1 Robust.Client/Graphics/Clyde/Clyde.Windowing.cs
+1 −1 Robust.Client/Graphics/Clyde/ClydeHeadless.cs
+9 −0 Robust.Client/Graphics/Clyde/Windowing/Glfw.WindowThread.cs
+14 −0 Robust.Client/Graphics/Clyde/Windowing/Glfw.Windows.cs
+1 −0 Robust.Client/Graphics/Clyde/Windowing/IWindowingImpl.cs
+9 −0 Robust.Client/Graphics/Clyde/Windowing/Sdl2.WindowThread.cs
+11 −0 Robust.Client/Graphics/Clyde/Windowing/Sdl2.Windows.cs
+1 −1 Robust.Client/Graphics/IClydeWindow.cs
+86 −0 Robust.Client/HWId/BasicHWId.cs
+15 −0 Robust.Client/IGameController.cs
+0 −1 Robust.Client/Physics/PhysicsSystem.Predict.cs
+0 −3 Robust.Client/Player/PlayerManager.cs
+1 −1 Robust.Client/Replays/Loading/ReplayLoadManager.Read.cs
+17 −1 Robust.Client/UserInterface/Control.cs
+11 −0 Robust.Client/UserInterface/Controllers/Implementations/EntitySpawningUIController.cs
+36 −10 Robust.Client/UserInterface/Controllers/Implementations/TileSpawningUIController.cs
+16 −3 Robust.Client/UserInterface/Controls/BaseButton.cs
+22 −1 Robust.Client/UserInterface/Controls/LineEdit.cs
+22 −8 Robust.Client/UserInterface/Controls/OSWindow.cs
+1 −1 Robust.Client/UserInterface/Controls/SpriteView.cs
+12 −33 Robust.Client/UserInterface/Controls/TabContainer.cs
+1 −1 Robust.Client/UserInterface/CustomControls/EntitySpawnWindow.xaml
+4 −1 Robust.Client/UserInterface/CustomControls/TileSpawnWindow.xaml
+4 −2 Robust.Client/UserInterface/UserInterfaceManager.Roots.cs
+7 −4 Robust.Client/UserInterface/XAML/Proxy/XamlHotReloadManager.cs
+7 −3 Robust.Client/Utility/UserDataDir.cs
+1 −0 Robust.Roslyn.Shared/Diagnostics.cs
+2 −2 Robust.Server/BaseServer.cs
+0 −1 Robust.Server/Console/ServerConsoleHost.cs
+6 −5 Robust.Server/GameObjects/EntitySystems/MapSystem.cs
+6 −4 Robust.Server/GameStates/PvsChunk.cs
+1 −0 Robust.Server/GameStates/PvsSystem.Chunks.cs
+2 −1 Robust.Server/GameStates/PvsSystem.cs
+7 −7 Robust.Server/Physics/GridFixtureSystem.cs
+1 −2 Robust.Server/Player/PlayerManager.cs
+2 −0 Robust.Server/ServerIoC.cs
+80 −0 Robust.Server/ServerStatus/IWatchdogApi.cs
+55 −8 Robust.Server/ServerStatus/WatchdogApi.cs
+25 −9 Robust.Shared.Scripting/ScriptGlobalsShared.cs
+21 −3 Robust.Shared.Scripting/ScriptInstanceShared.cs
+19 −0 Robust.Shared/CVars.cs
+6 −1 Robust.Shared/Console/IConsoleShell.cs
+3 −1 Robust.Shared/ContentPack/Sandbox.yml
+2 −2 Robust.Shared/GameObjects/Components/UserInterface/BoundUserInterface.cs
+6 −6 Robust.Shared/GameObjects/EntityManager.Network.cs
+9 −0 Robust.Shared/GameObjects/EntityManager.cs
+10 −0 Robust.Shared/GameObjects/Systems/EntityLookupSystem.ComponentQueries.cs
+1 −2 Robust.Shared/GameObjects/Systems/SharedUserInterfaceSystem.cs
+4 −1 Robust.Shared/GameStates/SessionState.cs
+2 −2 Robust.Shared/Localization/Loc.cs
+11 −0 Robust.Shared/Network/AuthManager.cs
+0 −46 Robust.Shared/Network/HWId.cs
+67 −0 Robust.Shared/Network/IHWId.cs
+3 −0 Robust.Shared/Network/Messages/Handshake/MsgEncryptionRequest.cs
+5 −0 Robust.Shared/Network/Messages/Handshake/MsgEncryptionResponse.cs
+0 −5 Robust.Shared/Network/Messages/Handshake/MsgLoginStart.cs
+0 −2 Robust.Shared/Network/Messages/MsgPlayerList.cs
+14 −6 Robust.Shared/Network/NetManager.ClientConnect.cs
+23 −4 Robust.Shared/Network/NetManager.ServerAuth.cs
+1 −0 Robust.Shared/Network/NetManager.cs
+17 −0 Robust.Shared/Network/NetUserData.cs
+6 −3 Robust.Shared/Physics/Dynamics/Contacts/Contact.cs
+14 −14 Robust.Shared/Physics/Systems/SharedPhysicsSystem.Island.cs
+5 −6 Robust.Shared/Physics/Systems/SharedPhysicsSystem.cs
+6 −1 Robust.Shared/Player/CommonSession.cs
+4 −1 Robust.Shared/Player/ICommonSession.cs
+3 −0 Robust.Shared/Player/SharedPlayerManager.State.cs
+0 −1 Robust.Shared/Prototypes/PrototypeManager.YamlValidate.cs
+55 −67 Robust.Shared/Serialization/RobustSerializer.cs
+59 −0 Robust.Shared/Toolshed/TypeParsers/ProtoIdTypeParser.cs
+12 −0 Robust.Shared/Utility/Base64Helpers.cs
+1 −7 Robust.Shared/Utility/UniqueIndexHkm.cs
+15 −0 Robust.UnitTesting/GameControllerDummy.cs
+2 −1 Robust.UnitTesting/RobustIntegrationTest.NetManager.cs
+2 −0 Robust.UnitTesting/Server/RobustServerSimulation.cs
+8 −5 Robust.UnitTesting/Shared/EntityLookup_Test.cs
+1 −0 Robust.UnitTesting/Shared/GameObjects/EntityState_Tests.cs
+2 −0 Robust.UnitTesting/Shared/IoC/IoCManager_Test.cs
+12 −9 Robust.UnitTesting/Shared/Map/GridRotation_Tests.cs

0 comments on commit e8a2757

Please sign in to comment.