From acd16adfc8d59cebfa674e5e65e584e87c78d335 Mon Sep 17 00:00:00 2001 From: Samuel Siegart Date: Tue, 13 Feb 2024 12:20:58 -0800 Subject: [PATCH 1/4] Update README.md Add instructions for displaying banner notice --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 98d0801..9d7ee96 100644 --- a/README.md +++ b/README.md @@ -24,3 +24,19 @@ To deploy, push to that branch. e.g. if you've qualified main, ``` git push origin main:beta ``` +## Notices + +To display a notice banner in the app, in the network-config (e.g. https://main.agoric.net/network-config), add an entry to `notices` as demonstrated: +```json +{ +... + "notices": [ + { + "start": "2020-01-01", + "end": "2040-01-01", + "message": "Hello world", + } + ] +... +} +``` From e290cb8a1a2102520873558e51c3be70aac5d353 Mon Sep 17 00:00:00 2001 From: Samuel Siegart Date: Tue, 13 Feb 2024 12:22:33 -0800 Subject: [PATCH 2/4] fix(README): remove trailing comma --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9d7ee96..ad86271 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ To display a notice banner in the app, in the network-config (e.g. https://main. { "start": "2020-01-01", "end": "2040-01-01", - "message": "Hello world", + "message": "Hello world" } ] ... From 2a3249fb9ff34163055ddd6b4a1fedf32f96f3ce Mon Sep 17 00:00:00 2001 From: Samuel Siegart Date: Tue, 13 Feb 2024 12:23:37 -0800 Subject: [PATCH 3/4] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index ad86271..f5d4f1b 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,5 @@ To display a notice banner in the app, in the network-config (e.g. https://main. "message": "Hello world" } ] -... } ``` From 3646aebe70e3d4c186cd6a88dbc611dd609b61d6 Mon Sep 17 00:00:00 2001 From: samsiegart Date: Thu, 15 Feb 2024 10:22:20 -0800 Subject: [PATCH 4/4] chore: format --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f5d4f1b..64b4923 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,11 @@ To deploy, push to that branch. e.g. if you've qualified main, ``` git push origin main:beta ``` + ## Notices To display a notice banner in the app, in the network-config (e.g. https://main.agoric.net/network-config), add an entry to `notices` as demonstrated: + ```json { ...