Bumped version to 1.4.0
This commit is contained in:
parent
72cae7c787
commit
619a7da745
|
|
@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.4.0] - 2022-10-12
|
||||
### Added
|
||||
- General things:
|
||||
- Some basic preprocessing, now you can parametrize the YAML config.
|
||||
|
|
|
|||
|
|
@ -16,10 +16,10 @@
|
|||
**Important note about PcbDraw 1.0.0**
|
||||
- This release is incompatible with 0.9.0, I'm trying to fix some issues in the upstream package.
|
||||
|
||||
**New on v1.3.0**
|
||||
- Diff and Info outputs
|
||||
- KiBot tries to download missing tools
|
||||
- More flexible imports
|
||||
**New on v1.4.0**
|
||||
- PCB_Variant and Copy_Files outputs
|
||||
- urlify and field_modify filters
|
||||
- Basic pre-processing
|
||||
|
||||
## Index
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,61 @@
|
|||
kibot (1.4.0-1) stable; urgency=medium
|
||||
|
||||
* New outputs: PCB_Variant and Copy_Files.
|
||||
* General things:
|
||||
- Some basic preprocessing, now you can parametrize the YAML config.
|
||||
- Support for 3D models aliases
|
||||
- Environment and text variables now can be used as 3D model aliases.
|
||||
- Environment and text variables expansion is now recursive.
|
||||
- Command line option to specify warnings to be excluded.
|
||||
- `pre_transform` filter to outputs supporting variants.
|
||||
* Support for Eurocircuits drill adjust to fix small OARs.
|
||||
* Global options:
|
||||
- Support for changing text variables with variants during outputs
|
||||
creation.
|
||||
- Options to control which stuff is changed on PCB variants
|
||||
- Mechanism to give more priority to local globals.
|
||||
* Diff added mechanisms to:
|
||||
- Compare using a variant
|
||||
- Specify the current PCB/Schematic in memory
|
||||
- Compare with the last Nth tag
|
||||
- Skip pages with no differences
|
||||
* Sch Variant options to:
|
||||
- Copy the project.
|
||||
- Change the title.
|
||||
* Render_3D: Options to disable some technical layers and control the
|
||||
silkscreen clipping.
|
||||
* Internal BoM:
|
||||
- Now you can aggregate components using CSV files.
|
||||
- Added some basic support for "Exclude from BoM" flag
|
||||
* Now you can check PCB and schematic parity using the `update_xml` preflight
|
||||
* New filters:
|
||||
- `urlify` to convert URLs in fields to HTML links
|
||||
- `field_modify` a more generic field transformer
|
||||
* Position: option to set the resolution for floating values (#314)
|
||||
* Fixed problems to compress netlists.
|
||||
* Fixed 2D PCB processing didn't show in 3D targets
|
||||
* Fixed KiBot exited when downloading a datasheet and got a connection error
|
||||
* Fixed KiCad 5 "assert "lower <= upper" failed in Clamp()"
|
||||
* Fixed missing XYRS information for components with multiple units
|
||||
* Fixed Schematic v6:
|
||||
- Problems when creating a variant of a sub-sheet that was edited as a
|
||||
standalone sheet
|
||||
- Autoplace fields could be lost in variants.
|
||||
* Fixed iBoM: Name displayed in the HTML when using filters and/or variants.
|
||||
* Fixed Position: Components wrongly separated by side when the side column
|
||||
wasn't the last column
|
||||
* Changed in diff:
|
||||
- When comparing a file now the links says Current/FILE instead of None
|
||||
- The default was to compare the current file on storage, now is the current
|
||||
file on memory. It includes the zone refill indicated in the preflights.
|
||||
- Now the error about differences bigger than the threshold is more clear.
|
||||
KiBot also returns a distinct error level.
|
||||
* Changed: Now the global `dir` option also applies to the preflights
|
||||
* Changed: When importing globals now options that are lists or dicts are
|
||||
merged, not just replaced.
|
||||
|
||||
-- Salvador E. Tropea <salvador@inti.gob.ar> Wed, 12 Oct 2022 10:08:16 -0300
|
||||
|
||||
kibot (1.3.0-1) stable; urgency=medium
|
||||
|
||||
* New outputs: Diff and Info
|
||||
|
|
|
|||
|
|
@ -16,10 +16,10 @@
|
|||
**Important note about PcbDraw 1.0.0**
|
||||
- This release is incompatible with 0.9.0, I'm trying to fix some issues in the upstream package.
|
||||
|
||||
**New on v1.3.0**
|
||||
- Diff and Info outputs
|
||||
- KiBot tries to download missing tools
|
||||
- More flexible imports
|
||||
**New on v1.4.0**
|
||||
- PCB_Variant and Copy_Files outputs
|
||||
- urlify and field_modify filters
|
||||
- Basic pre-processing
|
||||
|
||||
## Index
|
||||
|
||||
|
|
|
|||
|
|
@ -5,5 +5,5 @@ __license__ = 'GPL v3+'
|
|||
__email__ = 'stropea@inti.gob.ar'
|
||||
__url__ = 'https://github.com/INTI-CMNB/KiBot/'
|
||||
__status__ = 'stable'
|
||||
__version__ = '1.3.0'
|
||||
__version__ = '1.4.0'
|
||||
__pypi_deps__ = ['kiauto', 'pyyaml', 'xlsxwriter', 'colorama', 'requests', 'qrcodegen']
|
||||
|
|
|
|||
Loading…
Reference in New Issue