You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Automatic merge of T1.6-186-g21d9ada29 and 14 pull requests
- Pull request #1082 at 6550dab: Allow variable water level in glass gauge
- Pull request #1057 at 85bde8e: Switchable brake system
- Pull request #1081 at a8127a1: Brake cuts power unification
- Pull request #1091 at 378be55: Automatic speed control
- Pull request #1122 at 73c47b4: Wagon Size and Centering Controls
- Pull request #1124 at e241a0d: Built-in PBL2 brake controller
- Pull request #1128 at b6c197f: Particle Emitter Overhaul
- Pull request #1158 at 2599bfe: Temporary fix for bug 2121985: F9 TCO out-of-range after resume
- Pull request #1169 at 906f204: Revise TrainCar.SetUpWheels to Better Handle Unusual Rolling Stock
- Pull request #1175 at d28315e: Make Data Logger interval configurable
- Pull request #1176 at 4cd961b: Remove Implicit Requirement for Engine Name to Come After "Engine ("
- Pull request #1178 at 015769e: Fix Diesel RPM Rate of Change
- Pull request #1183 at 41911f1: docs: Add code guidelines for translations
- Pull request #1184 at f5c7a50: Fix/avoid type initialization exception - 2nd try
@@ -183,88 +228,5 @@ public static extern uint D3D11CreateDevice(
183
228
IntPtrimmediateContext
184
229
);
185
230
}
186
-
187
-
/// <summary>
188
-
/// Provides helper methods for retrieving information about the system's operating system, CPUs, and GPUs.
189
-
/// These methods were moved into a non-static class so that an exception thrown and caught would not lead to a fatal System.TypeInitializationException in the constructor of the static SystemInfo class
190
-
/// </summary>
191
-
/// <remarks>This class offers methods to query system hardware and software details using
192
-
/// platform-specific APIs. The information returned by these methods may vary depending on the underlying
193
-
/// operating system and available system permissions. Methods may return partial or default information if
194
-
/// system queries fail or are unsupported on the current platform.</remarks>
195
-
publicclassSystemInfoHelper
196
-
{
197
-
publicPlatformGetOperatingSystem()
198
-
{
199
-
varplatform=newPlatform();
200
-
try
201
-
{
202
-
// Uncomment this throw to prove the exception reported in https://bugs.launchpad.net/or/+bug/2131143 is no longer fatal.
203
-
//throw new ManagementException();
204
-
205
-
// Almost nothing will correctly identify Windows 11 at this point, so we have to use WMI.
0 commit comments