From b898224dfe52e863455dc4b66263bf790da745b2 Mon Sep 17 00:00:00 2001 From: Bob Date: Fri, 18 Sep 2026 10:20:24 +0000 Subject: [PATCH] fix(release-notes): expand Downloads section with AppImage, .deb, and Tauri mention Add .deb and AppImage links for Linux, an Apple Silicon .dmg link for macOS, and a note pointing to the Tauri-based alternate build (which additionally supports Wayland on Linux). Addresses the release-notes part of ActivityWatch/activitywatch#1453 (the activitywatch.net/downloads page still needs the same Tauri mention, tracked separately in that issue). Git-Session-Id: 332a6b70-940a-5f28-b303-f608651f1313 --- scripts/build_changelog.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/build_changelog.py b/scripts/build_changelog.py index d2cda8d55..46130ba1c 100755 --- a/scripts/build_changelog.py +++ b/scripts/build_changelog.py @@ -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) + +ℹ️ 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"