co8 j
66f670ca18
Translated using Weblate (Japanese)
Currently translated at 98.7% (10039 of 10163 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ja/
8 months ago
Tokita, Hiroshi
ab27d41dfe
Translated using Weblate (Japanese)
Currently translated at 98.7% (10039 of 10163 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ja/
8 months ago
Wellington Terumi Uemura
8dc2733a33
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (10163 of 10163 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/pt_BR/
9 months ago
Niyazi
76eee9be4a
Translated using Weblate (Turkish)
Currently translated at 65.0% (6606 of 10163 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/tr/
9 months ago
Pferd O
ba782e5bed
Translated using Weblate (German)
Currently translated at 98.6% (10026 of 10163 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/de/
9 months ago
Henrik Kauhanen
c5804bebde
Translated using Weblate (Swedish)
Currently translated at 98.9% (10056 of 10163 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/sv/
9 months ago
Seth Hillbrand
f83e607e6e
Enable/disable git tracking in user prefs
Don't require advanced config for people who want to disable
8 months ago
Mike Williams
6d0a8cd346
pcb design blocks: fix net code mismatch when saving selection
8 months ago
Jeff Young
9c375581ff
Don't assert (or crash) on shutdown.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20433
8 months ago
Jeff Young
0a4533703c
Performance.
8 months ago
Jon Evans
d205a136a9
Ignore KiCad lock files
8 months ago
Jon Evans
8921824128
Mark pad as dirty when changing layerset
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20435
8 months ago
Ethan Chien
52514e1bfe
Update CMake presets to version 9 and enhance build configurations for Windows
8 months ago
Seth Hillbrand
36366e254d
Ignore autogenerated files
8 months ago
Seth Hillbrand
ea36110980
Trying again to fix Mac build
8 months ago
Seth Hillbrand
b65ceb60b2
Fix builds for newer libgit2 (1.8.0 and newer)
8 months ago
Seth Hillbrand
faf6243d1a
Fix build on Windows
8 months ago
Seth Hillbrand
b8225ba2d6
Fix some regressions in git handling
Set default to rebase for pull
Update error string on auth failure
Improve trace logging
8 months ago
Jeff Young
0d6838b803
Add support for mixed-state checkboxes in grids.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/17730
8 months ago
Jeff Young
5e61a5193f
Fix misleading cast.
8 months ago
Seth Hillbrand
e6843cde64
Don't re-read tokens on error
If the data were empty, there is no token, so curTok will represent the
right paren, not the next token
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20301
(cherry picked from commit d2550138bc )
8 months ago
Mike Williams
e11cf94a3e
design blocks: add PCB design blocks behind advanced config
Fixes: https://gitlab.com/kicad/code/kicad/-/issues/2508
8 months ago
JamesJCode
e64239969a
Fix compiler warnings
8 months ago
Jeff Young
9a1e42f228
Autocomplete for Execute Command job.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/19735
8 months ago
Wayne Stambaugh
f5cae044d0
Fix Coverity issue #545159 and all related issues.
Don't use fmt::format() when formatting wxString objects. It will throw
an exception on an argument type mismatch which isn't handled in most
code paths.
This also prevents the conversion of the fmt::format() arguments from
wxString to std::string and the result from std::string back to wxString
for the return value.
https://scan8.scan.coverity.com/#/project-view/22886/10844?selectedIssue=545159
8 months ago
Seth Hillbrand
b567532af7
Add minimum libgit2 version
Crashes have been reported with libgit2 1.3.2 and ssh key handling
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20204
8 months ago
Jeff Young
59e77e977e
Don't use net/netclass colors for label graphic shapes.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/19589
8 months ago
Jeff Young
1b7f92f4c5
Refresh search when showing pane.
(Events will have been ignored while it is
hidden.)
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20009
8 months ago
Jeff Young
b366204824
Handle home dir shortcut in jobset destinations.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20032
8 months ago
Brendan Hickey
33a8cd942f
Increase GerbView max DCode Id to 2^31-1
I (charrasjp) fixed the compil issues of the Brendan Hickey's initial work and some other minor issues.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20323
8 months ago
Jeff Young
86e1d4c684
Shorten opt-in text and improve Yes/No button labels.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20027
8 months ago
Jeff Young
5ec526fe4f
Don't write out empty footprint filters.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20394
8 months ago
Jeff Young
d3f57fac5a
Must assign extension to keep from stripping last '.' section.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20065
8 months ago
Jeff Young
0aa4f11970
Fix format string.
8 months ago
jean-pierre charras
21725eeef3
~EDA_DRAW_PANEL_GAL(): Fix crash: ensure a onShowEvent is not fired.
Due to changes in EDA_DRAW_PANEL_GAL (a wxEVT_SHOW event was added) when
destroyed a dialog using it (namely the PAD editor) a wxEVT_SHOW event was fired
during Dtor process (at least on Windows). It is now disabled in Dtor.
8 months ago
Mike Williams
a648fccbb3
schematic editor: remove 10ms OnShow timer to reduce CPU load
Fixes: https://gitlab.com/kicad/code/kicad/-/issues/20385
8 months ago
Jeff Young
19d1b6ec52
Don't let legacy overbar processing mess up empty-string test.
8 months ago
Jeff Young
eb4a52f372
Remove debugging code accidentally left in.
8 months ago
Jeff Young
f0c81e972f
Fix accidental ingoring of rotation angle.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20271
8 months ago
Jeff Young
7e046e6c8b
Remove '~' == empty_string.
It has long outlived its usefulness (which was
to preserve token sequence in pre-sexpr files).
This will no doubt turn up latent issues....
8 months ago
Wayne Stambaugh
bc4a40de76
Fix Coverity issue #543091 .
https://scan8.scan.coverity.com/#/project-view/22886/10844?selectedIssue=543091
8 months ago
Wayne Stambaugh
4cb234862c
Fix Coverity issue #542006 .
https://scan8.scan.coverity.com/#/project-view/22886/10844?selectedIssue=542006
8 months ago
Mike Williams
18010b1104
selection: sort box selection by rows and columns by default
Some tools can take a selection order and it is nice to provide a
sane human-oriented default sorting when box selecting.
8 months ago
Mike Williams
7578439b0c
PCB editor: extend create array functionality to arrange existing items
Fixes: https://gitlab.com/kicad/code/kicad/-/issues/19919
9 months ago
jean-pierre charras
b7fd26e026
PANEL_DESIGN_BLOCK_CHOOSER: use the same draw engine type as in main frame.
This is not always the Opengl GAL_TYPE
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20386
8 months ago
Jeff Young
8994f6abd7
Leave navigation controls active.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20378
8 months ago
Jeff Young
3328dc48be
Don't leave dangling event handler.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20380
8 months ago
Jeff Young
b4640cdc55
Search all fields, hidden or not.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20370
8 months ago
Jeff Young
0a3ddd33ee
Use ERROR_INSIDE for knockout text (and a 0 gap).
9 months ago
Jeff Young
824c7ecfa7
Improve readability.
Also drops a parameter that hasn't been implemented
since early 2022.
9 months ago