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: fuelen/owl
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.12.0
Choose a base ref
...
head repository: fuelen/owl
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 8 commits
  • 6 files changed
  • 2 contributors

Commits on Jan 25, 2025

  1. Avoid deprecation warning: List.zip -> Enum.zip (#29)

    ```
        warning: List.zip/1 is deprecated. Use Enum.zip/1 instead
        │
     78 │     |> List.zip()
        │             ~
        │
        └─ lib/owl/palette.ex:78:13: Owl.Palette.codes/0
    ```
    
    Enum.zip/1 is safe since forever afaik - only went back to 1.6 https://github.com/elixir-lang/elixir/blob/ddc554a7efef67f16e462709e7f46662f21f7ab5/lib/elixir/lib/enum.ex#L2711
    petermm authored Jan 25, 2025
    Copy the full SHA
    6087d71 View commit details
  2. Update deps

    fuelen committed Jan 25, 2025
    Copy the full SHA
    da0e5f3 View commit details
  3. Bump version to 0.12.1

    fuelen committed Jan 25, 2025
    Copy the full SHA
    2f9ed3a View commit details

Commits on Feb 8, 2025

  1. Fix rendering issues when the height of terminal < height of live blo…

    …cks, closes #30
    
    Even if blocks were idle, they were still counted as rendered, causing text overlap.
    fuelen committed Feb 8, 2025
    Copy the full SHA
    5f35983 View commit details
  2. Update deps

    fuelen committed Feb 8, 2025
    Copy the full SHA
    573a95f View commit details
  3. Use Enum.map + Enum.sum instead of Enum.sum_by to support older versions

    fuelen committed Feb 8, 2025
    Copy the full SHA
    486e6fa View commit details
  4. Add downloads badge to README

    fuelen committed Feb 8, 2025
    Copy the full SHA
    4b853eb View commit details

Commits on Feb 9, 2025

  1. Bump version to 0.12.2, require Elixir 1.14

    Elixir itself doesn't support lower Elixir versions + we CI for earlier
    versions is not set up as well
    fuelen committed Feb 9, 2025
    Copy the full SHA
    cb00897 View commit details
Loading