commit 6426edd206dc675f3c5c7b94be0c70d40f7add81
parent cd465a9f3d38b44f9fec31c6a657a8ffe77c2c9a
Author: Christian Grothoff <christian@grothoff.org>
Date: Mon, 26 Sep 2022 14:56:16 +0200
update release notes
Diffstat:
4 files changed, 60 insertions(+), 27 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,12 @@
+Mon 26 Sep 2022 02:48:38 PM CEST
+ Multiple providers operational.
+ WebUI operational at https://webui.anastasis.lu/.
+ Various UI/UX improvements.
+ Releasing Anastasis v0.3.0. -CG
+
+Thu 30 Sep 2021 03:48:38 PM CEST
+ Releasing Anastasis v0.2.0. -CG
+
Tue 24 Aug 2021 10:30:23 PM CEST
IBAN authentication support working.
Releasing Anastasis v0.1.0. -CG
diff --git a/README b/README
@@ -48,3 +48,53 @@ src/cli/ includes a reducer-based command-line interface
contrib/ contains resource files, like what identity attributes to ask for
doc/ contains documentation files, like TeXinfo
po/ internationalization via GNU gettext
+
+
+Development note
+================
+
+To test against a local development service, add
+
+ {
+ "code" : "xx",
+ "name" : "Testland",
+ "continent" : "Demoworld",
+ "call_code" : "+00"
+ }
+
+to contrib/redux.countries.json, and also append something like
+
+ {
+ "url" : "http://localhost:8086/",
+ "restricted" : "xx"
+ },
+ {
+ "url" : "http://localhost:8087/",
+ "restricted" : "xx"
+ },
+ {
+ "url" : "http://localhost:8088/",
+ "restricted" : "xx"
+ },
+ {
+ "url" : "http://localhost:8089/",
+ "restricted" : "xx"
+ }
+
+to contrib/provider-list.json. Then the reducer will use these
+providers on loopback for the "testland" country.
+
+
+Experimental providers
+======================
+
+We hope to have another provider running soon. Once it is operational,
+we should add
+
+ {
+ "url" : "https://v1.anastasis.openw3b.org/",
+ "name" : "Openw3b Foundation, India"
+ },
+
+to the contrib/provider-list.json.
+
diff --git a/contrib/provider-list.json b/contrib/provider-list.json
@@ -11,28 +11,8 @@
"name" : "Codeblau GmbH, Germany"
},
{
- "url" : "https://v1.anastasis.openw3b.org/",
- "name" : "Openw3b Foundation, India"
- },
- {
"url" : "https://v1.anastasis.lu/",
"name" : "Anastasis SARL, Luxembourg"
- },
- {
- "url" : "http://localhost:8086/",
- "restricted" : "xx"
- },
- {
- "url" : "http://localhost:8087/",
- "restricted" : "xx"
- },
- {
- "url" : "http://localhost:8088/",
- "restricted" : "xx"
- },
- {
- "url" : "http://localhost:8089/",
- "restricted" : "xx"
- }
+ }
]
}
diff --git a/contrib/redux.countries.json b/contrib/redux.countries.json
@@ -85,12 +85,6 @@
"name" : "United States of America (USA)",
"continent" : "North America",
"call_code" : "+1"
- },
- {
- "code" : "xx",
- "name" : "Testland",
- "continent" : "Demoworld",
- "call_code" : "+00"
}
]
}