summaryrefslogtreecommitdiff
path: root/grc/core/Config.py
Commit message (Collapse)AuthorAgeFilesLines
* grc: pep8 formattingJosh Morman2021-11-241-3/+6
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* GRC Fix Date String in About dialogMarcus Müller2021-03-241-2/+1
| | | | Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* cppgen: Update to modern CMakeHåkon Vågsether2020-11-071-0/+1
|
* grc: use os.pathsep (Windows)japm482020-09-301-3/+1
| | | | | | os.path.sep is unreliable in Windows ("\" in official python, "/" in MSYS2) With this change os.pathsep is used instead to get the path separator: ":" (*nix) or ";" (Windows)
* python: Remove unnecessary 'from __future__ import'Oleksandr Kravchuk2020-08-031-1/+0
| | | | | | | | | | | | | | | | All of the removed `from __future__ import` were needed in older versions of Python (mostly 2.5.x and below) but later became mandatory in most versions of Python 3 hence are not necessary anymore. More specifically, according to __future__.py[1]: - unicode_literals is part of Python since versions 2.6.0 and 3.0.0; - print_function is part of Python since versions 2.6.0 and 3.0.0; - absolute_import is part of Python since versions 2.5.0 and 3.0.0; - division is part of Python since versions 2.2.0 and 3.0.0; Get rid of those unnecessary imports to slightly clean up the codebase. [1] https://github.com/python/cpython/blob/master/Lib/__future__.py
* grc: Deduplicate block pathsMartin Braun2020-04-281-0/+4
| | | | | | | | GRC reads paths from various sources, including the GRC_BLOCKS_PATH environment variable. It can happen that paths appear twice in the list, causing warnings about findings blocks twice. This deduplicates the paths in the config object.
* Update license header to SPDX formatdevnulling2020-01-271-13/+2
|
* Update links to https://www.gnuradio.orgClayton Smith2018-10-281-1/+1
|
* grc: disable auto-conversion and implement json cacheSebastian Koslowski2017-11-081-6/+0
|
* grc: added yaml/mako supportSebastian Koslowski2017-06-291-2/+7
| | | | Includes basic converter from XML/Cheetah to YAML/Mako based block format.
* Merge remote-tracking branch 'upstream/next' into gtk3Sebastian Koslowski2016-11-171-1/+3
|\
| * grc: rewrite grccSebastian Koslowski2016-09-231-1/+3
| |
* | grc: refactor: make gr.prefs() optional (for testing)Sebastian Koslowski2016-09-191-7/+21
| |
* | Merge remote-tracking branch 'upstream/next' into gtk3Sebastian Koslowski2016-08-091-1/+12
|\|
| * grc: also read user default flow graph from envSebastian Koslowski2016-08-031-1/+12
| |
* | grc: py3k compat using python-modernizeSebastian Koslowski2016-06-091-0/+1
|/
* grc-refactor: remove (hopefully) all deps to GR in core/ and gui/Sebastian Koslowski2016-04-051-0/+55