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

Augment error message when opening files for external tools #899

Merged
merged 9 commits into from
Jun 23, 2022

Commits on May 13, 2022

  1. Augment error message when opening files for external tools

    I missed a publication file when compiling a very old document using
    biber.  The only error message I got was
    
        error: not found
    
    which isn't very helpful.  I've tried to augment the error, now it shows
    
        error: can't open path `pub.bib`: not found
    
    Hope this is helpful.
    matz-e committed May 13, 2022
    Configuration menu
    Copy the full SHA
    bcb3257 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2022

  1. Make clippy happy

    matz-e committed May 14, 2022
    Configuration menu
    Copy the full SHA
    3ae1fc4 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2022

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

Commits on May 19, 2022

  1. Switch to ctry!

    matz-e committed May 19, 2022
    Configuration menu
    Copy the full SHA
    4295750 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2022

  1. xetex_layout: work around ICU limitations in Alpine 3.16

    The latest version of Alpine Linux seems to provide a static ICU that no
    longer has the "macintosh" converter built in. So don't error out if it
    fails to load; just hope that everything will be OK.
    pkgw committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    7e63f1b View commit details
    Browse the repository at this point in the history
  2. Cargo.lock: update deps

    pkgw committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    8797161 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    70a6232 View commit details
    Browse the repository at this point in the history
  4. Remove time_t from FFI APIs

    As per rust-lang/libc#1848, we can't safely do this since the definition
    of time_t depends on which version of Musl you're using on 32-bit
    systems (the "time64" update for Musl 1.2), and this actually started
    biting us on the arm-unknown-linux-musleabihf cross build.
    Unfortunately, ISO C makes virtually no guarantees about what time_t is,
    so I don't see a practical way to handle the different possibilities
    robustly. We'll just cast from i64 or u64 to time_t in C and hope for
    the best.
    pkgw committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    9fe378c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1493593 View commit details
    Browse the repository at this point in the history