houseaccount 0.18.0 → 0.19.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 +4 -4
- data/CHANGELOG.md +20 -0
- data/README.md +15 -16
- data/app/views/recourses/_head.html.erb +3 -0
- data/lib/houseaccount/version.rb +1 -1
- data/public/index.html +8 -8
- metadata +22 -21
- /data/public/{v0.18.0 → v0.19.1}/bh/css/bh.css +0 -0
- /data/public/{v0.18.0 → v0.19.1}/bh/js/bh.js +0 -0
- /data/public/{v0.18.0 → v0.19.1}/bh/theme/bootstrap.css +0 -0
- /data/public/{v0.18.0 → v0.19.1}/bh/theme/dawn.css +0 -0
- /data/public/{v0.18.0 → v0.19.1}/bh/theme/dracula.css +0 -0
- /data/public/{v0.18.0 → v0.19.1}/bh/theme/gruvbox.css +0 -0
- /data/public/{v0.18.0 → v0.19.1}/bh/theme/monokai.css +0 -0
- /data/public/{v0.18.0 → v0.19.1}/bh/theme/nord.css +0 -0
- /data/public/{v0.18.0 → v0.19.1}/bh/theme/one_dark.css +0 -0
- /data/public/{v0.18.0 → v0.19.1}/bh/theme/solarized.css +0 -0
- /data/public/{v0.18.0 → v0.19.1}/bh/theme/tokyo_night.css +0 -0
- /data/public/{v0.18.0 → v0.19.1}/css/houseaccount.css +0 -0
- /data/public/{v0.18.0 → v0.19.1}/font/bootstrap-icons-FRBPO3H7.woff2 +0 -0
- /data/public/{v0.18.0 → v0.19.1}/font/quicksand-500-latin-QHYSRFVK.woff2 +0 -0
- /data/public/{v0.18.0 → v0.19.1}/font/quicksand-500-latin-ext-QZ4PXVHB.woff2 +0 -0
- /data/public/{v0.18.0 → v0.19.1}/font/quicksand-500-latin-ext.woff2 +0 -0
- /data/public/{v0.18.0 → v0.19.1}/font/quicksand-500-latin.woff2 +0 -0
- /data/public/{v0.18.0 → v0.19.1}/font/quicksand-500-vietnamese-RRA5CUQB.woff2 +0 -0
- /data/public/{v0.18.0 → v0.19.1}/font/quicksand-500-vietnamese.woff2 +0 -0
- /data/public/{v0.18.0 → v0.19.1}/js/houseaccount.js +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e7990fb47a91e78c9ac45e8ed2cb91ff8f765fcbaf59ef952cdb9c41e0b992e
|
|
4
|
+
data.tar.gz: ecbda704d1fd67f11582bcdb8d6a4d62872a947f119fd9cb1a8ecc0a52525dff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 410a38ab7d30e2ac7dfcd1466631c79e46ac1e181b94297c53396fcef1d4d26ee7a020f4b6f353a46a583a09a81d6adb5f06a059d0dda340a5191d83ae349e8f
|
|
7
|
+
data.tar.gz: bf19aa5f58613774fbb31e1cae7e06c0e9928c39cb05b012438b2944abb697d90a542a717609251f59d9a99fd1d9bb74409b7c8ab15a10abf40a74af946629e5
|
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.19.1 - 2026-09-20
|
|
11
|
+
|
|
12
|
+
* [CHANGE] The bundle is not published to npm
|
|
13
|
+
|
|
14
|
+
Nothing installed it from there: every app on this gem is a Rails app, and the two files a
|
|
15
|
+
page off the gem links come from the site, which keeps every version under its own path.
|
|
16
|
+
The package stays for what builds the bundle, and `private` is what says so.
|
|
17
|
+
|
|
18
|
+
The README said the bundle carried bh's stylesheet and script inside it, which stopped
|
|
19
|
+
being true in 0.18.0. It says what the two files hold now, and where bh's own go under them.
|
|
20
|
+
|
|
21
|
+
## 0.19.0 - 2026-09-19
|
|
22
|
+
|
|
23
|
+
* [FEATURE] The head of an admin screen is drawn here
|
|
24
|
+
|
|
25
|
+
recourse draws a `recourses/head` partial where a view path supplies one, and this gem
|
|
26
|
+
supplies it: the house's two files and the icons a tab wears. An app on both gems keeps
|
|
27
|
+
no partial of its own, and one wanting something else writes its own, which is found
|
|
28
|
+
first.
|
|
29
|
+
|
|
10
30
|
## 0.18.0 - 2026-09-19
|
|
11
31
|
|
|
12
32
|
* [BREAKING] The bundle is the house's layer alone
|
data/README.md
CHANGED
|
@@ -185,34 +185,33 @@ Those follow the latest release. Every release is also kept whole under its own
|
|
|
185
185
|
forever and cached for a year, for a page that would rather move on its own terms:
|
|
186
186
|
|
|
187
187
|
```html
|
|
188
|
-
<link rel='stylesheet' href='https://design.houseaccount.com/v0.
|
|
189
|
-
<script type='module' src='https://design.houseaccount.com/v0.
|
|
188
|
+
<link rel='stylesheet' href='https://design.houseaccount.com/v0.19.1/css/houseaccount.css'>
|
|
189
|
+
<script type='module' src='https://design.houseaccount.com/v0.19.1/js/houseaccount.js'></script>
|
|
190
190
|
```
|
|
191
191
|
|
|
192
|
-
|
|
193
|
-
|
|
192
|
+
bh's layer goes under the house's, from the same place, since the house is drawn on top of it
|
|
193
|
+
and neither stands alone:
|
|
194
194
|
|
|
195
195
|
```html
|
|
196
|
-
<link rel='stylesheet' href='https://
|
|
197
|
-
<
|
|
196
|
+
<link rel='stylesheet' href='https://design.houseaccount.com/v0.19.1/bh/css/bh.css'>
|
|
197
|
+
<link rel='stylesheet' href='https://design.houseaccount.com/v0.19.1/css/houseaccount.css'>
|
|
198
198
|
```
|
|
199
199
|
|
|
200
|
-
The palettes are beside
|
|
201
|
-
written again, so that URL is owed its bytes
|
|
200
|
+
The palettes are beside it, at `bh/theme/nord.css` and the rest — bh's nine, copied out of the
|
|
201
|
+
gem at build time. A version under `v` is never written again, so that URL is owed its bytes.
|
|
202
202
|
|
|
203
203
|
A host with a Content Security Policy allows whichever origin it names for `style-src`,
|
|
204
204
|
`script-src` and `font-src`.
|
|
205
205
|
|
|
206
206
|
## What is in the bundle
|
|
207
207
|
|
|
208
|
-
`css/houseaccount.css` is
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
another origin. `js/houseaccount.js` is
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
controller that is the house's own. Everything is drawn for light and dark alike: every color is a Bootstrap
|
|
208
|
+
`css/houseaccount.css` is the house's layer alone: the rules this gem writes over bh's,
|
|
209
|
+
followed by Bootstrap Icons cut down to the glyphs `art/icons.txt` names (the ones `unicon`
|
|
210
|
+
maps and the few written out by name) and the house's three — the page, the lockup and the
|
|
211
|
+
wall. Quicksand, the lockup's face, is served from `/font` too; nothing on a page reaches
|
|
212
|
+
another origin. `js/houseaccount.js` is the house's script alone: `wall`, the one controller
|
|
213
|
+
that is its own, registered with the Stimulus application bh's script starts. bh's two files
|
|
214
|
+
are copied beside these at `bh/`, and a page links bh's first. Everything is drawn for light and dark alike: every color is a Bootstrap
|
|
216
215
|
token or a `light-dark()` pair, and `data-bs-theme` on `<html>` forces either. A phone is
|
|
217
216
|
formatted in the browser: the server hands over ten digits and
|
|
218
217
|
`data-controller='phone'`, and the controller decides `555-555-5555`.
|
data/lib/houseaccount/version.rb
CHANGED
data/public/index.html
CHANGED
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
pins a host to, so the page is drawn by the bytes it hands out rather than by
|
|
15
15
|
whatever was last built. Relative, so it reads the same on staging, on production
|
|
16
16
|
and from a folder on disk. -->
|
|
17
|
-
<link rel='stylesheet' href='v0.
|
|
18
|
-
<link rel='stylesheet' href='v0.
|
|
19
|
-
<link rel='stylesheet' href='v0.
|
|
20
|
-
<script type='module' src='v0.
|
|
21
|
-
<script type='module' src='v0.
|
|
17
|
+
<link rel='stylesheet' href='v0.19.1/bh/css/bh.css'>
|
|
18
|
+
<link rel='stylesheet' href='v0.19.1/css/houseaccount.css'>
|
|
19
|
+
<link rel='stylesheet' href='v0.19.1/bh/theme/bootstrap.css' data-recourse-theme=''>
|
|
20
|
+
<script type='module' src='v0.19.1/bh/js/bh.js'></script>
|
|
21
|
+
<script type='module' src='v0.19.1/js/houseaccount.js'></script>
|
|
22
22
|
<style>
|
|
23
23
|
/* The page's own chrome and nothing else: everything shown below is styled by
|
|
24
24
|
the pinned houseaccount.css alone, which is the point of showing it. */
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
</div>
|
|
60
60
|
<div class='col-12'>
|
|
61
61
|
<div class='card p-3'>
|
|
62
|
-
<strong>Pinned to a version — the latest is 0.
|
|
63
|
-
<span class='design-url'><a href='v0.
|
|
62
|
+
<strong>Pinned to a version — the latest is 0.19.1</strong>
|
|
63
|
+
<span class='design-url'><a href='v0.19.1/css/houseaccount.css'>v0.19.1/css/houseaccount.css</a> · <a href='v0.19.1/js/houseaccount.js'>v0.19.1/js/houseaccount.js</a> · <a href='v0.19.1/bh/theme/nord.css'>v0.19.1/bh/theme/nord.css</a></span>
|
|
64
64
|
</div>
|
|
65
65
|
</div>
|
|
66
66
|
</div>
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
<h2>Themes</h2>
|
|
71
71
|
<button type='button' class='btn btn-outline theme-primary' data-controller='scheme' data-action='scheme#rotate'
|
|
72
72
|
data-scheme-themes-value='["bootstrap","dawn","dracula","gruvbox","monokai","nord","one_dark","solarized","tokyo_night"]'
|
|
73
|
-
data-scheme-path-value='v0.
|
|
73
|
+
data-scheme-path-value='v0.19.1/bh/theme' data-scheme-storage-value='recourse-scheme'>
|
|
74
74
|
<span class='recourse-scheme-light'><i class='bi bi-moon-fill'></i> Switch to dark</span>
|
|
75
75
|
<span class='recourse-scheme-dark'><i class='bi bi-sun-fill'></i> Switch to light</span>
|
|
76
76
|
</button>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: houseaccount
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.19.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- claudiob
|
|
@@ -78,6 +78,7 @@ files:
|
|
|
78
78
|
- MIT-LICENSE
|
|
79
79
|
- README.md
|
|
80
80
|
- app/views/layouts/houseaccount.html.erb
|
|
81
|
+
- app/views/recourses/_head.html.erb
|
|
81
82
|
- art/autopilot.svg
|
|
82
83
|
- art/design.svg
|
|
83
84
|
- art/down.html.erb
|
|
@@ -204,26 +205,26 @@ files:
|
|
|
204
205
|
- public/theme/one_dark.css
|
|
205
206
|
- public/theme/solarized.css
|
|
206
207
|
- public/theme/tokyo_night.css
|
|
207
|
-
- public/v0.
|
|
208
|
-
- public/v0.
|
|
209
|
-
- public/v0.
|
|
210
|
-
- public/v0.
|
|
211
|
-
- public/v0.
|
|
212
|
-
- public/v0.
|
|
213
|
-
- public/v0.
|
|
214
|
-
- public/v0.
|
|
215
|
-
- public/v0.
|
|
216
|
-
- public/v0.
|
|
217
|
-
- public/v0.
|
|
218
|
-
- public/v0.
|
|
219
|
-
- public/v0.
|
|
220
|
-
- public/v0.
|
|
221
|
-
- public/v0.
|
|
222
|
-
- public/v0.
|
|
223
|
-
- public/v0.
|
|
224
|
-
- public/v0.
|
|
225
|
-
- public/v0.
|
|
226
|
-
- public/v0.
|
|
208
|
+
- public/v0.19.1/bh/css/bh.css
|
|
209
|
+
- public/v0.19.1/bh/js/bh.js
|
|
210
|
+
- public/v0.19.1/bh/theme/bootstrap.css
|
|
211
|
+
- public/v0.19.1/bh/theme/dawn.css
|
|
212
|
+
- public/v0.19.1/bh/theme/dracula.css
|
|
213
|
+
- public/v0.19.1/bh/theme/gruvbox.css
|
|
214
|
+
- public/v0.19.1/bh/theme/monokai.css
|
|
215
|
+
- public/v0.19.1/bh/theme/nord.css
|
|
216
|
+
- public/v0.19.1/bh/theme/one_dark.css
|
|
217
|
+
- public/v0.19.1/bh/theme/solarized.css
|
|
218
|
+
- public/v0.19.1/bh/theme/tokyo_night.css
|
|
219
|
+
- public/v0.19.1/css/houseaccount.css
|
|
220
|
+
- public/v0.19.1/font/bootstrap-icons-FRBPO3H7.woff2
|
|
221
|
+
- public/v0.19.1/font/quicksand-500-latin-QHYSRFVK.woff2
|
|
222
|
+
- public/v0.19.1/font/quicksand-500-latin-ext-QZ4PXVHB.woff2
|
|
223
|
+
- public/v0.19.1/font/quicksand-500-latin-ext.woff2
|
|
224
|
+
- public/v0.19.1/font/quicksand-500-latin.woff2
|
|
225
|
+
- public/v0.19.1/font/quicksand-500-vietnamese-RRA5CUQB.woff2
|
|
226
|
+
- public/v0.19.1/font/quicksand-500-vietnamese.woff2
|
|
227
|
+
- public/v0.19.1/js/houseaccount.js
|
|
227
228
|
homepage: https://design.houseaccount.com
|
|
228
229
|
licenses:
|
|
229
230
|
- MIT
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|