Skip to content

Commit e5e9cf9

Browse files
committed
Update footer layout and firmware version info
Refactored footer HTML and SCSS for improved layout and link styling. Updated SP140 configurator and firmware manifest to reflect version 7.2 RC1 and revised release notes for clarity.
1 parent b55201c commit e5e9cf9

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

assets/scss/layouts/_footer.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,20 @@
1010

1111
.footer ul {
1212
margin-bottom: 0;
13+
padding-left: 0;
1314
}
1415

1516
.footer li {
1617
font-size: $font-size-sm;
1718
margin-bottom: 0;
1819
}
1920

21+
.footer-links ul {
22+
display: flex;
23+
gap: 1rem;
24+
flex-wrap: wrap;
25+
}
26+
2027
@include media-breakpoint-up(md) {
2128
.footer li {
2229
font-size: $font-size-base;

content/configurators/sp140-v3.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ <h2 class="mt-0 mb-2">SP140 V3 Firmware Installer</h2>
3434
<div class="col">
3535
<div class="card card-body release-card h-100">
3636
<div class="d-flex align-items-center justify-content-between mb-2">
37-
<span class="badge bg-primary-subtle text-primary fw-semibold">Latest • v7.2</span>
37+
<span class="badge bg-primary-subtle text-primary fw-semibold">Latest • v7.2 RC1</span>
3838
<i class="fas fa-rocket text-primary"></i>
3939
</div>
4040
<h4 class="mt-0 mb-2">What’s new</h4>
41-
<p class="text-muted small mb-3">Focused upgrades that sharpen situational awareness and smooth every throttle input.</p>
41+
<p class="text-muted small mb-3">Improved diagnostics and smoother throttle response</p>
4242
<ul class="list-unstyled release-card__list mb-4">
4343
<li class="d-flex align-items-start gap-3">
4444
<i class="fas fa-mountain text-primary"></i>
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<footer class="footer text-muted">
22
<div class="container">
33
<div class="row">
4-
<div class="col-lg-8 order-last order-lg-first">
5-
<ul class="list-inline">
6-
<li class="list-inline-item thanks"> {{ .Site.Params.footer | safeHTML }}</li>
7-
</ul>
8-
</div>
9-
<div class="col-lg-8 order-first order-lg-last text-lg-right">
10-
<ul class="list-inline">
4+
<div class="col-lg-6 order-first order-lg-first mb-3 mb-lg-0 footer-links">
5+
<ul class="list-inline mb-0">
116
{{ range .Site.Menus.footer -}}
127
<li class="list-inline-item"><a href="{{ .URL | absURL }}">{{ .Name }}</a></li>
138
{{ end -}}
149
</ul>
1510
</div>
11+
<div class="col-lg-6 order-last order-lg-last footer-thanks">
12+
<ul class="list-inline mb-0">
13+
<li class="list-inline-item thanks"> {{ .Site.Params.footer | safeHTML }}</li>
14+
</ul>
15+
</div>
1616
</div>
1717
</div>
1818
</footer>

static/firmware/esp32-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "OpenPPG Controller Firmware",
3-
"version": "7.2",
3+
"version": "7.2 RC1",
44
"new_install_prompt_erase": true,
55
"builds": [
66
{

0 commit comments

Comments
 (0)