From 21bb8570d6e30c27ec72067bdee33003efa45415 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sat, 24 May 2025 03:51:42 +0000 Subject: [PATCH] Update changelog for CLI v0.0.139 Co-Authored-By: unknown <> --- CHANGELOG.md | 6 ++++++ internal/dev/server.go | 7 ++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0252c19d..723c26b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v0.0.139] - 2025-05-24 + +### Fixed +- Fixed Bun sourcemap shim issue to improve source map support for projects using the "bunjs" runtime ([#346](https://github.com/agentuity/cli/pull/346)) + ## [v0.0.138] - 2025-05-23 ### Changed @@ -640,6 +645,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added project import checks for new agent creation +[v0.0.139]: https://github.com/agentuity/cli/compare/v0.0.138...v0.0.139 [v0.0.138]: https://github.com/agentuity/cli/compare/v0.0.137...v0.0.138 [v0.0.137]: https://github.com/agentuity/cli/compare/v0.0.136...v0.0.137 [v0.0.136]: https://github.com/agentuity/cli/compare/v0.0.135...v0.0.136 diff --git a/internal/dev/server.go b/internal/dev/server.go index eb71a294..006b05fd 100644 --- a/internal/dev/server.go +++ b/internal/dev/server.go @@ -595,10 +595,11 @@ func (s *Server) monitor() { } var ( - logoColor = lipgloss.AdaptiveColor{Light: "#11c7b9", Dark: "#00FFFF"} - labelColor = lipgloss.AdaptiveColor{Light: "#999999", Dark: "#FFFFFF"} - labelStyle = lipgloss.NewStyle().Foreground(labelColor).Bold(true) + logoColor = lipgloss.AdaptiveColor{Light: "#11c7b9", Dark: "#00FFFF"} + labelColor = lipgloss.AdaptiveColor{Light: "#999999", Dark: "#FFFFFF"} + labelStyle = lipgloss.NewStyle().Foreground(labelColor).Bold(true) ) + func label(s string) string { return labelStyle.Render(tui.PadRight(s, 10, " ")) }