From 6ad358d43f29c8e831fe3e82906e3b8d90aac674 Mon Sep 17 00:00:00 2001 From: Matt Stein Date: Tue, 10 Sep 2024 09:58:50 -0700 Subject: [PATCH] Display project description as Alfred subtitle, when possible. --- CHANGELOG.md | 6 ++++++ items.php | 1 + 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cd5c66..c69bb63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.3] - 2024-09-10 + +### Added + +- Project items now display their descriptions when available. (Coolify >= [beta.332](https://github.com/coollabsio/coolify/releases/tag/v4.0.0-beta.332)). + ## [0.0.2] - 2024-09-09 ### Changed diff --git a/items.php b/items.php index 9c29bd7..43bf509 100644 --- a/items.php +++ b/items.php @@ -45,6 +45,7 @@ foreach ($projects as $project) { $workflow->item() ->title($project->name) + ->subtitle($project->description ?? '') ->arg(buildDashboardUrl($workflow, 'project/' . $project->uuid)); }