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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 700671f665ef55917beb61c67fb22c09b9532d61047ca0749833865548a1da0c
4
- data.tar.gz: 18f1238d5225620129679a8457577f834da9412697d7451e3c61f0ffda50b27d
3
+ metadata.gz: d853c5ccd72e48c860e16d16ff6abb8200ba3dd9257f7376a3a8353a15916938
4
+ data.tar.gz: 8da219a12e44118371ac75f0b3d57e5584fae2c42c58ad26b479afc07adcd08b
5
5
  SHA512:
6
- metadata.gz: de96e54320b00a6d9347fe95a3d33c2fb8bebe50e66b0caace50902746467cf4004e11b1e76a935b221e2d5ccfdd536f73726a8ed8278509be175b5051c73d02
7
- data.tar.gz: df7ef5b1082544b71b5232954a1ed5e98237d7517ac994542156612cfe8aaf04fc4940f9912d7043eb75af8aeb77d73f08f6fcf9e77c5987d72eedc3385ad10d
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">
@@ -1,3 +1,3 @@
1
1
  module ChatManager
2
- VERSION = "1.2.0"
2
+ VERSION = "1.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chat_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - dhq_boiler