From c66d4bab9c642d85c7578f4bb8869c009de44e17 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Mon, 11 Sep 2023 10:40:07 +0200 Subject: [PATCH] SEXPR_BOARD_FILE_VERSION: fix a typo in commit 0e382669: the date is incorrect. was set to 20230606 instead of 20230906. it creates some issues when reading files having a 20230606 as file version. Fixes #15617 https://gitlab.com/kicad/code/kicad/-/issues/15617 --- pcbnew/plugins/kicad/pcb_plugin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/plugins/kicad/pcb_plugin.h b/pcbnew/plugins/kicad/pcb_plugin.h index 3e2ef3a358..5a00d8eef9 100644 --- a/pcbnew/plugins/kicad/pcb_plugin.h +++ b/pcbnew/plugins/kicad/pcb_plugin.h @@ -139,7 +139,7 @@ class PCB_PLUGIN; // forward decl //#define SEXPR_BOARD_FILE_VERSION 20230620 // PCB Fields //#define SEXPR_BOARD_FILE_VERSION 20230730 // Connectivity for graphic shapes //#define SEXPR_BOARD_FILE_VERSION 20230825 // Textbox explicit border flag -#define SEXPR_BOARD_FILE_VERSION 20230606 // Multiple image type support in files +#define SEXPR_BOARD_FILE_VERSION 20230906 // Multiple image type support in files #define BOARD_FILE_HOST_VERSION 20200825 ///< Earlier files than this include the host tag #define LEGACY_ARC_FORMATTING 20210925 ///< These were the last to use old arc formatting