Skip to content

Releases: swsnr/mdcat

mdcat-1.0.0

07 Jan 15:12
mdcat-1.0.0
d2999ef
Compare
Choose a tag to compare

Added

  • Add --detect-terminal to print the name of the detected terminal program (see GH-232).
  • Add --ansi to skip terminal detection and use ANSI-formatting only (see GH-232).

Changed

  • Replace ureq with reqwest (see GH-229).
    This implies that the default build now creates a binary linked against the system standard SSL library, i.e. openssl under Linux.
    A fully static build now requires --no-default-features --features static for cargo build.
  • Terminal detection always checks $TERM first and trusts its value if it denotes a specific terminal emulator (see GH-232).
  • Update all dependencies.

Fixed

  • Correctly detect kitty started from iTerm (see GH-230 and GH-232).

mdcat-0.30.3

01 Dec 21:44
mdcat-0.30.3
1a1678f
Compare
Choose a tag to compare

Fixed

  • Fix release workflow to restore release artifacts (see GH-218).

mdcat-0.30.1

29 Nov 08:58
mdcat-0.30.1
091062a
Compare
Choose a tag to compare

Fixed

  • Fix workflow syntax error to restore release artifacts.

mdcat-0.29.0

21 Oct 15:15
mdcat-0.29.0
b0aece3
Compare
Choose a tag to compare

Changed

Removed

  • Support for tree_magic_mini for mime-type detection; mdcat now only uses the file tool (see GH-204).

mdcat-0.28.0

14 Oct 09:38
Compare
Choose a tag to compare

Changed

  • Update all dependencies, in particular syntect to 5.0.0 and pulldown-cmark to 0.9.2.

mdcat-0.27.1

14 Oct 09:37
Compare
Choose a tag to compare

Fixed

  • Build error on Windows (see #201).

mdcat-0.27.0

14 Oct 09:37
Compare
Choose a tag to compare

Added

  • Add extensive tracing output, to aid debugging (see #147).

Changed

  • mdcat no longer invokes file to detect SVG images, but now requires the presence of a system-wide magic database (see #154).
    Disable default features to restore the previous behaviour to invoke file to detect mimetypes.

Fixed

  • File completion with zsh (see #198).

mdcat-0.26.0

12 Feb 14:42
Compare
Choose a tag to compare

Changed

  • Always output links as OSC-8 hyperlinks unless --dump is given.
    In particular, mdcat now prints hyperlinks if invoked as mdless or with -p, as recent less versions support OCS-8 hyperlinks (see GH-191).

mdcat-0.25.1

17 Jan 19:56
Compare
Choose a tag to compare

Changed

  • Update pulldown-cmark to 0.9.1 which fixes a minor parsing issue.

mdcat-0.25.0

23 Dec 17:34
Compare
Choose a tag to compare

Changed

  • Update pulldown-cmark to 0.9.
  • Buffer writes to terminal and pager, to reduce the amount of syscalls.