chat_manager 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/app/views/chat_manager/_chat_card.html.erb +1 -1
- data/lib/chat_manager/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d853c5ccd72e48c860e16d16ff6abb8200ba3dd9257f7376a3a8353a15916938
|
|
4
|
+
data.tar.gz: 8da219a12e44118371ac75f0b3d57e5584fae2c42c58ad26b479afc07adcd08b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e69c3dd15bbcbfe24dea8bf1f003be03a9077671e4f42ff3fe8b045312024d275adaf9e48035d97ec65d57f711826c97236280bc66196cb82785ca6da27b98fc
|
|
7
|
+
data.tar.gz: 1ee734843ce4f04a162a54c7f0676a4538277bbc813370694399762afc3d92b8d45d8d7e35cf3d0f302c93e2fa673f641b2d0733ca439c987fc73d6cdfe66d31
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
7
7
|
|
|
8
|
+
## [1.2.1] - 2026-07-02
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Chat-card link now carries a `title` attribute holding the full chat title, so long titles (which the sidebar truncates to 30 chars) are visible via the browser's native tooltip on hover.
|
|
13
|
+
|
|
8
14
|
## [1.2.0] - 2026-06-04
|
|
9
15
|
|
|
10
16
|
### Added
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
data-uuid="<%= ann.uuid %>"
|
|
23
23
|
data-action="click->chat#toggle" />
|
|
24
24
|
<% end %>
|
|
25
|
-
<%= link_to card_path.call(ann.uuid), class: "chat-card-link", data: { "chat-title-edit-target": "link" } do %>
|
|
25
|
+
<%= link_to card_path.call(ann.uuid), class: "chat-card-link", data: { "chat-title-edit-target": "link" }, title: ann.title.to_s do %>
|
|
26
26
|
<div class="chat-card-prompt" data-chat-title-edit-target="display"><%= truncate(ann.title.to_s, length: 30) %></div>
|
|
27
27
|
<% end %>
|
|
28
28
|
<div class="chat-card-menu-wrap" data-controller="chat-menu">
|
data/lib/chat_manager/version.rb
CHANGED