houseaccount 0.8.0 → 0.8.1

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: 25c029d0c9b4a7be0acc92597d51ab5ff79de388f92446ad603a5d64ceeaab3a
4
- data.tar.gz: 85a331299adfb3bc24800738dee1d094a185037a17bf169747912ea96f29f3f8
3
+ metadata.gz: eb93eb6916d764185a9a842424a967a999a604c13f69c4fd1e55520732238a5e
4
+ data.tar.gz: 18f86ddd7092b5c594a5384cef3071eead026ac4b3af0ac92d74cd5edb24d4ac
5
5
  SHA512:
6
- metadata.gz: 5639f3869ea8eaf95321546515d0aeaad2263042e8de41a77ff7c74a212638be06f73e842ef7e35c118e2009e3886be0e06c67de025cb0f77b6fb09b7ff2ec9a
7
- data.tar.gz: 32dc62a114967214bf1f2ee7880223e599f306f0d74cc75e0a4d98eb33d6da61c7f66e73a23ca1fef22e8d2702c1f03f41c75abe3df88cdd2c21a969de8ac002
6
+ metadata.gz: b491d90baf039dc87e9cb31acac22b61753c9f669a7c3a497c7f54cc717b4668ee15775cbb7b96f796165ce5fe376a361c503880804377908e962d6ed27bfd89
7
+ data.tar.gz: fba487c0cd2d2b2e7982c8c7c0edb2f766ef7e88a36fb3067785a671aa2857253f2a83b67a291f9ecde777a939d6ae8e1e4d60758644c032a479be25c7f2f22d
data/CHANGELOG.md CHANGED
@@ -7,6 +7,14 @@ For more information about changelogs, check [Keep a Changelog](http://keepachan
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## 0.8.1 - 2026-09-14
11
+
12
+ * [Fix] The wall is drawn again after a page Turbo morphs
13
+
14
+ A refresh in place is told what the server sent, and the server sends no wall, so the
15
+ cyanotype came down on any page that redirected to itself — a form refused, say — and the
16
+ controller, still connected, never heard of it.
17
+
10
18
  ## 0.8.0 - 2026-09-14
11
19
 
12
20
  * [Breaking change] A one-time code is the sentence alone, without the line for the phone
data/README.md CHANGED
@@ -20,7 +20,7 @@ gem install houseaccount
20
20
 
21
21
  ```ruby
22
22
  # Gemfile
23
- gem 'houseaccount', '~> 0.8.0'
23
+ gem 'houseaccount', '~> 0.8.1'
24
24
  ```
25
25
 
26
26
  `~> 0.8.0` stops short of `0.9`, since below 1.0 a minor release may break whatever it likes.
@@ -60,7 +60,7 @@ which Pages redirects away from.
60
60
 
61
61
  With the gem in the bundle an app serves `/css/houseaccount.css`, `/js/houseaccount.js`,
62
62
  `/theme/*`, `/font/*`, `/logo/*` and `/favicon/*` itself — and its own version's copy under
63
- `/v0.8.0/`, which is what the head helper links, cached for a year — answers a 400, 404, 406, 422 or 500
63
+ `/v0.8.1/`, which is what the head helper links, cached for a year — answers a 400, 404, 406, 422 or 500
64
64
  with the house's own page, and has these helpers in every view:
65
65
 
66
66
  ```erb
@@ -203,8 +203,8 @@ Those follow the latest release. Every release is also kept whole under its own
203
203
  forever and cached for a year, for a page that would rather move on its own terms:
204
204
 
205
205
  ```html
206
- <link rel='stylesheet' href='https://design.houseaccount.com/v0.8.0/css/houseaccount.css'>
207
- <script type='module' src='https://design.houseaccount.com/v0.8.0/js/houseaccount.js'></script>
206
+ <link rel='stylesheet' href='https://design.houseaccount.com/v0.8.1/css/houseaccount.css'>
207
+ <script type='module' src='https://design.houseaccount.com/v0.8.1/js/houseaccount.js'></script>
208
208
  ```
209
209
 
210
210
  A host with a Content Security Policy allows that origin for `style-src`, `script-src` and
@@ -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.8.0'
3
+ VERSION = '0.8.1'
4
4
  end
data/public/index.html CHANGED
@@ -66,8 +66,8 @@
66
66
  </div>
67
67
  <div class='col-12'>
68
68
  <div class='card p-3'>
69
- <strong>Pinned to a version — the latest is 0.8.0</strong>
70
- <span class='design-url'>https://design.houseaccount.com/v0.8.0/css/houseaccount.css · /v0.8.0/js/houseaccount.js · /v0.8.0/theme/nord.css</span>
69
+ <strong>Pinned to a version — the latest is 0.8.1</strong>
70
+ <span class='design-url'>https://design.houseaccount.com/v0.8.1/css/houseaccount.css · /v0.8.1/js/houseaccount.js · /v0.8.1/theme/nord.css</span>
71
71
  <span class='small fg-2 mt-1'>Every release stays at its own prefix forever, whole and cached for a year, for a page that moves on its own terms. The unversioned paths follow the latest.</span>
72
72
  </div>
73
73
  </div>