jless 0.7.1

A command-line JSON viewer
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>jless - Command Line JSON Viewer</title>
    <meta name="og:title" content="jless - Command Line JSON Viewer" />
    <meta name="og:image" content="https://pauljuliusmartinez.github.io/assets/logo/text-logo-with-mascot-social.png" />
    <meta name="twitter:card" content="summary_large_image" />
    <meta name="twitter:creator" content="@CodeIsTheEnd" />
    <link rel="icon" href="./assets/logo/mascot.svg" type="image/svg+xml">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700&family=Roboto+Slab:wght@800&display=swap" rel="stylesheet">
    <style>
      * { box-sizing: border-box; }

      body {
        margin: 0 auto;
        padding: 16px;
        max-width: 800px;
        background-color: #f4f4f8;
        font-family: 'Fira Sans', sans-serif;
        font-size: 22px;
      }

      header {
        display: flex;
        align-items: center;
        flex-direction: column;
      }

      #text-logo-with-mascot {
        margin: 0 auto;
        max-width: min(540px, 100%);
      }

      h1, h2, h3, h4, h5, h6 {
        font-family: 'Roboto Slab', serif;
        font-weight: 700;
      }

      nav h3 { text-align: center; }

      nav {
        display: flex;
        justify-content: space-evenly;
        font-family: 'Roboto Slab', serif;
        font-weight: 700;
      }

      nav a {
        color: black;
      }

      .code-block {
        border: 1px solid black;
        border-radius: 4px;
        padding: 8px;
        width: 100%;
        overflow-x: auto;
        background-color: #eeeeee;
        white-space: pre;
        font-family: monospace;
        font-size: 16px;
      }

      .code-block .prefix {
        user-select: none;
      }

      code {
        position: relative;
        top: -2px;
        display: inline-block;
        border: 1px solid black;
        border-radius: 4px;
        margin: 0 2px;
        padding: 2px 4px;
        background-color: #eeeeee;
        font-size: 16px;
      }

      footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 14px;
      }

      footer img {
        width: max(25%, 160px);
      }

      @media (max-width: 540px) {
        body {
          font-size: 19px;
        }
      }
    </style>
  </head>
  <body>
    <header>
      <img id="text-logo-with-mascot" src="./assets/logo/text-logo-with-mascot.svg">
      <h2>jless — a command-line JSON viewer</h3>
    </header>
    <nav>
      <a href="./">About</a>
      <a href="./usage.html">User Guide</a>
      <a href="./releases.html">Releases</a>
      <a href="https://github.com/PaulJuliusMartinez/jless">GitHub</a>
    </nav>
    <h2 id="releases">Releases</h2>
    <h3>v0.7.1</h3>
    <h4>New features:</h4>
    <ul>
      <li>F1 now opens help page</li>
      <li>Search initialization commands (/, ?, *, #) all now accept count arguments</li>
    </ul>
    <h4>Internal code cleanup:</h4>
    <ul>
      <li>Address a lot of issues reported by clippy</li>
      <li>Remove chunks of unused code, including serde dependency</li>
      <li>Fix typos in help page</li>
    </ul>
    <h4>Binaries</h4>
    <div class="code-block"># macOS
https://github.com/PaulJuliusMartinez/jless/releases/download/v0.7.1/jless-v0.7.1-x86_64-apple-darwin.zip

# Linux
https://github.com/PaulJuliusMartinez/jless/releases/download/v0.7.1/jless-v0.7.1-x86_64-unknown-linux-gnu.zip</div>
    <p></p>
    <h3>v0.7.0</h3>
    <p>
      Introducing jless, a command-line JSON viewer.
    </p>
    <p>
      This release represents a significant milestone: a complete set of basic functionality, without any major bugs.
    </p>
    <p>
      <a href="https://github.com/PaulJuliusMartinez/jless/issues/1">This GitHub issue</a>
      details much of the functionality implemented to get to this point. Spiritually, completion of many of the tasks listed there represent versions 0.1 - 0.6.
    </p>
    <p>
      The intention is to not release a 1.0 version until Windows support is added.
    </p>
    <h4>Binaries</h4>
    <div class="code-block"># macOS
https://github.com/PaulJuliusMartinez/jless/releases/download/v0.7.0/jless-v0.7.0-x86_64-apple-darwin.zip

# Linux
https://github.com/PaulJuliusMartinez/jless/releases/download/v0.7.0/jless-v0.7.0-x86_64-unknown-linux-gnu.zip</div>
    <p></p>
    <footer>
      <img src="./assets/logo/mascot-peanut-butter-jelly-sandwich.svg">
      <div style="margin-top: 24px">
        Created by <a href="https://twitter.com/CodeIsTheEnd">CodeIsTheEnd</a>.
      </div>
    </footer>
  </body>
</html>