jean-pierre charras
0a3f5b65bf
Fix last changes in io.cpp for msys2.
...
- use the same code for msys2 and msvc
- add an option to use a fallback for msys2 if the common code does not compile
2023-05-29 13:38:52 -04:00
Marek Roszko
93c29ad15e
Add a sequential read flagged fopen helper
...
Trying to squeeze out some kind of gain by informing the OS we will read a file sequentially.
In particular our FILE_LINE_READER just uses fgetc until the end
2023-05-29 13:36:06 -04:00
Marek Roszko
8f565ef7f0
Replace the exception handler in another spot
2023-05-28 22:31:29 -04:00
Marek Roszko
d97de297af
Move 3 more blocks to the common ex handler
2023-05-28 22:31:18 -04:00
Marek Roszko
18ac4c2288
Handle OnKifaceStart exceptions without crashing
2023-05-28 22:30:07 -04:00
Marek Roszko
0c6eb6dec3
Create a central exception handler we can also use to generate sentry events
...
(cherry picked from commit c5d5450f55
)
2023-05-29 02:27:21 +00:00
Jeff Young
4a274709e7
Go back to using QuasiModal for TextBox Properties.
...
Also removes auto-closing of blocking dialogs when inserting
symbols from the Symbol Editor or Chooser, preventing the bug
that QuasiModel was removed for earlier.
Also fixes a non-initialized parent pointer when the TextBox
Properties dialog was called from DrawShape().
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14777
(cherry picked from commit 5a9ed66cfd
)
2023-05-28 19:19:50 +01:00
Jeff Young
c6e4f18d99
Hook up text variable auto-complete for PCBNew.
...
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14777
(cherry picked from commit 14f004d2a5
)
2023-05-28 18:46:39 +01:00
Wayne Stambaugh
0e5155ae2f
Fix clipped combobox entry in board editor text box dialog.
...
The layer combobox color swatch was clipped when the combobox was
closed when the dialog was launched. Setting the minimum width
resolved the issue. This may have been a GTK only issue.
(cherry picked from commit a13a49f45a
)
2023-05-28 18:43:32 +01:00
Jeff Young
aa78abc649
Manual reimplementation of 84c72b087c
...
(cherry picked from commit 7cc55d2d3a
)
2023-05-28 19:38:27 +02:00
Jeff Young
1c62fc868d
Fix more SPICE case-insensitivity bugs.
...
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14793
(cherry picked from commit 03486443c7
)
(cherry picked from commit e5d5335701
)
2023-05-28 19:38:27 +02:00
Mark Visser
f9c2f03a44
fix bug whereby spice params with capital letters no longer cause an error and data loss
...
Spice parameters were converted to lower-case before comparison. This is incorrect, as it
is legal and common for spice parameters to contain capital letters (e.g. potentiometers
typically use Rt and SET as their parameters).
Spice parameters are not case sensitive, so the correct behaviour is to instead do a
case-insensitive comparison on the parameter name.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14793
(cherry picked from commit 0d235ac64b
)
(cherry picked from commit 888a35bbde
)
2023-05-28 19:38:27 +02:00
Jeff Young
dfd11b7596
Reconcile PNS router with DRC.
...
Hole-to-hole is only for drilled holes.
NPTH slots also get EDGE_CLEARANCE applied.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14771
(cherry picked from commit df763eaf88
)
(cherry picked from commit ad9109cad4
)
2023-05-28 19:38:27 +02:00
Jeff Young
98796f6250
Reset button applies to resolved page, not lazy page holder.
...
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14786
(cherry picked from commit 1057483983
)
(cherry picked from commit 232d0e8b6b
)
2023-05-28 19:38:27 +02:00
Jeff Young
b728251bcc
STL is your friend... until it's not.
...
Operator[] was creating an empty entry in the connectivity map,
fooling us into thinking the item had already been added.
Worryingly, this bug has been in there since 2017; a recent
change in teardrops just happened to expose it.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14781
(cherry picked from commit 7e51077992
)
(cherry picked from commit 0d94532df9
)
2023-05-28 19:38:27 +02:00
Jeff Young
d894faaeaa
Pin preferences dialog size.
...
While unfortunate (we generally frown on having fixed sizes in
favour of having everything auto-layout), in this case it's a
cost of lazy-loading the panels.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14785
(cherry picked from commit cbf83c4161
)
(cherry picked from commit 799302cd6d
)
2023-05-28 19:38:27 +02:00
Jeff Young
8b114c81c5
Fix issue with colours in the new lazy-loaded preference panels.
...
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14784
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14782
(cherry picked from commit d4c9d9d60a
)
(cherry picked from commit c33b3fd314
)
2023-05-28 19:38:27 +02:00
Jeff Young
97ffb60f23
Don't consider shorted items when opitmizing ratsnest.
...
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14715
(cherry picked from commit 80aef37cc4
)
(cherry picked from commit dc50b7b065
)
2023-05-28 19:38:27 +02:00
Jeff Young
41b7182661
Lazy loading of stackup UI widgets.
...
(cherry picked from commit 9481a218c7
)
(cherry picked from commit 00a82905ec
)
2023-05-28 19:38:27 +02:00
Jeff Young
19e5a231a7
Don't run onPageChanged() event handler during initialization.
...
(cherry picked from commit 3f44c811c7
)
(cherry picked from commit f35ed59868
)
2023-05-28 19:38:27 +02:00
Jeff Young
01fcb2276b
Move remainder of Board Setup to lazy loading.
...
(cherry picked from commit 03c9b1c202
)
(cherry picked from commit 3cd87c2a44
)
2023-05-28 19:38:27 +02:00
Jeff Young
19b4e98ee7
Lazy loading of Schematic Setup panels.
...
(cherry picked from commit ddc6ecf7be
)
(cherry picked from commit 6cbc10db81
)
2023-05-28 19:38:27 +02:00
Jeff Young
77c76bbc8a
Insta-prefs.
...
(cherry picked from commit 9ae8255202
)
(cherry picked from commit 4c28070449
)
2023-05-28 19:38:27 +02:00
Jeff Young
00bb1636da
Don't store sizes in panels. Let them auto-lay-out.
...
(cherry picked from commit 6bf43588bb
)
(cherry picked from commit bf4f6cff3c
)
2023-05-28 19:38:27 +02:00
jean-pierre charras
50ec496c54
Step exporter: export circular board outlines as cylinder
...
From master branch, commit 66651327
.
(cherry picked from commit 5db9a6af9d
)
2023-05-28 19:38:27 +02:00
jean-pierre charras
2b8ad1b65c
Eeschema: fix block mirroring of fields attached to labels (all types)
...
Fix incorrect orientation of the graphic shape of SCH_DIRECTIVE_LABEL items
after mirroring the item.
Similar to commit 898d88cc
, but for block mirroring.
Fixes #14758
https://gitlab.com/kicad/code/kicad/-/issues/14758
(cherry picked from commit b968bac318
)
2023-05-28 19:38:27 +02:00
Wayne Stambaugh
5c5f077a4a
Begin version 7.0.6 development.
2023-05-26 08:36:00 -04:00
Wayne Stambaugh
b05f6f1614
Tag release version 7.0.5.
2023-05-26 08:35:08 -04:00
Tomasz Wlostowski
0180cb380f
router: prevent pushout/bogus collision of via with is own hole (or copper) when dragging
...
The root cause was not removing the original (pre-dragging) via from the world, comparing the ITEM::Parent() pointers of the items was only hiding the main issue.
This also fixes the PNSViaCollisions test in the qa/ suite.
2023-05-24 19:47:20 -07:00
Jeff Young
882e48b457
Don't allow collisions with self.
...
The previous test didn't handle is-self-tests between a hole and
its override in a different NODE. When calculating the pushout
force we don't remove the via (and its hole) from the current
node until after the calculation, so we end up checking for
collisions between the new (cloned) via's hole and the original
hole in the root node.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14795
(cherry picked from commit b442d769fd
)
2023-05-24 08:54:27 -07:00
Seth Hillbrand
fa56b17c88
Revert "Fix clipped combobox entry in board editor text box dialog."
...
This reverts commit 7ea907c343
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
6b1c2da867
Revert "Eeschema: fix block mirroring of fields attached to labels (all types)"
...
This reverts commit b968bac318
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
84eacd13a1
Revert "Step exporter: export circular board outlines as cylinder"
...
This reverts commit 5db9a6af9d
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
b6bd1a9373
Revert "Don't store sizes in panels. Let them auto-lay-out."
...
This reverts commit bf4f6cff3c
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
7e39411910
Revert "Insta-prefs."
...
This reverts commit 4c28070449
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
2f3659e7ac
Revert "Lazy loading of Schematic Setup panels."
...
This reverts commit 6cbc10db81
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
c0567aa011
Revert "Move remainder of Board Setup to lazy loading."
...
This reverts commit 3cd87c2a44
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
9b310ab955
Revert "Don't run onPageChanged() event handler during initialization."
...
This reverts commit f35ed59868
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
5226855158
Revert "Lazy loading of stackup UI widgets."
...
This reverts commit 00a82905ec
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
ee19354484
Revert "Don't consider shorted items when opitmizing ratsnest."
...
This reverts commit dc50b7b065
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
e967020ebe
Revert "Fix issue with colours in the new lazy-loaded preference panels."
...
This reverts commit c33b3fd314
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
7b0d45402a
Revert "Pin preferences dialog size."
...
This reverts commit 799302cd6d
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
714250d9f6
Revert "STL is your friend... until it's not."
...
This reverts commit 0d94532df9
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
b4e3ce1166
Revert "Reset button applies to resolved page, not lazy page holder."
...
This reverts commit 232d0e8b6b
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
1958cafbdf
Revert "Reconcile PNS router with DRC."
...
This reverts commit ad9109cad4
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
248de56fb0
Revert "fix bug whereby spice params with capital letters no longer cause an error and data loss"
...
This reverts commit 888a35bbde
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
89349c1084
Revert "Fix more SPICE case-insensitivity bugs."
...
This reverts commit e5d5335701
.
2023-05-24 08:54:16 -07:00
Seth Hillbrand
e2c0c6362f
Revert "Manual reimplementation of 84c72b087c548829908d7fbbecfd2fa5968cc98b"
...
This reverts commit 7cc55d2d3a
.
2023-05-24 08:54:16 -07:00
Jeff Young
7cc55d2d3a
Manual reimplementation of 84c72b087c
2023-05-23 09:40:32 +01:00
Jeff Young
e5d5335701
Fix more SPICE case-insensitivity bugs.
...
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14793
(cherry picked from commit 03486443c7
)
2023-05-23 09:40:32 +01:00