From bf822e557ca6a7a8dd2e02e61d40065dac36fe5b Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 15 Jun 2021 17:45:18 +0100 Subject: [PATCH] Add ZF DAG view --- index.html | 7 ++++--- zcash-issue-dag.py | 8 ++++++++ 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 7460e970..9b8775f6 100644 --- a/index.html +++ b/index.html @@ -6,8 +6,9 @@

Zcash Developers Hub

Eventually this will be a common resource for development teams working on Zcash.

-

Currently this is just hosting DAGs showing dependencies between issues and PRs, for several ECC teams.

-

Zcash core team DAG

-

Zcash wallet team DAG

+

Currently this is just hosting DAGs showing dependencies between issues and PRs, for several Zcash teams.

+

ECC core team DAG

+

ECC wallet team DAG

+

ZF DAG

diff --git a/zcash-issue-dag.py b/zcash-issue-dag.py index a72c14d1..a3dc1c53 100755 --- a/zcash-issue-dag.py +++ b/zcash-issue-dag.py @@ -39,9 +39,17 @@ WALLET_REPOS = { 225922879: ('zcash', 'zcash-ios-wallet'), } +ZF_REPOS = { + 205255683: ('ZcashFoundation', 'zebra'), + 225479018: ('ZcashFoundation', 'redjubjub'), + 235651437: ('ZcashFoundation', 'ed25519-zebra'), + 279422254: ('ZcashFoundation', 'zcash_script'), +} + REPO_SETS = { 'core': CORE_REPOS, 'wallet': WALLET_REPOS, + 'zf': ZF_REPOS, } REPOS = REPO_SETS[DAG_VIEW]