From 6bd8ff9c6b9e0db206af14bf5696242b37bd49bc Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Tue, 26 Jul 2022 07:58:30 -0300 Subject: [PATCH] [DOCs] Updated changelog and credits --- CHANGELOG.md | 9 +++++---- README.md | 6 ++++-- docs/README.in | 2 ++ docs/samples/generic_plot.kibot.yaml | 8 ++++---- 4 files changed, 15 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c91295b9..676ba92f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 2b010299..1aa117fb 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/README.in b/docs/README.in index c5719b1f..f2c0010f 100644 --- a/docs/README.in +++ b/docs/README.in @@ -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 diff --git a/docs/samples/generic_plot.kibot.yaml b/docs/samples/generic_plot.kibot.yaml index 8eec7d13..2d4b5c59 100644 --- a/docs/samples/generic_plot.kibot.yaml +++ b/docs/samples/generic_plot.kibot.yaml @@ -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.