Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
7ce55e48
Commit
7ce55e48
authored
Apr 06, 2008
by
diemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EESchema displays a warning now on a file format mismatch.
parent
a015ff2a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
change_log.txt
change_log.txt
+5
-0
load_one_schematic_file.cpp
eeschema/load_one_schematic_file.cpp
+13
-1
No files found.
change_log.txt
View file @
7ce55e48
...
...
@@ -5,6 +5,11 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with
email address.
2008-Mar-30 UPDATE Jonas Diemer <diemer-at-gmx.de>
================================================================================
+eeschema
EESchema displays a warning now on a file format mismatch.
2008-Mar-31 UPDATE Dick Hollenbeck <dick@softplc.com>
================================================================================
+all
...
...
eeschema/load_one_schematic_file.cpp
View file @
7ce55e48
...
...
@@ -120,8 +120,20 @@ bool WinEDA_SchematicFrame::LoadOneEEFile( SCH_SCREEN* screen, const wxString& F
fclose
(
f
);
return
FALSE
;
}
//get the file version here.
//get the file version here.
TODO: Support version numbers > 9
char
version
=
Line
[
9
+
sizeof
(
SCHEMATIC_HEAD_STRING
)];
int
ver
=
version
-
'0'
;
if
(
ver
>
EESCHEMA_VERSION
)
{
MsgDiag
=
FullFileName
+
_
(
" was created by a more recent version of EESchema and may not load correctly. Please consider updating!"
);
DisplayInfo
(
this
,
MsgDiag
);
}
else
if
(
ver
<
EESCHEMA_VERSION
)
{
MsgDiag
=
FullFileName
+
_
(
" was created by an older version of EESchema. It will be stored in the new file format when you save this file again."
);
DisplayInfo
(
this
,
MsgDiag
);
}
LineCount
++
;
if
(
fgets
(
Line
,
1024
-
1
,
f
)
==
NULL
||
strncmp
(
Line
,
"LIBS:"
,
5
)
!=
0
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment