Sorted the schematic dependencies to make them consistent.
This commit is contained in:
parent
f9ac0d001f
commit
6d59960b59
|
|
@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Errors and warnings from KiAuto now are printed as errors and warnings.
|
- Errors and warnings from KiAuto now are printed as errors and warnings.
|
||||||
|
- Schematic dependencies are sorted in the generated Makefiles
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Problem when using E/DRC filters and the output dir didn't exist.
|
- Problem when using E/DRC filters and the output dir didn't exist.
|
||||||
|
|
|
||||||
|
|
@ -1474,7 +1474,7 @@ class Schematic(object):
|
||||||
files = {self.fname}
|
files = {self.fname}
|
||||||
for sch in self.sheets:
|
for sch in self.sheets:
|
||||||
files.update(sch.sheet.get_files())
|
files.update(sch.sheet.get_files())
|
||||||
return list(files)
|
return sorted(files)
|
||||||
|
|
||||||
def get_components(self, exclude_power=True):
|
def get_components(self, exclude_power=True):
|
||||||
""" A list of all the components. """
|
""" A list of all the components. """
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue