parent
cad31ee240
commit
c4f8b1cc33
|
|
@ -1648,9 +1648,10 @@ outputs:
|
||||||
# See KiKit's doc/present.md for template specification
|
# See KiKit's doc/present.md for template specification
|
||||||
template: 'default'
|
template: 'default'
|
||||||
# KiRi:
|
# KiRi:
|
||||||
|
# Must be applied to a git repository.
|
||||||
# Recursive git submodules aren't supported (submodules inside submodules)
|
# Recursive git submodules aren't supported (submodules inside submodules)
|
||||||
- name: 'kiri_example'
|
- name: 'kiri_example'
|
||||||
comment: 'Generates a PDF with the differences between two PCBs or schematics.'
|
comment: 'Generates an interactive web page to browse the schematic and/or PCB differences between git commits.'
|
||||||
type: 'kiri'
|
type: 'kiri'
|
||||||
dir: 'Example/kiri_dir'
|
dir: 'Example/kiri_dir'
|
||||||
options:
|
options:
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,8 @@
|
||||||
KiRi
|
KiRi
|
||||||
~~~~
|
~~~~
|
||||||
|
|
||||||
Generates a PDF with the differences between two PCBs or schematics.
|
Generates an interactive web page to browse the schematic and/or PCB differences between git commits.
|
||||||
|
Must be applied to a git repository. |br|
|
||||||
Recursive git submodules aren't supported (submodules inside submodules)
|
Recursive git submodules aren't supported (submodules inside submodules)
|
||||||
|
|
||||||
Type: ``kiri``
|
Type: ``kiri``
|
||||||
|
|
|
||||||
|
|
@ -354,7 +354,8 @@ class KiRiOptions(VariantOptions):
|
||||||
@output_class
|
@output_class
|
||||||
class KiRi(BaseOutput): # noqa: F821
|
class KiRi(BaseOutput): # noqa: F821
|
||||||
""" KiRi
|
""" KiRi
|
||||||
Generates a PDF with the differences between two PCBs or schematics.
|
Generates an interactive web page to browse the schematic and/or PCB differences between git commits.
|
||||||
|
Must be applied to a git repository.
|
||||||
Recursive git submodules aren't supported (submodules inside submodules) """
|
Recursive git submodules aren't supported (submodules inside submodules) """
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue