Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New appliance format version 8 #781

Merged
merged 10 commits into from
Aug 16, 2023
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ GNS3 checks the schema version, if the schema of an appliance is not supported i
| 5 | 2.1.0 | qemu/console_type: spice |
| 6 | 2.2.0 | qemu/custom_adapters<br>qemu/console_type: spice+agent<br>all/console_type: none|
| 7 | 2.2.36 | qemu/tpm |
| 8 | 3.0.0 | qemu/uefi |

Adding a new symbol
-------------------
Expand Down
2 changes: 1 addition & 1 deletion check.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from picture import get_size

APPLIANCE_IDS = []
SCHEMA_VERSIONS = [4, 5, 6, 7]
SCHEMA_VERSIONS = [4, 5, 6, 7, 8]

warnings = 0

Expand Down
Loading