houseaccount 0.18.0 → 0.19.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 +4 -4
- data/CHANGELOG.md +9 -0
- 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.0}/bh/css/bh.css +0 -0
- /data/public/{v0.18.0 → v0.19.0}/bh/js/bh.js +0 -0
- /data/public/{v0.18.0 → v0.19.0}/bh/theme/bootstrap.css +0 -0
- /data/public/{v0.18.0 → v0.19.0}/bh/theme/dawn.css +0 -0
- /data/public/{v0.18.0 → v0.19.0}/bh/theme/dracula.css +0 -0
- /data/public/{v0.18.0 → v0.19.0}/bh/theme/gruvbox.css +0 -0
- /data/public/{v0.18.0 → v0.19.0}/bh/theme/monokai.css +0 -0
- /data/public/{v0.18.0 → v0.19.0}/bh/theme/nord.css +0 -0
- /data/public/{v0.18.0 → v0.19.0}/bh/theme/one_dark.css +0 -0
- /data/public/{v0.18.0 → v0.19.0}/bh/theme/solarized.css +0 -0
- /data/public/{v0.18.0 → v0.19.0}/bh/theme/tokyo_night.css +0 -0
- /data/public/{v0.18.0 → v0.19.0}/css/houseaccount.css +0 -0
- /data/public/{v0.18.0 → v0.19.0}/font/bootstrap-icons-FRBPO3H7.woff2 +0 -0
- /data/public/{v0.18.0 → v0.19.0}/font/quicksand-500-latin-QHYSRFVK.woff2 +0 -0
- /data/public/{v0.18.0 → v0.19.0}/font/quicksand-500-latin-ext-QZ4PXVHB.woff2 +0 -0
- /data/public/{v0.18.0 → v0.19.0}/font/quicksand-500-latin-ext.woff2 +0 -0
- /data/public/{v0.18.0 → v0.19.0}/font/quicksand-500-latin.woff2 +0 -0
- /data/public/{v0.18.0 → v0.19.0}/font/quicksand-500-vietnamese-RRA5CUQB.woff2 +0 -0
- /data/public/{v0.18.0 → v0.19.0}/font/quicksand-500-vietnamese.woff2 +0 -0
- /data/public/{v0.18.0 → v0.19.0}/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: 4a93e46d0497ab00af3030de2f6931f575a54c4ee39db2258f3ebb4bf2585bb5
|
|
4
|
+
data.tar.gz: 44d72378f63ef8ec113502c77f5917ca8bc443e7a1fa23bc2b40634601bbc3d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56f76b166bc81a0c3ec9e880dbf4b5fb7696fdc52eb9a8e676f4c02cb8c8c8ef05c6707f19f33a5b75bb1618d4dd29effef82b80665cad7834fbbd2906a224de
|
|
7
|
+
data.tar.gz: c4b9414f1d9479059eca88dae57eacff79b7a51c6027b5eb8f35338e1f82061ca4722fd727828a91693bd15c91c10aef2b754fab210829aff2e88eaf96d7c841
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ For more information about changelogs, check [Keep a Changelog](http://keepachan
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## 0.19.0 - 2026-09-19
|
|
11
|
+
|
|
12
|
+
* [FEATURE] The head of an admin screen is drawn here
|
|
13
|
+
|
|
14
|
+
recourse draws a `recourses/head` partial where a view path supplies one, and this gem
|
|
15
|
+
supplies it: the house's two files and the icons a tab wears. An app on both gems keeps
|
|
16
|
+
no partial of its own, and one wanting something else writes its own, which is found
|
|
17
|
+
first.
|
|
18
|
+
|
|
10
19
|
## 0.18.0 - 2026-09-19
|
|
11
20
|
|
|
12
21
|
* [BREAKING] The bundle is the house's layer alone
|
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.0/bh/css/bh.css'>
|
|
18
|
+
<link rel='stylesheet' href='v0.19.0/css/houseaccount.css'>
|
|
19
|
+
<link rel='stylesheet' href='v0.19.0/bh/theme/bootstrap.css' data-recourse-theme=''>
|
|
20
|
+
<script type='module' src='v0.19.0/bh/js/bh.js'></script>
|
|
21
|
+
<script type='module' src='v0.19.0/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.0</strong>
|
|
63
|
+
<span class='design-url'><a href='v0.19.0/css/houseaccount.css'>v0.19.0/css/houseaccount.css</a> · <a href='v0.19.0/js/houseaccount.js'>v0.19.0/js/houseaccount.js</a> · <a href='v0.19.0/bh/theme/nord.css'>v0.19.0/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.0/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.0
|
|
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.0/bh/css/bh.css
|
|
209
|
+
- public/v0.19.0/bh/js/bh.js
|
|
210
|
+
- public/v0.19.0/bh/theme/bootstrap.css
|
|
211
|
+
- public/v0.19.0/bh/theme/dawn.css
|
|
212
|
+
- public/v0.19.0/bh/theme/dracula.css
|
|
213
|
+
- public/v0.19.0/bh/theme/gruvbox.css
|
|
214
|
+
- public/v0.19.0/bh/theme/monokai.css
|
|
215
|
+
- public/v0.19.0/bh/theme/nord.css
|
|
216
|
+
- public/v0.19.0/bh/theme/one_dark.css
|
|
217
|
+
- public/v0.19.0/bh/theme/solarized.css
|
|
218
|
+
- public/v0.19.0/bh/theme/tokyo_night.css
|
|
219
|
+
- public/v0.19.0/css/houseaccount.css
|
|
220
|
+
- public/v0.19.0/font/bootstrap-icons-FRBPO3H7.woff2
|
|
221
|
+
- public/v0.19.0/font/quicksand-500-latin-QHYSRFVK.woff2
|
|
222
|
+
- public/v0.19.0/font/quicksand-500-latin-ext-QZ4PXVHB.woff2
|
|
223
|
+
- public/v0.19.0/font/quicksand-500-latin-ext.woff2
|
|
224
|
+
- public/v0.19.0/font/quicksand-500-latin.woff2
|
|
225
|
+
- public/v0.19.0/font/quicksand-500-vietnamese-RRA5CUQB.woff2
|
|
226
|
+
- public/v0.19.0/font/quicksand-500-vietnamese.woff2
|
|
227
|
+
- public/v0.19.0/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
|