v0.8.0
moeru-ai/airiv0.8.0Dec 29, 2025by nekomeowww
AI Summary
The main v0.8.0 release, providing installation packages for macOS, Windows, and Linux, along with instructions for bypassing macOS code signing warnings.
Key Highlights
- Released installation packages for macOS, Windows, and Linux (Flatpak, deb, rpm).
- Included bypass command for macOS code signing warnings.
- Links to previous beta versions for data migration purposes.
New Features
- Installation packages for macOS, Windows, and Linux
- Data migration instructions for v0.8.0
Full Release Notes
## Installation ### macOS > [!TIP] > For macOS users, currently Apple requires all installed App to have code sign validated with Apple servers, > while we are working hard for enrolling the Apple Developer Program for correct code signing, this error message may be prompted > > Apple could not verify “AIRI.app” is free of malware that may harm your Mac or compromise your privacy. > > <img width="260" height="243" alt="image" src="https://github.com/user-attachments/assets/ee48e445-8ecb-4e64-a41e-0cc0126fc0c6" /> > > In such case, you can always bypass this by issuing this following command in Terminal.app or iTerm2.app > ```shell > sudo xattr -c '/Applications/airi.app' > ``` ### Windows Download and install. ### Linux <details> <summary>Flatpak (x86_64, x64, amd64)</summary> ```shell wget https://github.com/moeru-ai/airi/releases/download/v0.8.0/AIRI-0.8.0-linux-x64.flatpak flatpak install -u AIRI-0.8.0-linux-x64.flatpak rm -rf AIRI-0.8.0-linux-x64.flatpak ``` </details> <details> <summary>Flatpak (aarch64, arm64)</summary> ```shell wget https://github.com/moeru-ai/airi/releases/download/v0.8.0/AIRI-0.8.0-linux-arm64.flatpak flatpak install -u AIRI-0.8.0-linux-arm64.flatpak rm -rf AIRI-0.8.0-linux-arm64.flatpak ``` </details> <details> <summary>Debian / Ubuntu / <code>apt</code> / <code>dpkg</code> (x86_64, x64, amd64)</summary> ```shell wget https://github.com/moeru-ai/airi/releases/download/v0.8.0/AIRI-0.8.0-linux-amd64.deb sudo apt install AIRI-0.8.0-linux-amd64.deb rm -rf AIRI-0.8.0-linux-amd64.deb ``` </details> <details> <summary>Debian / Ubuntu / <code>apt</code> / <code>dpkg</code> (aarch64, arm64)</summary> ```shell wget https://github.com/moeru-ai/airi/releases/download/v0.8.0/AIRI-0.8.0-linux-arm64.deb sudo apt install AIRI-0.8.0-linux-arm64.deb rm -rf AIRI-0.8.0-linux-arm64.deb ``` </details> <details> <summary>Fedora / <code>rpm</code> / <code>dnf</code> (x86_64, x64, amd64)</summary> ```shell wget https://github.com/moeru-ai/airi/releases/download/v0.8.0/AIRI-0.8.0-linux-x86_64.rpm sudo dnf install AIRI-0.8.0-linux-x86_64.rpm rm -rf AIRI-0.8.0-linux-x86_64.rpm ``` </details> <details> <summary>Fedora / <code>rpm</code> / <code>dnf</code> (aarch64, arm64)</summary> ```shell wget https://github.com/moeru-ai/airi/releases/download/v0.8.0/AIRI-0.8.0-linux-aarch64.rpm sudo dnf install AIRI-0.8.0-linux-aarch64.rpm rm -rf AIRI-0.8.0-linux-aarch64.rpm ``` </details> https://github.com/moeru-ai/airi/compare/v0.8.0-alpha.2...v0.8.0-beta.8