From d8680698cfe92711397908f9b2ec937bd39e86b6 Mon Sep 17 00:00:00 2001 From: Serge Bazanski <q3k@q3k.org> Date: Thu, 20 Jul 2023 13:40:33 +0200 Subject: [PATCH] idf_ext: switch to proto6 by default This is the most common badge prototype version at this point. --- idf_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idf_ext.py b/idf_ext.py index 7775df894b..7db2dd20c2 100644 --- a/idf_ext.py +++ b/idf_ext.py @@ -27,7 +27,7 @@ def action_extensions(base_actions, project_path=os.getcwd()): """ generation = global_args.generation if generation is None: - generation = os.environ.get('BADGE_GENERATION', 'proto4') + generation = os.environ.get('BADGE_GENERATION', 'proto6') name = None if generation in GENERATIONS: -- GitLab