Skip to content

Releases: PythonTilk/hyprnote

Hyprnote v0.0.63 - Linux Packages

14 Nov 21:58

Choose a tag to compare

Hyprnote v0.0.63 - Linux Packages

This release focuses on fixing and improving Linux packaging workflows for Hyprnote.

🐧 Linux Package Support

All three major Linux packaging formats are now fully functional:

  • Debian (.deb) - For Debian, Ubuntu, and derivatives
  • RPM (.rpm) - For Fedora, RHEL, openSUSE, and derivatives
  • Arch Linux (.pkg.tar.zst) - For Arch Linux and derivatives
  • AppImage - Universal Linux binary

🔧 Technical Changes

Arch Linux Packaging

  • Fixed: Binary not found during installation
    • Workflow was looking for hyprnote but the binary is compiled as desktop
    • Updated installation script to use correct binary name and rename appropriately
    • Commits: 5c7791c0

Debian/AppImage Packaging

  • Fixed: Missing webkit2gtk-4.1 dependencies
    • Root cause: Ubuntu 22.04 doesn't have webkit2gtk-4.1 required by Tauri v2
    • Solution: Upgraded CI runner from ubuntu-22.04 to ubuntu-24.04
    • Added proper libwebkit2gtk-4.1-dev dependency
    • Commits: a5461d17, 033b919c

RPM Packaging

  • Already working correctly, no changes needed

📦 Package Details

  • Version: 0.0.63
  • Build Date: November 2025
  • Architecture: x86_64

🛠️ Installation

Debian/Ubuntu

sudo dpkg -i Hyprnote\ Nightly_0.0.63_amd64.deb
sudo apt-get install -f  # Install dependencies if needed

Fedora/RHEL/openSUSE

sudo rpm -i Hyprnote\ Nightly-0.0.63-1.x86_64.rpm

Arch Linux

sudo pacman -U hyprnote-dev-0.0.63-1-x86_64.pkg.tar.zst

AppImage (Universal)

chmod +x Hyprnote\ Nightly_0.0.63_amd64.AppImage
./Hyprnote\ Nightly_0.0.63_amd64.AppImage

📝 Notes

  • This is a development/nightly build from the linux-development branch
  • All workflows are now passing and generating artifacts successfully
  • Tauri v2 requires webkit2gtk-4.1 (Ubuntu 24.04+ or equivalent)

🔗 Workflow Runs