Seth Hillbrand
455e330f3b
Cleanup a few more raw strings
4 years ago
Seth Hillbrand
5881471a52
Don't write bytecode on MacOS
MacOS packages are signed and checked on each run. Since Python lives
inside the package, adding byte code will break the package signature
4 years ago
qu1ck
b53b68c686
Fix double loading plugins and sys.path entires multiplying
4 years ago
Seth Hillbrand
917845cf00
Ensure we can version scripting properly
Adds Version() and FullVersion() calls to support reporting version to
scripts and scripting window
Fixes https://gitlab.com/kicad/code/kicad/issues/10079
(cherry picked from commit 0a13f15a9d )
4 years ago
Seth Hillbrand
098e8f7d9b
Revert "cmake: adding KICAD_MACOSX_APP_BUNDLE option"
This reverts commit ea9f960cc1 .
Reverted for updates as this currently breaks kicad-mac-builder
4 years ago
Davide Gerhard
ea9f960cc1
cmake: adding KICAD_MACOSX_APP_BUNDLE option
ADDED: with cmake KICAD_MACOSX_APP_BUNDLE option the user can disable
the macOS app bundle creation when compiling on macOS. This permit to
use/install KiCad like any other *nix platform (/usr/bin, /usr/share,
ecc.). By default, cmake build the app bundle.
4 years ago
Seth Hillbrand
fe148df57e
Catch language switch before Python
We don't translate the python scripting window yet, so we need to catch
the KIWAY message to change the language and simply discard it
Fixes https://gitlab.com/kicad/code/kicad/issues/10021
4 years ago
qu1ck
8170e2f57c
When reloading plugins delete top level module too
importlib.reload() has some differences in semantics from import
which leads to some plugins not reloading correctly
4 years ago
qu1ck
0f67c7ed25
When reloading plugins don't delete system modules
4 years ago
Seth Hillbrand
182ccb63ae
Remove config options menu from PyShell
We should figure out how to get these into the json settings. In the
meantime, disable as they are broken on close
Fixes https://gitlab.com/kicad/code/kicad/issues/9691
4 years ago
Seth Hillbrand
70df3822b5
Link command IDs to window frame
This should be compatible with both 4.0 and 4.1 of wxPython
Fixes https://gitlab.com/kicad/code/kicad/issues/9432
4 years ago
Seth Hillbrand
93b25b115b
Handle alternate exception
Apparently, some versions throw one exception, some another. We really
don't care which, we just want an ID value
4 years ago
Seth Hillbrand
9a8d1246cc
We don't keep a CHANGELOG.TXT
Direct interested readers to AUTHORS.TXT instead.
4 years ago
Marek Roszko
67d24e8b00
Don't try and use a empty config path for startup scripts
Fix #9205
4 years ago
Marek Roszko
1463c9ab01
Init isPcbframe in the correct order
Fix #9205
4 years ago
Seth Hillbrand
f469d02f47
Force fitting of the Python window
Test commit to see if this fixes an issue for macs
Fixes https://gitlab.com/kicad/code/kicad/issues/8622
4 years ago
Seth Hillbrand
8ff20fd97b
Ensure python window splits
The History/Calltips/locals window splits were only being shown when
running SingleTop. For unknown reasons, the crust "CallAfter" routine
was not running, so we force the call
4 years ago
Seth Hillbrand
becc3a228e
Hide Python window on close button
4 years ago
Seth Hillbrand
a5955ecbf7
Don't destroy parents
Now that we are handling windows from inside the KiCad framing system,
python console does not need to destroy its own windows. This may help
prevent some odd preference corruption as well
4 years ago
Seth Hillbrand
38cdc362a0
Don't fail if we can't create startup file
Fixes https://gitlab.com/kicad/code/kicad/issues/9205
4 years ago
Seth Hillbrand
73401932f7
Fix python help() parser
Fixes https://gitlab.com/kicad/code/kicad/issues/9191
4 years ago
Jeff Young
b84d1456d5
KIFACE_I -> KIFACE_BASE.
4 years ago
jean-pierre charras
57cfde3123
kicad_pyeditor.py: add missing imports
Fixes #9109
https://gitlab.com/kicad/code/kicad/issues/9109
4 years ago
Mikolaj Wielgus
0c66cb85e3
Python console: Adjust dark theme colors to look better
Fixes https://gitlab.com/kicad/code/kicad/issues/8928
4 years ago
qu1ck
0f7c0e3872
PCM implementation
5 years ago
qu1ck
78ab69027d
Add 3rdparty/plugins to plugin search
5 years ago
jean-pierre charras
7a7eee86ce
kicad_pyshell/__init_py: avoid loading pcbnew module if the board editor is not open.
It happens when opening the python console from Eeschema.
In this case, and on msys2, Pgm() returns a null pointer because the pcbnew
application is not initialized, and the first call to Pgm()
from a python script crashes Kicad
4 years ago
jean-pierre charras
eece74efa7
kicad_pyeditor.py: remove useless "import pcbnew" that create issues when created from Eeschema
4 years ago
Seth Hillbrand
e87fdf06c1
Wrap GetNewId() for older wxPythons
18.04 and earlier use wxPython 4.0.1 that doesn't have the new Id call.
This wraps the id to use the earlier version if the newer one is not
available
Fixes https://gitlab.com/kicad/code/kicad/issues/8887
4 years ago
Jeff Young
6aaf4413b3
Fix kicad_string.h / string.cpp mismatch.
They don't define a KiCad string class, so the header file name was
somewhat misleading. But the fact that they didn't match definitely
made coding more difficult.
4 years ago
Marek Roszko
7ff9806386
Add skipped pdb copy to kipython
4 years ago
Seth Hillbrand
76a6177eb7
Re-direct help() output to console
Keeps a copy of stdin as well, so that re-assigning this in the python
window does't close the output
Fixes https://gitlab.com/kicad/code/kicad/issues/8047
4 years ago
Wayne Stambaugh
6c3ba1c20b
Coverity issue fixes.
Issues #332032 , #332086 , #332157 , and #332171 .
4 years ago
Jeff Young
0dfb5fcaf9
Error message cleanup.
wxString::Format is redundant in a wxLogXXX call.
Error messages should generally be translatable.
Error messages should use generally consistent sentence forms.
4 years ago
Jon Evans
b611da161e
Ensure console can be loaded from Eeschema standalone
PcbNew sets up the correct path as a side-effect of loading
the action plugins.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/8661
4 years ago
Peter Montgomery
b4f5b6ef3c
Update environment var for Python to allow running from build or install folder
4 years ago
luz paz
f968fc8719
Fix source comment / documentation typos
5 years ago
Marek Roszko
0ffabf5e70
Shift the msvc specific pythonhome init
5 years ago
Marek Roszko
ab82b01714
Evict the last bits of wx.h
5 years ago
Seth Hillbrand
891e200fc8
Use Python to test for modules (not CPython)
CPython call requires Python 3.8+, so we work around to keep the 3.6
users happy
Fixes https://gitlab.com/kicad/code/kicad/issues/8554
5 years ago
Jon Evans
148ac19386
Fix launching from the build dir after new_python
5 years ago
Marek Roszko
0dbfd28942
Remove unused vars
5 years ago
Marek Roszko
04ab71c47c
Tweaks to build
5 years ago
Seth Hillbrand
c0bc6b1107
Fix compile errors on MSVC
5 years ago
Seth Hillbrand
e050d42658
Re-enable KICAD_SCRIPTING_WXPYTHON
This keeps wxpython behind a build flag for platforms (mingw) that do
not yet support it.
5 years ago
Seth Hillbrand
e151130356
Adjust init for Python >=3.6
5 years ago
Seth Hillbrand
11592e6eae
Fix scripting window issue not saving settings
5 years ago
Seth Hillbrand
bf1437899e
Add Python Tool to pcbnew
5 years ago
Seth Hillbrand
c7d188a8d0
Centralizing SCRIPTING class
5 years ago
Seth Hillbrand
192fbfd5e5
Finalize Python Frame
5 years ago