Index: trunk/src/plugins/io_eeschema/read_disp.c =================================================================== --- trunk/src/plugins/io_eeschema/read_disp.c (revision 11446) +++ trunk/src/plugins/io_eeschema/read_disp.c (revision 11447) @@ -53,6 +53,7 @@ gsxl_node_t* node) { static const int min_ver = 20211123; + static const int max_ver = 20250114; TODO("Adjust version requirement"); if(node!=NULL && node->str!=NULL) @@ -74,6 +75,14 @@ return -1; } + if(ctx->ver>max_ver) + { + rnd_message(RND_MSG_WARNING, "%s:%ld:%ld: eeschema schematics " + "file is newer than this plugin was designed for, " + "you may experience glitches, please report them\n", + ctx->fn, 1+(long)node->line, 1+(long)node->col); + } + return attach_attrib(ctx, &ctx->sheet->direct, node->parent, node->parent->str, node->str); }