-
Notifications
You must be signed in to change notification settings - Fork 98
Search for NORMAL signals if no argument is provided #712
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at 12d50c5: Correct double heading bug - Pull request #688 at e44897d: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #710 at 81ab87c: Fix GetDrawState when using upper characters in the name parameter - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 28372a4: Search for NORMAL signals if no argument is provided
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at 12d50c5: Correct double heading bug - Pull request #688 at e44897d: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 28372a4: Search for NORMAL signals if no argument is provided
|
How did OR behave before the changes leading to crash were introduced? Did it default to NORMAL? |
|
The default value for SIGSCR parameters is 0, which corresponded to the NORMAL signal type. |
Then the fix is OK to me, and IMHO it should be introduced also in 1.5. |
|
The problem was introduced during the conversion of the signal function from enum to class in #537, which is not present in 1.5 |
|
There are more errors related to this, so converting this to draft until they are solved. |
|
@Sharpe49 It seems some scripts are really bad written, with usages like next_sig_lr() [no argument] or next_sig_lr(5) [number instead of SIGFN]. My fix should allow this kind of weird syntax, but it's not elegant. I think it would be better to restore the previous code, keeping a Dictionary<int, SignalFunction>. Any suggestions? |
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at 12d50c5: Correct double heading bug - Pull request #688 at e44897d: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 6cdbdfe: Search for NORMAL signals if no argument is provided
|
How about assigning values to the elements of the Enum (0, 1, 2, etc.) in order for them to always have the same value. |
|
The values are already assigned to a enum (namely the MstsSignalFunction enum). The problem is from the conversion from that enum to a SignalFunction. I wasn't sure if using new SignalFunction((MstsSignalFunction)parameter_value);was acceptable during the creation of the SCRParameter, due to the object allocation. I think it might be OK provided that SCRParameters are constructed during loading time and then never modified. |
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at 12d50c5: Correct double heading bug - Pull request #688 at e44897d: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 9aa54c6: Search for NORMAL signals if no argument is provided
9aa54c6 to
def917d
Compare
def917d to
68cd8ab
Compare
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at 12d50c5: Correct double heading bug - Pull request #688 at e44897d: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c0e78f2: Correct double heading bug - Pull request #688 at e44897d: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at ad0cd0e: Correct double heading bug - Pull request #688 at e44897d: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #688 at e44897d: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #688 at e44897d: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 637f947: https://blueprints.launchpad.net/or/+spec/cruise-control
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #688 at e44897d: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 0b1f1e6: https://blueprints.launchpad.net/or/+spec/cruise-control
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #688 at e44897d: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 80491f5: https://blueprints.launchpad.net/or/+spec/cruise-control
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #688 at e44897d: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 5d62da5: https://blueprints.launchpad.net/or/+spec/cruise-control
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #688 at e44897d: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at dd69c72: https://blueprints.launchpad.net/or/+spec/cruise-control
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #688 at e44897d: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 39fb6c2: https://blueprints.launchpad.net/or/+spec/cruise-control
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #688 at 7b6b608: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 85ce248: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 39fb6c2: https://blueprints.launchpad.net/or/+spec/cruise-control
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #688 at 7b6b608: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #711 at 20f381f: Bug fix for https://bugs.launchpad.net/or/+bug/1989426 Out of bounds crash in Precipitation.cs - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 39fb6c2: https://blueprints.launchpad.net/or/+spec/cruise-control
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #688 at 7b6b608: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 39fb6c2: https://blueprints.launchpad.net/or/+spec/cruise-control
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #688 at 7b6b608: adds Help Icons to Video tab - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 39fb6c2: https://blueprints.launchpad.net/or/+spec/cruise-control - Pull request #714 at d289d28: Feature/1.5 merge fix 1 - Pull request #715 at 447143b: Bug fix for //bugs.launchpad.net/or/+bug/1990930 Default snow terrtex not appearing
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 2478066: https://blueprints.launchpad.net/or/+spec/cruise-control - Pull request #714 at d289d28: Feature/1.5 merge fix 1 - Pull request #715 at 447143b: Bug fix for //bugs.launchpad.net/or/+bug/1990930 Default snow terrtex not appearing - Pull request #716 at 23c491e: Bug fix for https://bugs.launchpad.net/or/+bug/1990553 Typo in GenericItem2 command
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 2478066: https://blueprints.launchpad.net/or/+spec/cruise-control - Pull request #715 at 447143b: Bug fix for //bugs.launchpad.net/or/+bug/1990930 Default snow terrtex not appearing - Pull request #716 at 23c491e: Bug fix for https://bugs.launchpad.net/or/+bug/1990553 Typo in GenericItem2 command - Pull request #721 at 0eec308: Do not trigger wheelslip alarm until some time passes
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 3f5e038: https://blueprints.launchpad.net/or/+spec/cruise-control - Pull request #715 at 447143b: Bug fix for //bugs.launchpad.net/or/+bug/1990930 Default snow terrtex not appearing - Pull request #716 at 23c491e: Bug fix for https://bugs.launchpad.net/or/+bug/1990553 Typo in GenericItem2 command - Pull request #721 at 0eec308: Do not trigger wheelslip alarm until some time passes
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 3f5e038: https://blueprints.launchpad.net/or/+spec/cruise-control - Pull request #715 at 447143b: Bug fix for //bugs.launchpad.net/or/+bug/1990930 Default snow terrtex not appearing - Pull request #716 at 23c491e: Bug fix for https://bugs.launchpad.net/or/+bug/1990553 Typo in GenericItem2 command - Pull request #721 at 0eec308: Do not trigger wheelslip alarm until some time passes - Pull request #722 at fb9079e: Fix Windows Forms deprecations in ActivityEditor
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: TCS Extensions - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 33de10b: https://blueprints.launchpad.net/or/+spec/cruise-control - Pull request #715 at 447143b: Bug fix for //bugs.launchpad.net/or/+bug/1990930 Default snow terrtex not appearing - Pull request #716 at 23c491e: Bug fix for https://bugs.launchpad.net/or/+bug/1990553 Typo in GenericItem2 command - Pull request #721 at 0eec308: Do not trigger wheelslip alarm until some time passes - Pull request #722 at fb9079e: Fix Windows Forms deprecations in ActivityEditor
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: Extended door functionality - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 8bb3bfe: https://blueprints.launchpad.net/or/+spec/cruise-control - Pull request #715 at 447143b: Bug fix for //bugs.launchpad.net/or/+bug/1990930 Default snow terrtex not appearing - Pull request #716 at 23c491e: Bug fix for https://bugs.launchpad.net/or/+bug/1990553 Typo in GenericItem2 command - Pull request #721 at 0eec308: Do not trigger wheelslip alarm until some time passes - Pull request #722 at fb9079e: Fix Windows Forms deprecations in ActivityEditor
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: Extended door functionality - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at ffc93eb: https://blueprints.launchpad.net/or/+spec/cruise-control - Pull request #715 at 447143b: Bug fix for //bugs.launchpad.net/or/+bug/1990930 Default snow terrtex not appearing - Pull request #716 at 23c491e: Bug fix for https://bugs.launchpad.net/or/+bug/1990553 Typo in GenericItem2 command - Pull request #721 at 0eec308: Do not trigger wheelslip alarm until some time passes - Pull request #722 at fb9079e: Fix Windows Forms deprecations in ActivityEditor
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: Extended door functionality - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at f281de6: https://blueprints.launchpad.net/or/+spec/cruise-control - Pull request #715 at 447143b: Bug fix for //bugs.launchpad.net/or/+bug/1990930 Default snow terrtex not appearing - Pull request #716 at 23c491e: Bug fix for https://bugs.launchpad.net/or/+bug/1990553 Typo in GenericItem2 command - Pull request #721 at 0eec308: Do not trigger wheelslip alarm until some time passes - Pull request #722 at fb9079e: Fix Windows Forms deprecations in ActivityEditor
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #693 at 453ac3d: French locales - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: Extended door functionality - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 966a61c: https://blueprints.launchpad.net/or/+spec/cruise-control - Pull request #715 at 447143b: Bug fix for //bugs.launchpad.net/or/+bug/1990930 Default snow terrtex not appearing - Pull request #716 at 23c491e: Bug fix for https://bugs.launchpad.net/or/+bug/1990553 Typo in GenericItem2 command - Pull request #721 at 0eec308: Do not trigger wheelslip alarm until some time passes - Pull request #722 at fb9079e: Fix Windows Forms deprecations in ActivityEditor
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: Extended door functionality - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 966a61c: https://blueprints.launchpad.net/or/+spec/cruise-control - Pull request #715 at 447143b: Bug fix for //bugs.launchpad.net/or/+bug/1990930 Default snow terrtex not appearing - Pull request #721 at 0eec308: Do not trigger wheelslip alarm until some time passes - Pull request #722 at fb9079e: Fix Windows Forms deprecations in ActivityEditor - Pull request #726 at b6cc020: Correctly initialize triple valve for EP trains
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: Extended door functionality - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 966a61c: https://blueprints.launchpad.net/or/+spec/cruise-control - Pull request #715 at 447143b: Bug fix for //bugs.launchpad.net/or/+bug/1990930 Default snow terrtex not appearing - Pull request #722 at fb9079e: Fix Windows Forms deprecations in ActivityEditor - Pull request #726 at b6cc020: Correctly initialize triple valve for EP trains
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: Extended door functionality - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 6c8701f: https://blueprints.launchpad.net/or/+spec/cruise-control - Pull request #715 at 447143b: Bug fix for //bugs.launchpad.net/or/+bug/1990930 Default snow terrtex not appearing - Pull request #722 at fb9079e: Fix Windows Forms deprecations in ActivityEditor - Pull request #726 at b6cc020: Correctly initialize triple valve for EP trains
- Pull request #570 at 824f96f: Experimental glTF 2.0 support with PBR lighting - Pull request #630 at 704731a: Sky Color Fix (Addresses Trello Roadmap Card #367 for More accurate sunrise and sunset) - Pull request #652 at 918fdb1: Add button functions to Raildriver - Pull request #677 at c1c417f: Correct double heading bug - Pull request #692 at 20de7da: Italian translation for OR 1.5 - Pull request #699 at 6baf43d: Bug fix for https://bugs.launchpad.net/or/+bug/1987453. Web: HUD/Force Information, some labels not visible. - Pull request #706 at 265d33d: Extended door functionality - Pull request #712 at 68cd8ab: Search for NORMAL signals if no argument is provided - Pull request #713 at 6c8701f: https://blueprints.launchpad.net/or/+spec/cruise-control - Pull request #715 at 447143b: Bug fix for //bugs.launchpad.net/or/+bug/1990930 Default snow terrtex not appearing - Pull request #722 at fb9079e: Fix Windows Forms deprecations in ActivityEditor - Pull request #726 at d812554: Correctly initialize triple valve for EP trains
http://www.elvastower.com/forums/index.php?/topic/36522-problem-with-signal-script
http://www.elvastower.com/forums/index.php?/topic/36544-testing-mode-crashes/