houseaccount 0.15.0 → 0.16.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: 1b6c8ab985a0b86c7f687ccdaf099b99c8fe8f8149ceb81f29e30407d8d4bf32
4
+ data.tar.gz: f796c8ea89ee0cf82724941342af9341a57ad1fc8826562046d7d4617bf0ca02
5
5
  SHA512:
6
- metadata.gz: 27f473bea8654cb9d5867ca1776c343558eb2058753af333d6ce27cf66da64b7c96ff5fd9175219c245e649433d588f19a09e2603e72bcca0bc2accc95a50a8d
7
- data.tar.gz: a047f95d97ce51af79385260a8f96ebef9977900fcfb05871940b0c860f1d096aebf6aebf2e51631466c716268d5f952b61dafcb2b83a642a796eaed2581b86d
6
+ metadata.gz: 8cbb39eb69b849914d2c37e2da1688e91c9f7b551a267e76edab0956a8d1f52aad4abd200e48d4e215cd21fa033aff48b53e452cc1d25301cad483a5c3454ba2
7
+ data.tar.gz: fe457ead3c577b750f990bd5c3f7d32d36b5267f385aabb08080f6d2a7a54b4c0a245cd55e8e50361fc55cbafc1b4b1e7a2ef0366d54864978c135d898bca5f2
data/CHANGELOG.md CHANGED
@@ -7,6 +7,18 @@ For more information about changelogs, check [Keep a Changelog](http://keepachan
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## 0.16.0 - 2026-09-18
11
+
12
+ * [FEATURE] bh 6.5, which carries a picture in a bubble and a note over a thread
13
+
14
+ `Bh::Message` takes `photos`, drawn under the words in the same bubble, and `chat_with`
15
+ takes a `note:` that holds the top while the thread scrolls under it.
16
+
17
+ * [FIX] The shell fills the screen in whole pixels
18
+
19
+ `100dvh` computes to a fraction on a scaled display, and the tenths over are a scrollbar
20
+ the page cannot use beside the one its content already has.
21
+
10
22
  ## 0.15.0 - 2026-09-18
11
23
 
12
24
  * [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.16.0'
4
4
  end