Compare commits

...

2 Commits

Author SHA1 Message Date
19c42783b0 [release] Bump to version 66.1
All checks were successful
ci / test (push) Successful in 2m3s
ci / build-and-deploy (push) Successful in 1m3s
- Fix bug in agent session templates
2026-08-24 10:24:31 -04:00
c491ebcce7 [bug] Fix bug in agent session templates 2026-08-24 10:24:09 -04:00
4 changed files with 12 additions and 2 deletions

View File

@ -1,5 +1,11 @@
#+title: CHANGELOG
* Version 66.1 [1/1]
** DONE [#A] Fix bug in agent session templates :templates:homepage:scrobbles:agents:
:PROPERTIES:
:ID: 187aae32-e98b-c74d-5a8b-3284108ff0eb
:END:
* Version 66.0 [1/1]
** DONE [#A] Do a deep dive on making homepage clearer and more efficient :ui:homepage:scrobbles:
:PROPERTIES:

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "vrobbler"
version = "66.0"
version = "66.1"
description = ""
authors = ["Colin Powell <colin@unbl.ink>"]

View File

@ -1089,7 +1089,7 @@ def test_homepage_shows_agent_sessions_with_first_prompt_title(
response = client.get(reverse("vrobbler-home"))
assert response.status_code == 200
assert b"Agent Sessions" in response.content
assert b"AgentSession" in response.content
assert first_prompt.encode() in response.content
assert settings.LLM_MODEL.encode() not in response.content

View File

@ -24,7 +24,11 @@
<a href="{{ scrobble.get_absolute_url }}">{{ scrobble.media_obj.strings.verb }} now</a> |
<a href="{% url 'scrobbles:finish' scrobble.id %}">Finish</a> &mdash;
{% endif %}
{% if scrobble.media_type == "AgentSession" and scrobble.logdata.title %}
<a href="{{ scrobble.media_obj.get_absolute_url }}">{{ scrobble.logdata.title|truncatechars_html:60 }}</a>
{% else %}
<a href="{{ scrobble.media_obj.get_absolute_url }}">{{ scrobble.media_obj|truncatechars_html:60 }}</a>
{% endif %}
<span class="timeline-meta text-muted">({{ scrobble.media_type|lower }}&middot;{{ scrobble.elapsed_time|natural_duration }})</span>
</span>
</li>