2020-02-28 14:03:09 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2021-04-06 18:27:24 +00:00
|
|
|
* Copyright (C) 2020-2021 CERN
|
2022-01-25 22:33:37 +00:00
|
|
|
* Copyright (C) 2020-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2020-02-28 14:03:09 +00:00
|
|
|
* @author Wayne Stambaugh <stambaughw@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This file contains the file format version information for the s-expression schematic
|
|
|
|
* and symbol library file formats.
|
|
|
|
*
|
|
|
|
* @note Comment out the last version and add the new version as a date time stamp in the
|
|
|
|
* YYYYMMDD format. Comment the changes to the file format for historical purposes.
|
|
|
|
*/
|
2020-03-16 13:04:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Symbol library file version.
|
|
|
|
*/
|
2020-08-21 15:54:24 +00:00
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20200126 // Initial version. Add alternate pin
|
|
|
|
// definitions.
|
|
|
|
|
2020-08-27 19:22:51 +00:00
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20200820
|
|
|
|
|
2021-06-19 19:32:03 +00:00
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20200827 // Remove host tag.
|
2020-10-06 13:34:38 +00:00
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20200908 // Add include in BOM and on board support.
|
2021-06-19 19:32:03 +00:00
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20201005 // Separate ki_fp_filters by spaces.
|
2021-10-12 20:05:37 +00:00
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20210619 // Change pin overbar syntax from `~...~` to `~{...}`.
|
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20211014 // Arc formatting.
|
2022-01-03 01:17:42 +00:00
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20220101 // Class flags.
|
2022-01-25 22:33:37 +00:00
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20220102 // Fonts.
|
2022-03-28 09:32:07 +00:00
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20220126 // Text boxes.
|
2022-03-31 18:43:08 +00:00
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20220328 // Text box start/end -> at/size.
|
2022-09-15 14:54:17 +00:00
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20220331 // Text colors.
|
2022-10-01 00:16:24 +00:00
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20220914 // Symbol unit display names.
|
2023-06-20 16:59:06 +00:00
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20220914 // Don't save property ID
|
2023-11-19 14:02:52 +00:00
|
|
|
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20230620 // ki_description -> Description Field
|
|
|
|
#define SEXPR_SYMBOL_LIB_FILE_VERSION 20231120 // generator_version; V8 cleanups
|
2020-02-28 14:03:09 +00:00
|
|
|
|
2020-03-16 13:04:50 +00:00
|
|
|
/**
|
2021-06-19 14:32:55 +00:00
|
|
|
* Schematic file version.
|
2020-03-16 13:04:50 +00:00
|
|
|
*/
|
2020-05-06 14:47:51 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20200310 // Initial version. Sheet fields were named
|
2021-06-09 19:32:58 +00:00
|
|
|
// incorrectly (using symbol field vocabulary).
|
2020-05-12 11:53:45 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20200506 // Used "page" instead of "paper" for paper
|
|
|
|
// sizes.
|
2020-06-03 12:30:57 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20200512 // Add support for exclude from BOM.
|
2020-06-09 16:50:05 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20200602 // Add support for exclude from board.
|
2020-06-19 11:48:00 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20200608 // Add support for bus and junction properties.
|
2020-07-14 14:59:07 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20200618 // Disallow duplicate field ids.
|
2020-08-21 15:54:24 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20200714 // Add alternate pin definitions.
|
2020-08-27 19:22:51 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20200820
|
2021-06-19 19:32:03 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20200827 // Remove host tag.
|
2020-10-18 20:30:37 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20200828 // Add footprint to symbol_instances.
|
2021-01-23 16:39:38 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20201015 // Add sheet instance properties.
|
2021-01-25 22:01:49 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20210123 // Rename "unconnected" pintype to "no_connect".
|
2021-01-26 19:00:42 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20210125 // R/W uuids for pins, labels, wires, etc.
|
2021-04-06 18:27:24 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20210126 // Fix bug with writing pin uuids.
|
2021-06-11 17:06:13 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20210406 // Add schematic level uuids.
|
2021-06-15 12:08:26 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20210606 // Change overbar syntax from `~...~` to `~{...}`.
|
2021-06-21 19:03:32 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20210615 // Update overbar syntax in net names.
|
2021-11-23 22:15:25 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20210621 // Update overbar syntax in bus aliases.
|
2021-07-17 19:56:18 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20211123 // R/W uuids for junctions.
|
2021-07-22 23:05:01 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220101 // Circles, arcs, rects, polys & beziers
|
2021-10-12 20:05:37 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220102 // Dash-dot-dot
|
2022-01-03 01:17:42 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220103 // Label fields
|
2022-01-24 13:40:39 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220104 // Fonts
|
2022-01-25 22:33:37 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220124 // netclass_flag -> directive_label
|
2022-03-28 09:32:07 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220126 // Text boxes
|
2022-03-31 18:43:08 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220328 // Text box start/end -> at/size
|
2022-04-08 16:05:27 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220331 // Text colors
|
2022-06-21 02:22:52 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220404 // Default schematic symbol instance data.
|
2022-08-20 17:47:43 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220622 // New simulation model format.
|
2022-05-14 13:52:53 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220820 // Fix broken default symbol instance data.
|
2022-09-04 16:34:16 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220822 // Hyperlinks in text objects
|
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220903 // Field name visibility
|
2022-09-16 16:20:36 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220904 // Do not autoplace field option
|
2022-10-01 00:16:24 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220914 // Add support for DNP
|
2022-10-01 12:44:21 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20220929 // Don't save property ID
|
2022-10-04 11:45:22 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20221002 // Move instance data back into symbol definition.
|
2022-11-22 19:35:27 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20221004 // Move instance data back into symbol definition.
|
2022-11-25 14:25:39 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20221110 // Move sheet instance data to sheet definition.
|
2022-12-06 14:00:11 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20221126 // Remove value and footprint from instance data.
|
2023-01-21 23:25:40 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20221206 // Simulation model fields V6 -> V7
|
2023-02-20 17:55:02 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20230121 // SCH_MARKER specific sheet path serialisation
|
2023-04-09 11:14:21 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20230221 // Modern power symbols (editable value = net)
|
2023-06-20 16:59:06 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20230409 // Add exclude_from_sim markup
|
2023-08-08 16:32:08 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20230620 // ki_description -> Description Field
|
2023-08-20 16:05:31 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20230808 // Move Sim.Enable field to exclude_from_sim attr
|
2023-11-19 14:02:52 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20230819 // Allow multiple library symbol inheritance depth.
|
2023-11-25 12:38:24 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20231120 // generator_version; V8 cleanups
|
2024-04-25 14:24:46 +00:00
|
|
|
//#define SEXPR_SCHEMATIC_FILE_VERSION 20240101 // Tables.
|
|
|
|
#define SEXPR_SCHEMATIC_FILE_VERSION 20240417 // Rule areas
|