[DOCs] Updated changelog and credits

This commit is contained in:
Salvador E. Tropea 2022-07-26 07:58:30 -03:00
parent 3bc4bd51c6
commit 6bd8ff9c6b
4 changed files with 15 additions and 10 deletions

View File

@ -22,15 +22,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- PCB_Print:
- Problems with filtered/modified PCBs
- Problems with zones on multiple layers (#226)
- SCH Variants on KiCad 6:
- Problems with missing values in the title block.
- Report:
- Converted file wasn't stored at `dir` (#238)
- SCH Variants on KiCad 6: Problems with missing values in the title block.
- Report: Converted file wasn't stored at `dir` (#238)
- Datasheet download: Time-outs on some servers expecting modern browsers (#240)
### Changed
- The order in which main sections are parsed is now fixed.
The declared order is ignored. The order is:
kiplot/kibot, import, global, filters, variants, preflight, outputs
- Datasheet download:
- Continue downloading if an SSL certificate error found (#239)
## [1.2.0] - 2022-06-15

View File

@ -2337,10 +2337,10 @@ Notes:
- **`options`**: [dict] Options for the `pdf_sch_print` output.
* Valid keys:
- **`frame`**: [boolean=true] Include the frame and title block.
- `all_pages`: [boolean=true] Generate with all hierarchical sheets.
- `dnf_filter`: [string|list(string)='_none'] Name of the filter to mark components as not fitted.
A short-cut to use for simple cases where a variant is an overkill.
- `monochrome`: [boolean=false] Generate a monochromatic PDF.
- `all_pages`: [boolean=true] Generate with all hierarchical sheets.
- `output`: [string='%f-%i%I%v.%x'] Filename for the output PDF (%i=schematic, %x=pdf). Affected by global options.
- `variant`: [string=''] Board variant to apply.
Not fitted components are crossed.
@ -2806,10 +2806,10 @@ Notes:
- **`options`**: [dict] Options for the `svg_sch_print` output.
* Valid keys:
- **`frame`**: [boolean=true] Include the frame and title block.
- `all_pages`: [boolean=true] Generate with all hierarchical sheets.
- `dnf_filter`: [string|list(string)='_none'] Name of the filter to mark components as not fitted.
A short-cut to use for simple cases where a variant is an overkill.
- `monochrome`: [boolean=false] Generate a monochromatic PDF.
- `all_pages`: [boolean=true] Generate with all hierarchical sheets.
- `output`: [string='%f-%i%I%v.%x'] Filename for the output SVG (%i=schematic, %x=svg). Affected by global options.
- `variant`: [string=''] Board variant to apply.
Not fitted components are crossed.
@ -3799,6 +3799,8 @@ Important: These files doesn't support manual panelization with repeated referen
- **Typos corrections**: Seth Kaz (@sethkaz) and Sebastian Grau (@SebastianGrau)
- **Various tools suggested**: MDW (@mdeweerd)
- **GENCAD export for KiAuto**: Theo Hussey (@flaminggoat)
- **Various fixes**: Henning Kleen (@hkleen)
- **SCH print all-pages option**: Kevin Dong (@kevin-dong-nai-jia)
- **Sources of inspiration and good ideas**:
- **JLC Kicad Tools**: Matthew Lai (@matthewlai)
- **KiCad Gerber Zipper**: @g200kg

View File

@ -1761,6 +1761,8 @@ Important: These files doesn't support manual panelization with repeated referen
- **Typos corrections**: Seth Kaz (@sethkaz) and Sebastian Grau (@SebastianGrau)
- **Various tools suggested**: MDW (@mdeweerd)
- **GENCAD export for KiAuto**: Theo Hussey (@flaminggoat)
- **Various fixes**: Henning Kleen (@hkleen)
- **SCH print all-pages option**: Kevin Dong (@kevin-dong-nai-jia)
- **Sources of inspiration and good ideas**:
- **JLC Kicad Tools**: Matthew Lai (@matthewlai)
- **KiCad Gerber Zipper**: @g200kg

View File

@ -1274,6 +1274,8 @@ outputs:
type: 'pdf_sch_print'
dir: 'Example/pdf_sch_print_dir'
options:
# [boolean=true] Generate with all hierarchical sheets
all_pages: true
# [string|list(string)='_none'] Name of the filter to mark components as not fitted.
# A short-cut to use for simple cases where a variant is an overkill
dnf_filter: '_none'
@ -1281,8 +1283,6 @@ outputs:
frame: true
# [boolean=false] Generate a monochromatic PDF
monochrome: false
# [boolean=true] Generate with all hierarchical sheets.
all_pages: true
# [string='%f-%i%I%v.%x'] Filename for the output PDF (%i=schematic, %x=pdf). Affected by global options
output: '%f-%i%I%v.%x'
# [string=''] Board variant to apply.
@ -1704,6 +1704,8 @@ outputs:
type: 'svg_sch_print'
dir: 'Example/svg_sch_print_dir'
options:
# [boolean=true] Generate with all hierarchical sheets
all_pages: true
# [string|list(string)='_none'] Name of the filter to mark components as not fitted.
# A short-cut to use for simple cases where a variant is an overkill
dnf_filter: '_none'
@ -1711,8 +1713,6 @@ outputs:
frame: true
# [boolean=false] Generate a monochromatic PDF
monochrome: false
# [boolean=true] Generate with all hierarchical sheets.
all_pages: true
# [string='%f-%i%I%v.%x'] Filename for the output SVG (%i=schematic, %x=svg). Affected by global options
output: '%f-%i%I%v.%x'
# [string=''] Board variant to apply.