houseaccount 0.14.1 → 0.14.2

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: 5a8e618a87b0698bb0ceec6d3a257045325766ab840ad8672a52148210a3298b
4
- data.tar.gz: 595a9d0ed9b7b85eaa4dc4581db033a0219eebcdc72cb2ea14a83da9dab81bc8
3
+ metadata.gz: 49b64054d4b9cdaa0ce91c59af3b181618aa4f550343e08569d8ae60960c1833
4
+ data.tar.gz: c01b758141861c04ab47f4fe1d63d028782c4e3193ecfdf2bde4668bb4c3661c
5
5
  SHA512:
6
- metadata.gz: 2a0649f3153594aa2092c89519926980cd9118c788a4ac87056845c206bc09a908e657bd772db0637f6850b77a5292f765cbe30c1b0f7b52934151c98662a1ec
7
- data.tar.gz: 4b1da3b9f81e9401ee9f353a73cb5c7f7951bc0b01ea7c629215c1b302b7cd67bdc93ac32c255a4ed27b3a31196f3b4d8b2270ca7468bd42b047abaf78b05869
6
+ metadata.gz: acda012819638ddb27fa6c46d249b97d5bdc1e3547e42e2f06c07d284966fdf590fd70e7c3ca7e3d7bc74bf1c445aa04201b6af291207946744351f37f5b2b01
7
+ data.tar.gz: 82e90aa97570fa13c9f848fd27d581dbc3096be2da07aac3f3afe2a46476dbeda63b569dd9f1c65aafee5f34e96cc627bc2387ebc7f98bf9a19f36836458eacf
data/CHANGELOG.md CHANGED
@@ -7,6 +7,27 @@ For more information about changelogs, check [Keep a Changelog](http://keepachan
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## 0.14.2 - 2026-09-18
11
+
12
+ * [Fix] A conversation reads at the house's own size wherever it is drawn
13
+
14
+ A bubble took its type from the page around it, so a chat on a host that compacts its
15
+ body for tables dense with figures came out smaller than the same chat on a page that
16
+ does not. A sentence somebody typed is prose whatever the table beside it needs, so
17
+ `.chat-bubble` and the field under it say their own size.
18
+
19
+ * [Fix] A bubble is read from its start inside a flow
20
+
21
+ A flow centres a card's words, which suits a heading and a one-line answer and not an
22
+ answer long enough to wrap: a paragraph is read down an edge rather than about a middle.
23
+
24
+ * [Fix] A focus ring is not painted over by the link below it
25
+
26
+ The ring is an outline with an offset, drawn outside the box it rings and taking no room,
27
+ so the next link's own background — the tint an active row wears — covered the half that
28
+ overlapped. The focused link is lifted above its siblings, the way the navbar already is
29
+ over the table under it.
30
+
10
31
  ## 0.14.1 - 2026-09-17
11
32
 
12
33
  * [Fix] A confirm asks about the link that was clicked rather than whatever holds the focus
data/art/index.html.erb CHANGED
@@ -69,8 +69,8 @@
69
69
  <button type='button' class='btn btn-outline theme-primary' data-controller='scheme' data-action='scheme#rotate'
70
70
  data-scheme-themes-value='["bootstrap","dawn","dracula","gruvbox","monokai","nord","one_dark","solarized","tokyo_night"]'
71
71
  data-scheme-path-value='v<%= version %>/theme' data-scheme-storage-value='recourse-scheme'>
72
- <span class='recourse-scheme-light'><i class='bi bi-moon-fill'></i> Dark</span>
73
- <span class='recourse-scheme-dark'><i class='bi bi-sun-fill'></i> Light</span>
72
+ <span class='recourse-scheme-light'><i class='bi bi-moon-fill'></i> Switch to dark</span>
73
+ <span class='recourse-scheme-dark'><i class='bi bi-sun-fill'></i> Switch to light</span>
74
74
  </button>
75
75
  </section>
76
76
 
@@ -1,4 +1,4 @@
1
1
  module HouseAccount
2
2
  # Version of the gem, read by the gemspec and by hosts checking compatibility.
3
- VERSION = '0.14.1'
3
+ VERSION = '0.14.2'
4
4
  end