fixed name

This commit is contained in:
TheFozid 2026-08-03 11:02:29 +01:00
parent 88d2f30ad3
commit 0afcf34858
6 changed files with 9 additions and 9 deletions

2
Cargo.lock generated
View file

@ -1382,7 +1382,7 @@ dependencies = [
[[package]] [[package]]
name = "rs_maps" name = "rs_maps"
version = "0.0.2" version = "0.0.3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"argon2", "argon2",

View file

@ -1,7 +1,7 @@
# Cargo.toml # Cargo.toml
[package] [package]
name = "rs_maps" name = "rs_maps"
version = "0.0.2" version = "0.0.3"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View file

@ -1,6 +1,6 @@
<!-- README.md --> <!-- README.md -->
# Waymark — build and deploy # rs_maps — build and deploy
Single Rust binary + one rootless Postgres container. See `DESIGN.md` for the reasoning. Single Rust binary + one rootless Postgres container. See `DESIGN.md` for the reasoning.

View file

@ -1,5 +1,5 @@
// frontend/app.js // frontend/app.js
/* Waymark all URLs relative, resolved against the injected <base href>. /* rs_maps all URLs relative, resolved against the injected <base href>.
Never use a leading slash: it would escape BASE_PATH. */ Never use a leading slash: it would escape BASE_PATH. */
'use strict'; 'use strict';

View file

@ -7,7 +7,7 @@
and nothing in this app may use a leading-slash URL. --> and nothing in this app may use a leading-slash URL. -->
<base href="__BASE_HREF__"> <base href="__BASE_HREF__">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>Waymark</title> <title>rs_maps</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"> <link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css">
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style.css">
</head> </head>
@ -18,7 +18,7 @@
<div class="auth-card"> <div class="auth-card">
<header class="auth-head"> <header class="auth-head">
<span class="trig" aria-hidden="true"></span> <span class="trig" aria-hidden="true"></span>
<h1>Waymark</h1> <h1>rs_maps</h1>
<p class="auth-sub" id="auth-sub">Places worth going back to.</p> <p class="auth-sub" id="auth-sub">Places worth going back to.</p>
</header> </header>

View file

@ -1,6 +1,6 @@
/* frontend/style.css */ /* frontend/style.css */
/* /*
Waymark chrome for a map, not a dashboard. rs_maps chrome for a map, not a dashboard.
Palette taken from Ordnance Survey sheet conventions: Palette taken from Ordnance Survey sheet conventions:
rights-of-way green, road-fill magenta, contour bistre. rights-of-way green, road-fill magenta, contour bistre.
*/ */
@ -14,7 +14,7 @@
--paper-dim: #9DB0A8; --paper-dim: #9DB0A8;
--moss: #4E9C6B; /* rights of way — primary action */ --moss: #4E9C6B; /* rights of way — primary action */
--moss-lift: #5FB47D; --moss-lift: #5FB47D;
--waymark: #D2467F; /* road fill — shared / accent */ --accent: #D2467F; /* road fill — shared / accent */
--sun: #E2A93C; /* live location, warnings */ --sun: #E2A93C; /* live location, warnings */
--alarm: #D3574B; --alarm: #D3574B;
@ -329,7 +329,7 @@ button.link:hover { color: var(--paper); background: none; }
.badge { .badge {
font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
color: var(--waymark); border: 1px solid var(--waymark); color: var(--accent); border: 1px solid var(--accent);
border-radius: var(--r); padding: 1px 5px; flex: none; border-radius: var(--r); padding: 1px 5px; flex: none;
} }