From 60bdaa27a05e84040c55a6dccd619df4085c5d04 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Thu, 10 Aug 2023 19:32:41 +1000 Subject: [PATCH 1/2] Update Nostr name aliases to match prod username --- wellknowns/views/nostr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wellknowns/views/nostr.py b/wellknowns/views/nostr.py index bf21a3e..0765d1f 100644 --- a/wellknowns/views/nostr.py +++ b/wellknowns/views/nostr.py @@ -1,7 +1,7 @@ from django.http import JsonResponse from users.models import User -aliases = {"00dani": ("_", "dani")} +aliases = {"dani": ("_", "00dani")} unaliases = {alias: name for (name, aliases) in aliases.items() for alias in aliases} From 03956637bef7072548f8f98a32ae5d7ebe450786 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Thu, 10 Aug 2023 19:33:08 +1000 Subject: [PATCH 2/2] v1.12.2 --- package.json | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b56449e..97671a7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lemoncurry", - "version": "1.12.1", + "version": "1.12.2", "repository": "https://git.00dani.me/00dani/lemoncurry", "license": "MIT", "devDependencies": { diff --git a/pyproject.toml b/pyproject.toml index 1827203..ecfd63c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "lemoncurry" -version = "1.12.1" +version = "1.12.2" description = "Indieweb-compatible personal website" authors = ["Danielle McLean "] license = "MIT"