[DOCs] `pcb_print` added all extensions for %i reference

This commit is contained in:
Salvador E. Tropea 2022-09-06 08:54:00 -03:00
parent 460ffca49b
commit b704c2ab41
3 changed files with 3 additions and 3 deletions

View File

@ -2187,7 +2187,7 @@ Notes:
- **`force_edge_cuts`**: [boolean=false] Add the `Edge.Cuts` to all the pages. - **`force_edge_cuts`**: [boolean=false] Add the `Edge.Cuts` to all the pages.
- **`format`**: [string='PDF'] [PDF,SVG,PNG,EPS,PS] Format for the output file/s. - **`format`**: [string='PDF'] [PDF,SVG,PNG,EPS,PS] Format for the output file/s.
Note that for PS you need `ghostscript` which isn't part of the default docker images. Note that for PS you need `ghostscript` which isn't part of the default docker images.
- **`output`**: [string='%f-%i%I%v.%x'] Filename for the output (%i=assembly, %x=pdf)/(%i=assembly_page_NN, %x=svg). Affected by global options. - **`output`**: [string='%f-%i%I%v.%x'] Filename for the output (%i=assembly, %x=pdf/ps)/(%i=assembly_page_NN, %x=svg/png/eps). Affected by global options.
- *output_name*: Alias for output. - *output_name*: Alias for output.
- **`pages`**: [list(dict)] List of pages to include in the output document. - **`pages`**: [list(dict)] List of pages to include in the output document.
Each page contains one or more layers of the PCB. Each page contains one or more layers of the PCB.

View File

@ -1108,7 +1108,7 @@ outputs:
keep_temporal_files: false keep_temporal_files: false
# [string=''] Color used for micro `colored_vias` # [string=''] Color used for micro `colored_vias`
micro_via_color: '' micro_via_color: ''
# [string='%f-%i%I%v.%x'] Filename for the output (%i=assembly, %x=pdf)/(%i=assembly_page_NN, %x=svg). Affected by global options # [string='%f-%i%I%v.%x'] Filename for the output (%i=assembly, %x=pdf/ps)/(%i=assembly_page_NN, %x=svg/png/eps). Affected by global options
output: '%f-%i%I%v.%x' output: '%f-%i%I%v.%x'
# `output_name` is an alias for `output` # `output_name` is an alias for `output`
# [string=''] Color used for `colored_pads` # [string=''] Color used for `colored_pads`

View File

@ -217,7 +217,7 @@ class PCB_PrintOptions(VariantOptions):
self.output_name = None self.output_name = None
""" {output} """ """ {output} """
self.output = GS.def_global_output self.output = GS.def_global_output
""" *Filename for the output (%i=assembly, %x=pdf)/(%i=assembly_page_NN, %x=svg)""" """ *Filename for the output (%i=assembly, %x=pdf/ps)/(%i=assembly_page_NN, %x=svg/png/eps)"""
self.hide_excluded = False self.hide_excluded = False
""" Hide components in the Fab layer that are marked as excluded by a variant """ """ Hide components in the Fab layer that are marked as excluded by a variant """
self.color_theme = '_builtin_classic' self.color_theme = '_builtin_classic'