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

Experimental glTF 2.0 support with PBR lighting #570

Open
wants to merge 100 commits into
base: master
Choose a base branch
from

Conversation

pzgulyas
Copy link
Contributor

@pzgulyas pzgulyas commented Jan 18, 2022

Experimental glTF support with experimental PBR lighting.
Forum discussion thread
Trello card
Blueprint

The visual test in assistance to it can be started by:

  1. git clone https://github.com/KhronosGroup/glTF-Sample-Models.git into the TRAINS/TRAINSET/glTF-Sample-Models/ folder
  2. Add VS debug options command line parameters e.g.:
    -start -explorer "C:\Devel\MSTS\ROUTES\USA2\PATHS\tut6path.pat" "glTF-Sample-Models" 12:00 1 0
    -start -explorer "C:\Devel\MSTS\ROUTES\USA2\PATHS\tut6path.pat" "glTF-Sample-Models&ABeautifulGame" 12:00 1 0
    -start -explorer "C:\Devel\MSTS\ROUTES\USA2\PATHS\tut6path.pat" "glTF-Sample-Models#3" 12:00 1 0
  3. When running this test, the animations can be switched on-off by [V], [Shift+,] and [Shift+.], go to the next/previous model with [Alt+PgUp], [Alt+PgDn].

Tasks before this PR may be marked as ready to review.

  • Solve the terrible terrain-flipping bug with certain gltf models, probably a render state not set or reset correctly.
  • Fix the various glitches in some models. Not all of them needs to be fixed, because some extensions they use are not necessarily supported.
    • ABeautifulGame: corrupted geometry
    • DragonAttenuation: corrupted geometry
    • MetalRoughSpheresNoTextures doesn't show up
    • ToyCar: corrupted geometry
    • Robert's test locomotive steam particles are sometimes covered up by something
  • Clean up the code so that only the vs_4_0 and ps_4_0 variants remain.
  • Turn down the spot light intensity a little.
  • Directional light – disable.
  • Rewrite the binary loader for higher efficiency and reliability.
  • Solve the msft_lod regression

Postponed for later investigation:

  • AlphaBlendModeTest: opaque test checkmark display fails

Bugs to be resolved:

  • Headlight is gradually displacing with the locomotive gaining speed.
  • Headlight brightness to be fine-tuned.

After the review the following things have to be decided:

  • If Y elevation adjustment to be applied (the cars are placed below the rail-top by some centimeters).
  • Looping animations whole loop is (a) the total length of the animation clip or (b) a predefined time, e.g. 1 second or (c) some combination like the total length with the int(length)+1 is the number of the loops to be considered.
  • Externally animated nodes are to be tagged by their "name" or a defined extension like "OPENRAILS_animation_name".
  • The accepted animation tags: should we keep the MSTS ones or define new names.
  • LODs are to be internal, external or either.

@pzgulyas pzgulyas marked this pull request as draft January 18, 2022 14:06
@pzgulyas pzgulyas self-assigned this Jan 18, 2022
@pzgulyas pzgulyas added the enhancement New feature or request label Jan 18, 2022
twpol pushed a commit that referenced this pull request Jan 18, 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 0bb9468: Experimental glTF 2.0 support with PBR lighting
twpol pushed a commit that referenced this pull request Jan 18, 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 0bb9468: Experimental glTF 2.0 support with PBR lighting
- Pull request #571 at f81fe9f: 01: Manual entries for Menu > Options corrected
Copy link
Contributor

@Sharpe49 Sharpe49 left a comment

Choose a reason for hiding this comment

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

I mainly looked at the loading part, since I don't know yet many things about shaders.
I have some remarks about the loading.

Source/RunActivity/RunActivity.csproj Show resolved Hide resolved
Source/RunActivity/Viewer3D/Materials.cs Outdated Show resolved Hide resolved
twpol pushed a commit that referenced this pull request Jan 19, 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 d566199: 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 19, 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 9b7b343: 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 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
@pzgulyas pzgulyas added the not-for-unstable Special label to exclude a pull request from the Unstable Version label Jan 20, 2022
twpol pushed a commit that referenced this pull request Mar 25, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at 42092cb: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 29f3d1a: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at cf687d4: AI Train Power Supply/Lights Fix
- Pull request #928 at 1f23512: Fix Missing Initializations From Copy in MSTSLocomotive
twpol pushed a commit that referenced this pull request Mar 28, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at 42092cb: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 29f3d1a: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at cf687d4: AI Train Power Supply/Lights Fix
- Pull request #928 at 9f2f220: Fix Missing Initializations From Copy in MSTSLocomotive
twpol pushed a commit that referenced this pull request Mar 29, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at 42092cb: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 29f3d1a: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at cf687d4: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
twpol pushed a commit that referenced this pull request Mar 29, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at fb6b812: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 29f3d1a: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at cf687d4: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
twpol pushed a commit that referenced this pull request Mar 30, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at fb6b812: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 29f3d1a: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at 7bce293: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
twpol pushed a commit that referenced this pull request Apr 1, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at fb6b812: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at 7bce293: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
twpol pushed a commit that referenced this pull request Apr 2, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at fb6b812: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at 7bce293: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #930 at 42398f4: Further enhancements for duplex locoomotive
twpol pushed a commit that referenced this pull request Apr 3, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at fb6b812: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at 7bce293: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #930 at 42398f4: Further enhancements for duplex locoomotive
- Pull request #931 at 2bf6952: Orge
twpol pushed a commit that referenced this pull request Apr 6, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at 0a956f5: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at 7bce293: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #930 at 42398f4: Further enhancements for duplex locoomotive
- Pull request #931 at 2bf6952: Orge
twpol pushed a commit that referenced this pull request Apr 6, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at 0a956f5: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at 7bce293: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #930 at 42398f4: Further enhancements for duplex locoomotive
twpol pushed a commit that referenced this pull request Apr 7, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at 0a956f5: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at 7bce293: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #930 at 42398f4: Further enhancements for duplex locoomotive
- Pull request #932 at 9bdb074: Changed matrix's to matrices
twpol pushed a commit that referenced this pull request Apr 11, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at 1a70945: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at 0a956f5: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at 7bce293: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #930 at 42398f4: Further enhancements for duplex locoomotive
- Pull request #932 at 9bdb074: Changed matrix's to matrices
twpol pushed a commit that referenced this pull request Apr 11, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at 6a55f3b: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at 0a956f5: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at 7bce293: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #930 at 42398f4: Further enhancements for duplex locoomotive
- Pull request #932 at 9bdb074: Changed matrix's to matrices
twpol pushed a commit that referenced this pull request Apr 11, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at 0a956f5: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at 7bce293: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #930 at 42398f4: Further enhancements for duplex locoomotive
- Pull request #932 at 9bdb074: Changed matrix's to matrices
twpol pushed a commit that referenced this pull request Apr 12, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #885 at 0a956f5: feat: Add notifications to Menu
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at 7bce293: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #930 at 42398f4: Further enhancements for duplex locoomotive
- Pull request #932 at 9bdb074: Changed matrix's to matrices
- Pull request #933 at a3f56f4: Fix AI DM crashing
twpol pushed a commit that referenced this pull request Apr 13, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at cc1b5b6: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at 7bce293: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #930 at 42398f4: Further enhancements for duplex locoomotive
- Pull request #933 at a3f56f4: Fix AI DM crashing
twpol pushed a commit that referenced this pull request Apr 15, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at e75be0c: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at 7bce293: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #930 at 42398f4: Further enhancements for duplex locoomotive
- Pull request #933 at a3f56f4: Fix AI DM crashing
twpol pushed a commit that referenced this pull request Apr 18, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at e75be0c: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at e3b1688: Fix brakeshoe force bug
- Pull request #927 at a28da45: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
twpol pushed a commit that referenced this pull request Apr 18, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at e75be0c: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #925 at 9a07b4e: Fix brakeshoe force bug
- Pull request #927 at a28da45: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
twpol pushed a commit that referenced this pull request Apr 20, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at e75be0c: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #927 at a28da45: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #935 at 7d04839: Correct bug created in diesel electric locomotive
twpol pushed a commit that referenced this pull request Apr 22, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at e75be0c: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #927 at a28da45: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
twpol pushed a commit that referenced this pull request Apr 23, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at fc1ac91: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #927 at a28da45: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
twpol pushed a commit that referenced this pull request Apr 24, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at f7b85e4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at fc1ac91: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #927 at a28da45: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #937 at bf4a254: Adds missing API cab controls to Manual
twpol pushed a commit that referenced this pull request Apr 25, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at 4e2f2d5: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at fc1ac91: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #927 at a28da45: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #937 at bf4a254: Adds missing API cab controls to Manual
twpol pushed a commit that referenced this pull request Apr 25, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at 4e2f2d5: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at fc1ac91: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #927 at a28da45: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #937 at bf4a254: Adds missing API cab controls to Manual
twpol pushed a commit that referenced this pull request Apr 26, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at 4e2f2d5: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at fc1ac91: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #927 at a28da45: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #937 at bf4a254: Adds missing API cab controls to Manual
- Pull request #938 at ebe8047: Fix Missing Initializations From Copy in MSTSWagon.cs
twpol pushed a commit that referenced this pull request Apr 27, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at 1970058: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at fc1ac91: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #927 at a28da45: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #937 at bf4a254: Adds missing API cab controls to Manual
- Pull request #938 at ebe8047: Fix Missing Initializations From Copy in MSTSWagon.cs
joe180star added a commit to joestar179/openrails that referenced this pull request Apr 28, 2024
commit 4b8db422820354674b2a235b6cdf5414831763c5
Merge: 479066dc5 1ab6b9003 3539862b4 dfc715e50 d00beb983 f92de7665 3ca0eb19f 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 19700580b 26cc6a82e fc1ac9134 6c2c3cdbe a28da458b a406a69d9 bf4a254f3 ebe804712
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Sat Apr 27 03:08:18 2024 +0100

    Automatic merge of T1.5.1-944-g1ab6b90032 and 17 pull requests

    - Pull request #570 at 3539862b48: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at dfc715e503: Consolidated wind simulation
    - Pull request #839 at d00beb9833: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665b: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f5: Blueprint/train car operations UI window
    - Pull request #886 at 6c0785b6cb: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81b: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf2: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f91346: Downloading route content (Github, zip)
    - Pull request #912 at 19700580b7: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e4: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at fc1ac91347: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbec: Default Asset Improvements
    - Pull request #927 at a28da458b3: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9f: Add support for common circuit breaker variants
    - Pull request #937 at bf4a254f35: Adds missing API cab controls to Manual
    - Pull request #938 at ebe8047124: Fix Missing Initializations From Copy in MSTSWagon.cs

commit 19700580b77a4ddbf78104dfe91854d3249f3bda
Author: Phillip Schlichting <phillip@stlouisrc.com>
Date:   Fri Apr 26 21:01:22 2024 -0500

    Improved consistency of quick action, added automatic calculation of brake cylinder piping volume

commit 479066dc57407022fa24038d62fbea8a87f40287
Merge: e8bd301c1 1ab6b9003 3539862b4 dfc715e50 d00beb983 f92de7665 3ca0eb19f 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 4e2f2d5bf 26cc6a82e fc1ac9134 6c2c3cdbe a28da458b a406a69d9 bf4a254f3 ebe804712
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Fri Apr 26 03:38:15 2024 +0100

    Automatic merge of T1.5.1-944-g1ab6b90032 and 17 pull requests

    - Pull request #570 at 3539862b48: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at dfc715e503: Consolidated wind simulation
    - Pull request #839 at d00beb9833: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665b: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f5: Blueprint/train car operations UI window
    - Pull request #886 at 6c0785b6cb: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81b: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf2: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f91346: Downloading route content (Github, zip)
    - Pull request #912 at 4e2f2d5bfd: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e4: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at fc1ac91347: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbec: Default Asset Improvements
    - Pull request #927 at a28da458b3: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9f: Add support for common circuit breaker variants
    - Pull request #937 at bf4a254f35: Adds missing API cab controls to Manual
    - Pull request #938 at ebe8047124: Fix Missing Initializations From Copy in MSTSWagon.cs

commit ebe80471245a83fd068b9f324e07445240c8c2fc
Author: Phillip Schlichting <phillip@stlouisrc.com>
Date:   Thu Apr 25 21:28:30 2024 -0500

    Added some missing initialize from copy, removed some unneeded save/load, in MSTSWagon.cs

commit e8bd301c1edf326b6ca6766ee9d04f4760a42285
Merge: eb75ed7e9 1ab6b9003 3539862b4 dfc715e50 d00beb983 f92de7665 3ca0eb19f 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 4e2f2d5bf 26cc6a82e fc1ac9134 6c2c3cdbe a28da458b a406a69d9 bf4a254f3
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Thu Apr 25 20:08:18 2024 +0100

    Automatic merge of T1.5.1-944-g1ab6b90032 and 16 pull requests

    - Pull request #570 at 3539862b48: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at dfc715e503: Consolidated wind simulation
    - Pull request #839 at d00beb9833: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665b: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f5: Blueprint/train car operations UI window
    - Pull request #886 at 6c0785b6cb: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81b: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf2: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f91346: Downloading route content (Github, zip)
    - Pull request #912 at 4e2f2d5bfd: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e4: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at fc1ac91347: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbec: Default Asset Improvements
    - Pull request #927 at a28da458b3: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9f: Add support for common circuit breaker variants
    - Pull request #937 at bf4a254f35: Adds missing API cab controls to Manual

commit 1ab6b9003239afd7bcac7ef23e6c131aa60b2832
Merge: 6ac96f9f0 6573b5faf
Author: James Ross <twpol@users.noreply.github.com>
Date:   Thu Apr 25 20:03:47 2024 +0100

    Merge pull request #934 from rwf-rr/fix-contentmanager-search-bug-1944070

    Fix bug 1944070: ContentManager search exception.

commit eb75ed7e9946f09bda2183d5dd4243633aeb1ed3
Merge: f3a352d80 6ac96f9f0 3539862b4 dfc715e50 d00beb983 f92de7665 3ca0eb19f 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 4e2f2d5bf 26cc6a82e fc1ac9134 6c2c3cdbe a28da458b a406a69d9 bf4a254f3
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Thu Apr 25 04:53:24 2024 +0100

    Automatic merge of T1.5.1-942-g6ac96f9f00 and 16 pull requests

    - Pull request #570 at 3539862b48: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at dfc715e503: Consolidated wind simulation
    - Pull request #839 at d00beb9833: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665b: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f5: Blueprint/train car operations UI window
    - Pull request #886 at 6c0785b6cb: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81b: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf2: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f91346: Downloading route content (Github, zip)
    - Pull request #912 at 4e2f2d5bfd: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e4: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at fc1ac91347: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbec: Default Asset Improvements
    - Pull request #927 at a28da458b3: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9f: Add support for common circuit breaker variants
    - Pull request #937 at bf4a254f35: Adds missing API cab controls to Manual

commit 4e2f2d5bfdde19e4fed3508137a86692e7456be5
Author: Phillip Schlichting <phillip@stlouisrc.com>
Date:   Wed Apr 24 22:51:14 2024 -0500

    Added a missing engine supply res token

commit c9184d2f4ab66596f5c3eafd334996e86f4e5d95
Merge: 06dd27d5c 6ac96f9f0
Author: Phillip Schlichting <73207352+SteelFill@users.noreply.github.com>
Date:   Wed Apr 24 22:44:03 2024 -0500

    Merge branch 'openrails:master' into triplevalve-improvements-2

commit 06dd27d5c1a585f77e64d45a1904ec6fd6866043
Author: Phillip Schlichting <phillip@stlouisrc.com>
Date:   Wed Apr 24 22:43:39 2024 -0500

    Added advanced brake cylinder simulation, supply res for locomotives, bugfixes, and minor feature requests

commit f3a352d80a4e1a6055f4523141e32db120e10580
Merge: 3eda6e237 6ac96f9f0 3539862b4 dfc715e50 d00beb983 f92de7665 3ca0eb19f 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e fc1ac9134 6c2c3cdbe a28da458b a406a69d9 bf4a254f3
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Wed Apr 24 20:38:01 2024 +0100

    Automatic merge of T1.5.1-942-g6ac96f9f00 and 16 pull requests

    - Pull request #570 at 3539862b48: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at dfc715e503: Consolidated wind simulation
    - Pull request #839 at d00beb9833: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665b: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f5: Blueprint/train car operations UI window
    - Pull request #886 at 6c0785b6cb: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81b: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf2: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f91346: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bfd: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e4: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at fc1ac91347: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbec: Default Asset Improvements
    - Pull request #927 at a28da458b3: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9f: Add support for common circuit breaker variants
    - Pull request #937 at bf4a254f35: Adds missing API cab controls to Manual

commit bf4a254f35583e27d132f8c235f027522edf1b9e
Author: Chris Jakeman <github@jakeman.plus.com>
Date:   Wed Apr 24 20:21:27 2024 +0100

    adds webpage image

commit 09f0ad3493561e3beb043c376c67819f7750e5d5
Author: Chris Jakeman <github@jakeman.plus.com>
Date:   Wed Apr 24 19:42:48 2024 +0100

    adds POST for /API/CABCONTROLS

commit 3eda6e23756cde930cea3c75214625c4c8743ae1
Merge: 59d423b10 6ac96f9f0 3539862b4 dfc715e50 d00beb983 f92de7665 3ca0eb19f 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e fc1ac9134 6c2c3cdbe a28da458b a406a69d9
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Tue Apr 23 05:53:07 2024 +0100

    Automatic merge of T1.5.1-942-g6ac96f9f00 and 15 pull requests

    - Pull request #570 at 3539862b48: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at dfc715e503: Consolidated wind simulation
    - Pull request #839 at d00beb9833: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665b: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f5: Blueprint/train car operations UI window
    - Pull request #886 at 6c0785b6cb: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81b: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf2: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f91346: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bfd: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e4: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at fc1ac91347: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbec: Default Asset Improvements
    - Pull request #927 at a28da458b3: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9f: Add support for common circuit breaker variants

commit fc1ac91347779fcc9c372c6a72c3ed3ea5550a23
Author: peternewell <peter_new123@yahoo.com.au>
Date:   Tue Apr 23 14:39:30 2024 +1000

    Correct issue with default track sound not turning back on again after curve

commit 59d423b10816a73040eeb17944859e56c68401b0
Merge: 18de48145 6ac96f9f0 3539862b4 dfc715e50 d00beb983 f92de7665 3ca0eb19f 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e e75be0cc2 6c2c3cdbe a28da458b a406a69d9
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Mon Apr 22 08:38:48 2024 +0100

    Automatic merge of T1.5.1-942-g6ac96f9f00 and 15 pull requests

    - Pull request #570 at 3539862b48: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at dfc715e503: Consolidated wind simulation
    - Pull request #839 at d00beb9833: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665b: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f5: Blueprint/train car operations UI window
    - Pull request #886 at 6c0785b6cb: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81b: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf2: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f91346: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bfd: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e4: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at e75be0cc2a: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbec: Default Asset Improvements
    - Pull request #927 at a28da458b3: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9f: Add support for common circuit breaker variants

commit 6ac96f9f00fa5f1e7d973b970e4bc0ff738f1889
Merge: 874405e71 7d048391f
Author: peternewell <40217763+peternewell@users.noreply.github.com>
Date:   Mon Apr 22 17:32:50 2024 +1000

    Merge pull request #935 from peternewell/diesel-mechanic-bug

    Correct bug created in diesel electric locomotive

commit 18de481458accfaab1b93e0c0e64200caa85f60c
Merge: f1a1e9604 874405e71 3539862b4 dfc715e50 d00beb983 f92de7665 3ca0eb19f 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e e75be0cc2 6c2c3cdbe a28da458b a406a69d9 7d048391f
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Sat Apr 20 22:23:10 2024 +0100

    Automatic merge of T1.5.1-940-g874405e715 and 16 pull requests

    - Pull request #570 at 3539862b48: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at dfc715e503: Consolidated wind simulation
    - Pull request #839 at d00beb9833: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665b: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f5: Blueprint/train car operations UI window
    - Pull request #886 at 6c0785b6cb: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81b: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf2: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f91346: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bfd: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e4: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at e75be0cc2a: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbec: Default Asset Improvements
    - Pull request #927 at a28da458b3: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9f: Add support for common circuit breaker variants
    - Pull request #935 at 7d048391fe: Correct bug created in diesel electric locomotive

commit 7d048391fe4cfdd1e082e0ec2504292e15204bd2
Author: peternewell <peter_new123@yahoo.com.au>
Date:   Sun Apr 21 07:18:49 2024 +1000

    Correct bug created in diesel electric locomotive

commit 874405e7158c1e2e39c9435d7bcabe29b5574545
Merge: 6ef2a671f 9a07b4e4c
Author: peternewell <40217763+peternewell@users.noreply.github.com>
Date:   Fri Apr 19 08:24:04 2024 +1000

    Merge pull request #925 from peternewell/brake_bug

    Fix brakeshoe force bug

commit f1a1e9604d0f16d8af541e8f29e716a4a0de16ac
Merge: b06551f85 6ef2a671f 3539862b4 dfc715e50 d00beb983 f92de7665 3ca0eb19f 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e e75be0cc2 6c2c3cdbe 9a07b4e4c a28da458b a406a69d9
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Thu Apr 18 05:38:08 2024 +0100

    Automatic merge of T1.5.1-936-g6ef2a671fa and 16 pull requests

    - Pull request #570 at 3539862b48: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at dfc715e503: Consolidated wind simulation
    - Pull request #839 at d00beb9833: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665b: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f5: Blueprint/train car operations UI window
    - Pull request #886 at 6c0785b6cb: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81b: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf2: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f91346: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bfd: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e4: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at e75be0cc2a: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbec: Default Asset Improvements
    - Pull request #925 at 9a07b4e4c1: Fix brakeshoe force bug
    - Pull request #927 at a28da458b3: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9f: Add support for common circuit breaker variants

commit 9a07b4e4c11535b4b8e70b7c1f710dc143825773
Author: peternewell <peter_new123@yahoo.com.au>
Date:   Thu Apr 18 14:32:35 2024 +1000

    Further correction

commit 5d376eba5a44d75f7690e4099acbed3369c61190
Author: peternewell <peter_new123@yahoo.com.au>
Date:   Thu Apr 18 14:28:26 2024 +1000

    Correct an inconsistency

commit b06551f8523872810959c7ab7301c8bd68ce856b
Merge: 0d7808e15 6ef2a671f 3539862b4 dfc715e50 d00beb983 f92de7665 3ca0eb19f 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e e75be0cc2 6c2c3cdbe e3b1688f7 a28da458b a406a69d9
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Thu Apr 18 02:08:07 2024 +0100

    Automatic merge of T1.5.1-936-g6ef2a671fa and 16 pull requests

    - Pull request #570 at 3539862b48: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at dfc715e503: Consolidated wind simulation
    - Pull request #839 at d00beb9833: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665b: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f5: Blueprint/train car operations UI window
    - Pull request #886 at 6c0785b6cb: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81b: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf2: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f91346: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bfd: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e4: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at e75be0cc2a: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbec: Default Asset Improvements
    - Pull request #925 at e3b1688f71: Fix brakeshoe force bug
    - Pull request #927 at a28da458b3: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9f: Add support for common circuit breaker variants

commit a28da458b36670745661b1545d83807a8869bd50
Author: Phillip Schlichting <phillip@stlouisrc.com>
Date:   Wed Apr 17 20:04:06 2024 -0500

    Remove seemingly redundant calls to raise pantograph

commit 6ef2a671fa0c8b3999fb5b92e63a3f1a1299e0be
Merge: 90dc329c8 a3f56f444
Author: peternewell <40217763+peternewell@users.noreply.github.com>
Date:   Thu Apr 18 06:26:17 2024 +1000

    Merge pull request #933 from peternewell/diesel-mechanic-bug

    Fix AI DM crashing

commit 90dc329c8ebcb9e61cd0ec26b346c7c2a2ef7bfd
Merge: de7a2ff66 42398f448
Author: peternewell <40217763+peternewell@users.noreply.github.com>
Date:   Thu Apr 18 06:23:36 2024 +1000

    Merge pull request #930 from peternewell/duplex-steam#2

    Further enhancements for duplex locoomotive

commit 6573b5fafb4821768c1427a4e16f389db2564d34
Author: rwf-rr <rwfischer@hotmail.com>
Date:   Tue Apr 16 13:12:35 2024 -0700

    Fix bug 1944070: ContentManager search exception.

commit 0d7808e15ba9af6f314dd78ff746efc3b78aa85c
Merge: 299cbe172 de7a2ff66 3539862b4 dfc715e50 d00beb983 f92de7665 3ca0eb19f 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e e75be0cc2 6c2c3cdbe e3b1688f7 7bce293f1 a406a69d9 42398f448 a3f56f444
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Mon Apr 15 06:53:08 2024 +0100

    Automatic merge of T1.5.1-932-gde7a2ff663 and 18 pull requests

    - Pull request #570 at 3539862b48: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at dfc715e503: Consolidated wind simulation
    - Pull request #839 at d00beb9833: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665b: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f5: Blueprint/train car operations UI window
    - Pull request #886 at 6c0785b6cb: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81b: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf2: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f91346: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bfd: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e4: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at e75be0cc2a: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbec: Default Asset Improvements
    - Pull request #925 at e3b1688f71: Fix brakeshoe force bug
    - Pull request #927 at 7bce293f11: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9f: Add support for common circuit breaker variants
    - Pull request #930 at 42398f4482: Further enhancements for duplex locoomotive
    - Pull request #933 at a3f56f444f: Fix AI DM crashing

commit e75be0cc2ae889e12667261dbf48e62a20fee17d
Author: peternewell <peter_new123@yahoo.com.au>
Date:   Mon Apr 15 15:38:20 2024 +1000

    Add extra sound triggers for curve squeal

commit 299cbe17230121992b36fc03622d0f6f0fe4c86e
Merge: 1728ada33 de7a2ff66 3539862b4 dfc715e50 d00beb983 f92de7665 3ca0eb19f 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 7bce293f1 a406a69d9 42398f448 a3f56f444
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Sat Apr 13 15:23:24 2024 +0100

    Automatic merge of T1.5.1-932-gde7a2ff663 and 18 pull requests

    - Pull request #570 at 3539862b48: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at dfc715e503: Consolidated wind simulation
    - Pull request #839 at d00beb9833: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665b: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f5: Blueprint/train car operations UI window
    - Pull request #886 at 6c0785b6cb: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81b: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf2: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f91346: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bfd: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e4: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629d: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbec: Default Asset Improvements
    - Pull request #925 at e3b1688f71: Fix brakeshoe force bug
    - Pull request #927 at 7bce293f11: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9f: Add support for common circuit breaker variants
    - Pull request #930 at 42398f4482: Further enhancements for duplex locoomotive
    - Pull request #933 at a3f56f444f: Fix AI DM crashing

commit de7a2ff663128799001ba84f70a9a249b9fb2a8a
Merge: 9e1a7ece3 9bdb07456
Author: James Ross <twpol@users.noreply.github.com>
Date:   Sat Apr 13 15:17:10 2024 +0100

    Merge pull request #932 from cjakeman/fix-spelling

    Changed matrix's to matrices

commit 9e1a7ece3877b133a520c2a0605a7c8c175a872e
Merge: 1c557094e 97d4569b9
Author: James Ross <twpol@users.noreply.github.com>
Date:   Sat Apr 13 15:11:53 2024 +0100

    Merge pull request #910 from twpol/feature/portability

    Allow building code using .NET 6 (Windows)

commit 1728ada331a15cf282f4387991f49abcadb73825
Merge: 01ad93c6f 1c557094e 3539862b4 dfc715e50 d00beb983 f92de7665 3ca0eb19f 0a956f544 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 7bce293f1 a406a69d9 42398f448 9bdb07456 a3f56f444
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Fri Apr 12 04:23:28 2024 +0100

    Automatic merge of T1.5.1-925-g1c557094e and 20 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at dfc715e50: Consolidated wind simulation
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at 0a956f544: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f9134: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at 7bce293f1: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9: Add support for common circuit breaker variants
    - Pull request #930 at 42398f448: Further enhancements for duplex locoomotive
    - Pull request #932 at 9bdb07456: Changed matrix's to matrices
    - Pull request #933 at a3f56f444: Fix AI DM crashing

commit a3f56f444f92342ebf50a3d1046a2cb4e4862f7c
Author: peternewell <peter_new123@yahoo.com.au>
Date:   Fri Apr 12 13:06:35 2024 +1000

    Fix AI DM crashing

commit 01ad93c6f887964cff1047ef5e4b9b7278a222ff
Merge: edf4ea905 1c557094e 3539862b4 dfc715e50 d00beb983 f92de7665 3ca0eb19f 0a956f544 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 7bce293f1 a406a69d9 42398f448 9bdb07456
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Thu Apr 11 21:08:20 2024 +0100

    Automatic merge of T1.5.1-925-g1c557094e and 19 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at dfc715e50: Consolidated wind simulation
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at 0a956f544: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f9134: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at 7bce293f1: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9: Add support for common circuit breaker variants
    - Pull request #930 at 42398f448: Further enhancements for duplex locoomotive
    - Pull request #932 at 9bdb07456: Changed matrix's to matrices

commit edf4ea9058ae0a51a6b8d2e929ad7323522c3e40
Merge: d593c104e 1c557094e 3539862b4 6a55f3bad d00beb983 f92de7665 3ca0eb19f 0a956f544 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 7bce293f1 a406a69d9 42398f448 9bdb07456
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Thu Apr 11 20:53:13 2024 +0100

    Automatic merge of T1.5.1-925-g1c557094e and 19 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at 6a55f3bad: Consolidated wind simulation
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at 0a956f544: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f9134: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at 7bce293f1: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9: Add support for common circuit breaker variants
    - Pull request #930 at 42398f448: Further enhancements for duplex locoomotive
    - Pull request #932 at 9bdb07456: Changed matrix's to matrices

commit d593c104eb36c79dcc140ea9014801e0b79abaa3
Merge: 07a773ba2 1c557094e 3539862b4 1a70945a1 d00beb983 f92de7665 3ca0eb19f 0a956f544 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 7bce293f1 a406a69d9 42398f448 9bdb07456
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Thu Apr 11 20:08:51 2024 +0100

    Automatic merge of T1.5.1-925-g1c557094e and 19 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #799 at 1a70945a1: Consolidated wind simulation
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at 0a956f544: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f9134: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at 7bce293f1: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9: Add support for common circuit breaker variants
    - Pull request #930 at 42398f448: Further enhancements for duplex locoomotive
    - Pull request #932 at 9bdb07456: Changed matrix's to matrices

commit dfc715e503d2234b030bd8955a4c6e414603e669
Author: James Ross <git@james-ross.co.uk>
Date:   Thu Apr 11 20:04:44 2024 +0100

    feat: Make precipitation response to camera movement

commit 6a55f3bad7f83991c49435167a27aacb75a64937
Author: James Ross <git@james-ross.co.uk>
Date:   Thu Apr 11 20:02:12 2024 +0100

    fix: Correct cloud movements against camera

commit 1a70945a1d39cf8f2979b8c4bcf96c8c17822563
Author: James Ross <git@james-ross.co.uk>
Date:   Tue Apr 9 23:15:48 2024 +0100

    fix: Move daylight offset entirely into Viewer

commit 0daa2d481a4af13ed43d0ec1c7d1816a4148185c
Merge: dc0385072 1c557094e
Author: James Ross <git@james-ross.co.uk>
Date:   Tue Apr 9 21:51:03 2024 +0100

    Merge branch 'master' into feature/one-true-wind

commit 07a773ba273759bf934b84bee426e872c4c51a4b
Merge: 7ead948e4 1c557094e 3539862b4 d00beb983 f92de7665 3ca0eb19f 0a956f544 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 7bce293f1 a406a69d9 42398f448 9bdb07456
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Sun Apr 7 18:37:55 2024 +0100

    Automatic merge of T1.5.1-925-g1c557094e and 18 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at 0a956f544: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f9134: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at 7bce293f1: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9: Add support for common circuit breaker variants
    - Pull request #930 at 42398f448: Further enhancements for duplex locoomotive
    - Pull request #932 at 9bdb07456: Changed matrix's to matrices

commit 9bdb07456365823e6bcf7d18ed8c3fc56ff6a24c
Author: Chris Jakeman <github@jakeman.plus.com>
Date:   Sun Apr 7 14:23:34 2024 +0100

    Changed matrix's to matrices

commit 7ead948e4a8f7e059fa69e3112670969dfa77f7a
Merge: 19c78df2b 1c557094e 3539862b4 d00beb983 f92de7665 3ca0eb19f 0a956f544 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 7bce293f1 a406a69d9 42398f448
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Sat Apr 6 12:08:00 2024 +0100

    Automatic merge of T1.5.1-925-g1c557094e and 17 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at 0a956f544: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f9134: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at 7bce293f1: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9: Add support for common circuit breaker variants
    - Pull request #930 at 42398f448: Further enhancements for duplex locoomotive

commit 19c78df2b9a5cddf37a71b5f4abcf564ed88cba5
Merge: 48064051b 1c557094e 3539862b4 d00beb983 f92de7665 3ca0eb19f 0a956f544 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 7bce293f1 a406a69d9 42398f448 2bf6952ea
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Sat Apr 6 11:23:15 2024 +0100

    Automatic merge of T1.5.1-925-g1c557094e and 18 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at 0a956f544: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f9134: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at 7bce293f1: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9: Add support for common circuit breaker variants
    - Pull request #930 at 42398f448: Further enhancements for duplex locoomotive
    - Pull request #931 at 2bf6952ea: Orge

commit 0a956f5441f7d501a2363fef46de7b2f97bfe73c
Author: Chris Jakeman <github@jakeman.plus.com>
Date:   Sat Apr 6 11:21:36 2024 +0100

    Adds IncludesAllOf() and ExcludesAnyOf().
    Adds local menu_test.json for testing changes.

commit 48064051ba9e823c0e83bbde48f365cc2d399e5e
Merge: 150725c35 1c557094e 3539862b4 d00beb983 f92de7665 3ca0eb19f fb6b81207 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 7bce293f1 a406a69d9 42398f448 2bf6952ea
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Wed Apr 3 21:08:12 2024 +0100

    Automatic merge of T1.5.1-925-g1c557094e and 18 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at fb6b81207: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f9134: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at 7bce293f1: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9: Add support for common circuit breaker variants
    - Pull request #930 at 42398f448: Further enhancements for duplex locoomotive
    - Pull request #931 at 2bf6952ea: Orge

commit 2bf6952eaf6c6bed50dbc4f56615777bcac76607
Merge: 80b9ad9d6 1c557094e
Author: wjcurrey <60398282+wjcurrey@users.noreply.github.com>
Date:   Wed Apr 3 12:50:17 2024 -0700

    Merge branch 'openrails:master' into Orge

commit 150725c35a7c784e9d4adfd917fb82130f63c7da
Merge: 0e5b0ec56 1c557094e 3539862b4 d00beb983 f92de7665 3ca0eb19f fb6b81207 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 7bce293f1 a406a69d9 42398f448
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Tue Apr 2 05:08:02 2024 +0100

    Automatic merge of T1.5.1-925-g1c557094e and 17 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at fb6b81207: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f9134: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at 7bce293f1: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9: Add support for common circuit breaker variants
    - Pull request #930 at 42398f448: Further enhancements for duplex locoomotive

commit 42398f4482f56272cfd242abe26991fd77b20232
Author: peternewell <peter_new123@yahoo.com.au>
Date:   Tue Apr 2 14:57:31 2024 +1100

    Further enhancements for duplex locoomotive

commit 96eff0876a3f666ce0cb9f5d588b555d21b5fcbc
Author: Chris Jakeman <github@jakeman.plus.com>
Date:   Mon Apr 1 14:41:53 2024 +0100

    Refactoring, respects userSettings, adds read from file for testing menu.json

commit 0e5b0ec565a90c9e9ad9ac2eb429fbc72a75271a
Merge: 8943de820 1c557094e 3539862b4 d00beb983 f92de7665 3ca0eb19f fb6b81207 6c0785b6c 1f5ba4c81 5866028cf 7af1f9134 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 7bce293f1 a406a69d9
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Mon Apr 1 13:53:22 2024 +0100

    Automatic merge of T1.5.1-925-g1c557094e and 16 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at fb6b81207: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 7af1f9134: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at 7bce293f1: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9: Add support for common circuit breaker variants

commit 7af1f9134696b677e664060c89baa7233e32014e
Author: sweiland-openrails <118388365+sweiland-openrails@users.noreply.github.com>
Date:   Mon Apr 1 14:48:33 2024 +0200

    Fixes:

    [*]The default install path should be "{Documents}\Open Rails\Content" like other games
    [*]The install path does not get created when it does not exist
    [*]The install path setting does not seem to save as expected
    [*]The question dialogs should use "Yes" / "No" buttons

commit 8943de820784c8b0ab5f51b0314f7b3777c8db89
Merge: d98c096fd 1c557094e 3539862b4 d00beb983 f92de7665 3ca0eb19f fb6b81207 6c0785b6c 1f5ba4c81 5866028cf 29f3d1a31 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 7bce293f1 a406a69d9
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Sat Mar 30 18:07:53 2024 +0000

    Automatic merge of T1.5.1-925-g1c557094e and 16 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at fb6b81207: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 29f3d1a31: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at 7bce293f1: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9: Add support for common circuit breaker variants

commit 7bce293f11de3be91598d0a7d34dceb0fd23333a
Author: Phillip Schlichting <phillip@stlouisrc.com>
Date:   Sat Mar 30 13:03:21 2024 -0500

    Force AI trains to turn on power supply

commit d98c096fd5ed53f1c8f35b9a7aa088f9bd1a3b1e
Merge: 7b741723c 1c557094e 3539862b4 d00beb983 f92de7665 3ca0eb19f fb6b81207 6c0785b6c 1f5ba4c81 5866028cf 29f3d1a31 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 cf687d4f4 a406a69d9
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Fri Mar 29 16:38:04 2024 +0000

    Automatic merge of T1.5.1-925-g1c557094e and 16 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at fb6b81207: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 29f3d1a31: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at cf687d4f4: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9: Add support for common circuit breaker variants

commit fb6b81207986870915a74607efa259c5810c9433
Author: Chris Jakeman <github@jakeman.plus.com>
Date:   Fri Mar 29 16:26:22 2024 +0000

    Fix for bug in CheckExcludes() and CheckIncludes()

commit 7b741723c9b15a6c94e065e93131a1e3598e84a4
Merge: 9495a22ef 1c557094e 3539862b4 d00beb983 f92de7665 3ca0eb19f 42092cbfe 6c0785b6c 1f5ba4c81 5866028cf 29f3d1a31 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 cf687d4f4 a406a69d9
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Fri Mar 29 10:52:56 2024 +0000

    Automatic merge of T1.5.1-925-g1c557094e and 16 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at 42092cbfe: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 29f3d1a31: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at cf687d4f4: AI Train Power Supply/Lights Fix
    - Pull request #929 at a406a69d9: Add support for common circuit breaker variants

commit a406a69d9fbbf780eb5756e377cbcde0b63ede3d
Author: César Benito Lamata <cesarbema2009@hotmail.com>
Date:   Fri Mar 29 11:31:56 2024 +0100

    Officially support common circuit breaker variants

commit 1c557094e6e0f147c728c1a5a22d9d0744cc8d1d
Merge: 0a17d985e 9f2f22099
Author: Phillip Schlichting <73207352+SteelFill@users.noreply.github.com>
Date:   Thu Mar 28 10:22:13 2024 -0500

    Merge pull request #928 from SteelFill/dpu_brakes

    Fix Missing Initializations From Copy() in MSTSLocomotive

commit 9495a22ef7371af69710430d50abb0130f2a8118
Merge: a0dc4833d 0a17d985e 3539862b4 d00beb983 f92de7665 3ca0eb19f 42092cbfe 6c0785b6c 1f5ba4c81 5866028cf 29f3d1a31 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 cf687d4f4 9f2f22099
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Thu Mar 28 13:22:54 2024 +0000

    Automatic merge of T1.5.1-922-g0a17d985e and 16 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at 42092cbfe: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 29f3d1a31: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at cf687d4f4: AI Train Power Supply/Lights Fix
    - Pull request #928 at 9f2f22099: Fix Missing Initializations From Copy in MSTSLocomotive

commit 9f2f22099a8e753a57b4eed63f6c9684d9418e56
Author: Phillip Schlichting <73207352+SteelFill@users.noreply.github.com>
Date:   Thu Mar 28 08:21:58 2024 -0500

    Fix DoesVacuumBrakeCutPower Line

commit a0dc4833d2f7f8282d5e954b7ec754b0e7a75804
Merge: bd059995b 0a17d985e 3539862b4 d00beb983 f92de7665 3ca0eb19f 42092cbfe 6c0785b6c 1f5ba4c81 5866028cf 29f3d1a31 f7b85e4bf 26cc6a82e cc1b5b629 6c2c3cdbe e3b1688f7 cf687d4f4 1f2351239
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Mon Mar 25 06:37:52 2024 +0000

    Automatic merge of T1.5.1-922-g0a17d985e and 16 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at 42092cbfe: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 29f3d1a31: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at cc1b5b629: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at cf687d4f4: AI Train Power Supply/Lights Fix
    - Pull request #928 at 1f2351239: Fix Missing Initializations From Copy in MSTSLocomotive

commit cc1b5b629df1ff793b7da3dc576ec4d3e0ebcf42
Author: peternewell <peter_new123@yahoo.com.au>
Date:   Mon Mar 25 17:35:55 2024 +1100

    Extra curve squeal variables

commit bd059995b0c5b3d6a6aaf452912a204c80c305d2
Merge: 080e38c0b 0a17d985e 3539862b4 d00beb983 f92de7665 3ca0eb19f 42092cbfe 6c0785b6c 1f5ba4c81 5866028cf 29f3d1a31 f7b85e4bf 26cc6a82e 54890251b 6c2c3cdbe e3b1688f7 cf687d4f4 1f2351239
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Mon Mar 25 05:53:11 2024 +0000

    Automatic merge of T1.5.1-922-g0a17d985e and 16 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at 42092cbfe: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 29f3d1a31: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at 54890251b: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at cf687d4f4: AI Train Power Supply/Lights Fix
    - Pull request #928 at 1f2351239: Fix Missing Initializations From Copy in MSTSLocomotive

commit 54890251b2c1db983c5e6a6ba863edbc3a29abb0
Author: peternewell <peter_new123@yahoo.com.au>
Date:   Mon Mar 25 16:42:15 2024 +1100

    Add ramp up and down to curve squeal.

commit 080e38c0b1482dffe4addef7dc2222ede43990a7
Merge: ce56f6e47 0a17d985e 3539862b4 d00beb983 f92de7665 3ca0eb19f 42092cbfe 6c0785b6c 1f5ba4c81 5866028cf 29f3d1a31 f7b85e4bf 26cc6a82e e0f3c55d8 6c2c3cdbe e3b1688f7 cf687d4f4 1f2351239
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Sun Mar 24 17:08:04 2024 +0000

    Automatic merge of T1.5.1-922-g0a17d985e and 16 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at 42092cbfe: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 29f3d1a31: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at e0f3c55d8: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at cf687d4f4: AI Train Power Supply/Lights Fix
    - Pull request #928 at 1f2351239: Fix Missing Initializations From Copy in MSTSLocomotive

commit 42092cbfe1f334868564f1cb077bbeb8fea2da92
Author: Chris Jakeman <github@jakeman.plus.com>
Date:   Sun Mar 24 17:03:25 2024 +0000

    Change "New Version" to "Latest Version".
    Fetch from /notifications/menu.json instead of /notifications.json

commit ce56f6e4737d84ece5500ebdf6a5916b7dcd278a
Merge: fda6310c9 0a17d985e 3539862b4 d00beb983 f92de7665 3ca0eb19f 03d4a5255 6c0785b6c 1f5ba4c81 5866028cf 29f3d1a31 f7b85e4bf 26cc6a82e e0f3c55d8 6c2c3cdbe e3b1688f7 cf687d4f4 1f2351239
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Date:   Sun Mar 24 04:22:51 2024 +0000

    Automatic merge of T1.5.1-922-g0a17d985e and 16 pull requests

    - Pull request #570 at 3539862b4: Experimental glTF 2.0 support with PBR lighting
    - Pull request #839 at d00beb983: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
    - Pull request #876 at f92de7665: docs: add source for documents previously on website to source Documentation folder
    - Pull request #882 at 3ca0eb19f: Blueprint/train car operations UI window
    - Pull request #885 at 03d4a5255: feat: Add notifications to Menu
    - Pull request #886 at 6c0785b6c: Scene viewer extension to TrackViewer
    - Pull request #892 at 1f5ba4c81: Signal Function OPP_SIG_ID_TRAINPATH
    - Pull request #896 at 5866028cf: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
    - Pull request #903 at 29f3d1a31: Downloading route content (Github, zip)
    - Pull request #912 at f7b85e4bf: New Triple Valve Features Vol. 2
    - Pull request #919 at 26cc6a82e: Added mouse wheel support for controls which can be moved by pressing t…
    - Pull request #923 at e0f3c55d8: Add curve squeal to route
    - Pull request #924 at 6c2c3cdbe: Default Asset Improvements
    - Pull request #925 at e3b1688f7: Fix brakeshoe force bug
    - Pull request #927 at cf687d4f4: AI Train Power Supply/Lights Fix
    - Pull request #928 at 1f2351239: Fix Missing Initializations From Copy in MSTSLocomotive

commit 1f23512394b6cc77c8219574374a2bedacd42821
Author: Phillip Schlichting <phillip@stlouisrc.com>
Date:   Sat Mar 23 22:39:55 2024 -0500

    Fix initialization of multiple parameters by copying from loaded engine

commit fda6310c9796e84a36654699d697c8fdd79adc5f
Merge: fc6640f7b 0a17d985e 3539862b4 d00beb983 f92de7665 3ca0eb19f 03d4a5255 6c0785b6c 1f5ba4c81 5866028cf 29f3d1a31 f7b85e4bf 26cc6a82e e0f3c55d8 6c2c3cdbe e3b1688f7 cf687d4f4
Author: Open Rails Code Bot <openrails-code-bot@james-ross.co.uk>
Dat…
twpol pushed a commit that referenced this pull request Apr 30, 2024
- Pull request #570 at 3539862: Experimental glTF 2.0 support with PBR lighting
- Pull request #799 at dfc715e: Consolidated wind simulation
- Pull request #839 at d00beb9: First phase of https://blueprints.launchpad.net/or/+spec/additional-cruise-control-parameters
- Pull request #876 at f92de76: docs: add source for documents previously on website to source Documentation folder
- Pull request #882 at 3ca0eb1: Blueprint/train car operations UI window
- Pull request #886 at 6c0785b: Scene viewer extension to TrackViewer
- Pull request #892 at 1f5ba4c: Signal Function OPP_SIG_ID_TRAINPATH
- Pull request #896 at 5866028: First implementation of https://blueprints.launchpad.net/or/+spec/specific-sounds-for-ai-trains
- Pull request #903 at 7af1f91: Downloading route content (Github, zip)
- Pull request #912 at 6b9fca4: New Triple Valve Features Vol. 2
- Pull request #919 at 26cc6a8: Added mouse wheel support for controls which can be moved by pressing t…
- Pull request #923 at fc1ac91: Add curve squeal to route
- Pull request #924 at 6c2c3cd: Default Asset Improvements
- Pull request #927 at a28da45: AI Train Power Supply/Lights Fix
- Pull request #929 at a406a69: Add support for common circuit breaker variants
- Pull request #938 at ebe8047: Fix Missing Initializations From Copy in MSTSWagon.cs
@pzgulyas pzgulyas added the not-for-unstable Special label to exclude a pull request from the Unstable Version label Apr 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request not-for-unstable Special label to exclude a pull request from the Unstable Version
7 participants