From a3253b0496ae374633e89af3fa099a31309372c3 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Mon, 31 Jul 2023 13:35:18 -0300 Subject: [PATCH] [Intall Check][Fixed] Show 7.x as supported - Only 7.99 is shown in red --- CHANGELOG.md | 2 ++ src/kibot-check | 2 +- src/kibot-check.in | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e805dcae8..e0b59c632 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Rotated polygons and text used in the worksheet (#466) - BoM: - Problems when trying to aggregate the datasheet field (#472) +- kibot-check: + - Show 7.x as supported (#469) ## [1.6.3] - 2023-06-26 diff --git a/src/kibot-check b/src/kibot-check index 7118861a2..4beae1cc5 100755 --- a/src/kibot-check +++ b/src/kibot-check @@ -1728,7 +1728,7 @@ if kicad_ok: version = 'Older than 5.1.6' else: version = NOT_AVAIL -if kicad_version >= (5, 1, 6) and kicad_version < (6, 99): +if kicad_version >= (5, 1, 6) and kicad_version < (7, 99): sev = 0 else: sev = 4 diff --git a/src/kibot-check.in b/src/kibot-check.in index d10c80151..369d3c9fb 100755 --- a/src/kibot-check.in +++ b/src/kibot-check.in @@ -409,7 +409,7 @@ if kicad_ok: version = 'Older than 5.1.6' else: version = NOT_AVAIL -if kicad_version >= (5, 1, 6) and kicad_version < (6, 99): +if kicad_version >= (5, 1, 6) and kicad_version < (7, 99): sev = 0 else: sev = 4