Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions scripts/build_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,8 +417,10 @@ def build(
output += f"""# Downloads

- [**Windows**](https://github.com/ActivityWatch/activitywatch/releases/download/{tag}/activitywatch-{tag}-windows-x86_64-setup.exe) (.exe, installer)
- [**macOS**](https://github.com/ActivityWatch/activitywatch/releases/download/{tag}/activitywatch-{tag}-macos-x86_64.dmg) (.dmg)
- [**Linux**](https://github.com/ActivityWatch/activitywatch/releases/download/{tag}/activitywatch-{tag}-linux-x86_64.zip) (.zip)
- [**macOS**](https://github.com/ActivityWatch/activitywatch/releases/download/{tag}/activitywatch-{tag}-macos-x86_64.dmg) (.dmg, Intel) / [Apple Silicon](https://github.com/ActivityWatch/activitywatch/releases/download/{tag}/activitywatch-{tag}-macos-arm64.dmg)
- [**Linux**](https://github.com/ActivityWatch/activitywatch/releases/download/{tag}/activitywatch-{tag}-linux-x86_64.zip) (.zip) / [.deb](https://github.com/ActivityWatch/activitywatch/releases/download/{tag}/activitywatch-{tag}-linux-x86_64.deb) / [AppImage](https://github.com/ActivityWatch/activitywatch/releases/download/{tag}/activitywatch-linux-x86_64.AppImage)

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 — The new AppImage link uses the filename pattern activitywatch-linux-x86_64.AppImage, but the actual release assets for ActivityWatch use a versioned pattern like activitywatch-{tag}-linux-x86_64.AppImage (consistent with the other links in the same section, e.g. the .deb and .zip). The PR description itself notes that Tauri asset naming is inconsistent, but the AppImage link is for the non-Tauri build, which follows the versioned convention. As written, the generated release notes will point to a URL that does not exist for any release, producing a 404 for users clicking the AppImage link. The fix is to include the {tag} segment in the filename, matching the .deb and .zip links.


ℹ️ An alternate [Tauri-based build](https://github.com/ActivityWatch/activitywatch/tree/master/aw-tauri) is also available for Windows, macOS, and Linux — look for the `activitywatch-tauri-*` assets attached to this release below. On Linux, the Tauri build additionally supports Wayland.
""".strip()
output += "\n\n"

Expand Down
Loading