commit 0105eee664727795aee703fde3095b58e3e84de0
parent 346b4d5fc7425664c82be8e496dfafb4d9437cdc
Author: mtmn <miro@haravara.org>
Date: Sun, 19 Apr 2026 20:14:14 +0200
feat: add custom user name, fixes
Diffstat:
3 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/src/Client.elm b/src/Client.elm
@@ -797,7 +797,7 @@ view model =
[ input
[ type_ "text"
, class "search-input"
- , placeholder "search tracks, artists, albums, labels…"
+ , placeholder "track, artist, album or label"
, value model.searchInput
, onInput UpdateSearchInput
, onEnter SubmitSearch
@@ -1407,7 +1407,10 @@ renderAboutView currentSlug allUsers =
, div [ class "stats-section" ]
[ h2 [] [ text "source" ]
, p [ class "about-meta" ]
- [ extLink "https://codeberg.org/mtmn/corpus" "codeberg.org/mtmn/corpus" ]
+ [ div [] [ extLink "https://github.com/mtmn/corpus" "github repo" ]
+ , div [] [ extLink "https://instagram.com/counterpoint303" "counterpoint" ]
+ , div [] [ extLink "https://mtmn.name" "mtmn.name" ]
+ ]
]
, if List.isEmpty otherUsers then
text ""
diff --git a/users.dhall b/users.dhall
@@ -29,7 +29,7 @@ in { users =
with backupEnabled = True
}
, { slug = "mtmnn"
- , name = None Text
+ , name = Some "mtmn (last.fm)"
, config =
defaults
with lastfmUser = Some "mtmnn"
diff --git a/users.json b/users.json
@@ -21,6 +21,7 @@
"initialSync": true,
"lastfmUser": "mtmnn"
},
+ "name": "mtmn (last.fm)",
"slug": "mtmnn"
}
]