Skip to content
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

fix for shapes hidden by animations( 0 ) #533

Merged
merged 2 commits into from Feb 5, 2022

Conversation

cjakeman
Copy link
Contributor

See https://bugs.launchpad.net/or/+bug/1951677

First reported by Tim Muir and Chris Gerlach after work on the City Point and Army Line http://www.elvastower.com/forums/index.php?/topic/33552-work-started-along-city-point-army-line/ found that Stable Release 1.4 failed to show certain shapes.

Investigation by Jonas found that the test for an animated clock shape fails when the shape includes
animations( 0 )
and this is automatically inserted by MSTSexporter for Blender 2.8+ Release V4.0 or older.

@cjakeman cjakeman added the bug Something isn't working label Nov 20, 2021
twpol pushed a commit that referenced this pull request Nov 20, 2021
- Pull request #510 at 0334be4: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at c786144: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
twpol pushed a commit that referenced this pull request Nov 20, 2021
- Pull request #510 at 0334be4: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at c786144: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
twpol pushed a commit that referenced this pull request Nov 21, 2021
- Pull request #510 at 0334be4: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at c786144: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
- Pull request #535 at bca2ceb: Correction of OR manual
twpol pushed a commit that referenced this pull request Nov 21, 2021
- Pull request #510 at 0334be4: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at c786144: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
- Pull request #535 at ba59ef1: Correction of OR manual
twpol pushed a commit that referenced this pull request Nov 23, 2021
- Pull request #510 at 0334be4: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at 41d74e4: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at c786144: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
- Pull request #536 at 5fdf9aa: Gently handle a track sound crash
StaticShape preTestShape = (new StaticShape(viewer, shapeFilePath, worldMatrix, shadowCaster ? ShapeFlags.ShadowCaster : ShapeFlags.None));
var animNodes = preTestShape.SharedShape.Animations?[0]?.anim_nodes ?? new List<anim_node>();
Copy link
Contributor

@pzgulyas pzgulyas Nov 24, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't it be shorter to do simply

var animNodes = preTestShape.SharedShape.Animations?.FirstOrDefault()?.anim_nodes ?? new List<anim_node>();

instead of the rest of the patch?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree, this is much simpler and fits what needs to be fixed.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, Peter.
Your suggestion now implemented.

twpol pushed a commit that referenced this pull request Nov 25, 2021
- Pull request #510 at 0334be4: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 95b52ab: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
- Pull request #536 at 5fdf9aa: Gently handle a track sound crash. Fixes bug https://bugs.launchpad.net/or/+bug/1754805
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
twpol pushed a commit that referenced this pull request Nov 28, 2021
- Pull request #510 at 3a944d9: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 95b52ab: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
- Pull request #536 at 5fdf9aa: Gently handle a track sound crash. Fixes bug https://bugs.launchpad.net/or/+bug/1754805
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
twpol pushed a commit that referenced this pull request Nov 29, 2021
- Pull request #510 at 61670d5: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 95b52ab: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
- Pull request #536 at 5fdf9aa: Gently handle a track sound crash. Fixes bug https://bugs.launchpad.net/or/+bug/1754805
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
twpol pushed a commit that referenced this pull request Nov 29, 2021
- Pull request #510 at ca2494d: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 95b52ab: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
twpol pushed a commit that referenced this pull request Nov 29, 2021
- Pull request #510 at ca2494d: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 95b52ab: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #539 at fd04274: Correct starting tractive force of steam locomotive
twpol pushed a commit that referenced this pull request Nov 29, 2021
- Pull request #510 at ca2494d: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 46567ee: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
- Pull request #537 at 2fbbe40: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #539 at fd04274: Correct starting tractive force of steam locomotive
twpol pushed a commit that referenced this pull request Nov 30, 2021
- Pull request #510 at ca2494d: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 46567ee: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #539 at fd04274: Correct starting tractive force of steam locomotive
twpol pushed a commit that referenced this pull request Nov 30, 2021
- Pull request #510 at d73cb10: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 46567ee: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #539 at fd04274: Correct starting tractive force of steam locomotive
twpol pushed a commit that referenced this pull request Dec 1, 2021
- Pull request #510 at d73cb10: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 27f05a1: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #539 at fd04274: Correct starting tractive force of steam locomotive
twpol pushed a commit that referenced this pull request Dec 2, 2021
- Pull request #510 at fa2c10d: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 27f05a1: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #539 at fd04274: Correct starting tractive force of steam locomotive
twpol pushed a commit that referenced this pull request Dec 3, 2021
- Pull request #510 at fa2c10d: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 27f05a1: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #534 at ba3f85a: deletes RunActivityLAA.* post-build
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #539 at fd04274: Correct starting tractive force of steam locomotive
- Pull request #540 at 8711c47: Correct issue created in timetable mode
twpol pushed a commit that referenced this pull request Dec 5, 2021
- Pull request #510 at ded7bd3: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 27f05a1: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #539 at fd04274: Correct starting tractive force of steam locomotive
twpol pushed a commit that referenced this pull request Dec 6, 2021
- Pull request #510 at 87f621f: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 27f05a1: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #539 at fd04274: Correct starting tractive force of steam locomotive
twpol pushed a commit that referenced this pull request Dec 6, 2021
- Pull request #510 at 87f621f: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 27f05a1: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #542 at 83320ed: adds new webpage, moves Testing out of Download/Programs
twpol pushed a commit that referenced this pull request Dec 7, 2021
- Pull request #510 at ede95f0: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 27f05a1: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #542 at 83320ed: adds new webpage, moves Testing out of Download/Programs
twpol pushed a commit that referenced this pull request Dec 7, 2021
- Pull request #510 at 7cadc9f: Add performance monitoring for diesel mechanic locomotives and new parameters
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 27f05a1: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #542 at 83320ed: adds new webpage, moves Testing out of Download/Programs
twpol pushed a commit that referenced this pull request Dec 7, 2021
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 27f05a1: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #542 at 83320ed: adds new webpage, moves Testing out of Download/Programs
twpol pushed a commit that referenced this pull request Dec 7, 2021
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 27f05a1: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #542 at 83320ed: adds new webpage, moves Testing out of Download/Programs
- Pull request #543 at 5b0121c: adds Discover > Roadmap webpage
twpol pushed a commit that referenced this pull request Dec 10, 2021
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 27f05a1: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #542 at 83320ed: adds new webpage, moves Testing out of Download/Programs
- Pull request #543 at 5b0121c: adds Discover > Roadmap webpage
- Pull request #544 at 8117250: Blueprint https://blueprints.launchpad.net/or/+spec/cabview-controls-for-generic-items
twpol pushed a commit that referenced this pull request Dec 10, 2021
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 27f05a1: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #542 at 83320ed: adds new webpage, moves Testing out of Download/Programs
- Pull request #543 at 5b0121c: adds Discover > Roadmap webpage
- Pull request #544 at 8117250: Blueprint https://blueprints.launchpad.net/or/+spec/cabview-controls-for-generic-items
- Pull request #545 at 265b635: Fix VRAM usage
twpol pushed a commit that referenced this pull request Dec 11, 2021
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 27f05a1: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #542 at 83320ed: adds new webpage, moves Testing out of Download/Programs
- Pull request #543 at 5b0121c: adds Discover > Roadmap webpage
- Pull request #544 at 8117250: Blueprint https://blueprints.launchpad.net/or/+spec/cabview-controls-for-generic-items
- Pull request #545 at 564ae46: Fix VRAM usage
twpol pushed a commit that referenced this pull request Dec 12, 2021
- Pull request #525 at b5ac1d2: Add SignalTypeName and DrawStateName to SignalFeatures
- Pull request #527 at 27f05a1: Brake cuts power refactor and new parameters
- Pull request #531 at b2affac: Bug fix for https://bugs.launchpad.net/or/+bug/1950578 Dyn Brake setup state not disappearing in cab
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #537 at e753905: C# signal script extensions
- Pull request #538 at c457f11: Delete binary paths if the ascii version or the tdb was modified. Blueprint: https://blueprints.launchpad.net/or/+spec/binary-timetable-paths
- Pull request #542 at 83320ed: adds new webpage, moves Testing out of Download/Programs
- Pull request #543 at 5b0121c: adds Discover > Roadmap webpage
- Pull request #544 at 8117250: Blueprint https://blueprints.launchpad.net/or/+spec/cabview-controls-for-generic-items
- Pull request #545 at 1b818ae: Fix VRAM usage
twpol pushed a commit that referenced this pull request Jan 20, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #560 at c5d0a1f: https://blueprints.launchpad.net/or/+spec/label-for-cab-controls , by Jindrich
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #565 at ebcd9e8: Correct Steam locomoti starting tractive effort.
- Pull request #570 at bfc5d90: Experimental glTF 2.0 support with PBR lighting
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
twpol pushed a commit that referenced this pull request Jan 20, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #560 at c5d0a1f: https://blueprints.launchpad.net/or/+spec/label-for-cab-controls , by Jindrich
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #565 at ebcd9e8: Correct Steam locomoti starting tractive effort.
- Pull request #570 at a73aa86: Experimental glTF 2.0 support with PBR lighting
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
twpol pushed a commit that referenced this pull request Jan 20, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #560 at c5d0a1f: https://blueprints.launchpad.net/or/+spec/label-for-cab-controls , by Jindrich
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #565 at ebcd9e8: Correct Steam locomoti starting tractive effort.
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
twpol pushed a commit that referenced this pull request Jan 21, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #560 at ac7506d: https://blueprints.launchpad.net/or/+spec/label-for-cab-controls , by Jindrich
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #565 at ebcd9e8: Correct Steam locomoti starting tractive effort.
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
twpol pushed a commit that referenced this pull request Jan 21, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #560 at ac7506d: https://blueprints.launchpad.net/or/+spec/label-for-cab-controls , by Jindrich
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #565 at ebcd9e8: Correct Steam locomoti starting tractive effort.
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
twpol pushed a commit that referenced this pull request Jan 22, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #560 at 666e94f: https://blueprints.launchpad.net/or/+spec/label-for-cab-controls , by Jindrich
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #565 at ebcd9e8: Correct Steam locomoti starting tractive effort.
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
twpol pushed a commit that referenced this pull request Jan 23, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #560 at 666e94f: https://blueprints.launchpad.net/or/+spec/label-for-cab-controls , by Jindrich
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #565 at ebcd9e8: Correct Steam locomoti starting tractive effort.
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #573 at 6ff61f5: Fix wrong variable used in battery button
twpol pushed a commit that referenced this pull request Jan 24, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #560 at 666e94f: https://blueprints.launchpad.net/or/+spec/label-for-cab-controls , by Jindrich
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #573 at 6ff61f5: Fix wrong variable used in battery button
- Pull request #575 at a712a69: Correct information in manual
twpol pushed a commit that referenced this pull request Jan 24, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #573 at 6ff61f5: Fix wrong variable used in battery button
- Pull request #575 at a712a69: Correct information in manual
- Pull request #576 at 867233d: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
twpol pushed a commit that referenced this pull request Jan 26, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #573 at 6ff61f5: Fix wrong variable used in battery button
- Pull request #575 at a712a69: Correct information in manual
- Pull request #576 at 867233d: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #577 at 92d0926: Bug fix for https://bugs.launchpad.net/or/+bug/1959081 Webserver HUD has misaligned tabs
twpol pushed a commit that referenced this pull request Jan 26, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #575 at a712a69: Correct information in manual
- Pull request #576 at 867233d: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #577 at 92d0926: Bug fix for https://bugs.launchpad.net/or/+bug/1959081 Webserver HUD has misaligned tabs
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR
twpol pushed a commit that referenced this pull request Jan 27, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #575 at a712a69: Correct information in manual
- Pull request #576 at 867233d: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #577 at 92d0926: Bug fix for https://bugs.launchpad.net/or/+bug/1959081 Webserver HUD has misaligned tabs
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at c285678: Fix for https://bugs.launchpad.net/or/+bug/1959336.
twpol pushed a commit that referenced this pull request Jan 28, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #575 at a712a69: Correct information in manual
- Pull request #576 at 867233d: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #577 at 92d0926: Bug fix for https://bugs.launchpad.net/or/+bug/1959081 Webserver HUD has misaligned tabs
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at c285678: Fix for https://bugs.launchpad.net/or/+bug/1959336.
- Pull request #580 at a80269a: SamplerStates can only be set after the ShaderPasses.Current.Apply().
twpol pushed a commit that referenced this pull request Jan 29, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #576 at 867233d: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at 18ff734: Fix for https://bugs.launchpad.net/or/+bug/1959336.
- Pull request #580 at a80269a: SamplerStates can only be set after the ShaderPasses.Current.Apply().
twpol pushed a commit that referenced this pull request Jan 29, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #576 at 867233d: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at 18ff734: Fix for https://bugs.launchpad.net/or/+bug/1959336.
- Pull request #580 at a80269a: SamplerStates can only be set after the ShaderPasses.Current.Apply().
- Pull request #581 at 515c658: Blueprint https://blueprints.launchpad.net/or/+spec/traindpuinfo-web-server
twpol pushed a commit that referenced this pull request Jan 30, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #567 at 00ea37a: Adds 64-bit compatibility
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #574 at f77faa2: 02: Redundant options removed from Menu > Options
- Pull request #576 at 867233d: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at 18ff734: Fix for https://bugs.launchpad.net/or/+bug/1959336.
- Pull request #580 at a80269a: SamplerStates can only be set after the ShaderPasses.Current.Apply().
- Pull request #581 at 515c658: Blueprint https://blueprints.launchpad.net/or/+spec/traindpuinfo-web-server
twpol pushed a commit that referenced this pull request Jan 31, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #567 at 00ea37a: Adds 64-bit compatibility
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #574 at f77faa2: 02: Redundant options removed from Menu > Options
- Pull request #576 at ddb9b59: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at 18ff734: Fix for https://bugs.launchpad.net/or/+bug/1959336.
- Pull request #580 at a80269a: SamplerStates can only be set after the ShaderPasses.Current.Apply().
- Pull request #581 at 515c658: Blueprint https://blueprints.launchpad.net/or/+spec/traindpuinfo-web-server
twpol pushed a commit that referenced this pull request Jan 31, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #567 at 00ea37a: Adds 64-bit compatibility
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #574 at f4eb3e2: 02: Redundant options removed from Menu > Options
- Pull request #576 at ddb9b59: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at 18ff734: Fix for https://bugs.launchpad.net/or/+bug/1959336.
- Pull request #580 at a80269a: SamplerStates can only be set after the ShaderPasses.Current.Apply().
- Pull request #581 at 515c658: Blueprint https://blueprints.launchpad.net/or/+spec/traindpuinfo-web-server
twpol pushed a commit that referenced this pull request Jan 31, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #567 at 00ea37a: Adds 64-bit compatibility
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #574 at f4eb3e2: 02: Redundant options removed from Menu > Options
- Pull request #576 at ddb9b59: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at 18ff734: Fix for https://bugs.launchpad.net/or/+bug/1959336.
- Pull request #580 at a80269a: SamplerStates can only be set after the ShaderPasses.Current.Apply().
- Pull request #581 at 515c658: Blueprint https://blueprints.launchpad.net/or/+spec/traindpuinfo-web-server
- Pull request #582 at 404028a: Bug fix for https://bugs.launchpad.net/or/+bug/1959617 Positive bars can't have two colours
twpol pushed a commit that referenced this pull request Jan 31, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #567 at 00ea37a: Adds 64-bit compatibility
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #574 at f4eb3e2: 02: Redundant options removed from Menu > Options
- Pull request #576 at ddb9b59: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at 18ff734: Fix for https://bugs.launchpad.net/or/+bug/1959336.
- Pull request #580 at a80269a: SamplerStates can only be set after the ShaderPasses.Current.Apply().
- Pull request #581 at 2c1da3c: Blueprint https://blueprints.launchpad.net/or/+spec/traindpuinfo-web-server
- Pull request #582 at 404028a: Bug fix for https://bugs.launchpad.net/or/+bug/1959617 Positive bars can't have two colours
twpol pushed a commit that referenced this pull request Feb 1, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #567 at 00ea37a: Adds 64-bit compatibility
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #574 at f4eb3e2: 02: Redundant options removed from Menu > Options
- Pull request #576 at ddb9b59: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at 18ff734: Fix for https://bugs.launchpad.net/or/+bug/1959336.
- Pull request #580 at a80269a: SamplerStates can only be set after the ShaderPasses.Current.Apply().
- Pull request #581 at 2c1da3c: Blueprint https://blueprints.launchpad.net/or/+spec/traindpuinfo-web-server
- Pull request #582 at 404028a: Bug fix for https://bugs.launchpad.net/or/+bug/1959617 Positive bars can't have two colours
- Pull request #583 at 6a66eb2: Bug fix for https://bugs.launchpad.net/or/+bug/1959660 Glitch in ORTS_SIGNED_TRACTION_BRAKING
twpol pushed a commit that referenced this pull request Feb 1, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #567 at 91eb262: Adds 64-bit compatibility
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #574 at f4eb3e2: 02: Redundant options removed from Menu > Options
- Pull request #576 at ddb9b59: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at 18ff734: Fix for https://bugs.launchpad.net/or/+bug/1959336.
- Pull request #580 at a80269a: SamplerStates can only be set after the ShaderPasses.Current.Apply().
- Pull request #581 at 2c1da3c: Blueprint https://blueprints.launchpad.net/or/+spec/traindpuinfo-web-server
- Pull request #582 at 404028a: Bug fix for https://bugs.launchpad.net/or/+bug/1959617 Positive bars can't have two colours
- Pull request #583 at 6a66eb2: Bug fix for https://bugs.launchpad.net/or/+bug/1959660 Glitch in ORTS_SIGNED_TRACTION_BRAKING
twpol pushed a commit that referenced this pull request Feb 1, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #567 at 91eb262: Adds 64-bit compatibility
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #574 at f4eb3e2: 02: Redundant options removed from Menu > Options
- Pull request #576 at 1a0ee61: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at 18ff734: Fix for https://bugs.launchpad.net/or/+bug/1959336.
- Pull request #580 at a80269a: SamplerStates can only be set after the ShaderPasses.Current.Apply().
- Pull request #581 at 2c1da3c: Blueprint https://blueprints.launchpad.net/or/+spec/traindpuinfo-web-server
- Pull request #582 at 404028a: Bug fix for https://bugs.launchpad.net/or/+bug/1959617 Positive bars can't have two colours
- Pull request #583 at 6a66eb2: Bug fix for https://bugs.launchpad.net/or/+bug/1959660 Glitch in ORTS_SIGNED_TRACTION_BRAKING
twpol pushed a commit that referenced this pull request Feb 1, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #567 at 91eb262: Adds 64-bit compatibility
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #574 at dbdd942: 02: Redundant options removed from Menu > Options
- Pull request #576 at 1a0ee61: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at 18ff734: Fix for https://bugs.launchpad.net/or/+bug/1959336.
- Pull request #580 at a80269a: SamplerStates can only be set after the ShaderPasses.Current.Apply().
- Pull request #581 at 2c1da3c: Blueprint https://blueprints.launchpad.net/or/+spec/traindpuinfo-web-server
- Pull request #582 at 404028a: Bug fix for https://bugs.launchpad.net/or/+bug/1959617 Positive bars can't have two colours
- Pull request #583 at 6a66eb2: Bug fix for https://bugs.launchpad.net/or/+bug/1959660 Glitch in ORTS_SIGNED_TRACTION_BRAKING
twpol pushed a commit that referenced this pull request Feb 1, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at 62a1c27: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at af9e9ae: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #567 at 91eb262: Adds 64-bit compatibility
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #576 at 1a0ee61: DaylightOffsetHrs control: Fix for offset not effective soon after midnight
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at 18ff734: Fix for https://bugs.launchpad.net/or/+bug/1959336.
- Pull request #580 at a80269a: SamplerStates can only be set after the ShaderPasses.Current.Apply().
- Pull request #581 at 2c1da3c: Blueprint https://blueprints.launchpad.net/or/+spec/traindpuinfo-web-server
- Pull request #582 at 404028a: Bug fix for https://bugs.launchpad.net/or/+bug/1959617 Positive bars can't have two colours
- Pull request #583 at 6a66eb2: Bug fix for https://bugs.launchpad.net/or/+bug/1959660 Glitch in ORTS_SIGNED_TRACTION_BRAKING
twpol pushed a commit that referenced this pull request Feb 5, 2022
- Pull request #525 at 614b222: TCS extensions
- Pull request #533 at ce89a06: fix for shapes hidden by animations( 0 )
- Pull request #545 at 3f57012: Fix VRAM usage
- Pull request #553 at 12e53b1: ScriptManager migration to the CodeAnalysis class. This is in preparation for the net 6 migration.
- Pull request #561 at 36dcd19: Manual call-on is reset when passing an advanced signal - https://bugs.launchpad.net/or/+bug/1955907
- Pull request #562 at 44f35b4: Remove the locomotive handle from the script, because no interface function can allow access to any internal structure.
- Pull request #564 at 2ce2855: Added TCS parameters file path in consist files (+ refactoring and code cleanup)
- Pull request #567 at 91eb262: Adds 64-bit compatibility
- Pull request #572 at 7ad5a93: docs: Improved clarity of making changes requirements
- Pull request #578 at 1964941: https://bugs.launchpad.net/or/+bug/1959084 Wrong locale file IDs for pt-PT and pt-BR 
- Pull request #579 at 18ff734: Fix for https://bugs.launchpad.net/or/+bug/1959336.
- Pull request #580 at a80269a: SamplerStates can only be set after the ShaderPasses.Current.Apply().
- Pull request #581 at 2c1da3c: Blueprint https://blueprints.launchpad.net/or/+spec/traindpuinfo-web-server
- Pull request #582 at 404028a: Bug fix for https://bugs.launchpad.net/or/+bug/1959617 Positive bars can't have two colours
- Pull request #583 at 6a66eb2: Bug fix for https://bugs.launchpad.net/or/+bug/1959660 Glitch in ORTS_SIGNED_TRACTION_BRAKING
@cjakeman cjakeman merged commit 8b269d8 into openrails:master Feb 5, 2022
Csantucci added a commit to Csantucci/openrails that referenced this pull request Feb 7, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
3 participants