Skip to content

Commit

Permalink
fixes #1049 version specific HEADER vars
Browse files Browse the repository at this point in the history
  • Loading branch information
mozman committed Mar 15, 2024
1 parent 807da63 commit 6cbc0dd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/ezdxf/sections/headervars.py
Original file line number Diff line number Diff line change
Expand Up @@ -2008,7 +2008,7 @@
name="$XCLIPFRAME",
code=280, # 2004 & 2007 = 290
factory=partial(SingleValue, code=280), # 2004 & 2007 = 290
mindxf=DXF2004,
mindxf=DXF2007, # changed 2024-03-15, issue #1049
maxdxf=DXF2018,
priority=21400,
default=2,
Expand All @@ -2017,7 +2017,7 @@
name="$HALOGAP",
code=280,
factory=partial(SingleValue, code=280),
mindxf=DXF2004,
mindxf=DXF2013, # changed 2024-03-15, issue #1049
maxdxf=DXF2018,
priority=21500,
default=0,
Expand All @@ -2026,7 +2026,7 @@
name="$OBSCOLOR",
code=70,
factory=partial(SingleValue, code=70),
mindxf=DXF2004,
mindxf=DXF2013, # changed 2024-03-15, issue #1049
maxdxf=DXF2018,
priority=21600,
default=257,
Expand All @@ -2035,7 +2035,7 @@
name="$OBSLTYPE",
code=280,
factory=partial(SingleValue, code=280),
mindxf=DXF2004,
mindxf=DXF2013, # changed 2024-03-15, issue #1049
maxdxf=DXF2018,
priority=21700,
default=0,
Expand All @@ -2044,7 +2044,7 @@
name="$INTERSECTIONDISPLAY",
code=280,
factory=partial(SingleValue, code=280),
mindxf=DXF2004,
mindxf=DXF2007, # changed 2024-03-15, issue #1049
maxdxf=DXF2018,
priority=21800,
default=0,
Expand All @@ -2053,7 +2053,7 @@
name="$INTERSECTIONCOLOR",
code=70,
factory=partial(SingleValue, code=70),
mindxf=DXF2004,
mindxf=DXF2007, # changed 2024-03-15, issue #1049
maxdxf=DXF2018,
priority=21900,
default=257,
Expand All @@ -2062,7 +2062,7 @@
name="$DIMASSOC",
code=280,
factory=partial(SingleValue, code=280),
mindxf=DXF2004,
mindxf=DXF2007, # changed 2024-03-15, issue #1049
maxdxf=DXF2018,
priority=22000,
default=2,
Expand All @@ -2071,7 +2071,7 @@
name="$PROJECTNAME",
code=1,
factory=partial(SingleValue, code=1),
mindxf=DXF2004,
mindxf=DXF2007, # changed 2024-03-15, issue #1049
maxdxf=DXF2018,
priority=22100,
default="",
Expand Down

0 comments on commit 6cbc0dd

Please sign in to comment.