Skip to content

0.2.1

Latest

Choose a tag to compare

@github-actions github-actions released this 24 Jul 13:42
· 27 commits to master since this release
0250332

Install

Linux

The artifact is an AppImage — a single self-contained executable. Download it, extract, and drop it on your PATH as lgpd (swap x86_64 for aarch64 on ARM):

wget https://github.com/logos-co/logos-package-downloader/releases/download/0.2.1/lgpd-x86_64-linux.tar.gz
tar -xvf lgpd-x86_64-linux.tar.gz
mkdir -p ~/.local/bin
install -m755 lgpd-x86_64.AppImage ~/.local/bin/lgpd
# make sure ~/.local/bin is on your PATH (add this to ~/.bashrc or ~/.zshrc):
export PATH="$HOME/.local/bin:$PATH"

Now lgpd runs from anywhere. (If you hit a FUSE error, run it as APPIMAGE_EXTRACT_AND_RUN=1 lgpd.)

macOS (Apple Silicon)

Download from the terminal with wget or curlnot a web browser. Browsers tag downloads with com.apple.quarantine, which makes Gatekeeper block this unsigned binary. Fetching over the terminal and extracting with tar never sets that flag, so the binary runs as-is — no signing or notarization needed.

wget https://github.com/logos-co/logos-package-downloader/releases/download/0.2.1/lgpd-aarch64-macos.tar.gz
tar -xvf lgpd-aarch64-macos.tar.gz
# move the whole folder somewhere permanent (keep its contents together —
# the binary finds its libraries via ../lib) and put its bin/ on your PATH:
mv lgpd-aarch64-macos ~/.local/lgpd
echo 'export PATH="$HOME/.local/lgpd/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc

Now lgpd runs from anywhere.

What's Changed

  • add docs by @iurimatias in #10
  • feat: add support for display_name in manifest files by @Khushboo-dev-cpp in #12
  • chore: update logos-package in flake.lock by @Khushboo-dev-cpp in #13
  • fix: resolve CA bundle from system paths so portable builds can fetch over HTTPS by @dlipicar in #14
  • Report version and commit in lgpd --version by @dlipicar in #15
  • fix: rank catalog versions by semver precedence, not by release date by @dlipicar in #17
  • fix: a top-level pinned dep is not re-resolved to newest as a transitive dep by @dlipicar in #18
  • feat: enable deleting and adding back the default repo by @Khushboo-dev-cpp in #19

Full Changelog: pre-release-99d70db-7...0.2.1