Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rust-lang/mdBook
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.4.27
Choose a base ref
...
head repository: rust-lang/mdBook
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.4.28
Choose a head ref
  • 10 commits
  • 7 files changed
  • 5 contributors

Commits on Jan 15, 2023

  1. Run preprocessors in mdbook test

    While adding support for translations[1] to Comprehensive Rust 🦀, I
    noticed that `mdbook test` doesn’t execute preprocessors the same way
    as `mdbook build`.
    
    This PR makes the two commands use the same code to find and execute
    preprocessors.
    
    [1]: google/comprehensive-rust#130
    mgeisler committed Jan 15, 2023
    Configuration menu
    Copy the full SHA
    b09aa0e View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2023

  1. Default the sidebar to visible in large screens

    The code here leads me to believe that the intention is for the sidebar
    to be default visible on large screens (where `clientWidth` > 1080) and
    hidden otherwise.
    
    However, as previously written, if the `localStorage.getItem` call fails
    (for example, if the user agent is not accepting cookies), then we fall
    back to `sidebar = sidebar || 'visible';` — but `sidebar` is already set
    to `hidden`, so the `|| 'visible'` never happens.
    
    This results in the sidebar hiding itself on every navigation through an
    mdBook, meaning if you're just switching between sections trying to find
    something that you keep needing to re-open the sidebar.
    thanatos committed Feb 11, 2023
    Configuration menu
    Copy the full SHA
    fa6aa2c View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2023

  1. Merge pull request #2017 from thanatos/roy/fix-sidebar

    Default the sidebar to visible in large screens
    ehuss authored Feb 13, 2023
    Configuration menu
    Copy the full SHA
    c15220d View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2023

  1. Update continuous-integration.md

    typo
    tshepang authored Feb 14, 2023
    Configuration menu
    Copy the full SHA
    26fc0da View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2025 from tshepang/patch-1

    Update continuous-integration.md
    ehuss authored Feb 14, 2023
    Configuration menu
    Copy the full SHA
    1668ab7 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2023

  1. Configuration menu
    Copy the full SHA
    f5f96bc View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2023

  1. Merge pull request #2039 from Skwodo/master

    Change overflow-x hidden to clip
    ehuss authored Mar 4, 2023
    Configuration menu
    Copy the full SHA
    703a215 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1986 from mgeisler/preprocessors-for-test

    Run preprocessors in `mdbook test`
    ehuss authored Mar 4, 2023
    Configuration menu
    Copy the full SHA
    4c59405 View commit details
    Browse the repository at this point in the history
  3. Update to 0.4.28

    ehuss committed Mar 4, 2023
    Configuration menu
    Copy the full SHA
    a4b4b8f View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2023

  1. Merge pull request #2042 from ehuss/bump-version

    Update to 0.4.28
    ehuss authored Mar 5, 2023
    Configuration menu
    Copy the full SHA
    efb671a View commit details
    Browse the repository at this point in the history
Loading