bh 6.5.1 → 6.6.0
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 +9 -0
- data/app/stylesheets/bh/chat.css +6 -2
- data/lib/bh/version.rb +1 -1
- data/package.json +1 -1
- data/public/bh/css/bh.css +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: a9c573e779abc79338fe373283a0f0e30805337a2daad8804fc826e9b22acd55
|
|
4
|
+
data.tar.gz: 7b8041b33fbcccaccb94902bbc8947f88ebc5aa8ccdd5ba5613241a37c777cb7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 65668c148e51ae156e55de930fc3656c91bdecd61ac9b6d555022ffb4a3a6dfc6021cca19e83b6c85e536c712f58665f11e3914dab92834c2d576071c4c63b07
|
|
7
|
+
data.tar.gz: 3a0e4eb9fc775a15ecbe432cc09e551f55a06026589bc990b03cd18cf39a2ca4a8f793cd8c07ad35a25703056cbb50144991843883b16888f3dbc37e0f6cd934
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,15 @@ For more information about changelogs, check
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## 6.6.0 - 2026-09-18
|
|
12
|
+
|
|
13
|
+
* [CHANGE] A picture in a bubble is a thumbnail
|
|
14
|
+
|
|
15
|
+
Drawn at the height every other picture on these screens is, since what fits beside
|
|
16
|
+
words is a thing to recognise and click rather than a thing to look at -- and narrower
|
|
17
|
+
than the bubble whatever shape it is, so a portrait photograph does not make a column
|
|
18
|
+
of one message.
|
|
19
|
+
|
|
11
20
|
## 6.5.1 - 2026-09-18
|
|
12
21
|
|
|
13
22
|
* [FIX] A thread's note is opaque and centred
|
data/app/stylesheets/bh/chat.css
CHANGED
|
@@ -24,11 +24,15 @@
|
|
|
24
24
|
padding-block: 0.25rem 0.75rem;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
/* A picture a message carries, under its words
|
|
27
|
+
/* A picture a message carries, under its words: a thumbnail of the height every other
|
|
28
|
+
picture on these screens is drawn at, since what fits beside words is a thing to
|
|
29
|
+
recognise and click rather than a thing to look at. Narrower than the bubble whatever
|
|
30
|
+
shape it is, so a portrait photograph does not make a column of one message. */
|
|
28
31
|
.chat-photo {
|
|
29
32
|
display: block;
|
|
33
|
+
height: 6.25rem;
|
|
34
|
+
width: auto;
|
|
30
35
|
max-width: 100%;
|
|
31
|
-
height: auto;
|
|
32
36
|
border-radius: 0.5rem;
|
|
33
37
|
margin-block-start: 0.5rem;
|
|
34
38
|
}
|
data/lib/bh/version.rb
CHANGED
data/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bh6",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.6.0",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Bootstrap 6 in a Rails app: the form builder that dresses every field, the components Bootstrap ships behavior for and no markup, and the Stimulus controllers behind them.",
|
|
6
6
|
"license": "MIT",
|