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 +4 -4
- data/CHANGELOG.md +21 -0
- data/art/index.html.erb +2 -2
- data/lib/houseaccount/version.rb +1 -1
- data/public/css/houseaccount.css +1 -1
- data/public/index.html +8 -8
- data/public/{v0.14.1 → v0.14.2}/css/houseaccount.css +1 -1
- metadata +19 -19
- /data/public/{v0.14.1 → v0.14.2}/font/bootstrap-icons-FRBPO3H7.woff2 +0 -0
- /data/public/{v0.14.1 → v0.14.2}/font/quicksand-500-latin-QHYSRFVK.woff2 +0 -0
- /data/public/{v0.14.1 → v0.14.2}/font/quicksand-500-latin-ext-QZ4PXVHB.woff2 +0 -0
- /data/public/{v0.14.1 → v0.14.2}/font/quicksand-500-latin-ext.woff2 +0 -0
- /data/public/{v0.14.1 → v0.14.2}/font/quicksand-500-latin.woff2 +0 -0
- /data/public/{v0.14.1 → v0.14.2}/font/quicksand-500-vietnamese-RRA5CUQB.woff2 +0 -0
- /data/public/{v0.14.1 → v0.14.2}/font/quicksand-500-vietnamese.woff2 +0 -0
- /data/public/{v0.14.1 → v0.14.2}/js/houseaccount.js +0 -0
- /data/public/{v0.14.1 → v0.14.2}/theme/bootstrap.css +0 -0
- /data/public/{v0.14.1 → v0.14.2}/theme/dawn.css +0 -0
- /data/public/{v0.14.1 → v0.14.2}/theme/dracula.css +0 -0
- /data/public/{v0.14.1 → v0.14.2}/theme/gruvbox.css +0 -0
- /data/public/{v0.14.1 → v0.14.2}/theme/monokai.css +0 -0
- /data/public/{v0.14.1 → v0.14.2}/theme/nord.css +0 -0
- /data/public/{v0.14.1 → v0.14.2}/theme/one_dark.css +0 -0
- /data/public/{v0.14.1 → v0.14.2}/theme/solarized.css +0 -0
- /data/public/{v0.14.1 → v0.14.2}/theme/tokyo_night.css +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 49b64054d4b9cdaa0ce91c59af3b181618aa4f550343e08569d8ae60960c1833
|
|
4
|
+
data.tar.gz: c01b758141861c04ab47f4fe1d63d028782c4e3193ecfdf2bde4668bb4c3661c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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>
|
|
73
|
-
<span class='recourse-scheme-dark'><i class='bi bi-sun-fill'></i>
|
|
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
|
|
data/lib/houseaccount/version.rb
CHANGED