houseaccount 0.15.0 → 0.17.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 11c7aebc82ae0c5a776865022b6ee5f7672d6b9b9675cb952e2a46242f614e3c
4
- data.tar.gz: b00c15bb33768c4a58330ca9cbe1554ca444dec05ab0181d07566fbe06fdc126
3
+ metadata.gz: 8c38f00185e5c9252a22102deb4364544009684dd39e164adaa755b5cf8dc33f
4
+ data.tar.gz: 64f4791d9875ad24848a60e81ead1e519e477022c5ad1a0a2a41a74460632b6a
5
5
  SHA512:
6
- metadata.gz: 27f473bea8654cb9d5867ca1776c343558eb2058753af333d6ce27cf66da64b7c96ff5fd9175219c245e649433d588f19a09e2603e72bcca0bc2accc95a50a8d
7
- data.tar.gz: a047f95d97ce51af79385260a8f96ebef9977900fcfb05871940b0c860f1d096aebf6aebf2e51631466c716268d5f952b61dafcb2b83a642a796eaed2581b86d
6
+ metadata.gz: 49eac16043f37eed2ffa4e6dd8ec9d1deaff77638c77c4015a836d825adb70998d78bdaf2a9907bca251db6b5b9394e0b640b2da22eae449263ec52173a27cc0
7
+ data.tar.gz: b96627a40bb6764b183fca3a2fc46c17bf1991683d11975165a89d78bc6a1ceaf43f13f34792c119d3ac5aee9efbd6142c3fe16e9e1979f67fb571fbf88d2383
data/CHANGELOG.md CHANGED
@@ -7,6 +7,26 @@ For more information about changelogs, check [Keep a Changelog](http://keepachan
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## 0.17.0 - 2026-09-18
11
+
12
+ * [FEATURE] bh 6.6, which draws a picture in a bubble as a thumbnail
13
+
14
+ At the height every other picture on these screens is drawn at. The note over a thread
15
+ is opaque and centred with it: it had named a background variable this bundle does not
16
+ define, and drew none.
17
+
18
+ ## 0.16.0 - 2026-09-18
19
+
20
+ * [FEATURE] bh 6.5, which carries a picture in a bubble and a note over a thread
21
+
22
+ `Bh::Message` takes `photos`, drawn under the words in the same bubble, and `chat_with`
23
+ takes a `note:` that holds the top while the thread scrolls under it.
24
+
25
+ * [FIX] The shell fills the screen in whole pixels
26
+
27
+ `100dvh` computes to a fraction on a scaled display, and the tenths over are a scrollbar
28
+ the page cannot use beside the one its content already has.
29
+
10
30
  ## 0.15.0 - 2026-09-18
11
31
 
12
32
  * [Breaking change] The nine palettes move to bh as well
data/art/index.html.erb CHANGED
@@ -101,7 +101,7 @@
101
101
  Rails app and has no opinion about this house. This gem depends on it and bundles it, so the
102
102
  stylesheet and the script above already carry every one of them — and bh's own page draws each
103
103
  beside the line of Ruby that produces it.</p>
104
- <p class='mt-3'><a class='btn btn-solid theme-primary' href='https://claudiob.github.io/bh/'>Every component, on bh's page</a></p>
104
+ <p class='mt-3'><a href='https://claudiob.github.io/bh/'>Bootstrap Helpers</a></p>
105
105
  </section>
106
106
 
107
107
  <section class='design-section' id='page'>
@@ -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.15.0'
3
+ VERSION = '0.17.0'
4
4
  end