From: Hugo Villeneuve Date: Wed, 11 Nov 2015 18:28:44 +0000 (-0500) Subject: Test X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=HEAD;p=eda-utils.git Test --- diff --git a/bomgen/bomgen.php b/bomgen/bomgen.php old mode 100755 new mode 100644 diff --git a/bomgen/generate-bom-remote.sh b/bomgen/generate-bom-remote.sh old mode 100644 new mode 100755 diff --git a/scripts/altium/sch-align-refdes.pas b/scripts/altium/sch-align-refdes.pas index 9dce304..3efb6ac 100644 --- a/scripts/altium/sch-align-refdes.pas +++ b/scripts/altium/sch-align-refdes.pas @@ -22,11 +22,14 @@ Const PARAM_OFFSET_MILS = 025; // Distance entre le graphique et le texte PARAM_TEXT_HEIGHT_ADJUST = 015; // Pour compenser la hauteur du texte si alignement vertical au centre. - PARAMS_Y_SEP = 080; // Distance verticale entre 2 paramètres + PARAMS_Y_SEP = 100; // Distance verticale entre 2 paramètres + + TEXT_HEIGHT = 50; // TEST.... // global variables Var FontID : TFontID; + REFDES_POS : Integer; VALUE_POS : Integer; VOLTAGE_POS : Integer; POWER_POS : Integer; @@ -34,6 +37,9 @@ Var MPN_POS : Integer; SymbolLengthMils : Integer; SymbolHeightMils : Integer; + value_found : boolean; + value_par : ISch_Parameter; + par_count : Integer; // Nom,bre de paramètres à afficher Function SCH_AnalyseComponent(Comp : ISch_Component); Var @@ -44,33 +50,38 @@ Begin SymbolHeightMils := 0; s := Copy(UpperCase(Comp.Designator.Text), 1, 1); - + + REFDES_POS := 0; + If s = 'R' Then Begin SymbolLengthMils := R_SYMBOL_LENGTH_MILS; SymbolHeightMils := R_SYMBOL_HEIGHT_MILS; - VALUE_POS := 0; - POWER_POS := 1; + VALUE_POS := 1; + POWER_POS := 2; + par_count := 3; End; If s = 'L' Then Begin SymbolLengthMils := L_SYMBOL_LENGTH_MILS; SymbolHeightMils := L_SYMBOL_HEIGHT_MILS; - VALUE_POS := 0; - CURRENT_POS := 1; + VALUE_POS := 1; + CURRENT_POS := 2; + par_count := 3; End; If s = 'C' Then Begin SymbolLengthMils := C_SYMBOL_LENGTH_MILS; SymbolHeightMils := C_SYMBOL_HEIGHT_MILS; - VALUE_POS := 0; - VOLTAGE_POS := 1; + VALUE_POS := 1; + VOLTAGE_POS := 2; + par_count := 3; End; If s = 'D' Then Begin SymbolLengthMils := D_SYMBOL_LENGTH_MILS; SymbolHeightMils := D_SYMBOL_HEIGHT_MILS; - VALUE_POS := 0; // For LEDs, VALUE = COLOR - VOLTAGE_POS := 0; - CURRENT_POS := 1; - POWER_POS := 1; - MPN_POS := 2; + VALUE_POS := 1; // For LEDs, VALUE = COLOR + VOLTAGE_POS := 2; + CURRENT_POS := 3; + POWER_POS := 3; + par_count := 3; End; // Pour avoir les ajustements à partir du milieu du composant @@ -78,6 +89,26 @@ Begin SymbolHeightMils := SymbolHeightMils / 2; End; +{*************************************************************************** + * function UpdateSchParmValueByRef() + * Perform a schematic component parameter update given a reference to the parameter, + * plus it's new value. + ***************************************************************************} +Function UpdateSchParmValueByRef(component : ISch_Component; + Parameter : ISch_Parameter; + new_value : TDynamicString); +Begin + { Notify the server process that we're about to make a change. } + SchServer.RobotManager.SendMessage(Parameter.I_ObjectAddress, c_BroadCast, + SCHM_beginModify, c_NoEventData); + + { Make the change. } + Parameter.Text := new_value; + + { Notify the server process that we're done making changes. } + SchServer.RobotManager.SendMessage(Parameter.I_ObjectAddress, c_BroadCast, + SCHM_endModify, c_NoEventData); +End; Function SCH_ProcessRefDes(Comp : ISch_Component; Parameter : ISch_Parameter); Var @@ -92,7 +123,7 @@ Begin DY := 0; s := Copy(UpperCase(Comp.Designator.Text), 1, 1); - + // Trouve le X de départ, en Y le milieu du composant Case Comp.Orientation of eRotate0 : @@ -119,81 +150,119 @@ Begin eRotate0, eRotate180 : Begin ParamJust := eJustify_Center; - If Parameter = Nil Then - DY := SymbolHeightMils + PARAM_OFFSET_MILS + PARAM_TEXT_HEIGHT_ADJUST; // Designator end; eRotate90, eRotate270 : Begin ParamJust := eJustify_CenterLeft; - If Parameter = Nil Then // Designator - DY := DY + PARAMS_Y_SEP; // Devrait changer selon le nombre de paramètres à afficher + DY := DY + ((par_count - 1) * (PARAMS_Y_SEP / 2)); End; End; - If Parameter <> Nil Then + // Debug + //If Parameter = Nil Then + // ShowMessage('LOC (1) = ' + IntToStr(DX) + ',' + IntToStr(DY)); + + If Parameter = Nil Then // Designator + Begin + ParamOffset := REFDES_POS; + End + Else Begin ParamOffset := -1; // Process Parameter, not designator - If CompareString(UpperCase(Parameter.Name), 'VALUE', 5) Then + If CompareString(UpperCase(Parameter.Name), 'VAL', 3) Then Begin Parameter.IsHidden := False; ParamOffset := VALUE_POS; End; + + If CompareString(UpperCase(Parameter.Name), 'CAPACITANCE', 11) Then + Begin + If s = 'C' Then + Begin + Parameter.IsHidden := True; + If value_found = False Then + Begin + UpdateSchParmValueByRef(Comp, value_par, Parameter.Text); + End; + End; + End; + + If CompareString(UpperCase(Parameter.Name), 'RESISTANCE (OHMS)', 17) Then + Begin + If s = 'R' Then + Begin + Parameter.IsHidden := True; + If value_found = False Then + Begin + UpdateSchParmValueByRef(Comp, value_par, Parameter.Text); + End; + End; + End; + + If CompareString(UpperCase(Parameter.Name), 'RESISTANCE', 10) Then + Begin + If s = 'R' Then + Begin + Parameter.IsHidden := True; + End; + End; If CompareString(UpperCase(Parameter.Name), 'VOLTAGE', 7) Then Begin - If s = 'C' Then Parameter.IsHidden := False; // force display of voltage parameter - ParamOffset := VOLTAGE_POS; + If s = 'C' Then + Begin + Parameter.IsHidden := False; // force display of voltage parameter + Parameter.Text := StringReplace(Parameter.Text, ' Volts', 'V', MkSet(rfReplaceAll, rfIgnoreCase)); + End; + ParamOffset := VOLTAGE_POS; End; - + If CompareString(UpperCase(Parameter.Name), 'POWER', 5) Then Begin ParamOffset := POWER_POS; End; - + If CompareString(UpperCase(Parameter.Name), 'CURRENT', 7) Then Begin ParamOffset := CURRENT_POS; End; - If CompareString(UpperCase(Parameter.Name), 'MPN', 3) Then + If CompareString(UpperCase(Parameter.Name), 'PN', 2) Then Begin ParamOffset := MPN_POS; End; - If CompareString(UpperCase(Parameter.Name), 'NIA', 5) Then + If CompareString(UpperCase(Parameter.Name), 'NIA', 3) Then Begin Parameter.IsHidden := True; End; - + If ParamOffset < 0 Then Begin ParamOffset := 2; // TEMP!!!!!!! End; - - Case Comp.Orientation of - eRotate0, eRotate180 : - Begin - DY := - (SymbolHeightMils + PARAM_OFFSET_MILS + PARAM_TEXT_HEIGHT_ADJUST + (PARAMS_Y_SEP * ParamOffset)); - end; - eRotate90, eRotate270 : - Begin - DY := DY - (PARAMS_Y_SEP * ParamOffset); - End; - End; - End; - // Debug - If s = 'X' Then - Begin - If Parameter = Nil Then - ShowMessage('LOC = ' + IntToStr(DX) + ',' + IntToStr(DY)); + //if Parameter <> Nil Then + // if Parameter.IsHidden = False Then + // ShowMessage('Par ' + Parameter.Name + ' = ' + IntToStr(DX) + ',' + IntToStr(DY) + ' OFFSET = ' + IntToStr(ParamOffset)); + + Case Comp.Orientation of + eRotate0, eRotate180 : + Begin + DY := - (SymbolHeightMils + PARAM_OFFSET_MILS + PARAM_TEXT_HEIGHT_ADJUST + (PARAMS_Y_SEP * ParamOffset)); + end; + eRotate90, eRotate270 : + Begin + DY := DY - (PARAMS_Y_SEP * ParamOffset); + End; End; CompLoc := Comp.GetState_Location; ParamLoc := CompLoc; + ParamLoc.X := ParamLoc.X + MilsToCoord(DX); ParamLoc.Y := ParamLoc.Y + MilsToCoord(DY); @@ -238,25 +307,39 @@ Begin Parameter := PIterator.FirstSchObject; While Parameter <> Nil Do Begin - If CompareString(UpperCase(Parameter.Name), 'VALUE', 5) Then + If CompareString(UpperCase(Parameter.Name), 'VAL', 3) Then found := True; Parameter := PIterator.NextSchObject; End; Finally Comp.SchIterator_Destroy(PIterator); + + if found = False Then + Begin + // Add the VALUE parameter to the component. + value_par := SchServer.SchObjectFactory(eParameter, eCreate_Default); + value_par.Name := 'VAL'; + value_par.ShowName := False; + value_par.Text := 'UNDEFINED'; + value_par.IsHidden := True; + + // Place the new parm + Comp.AddSchObject(value_par); + SchServer.RobotManager.SendMessage(Comp.I_ObjectAddress, c_BroadCast, SCHM_PrimitiveRegistration, value_par.I_ObjectAddress); + End; + Result := found; End; End; Function SCH_AlignRefDes(Comp : ISch_Component); Var - value_found : boolean; PIterator : ISch_Iterator; Parameter : ISch_Parameter; Begin FontID := SchServer.FontManager.GetFontID(DEFAULT_FONT_SIZE,0,False,False,False,False, DEFAULT_FONT_NAME); value_found := SCH_check_value(Comp); - + Try VALUE_POS := -1; VOLTAGE_POS := -1; diff --git a/scripts/altium/scripts.PrjScr b/scripts/altium/scripts.PrjScr old mode 100644 new mode 100755 index efecd15..03b3d01 --- a/scripts/altium/scripts.PrjScr +++ b/scripts/altium/scripts.PrjScr @@ -2,8 +2,6 @@ Version=1.0 HierarchyMode=0 ChannelRoomNamingStyle=0 -OutputPath= -LogFolderPath= ReleasesFolder= ReleaseVaultGUID= ReleaseVaultName= @@ -20,7 +18,7 @@ AllowPortNetNames=0 AllowSheetEntryNetNames=1 AppendSheetNumberToLocalNets=0 NetlistSinglePinNets=0 -DefaultConfiguration= +DefaultConfiguration=Default - All Constraints UserID=0xFFFFFFFF DefaultPcbProtel=1 DefaultPcbPcad=0 @@ -30,9 +28,16 @@ PowerPortNamesTakePriority=0 PushECOToAnnotationFile=1 DItemRevisionGUID= ReportSuppressedErrorsInMessages=0 +OutputPath= +LogFolderPath= +ManagedProjectGUID= + +[Preferences] +PrefsVaultGUID= +PrefsRevisionGUID= [Document1] -DocumentPath=functions.pas +DocumentPath=test.SchDoc AnnotationEnabled=1 AnnotateStartValue=1 AnnotationIndexControlEnabled=0 @@ -46,9 +51,10 @@ ClassGenCCAutoRoomEnabled=1 ClassGenNCAutoScope=None DItemRevisionGUID= GenerateClassCluster=0 +DocumentUniqueId=NKTECBWS [Document2] -DocumentPath=cleanlib.pas +DocumentPath=functions.pas AnnotationEnabled=1 AnnotateStartValue=1 AnnotationIndexControlEnabled=0 @@ -62,9 +68,10 @@ ClassGenCCAutoRoomEnabled=1 ClassGenNCAutoScope=None DItemRevisionGUID= GenerateClassCluster=0 +DocumentUniqueId= [Document3] -DocumentPath=pcb-resize-refdes-all.pas +DocumentPath=cleanlib.pas AnnotationEnabled=1 AnnotateStartValue=1 AnnotationIndexControlEnabled=0 @@ -78,9 +85,10 @@ ClassGenCCAutoRoomEnabled=1 ClassGenNCAutoScope=None DItemRevisionGUID= GenerateClassCluster=0 +DocumentUniqueId= [Document4] -DocumentPath=pcb-assembly-drawings.pas +DocumentPath=pcb-resize-refdes-all.pas AnnotationEnabled=1 AnnotateStartValue=1 AnnotationIndexControlEnabled=0 @@ -94,9 +102,10 @@ ClassGenCCAutoRoomEnabled=1 ClassGenNCAutoScope=None DItemRevisionGUID= GenerateClassCluster=0 +DocumentUniqueId= [Document5] -DocumentPath=pcb-lit-de-clou.pas +DocumentPath=pcb-assembly-drawings.pas AnnotationEnabled=1 AnnotateStartValue=1 AnnotationIndexControlEnabled=0 @@ -110,9 +119,10 @@ ClassGenCCAutoRoomEnabled=1 ClassGenNCAutoScope=None DItemRevisionGUID= GenerateClassCluster=0 +DocumentUniqueId= [Document6] -DocumentPath=sch-align-refdes.pas +DocumentPath=pcb-lit-de-clou.pas AnnotationEnabled=1 AnnotateStartValue=1 AnnotationIndexControlEnabled=0 @@ -126,9 +136,10 @@ ClassGenCCAutoRoomEnabled=1 ClassGenNCAutoScope=None DItemRevisionGUID= GenerateClassCluster=0 +DocumentUniqueId= [Document7] -DocumentPath=sch-align-refdes-all.pas +DocumentPath=sch-align-refdes.pas AnnotationEnabled=1 AnnotateStartValue=1 AnnotationIndexControlEnabled=0 @@ -142,9 +153,10 @@ ClassGenCCAutoRoomEnabled=1 ClassGenNCAutoScope=None DItemRevisionGUID= GenerateClassCluster=0 +DocumentUniqueId= [Document8] -DocumentPath=pcb-resize-refdes-selection.pas +DocumentPath=sch-align-refdes-all.pas AnnotationEnabled=1 AnnotateStartValue=1 AnnotationIndexControlEnabled=0 @@ -158,9 +170,10 @@ ClassGenCCAutoRoomEnabled=1 ClassGenNCAutoScope=None DItemRevisionGUID= GenerateClassCluster=0 +DocumentUniqueId= [Document9] -DocumentPath=sch-align-refdes-selection.pas +DocumentPath=pcb-resize-refdes-selection.pas AnnotationEnabled=1 AnnotateStartValue=1 AnnotationIndexControlEnabled=0 @@ -174,285 +187,171 @@ ClassGenCCAutoRoomEnabled=1 ClassGenNCAutoScope=None DItemRevisionGUID= GenerateClassCluster=0 +DocumentUniqueId= -[PCBConfiguration1] -ReleaseItemId= -CurrentRevision= -Name=Default Configuration -Variant=[No Variations] -GenerateBOM=0 +[Document10] +DocumentPath=sch-align-refdes-selection.pas +AnnotationEnabled=1 +AnnotateStartValue=1 +AnnotationIndexControlEnabled=0 +AnnotateSuffix= +AnnotateScope=All +AnnotateOrder=-1 +DoLibraryUpdate=1 +DoDatabaseUpdate=1 +ClassGenCCAutoEnabled=1 +ClassGenCCAutoRoomEnabled=1 +ClassGenNCAutoScope=None +DItemRevisionGUID= +GenerateClassCluster=0 +DocumentUniqueId= [OutputGroup1] Name=Netlist Outputs Description= -TargetPrinter=HP LaserJet 1020 -PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 -OutputType1=EDIF -OutputName1=EDIF for PCB +TargetPrinter=Microsoft XPS Document Writer +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 +OutputType1=Verilog +OutputName1=Verilog File OutputDocumentPath1= OutputVariantName1= OutputDefault1=0 -OutputType2=MultiWire -OutputName2=MultiWire +OutputType2=VHDL +OutputName2=VHDL File OutputDocumentPath2= OutputVariantName2= OutputDefault2=0 -OutputType3=Pcad -OutputName3=Pcad for PCB +OutputType3=PCADNetlist +OutputName3=PCAD Netlist OutputDocumentPath3= OutputVariantName3= OutputDefault3=0 -OutputType4=ProtelNetlist -OutputName4=Protel -OutputDocumentPath4= -OutputVariantName4= -OutputDefault4=0 -OutputType5=SIMetrixNetlist -OutputName5=SIMetrix -OutputDocumentPath5= -OutputVariantName5= -OutputDefault5=0 -OutputType6=SIMPLISNetlist -OutputName6=SIMPLIS -OutputDocumentPath6= -OutputVariantName6= -OutputDefault6=0 -OutputType7=Verilog -OutputName7=Verilog File -OutputDocumentPath7= -OutputVariantName7= -OutputDefault7=0 -OutputType8=VHDL -OutputName8=VHDL File -OutputDocumentPath8= -OutputVariantName8= -OutputDefault8=0 -OutputType9=XSpiceNetlist -OutputName9=XSpice Netlist -OutputDocumentPath9= -OutputVariantName9= -OutputDefault9=0 -OutputType10=CadnetixNetlist -OutputName10=Cadnetix Netlist -OutputDocumentPath10= -OutputVariantName10= -OutputDefault10=0 -OutputType11=CalayNetlist -OutputName11=Calay Netlist -OutputDocumentPath11= -OutputVariantName11= -OutputDefault11=0 -OutputType12=EESofNetlist -OutputName12=EESof Netlist -OutputDocumentPath12= -OutputVariantName12= -OutputDefault12=0 -OutputType13=IntergraphNetlist -OutputName13=Intergraph Netlist -OutputDocumentPath13= -OutputVariantName13= -OutputDefault13=0 -OutputType14=MentorBoardStationNetlist -OutputName14=Mentor BoardStation Netlist -OutputDocumentPath14= -OutputVariantName14= -OutputDefault14=0 -OutputType15=OrCadPCB2Netlist -OutputName15=Orcad/PCB2 Netlist -OutputDocumentPath15= -OutputVariantName15= -OutputDefault15=0 -OutputType16=PADSNetlist -OutputName16=PADS ASCII Netlist -OutputDocumentPath16= -OutputVariantName16= -OutputDefault16=0 -OutputType17=PCADNetlist -OutputName17=PCAD Netlist -OutputDocumentPath17= -OutputVariantName17= -OutputDefault17=0 -OutputType18=PCADnltNetlist -OutputName18=PCADnlt Netlist -OutputDocumentPath18= -OutputVariantName18= -OutputDefault18=0 -OutputType19=Protel2Netlist -OutputName19=Protel2 Netlist -OutputDocumentPath19= -OutputVariantName19= -OutputDefault19=0 -OutputType20=RacalNetlist -OutputName20=Racal Netlist -OutputDocumentPath20= -OutputVariantName20= -OutputDefault20=0 -OutputType21=RINFNetlist -OutputName21=RINF Netlist -OutputDocumentPath21= -OutputVariantName21= -OutputDefault21=0 -OutputType22=SciCardsNetlist -OutputName22=SciCards Netlist -OutputDocumentPath22= -OutputVariantName22= -OutputDefault22=0 -OutputType23=TangoNetlist -OutputName23=Tango Netlist -OutputDocumentPath23= -OutputVariantName23= -OutputDefault23=0 -OutputType24=TelesisNetlist -OutputName24=Telesis Netlist -OutputDocumentPath24= -OutputVariantName24= -OutputDefault24=0 -OutputType25=WireListNetlist -OutputName25=WireList Netlist -OutputDocumentPath25= -OutputVariantName25= -OutputDefault25=0 [OutputGroup2] Name=Simulator Outputs Description= -TargetPrinter=HP LaserJet 1020 -PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 -OutputType1=AdvSimNetlist -OutputName1=Mixed Sim -OutputDocumentPath1= -OutputVariantName1= -OutputDefault1=0 -OutputType2=SIMetrix_Sim -OutputName2=SIMetrix -OutputDocumentPath2= -OutputVariantName2= -OutputDefault2=0 -OutputType3=SIMPLIS_Sim -OutputName3=SIMPLIS -OutputDocumentPath3= -OutputVariantName3= -OutputDefault3=0 +TargetPrinter=Microsoft XPS Document Writer +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 [OutputGroup3] Name=Documentation Outputs Description= -TargetPrinter=HP LaserJet 1020 -PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 +TargetPrinter=Virtual Printer +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 OutputType1=Composite OutputName1=Composite Drawing OutputDocumentPath1= OutputVariantName1= OutputDefault1=0 -PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType2=Logic Analyser Print -OutputName2=Logic Analyser Prints +PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType2=OpenBus Print +OutputName2=OpenBus Prints OutputDocumentPath2= OutputVariantName2= OutputDefault2=0 -PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType3=OpenBus Print -OutputName3=OpenBus Prints +PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType3=PCB 3D Print +OutputName3=PCB 3D Prints OutputDocumentPath3= -OutputVariantName3= +OutputVariantName3=[No Variations] OutputDefault3=0 -PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType4=PCB 3D Print -OutputName4=PCB 3D Prints +PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType4=PCB Print +OutputName4=PCB Prints OutputDocumentPath4= -OutputVariantName4=[No Variations] +OutputVariantName4= OutputDefault4=0 -PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType5=PCB Print -OutputName5=PCB Prints +PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType5=Schematic Print +OutputName5=Schematic Prints OutputDocumentPath5= OutputVariantName5= OutputDefault5=0 -PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType6=Schematic Print -OutputName6=Schematic Prints +PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType6=SimView Print +OutputName6=SimView Prints OutputDocumentPath6= OutputVariantName6= OutputDefault6=0 -PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType7=SimView Print -OutputName7=SimView Prints +PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType7=Wave Print +OutputName7=Wave Prints OutputDocumentPath7= OutputVariantName7= OutputDefault7=0 -PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType8=Wave Print -OutputName8=Wave Prints +PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType8=Assembler Source Print +OutputName8=Assembler Source Prints OutputDocumentPath8= OutputVariantName8= OutputDefault8=0 -PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType9=Assembler Source Print -OutputName9=Assembler Source Prints +PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType9=C Source Print +OutputName9=C Source Prints OutputDocumentPath9= OutputVariantName9= OutputDefault9=0 -PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType10=C Source Print -OutputName10=C Source Prints +PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType10=C/C++ Header Print +OutputName10=C/C++ Header Prints OutputDocumentPath10= OutputVariantName10= OutputDefault10=0 -PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType11=C/C++ Header Print -OutputName11=C/C++ Header Prints +PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType11=C++ Source Print +OutputName11=C++ Source Prints OutputDocumentPath11= OutputVariantName11= OutputDefault11=0 -PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType12=C++ Source Print -OutputName12=C++ Source Prints +PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType12=PCB 3D Video +OutputName12=PCB 3D Video OutputDocumentPath12= -OutputVariantName12= +OutputVariantName12=[No Variations] OutputDefault12=0 -PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType13=PCB 3D Video -OutputName13=PCB 3D Video +PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType13=Report Print +OutputName13=Report Prints OutputDocumentPath13= -OutputVariantName13=[No Variations] +OutputVariantName13= OutputDefault13=0 -PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType14=Report Print -OutputName14=Report Prints +PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType14=VHDL Print +OutputName14=VHDL Prints OutputDocumentPath14= OutputVariantName14= OutputDefault14=0 -PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType15=Software Platform Print -OutputName15=Software Platform Prints +PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType15=WaveSim Print +OutputName15=WaveSim Prints OutputDocumentPath15= OutputVariantName15= OutputDefault15=0 -PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType16=VHDL Print -OutputName16=VHDL Prints +PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 +OutputType16=FSM Print +OutputName16=FSM Prints OutputDocumentPath16= OutputVariantName16= OutputDefault16=0 -PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 -OutputType17=WaveSim Print -OutputName17=WaveSim Prints +PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType17=PCBLIB Print +OutputName17=PCBLIB Prints OutputDocumentPath17= OutputVariantName17= OutputDefault17=0 -PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 [OutputGroup4] Name=Assembly Outputs Description= -TargetPrinter=HP LaserJet 1020 -PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 +TargetPrinter=Microsoft XPS Document Writer +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 OutputType1=Assembly OutputName1=Assembly Drawings OutputDocumentPath1= OutputVariantName1=[No Variations] OutputDefault1=0 -PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 OutputType2=Pick Place OutputName2=Generates pick and place files OutputDocumentPath2= @@ -467,26 +366,26 @@ OutputDefault3=0 [OutputGroup5] Name=Fabrication Outputs Description= -TargetPrinter=HP LaserJet 1020 -PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 +TargetPrinter=Microsoft XPS Document Writer +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 OutputType1=CompositeDrill OutputName1=Composite Drill Drawing OutputDocumentPath1= OutputVariantName1=[No Variations] OutputDefault1=0 -PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 OutputType2=Drill OutputName2=Drill Drawing/Guides OutputDocumentPath2= OutputVariantName2=[No Variations] OutputDefault2=0 -PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 OutputType3=Final OutputName3=Final Artwork Prints OutputDocumentPath3= OutputVariantName3=[No Variations] OutputDefault3=0 -PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 OutputType4=Gerber OutputName4=Gerber Files OutputDocumentPath4= @@ -497,7 +396,7 @@ OutputName5=Solder/Paste Mask Prints OutputDocumentPath5= OutputVariantName5= OutputDefault5=0 -PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 OutputType6=NC Drill OutputName6=NC Drill Files OutputDocumentPath6= @@ -513,24 +412,35 @@ OutputName8=Power-Plane Prints OutputDocumentPath8= OutputVariantName8= OutputDefault8=0 -PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 OutputType9=Test Points OutputName9=Test Point Report OutputDocumentPath9= OutputVariantName9= OutputDefault9=0 +OutputType10=Board Stack Report +OutputName10=Report Board Stack +OutputDocumentPath10= +OutputVariantName10= +OutputDefault10=0 +PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType11=Gerber X2 +OutputName11=Gerber X2 Files +OutputDocumentPath11= +OutputVariantName11= +OutputDefault11=0 [OutputGroup6] Name=Report Outputs Description= -TargetPrinter=HP LaserJet 1020 -PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 +TargetPrinter=Microsoft XPS Document Writer +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 OutputType1=BOM_PartType OutputName1=Bill of Materials OutputDocumentPath1= OutputVariantName1=[No Variations] OutputDefault1=0 -PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 OutputType2=ComponentCrossReference OutputName2=Component Cross Reference Report OutputDocumentPath2= @@ -560,222 +470,247 @@ OutputDefault6=0 [OutputGroup7] Name=Other Outputs Description= -TargetPrinter=HP LaserJet 1020 -PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 +TargetPrinter=Microsoft XPS Document Writer +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 OutputType1=Text Print OutputName1=Text Print OutputDocumentPath1= OutputVariantName1= OutputDefault1=0 -PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 OutputType2=Text Print OutputName2=Text Print OutputDocumentPath2= OutputVariantName2= OutputDefault2=0 -PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType3=Text Print OutputName3=Text Print OutputDocumentPath3= OutputVariantName3= OutputDefault3=0 -PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType4=Text Print OutputName4=Text Print OutputDocumentPath4= OutputVariantName4= OutputDefault4=0 -PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType5=Text Print OutputName5=Text Print OutputDocumentPath5= OutputVariantName5= OutputDefault5=0 -PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType6=Text Print OutputName6=Text Print OutputDocumentPath6= OutputVariantName6= OutputDefault6=0 -PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType7=Text Print OutputName7=Text Print OutputDocumentPath7= OutputVariantName7= OutputDefault7=0 -PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType8=Text Print OutputName8=Text Print OutputDocumentPath8= OutputVariantName8= OutputDefault8=0 -PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType9=Text Print OutputName9=Text Print OutputDocumentPath9= OutputVariantName9= OutputDefault9=0 -PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType10=Text Print OutputName10=Text Print OutputDocumentPath10= OutputVariantName10= OutputDefault10=0 -PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType11=Text Print OutputName11=Text Print OutputDocumentPath11= OutputVariantName11= OutputDefault11=0 -PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType12=Text Print OutputName12=Text Print OutputDocumentPath12= OutputVariantName12= OutputDefault12=0 -PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType13=Text Print OutputName13=Text Print OutputDocumentPath13= OutputVariantName13= OutputDefault13=0 -PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType14=Text Print OutputName14=Text Print OutputDocumentPath14= OutputVariantName14= OutputDefault14=0 -PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType15=Text Print OutputName15=Text Print OutputDocumentPath15= OutputVariantName15= OutputDefault15=0 -PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType16=Text Print OutputName16=Text Print OutputDocumentPath16= OutputVariantName16= OutputDefault16=0 -PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType17=Text Print OutputName17=Text Print OutputDocumentPath17= OutputVariantName17= OutputDefault17=0 -PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType18=Text Print OutputName18=Text Print OutputDocumentPath18= OutputVariantName18= OutputDefault18=0 -PageOptions18=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions18=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType19=Text Print OutputName19=Text Print OutputDocumentPath19= OutputVariantName19= OutputDefault19=0 -PageOptions19=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions19=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType20=Text Print OutputName20=Text Print OutputDocumentPath20= OutputVariantName20= OutputDefault20=0 -PageOptions20=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions20=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType21=Text Print OutputName21=Text Print OutputDocumentPath21= OutputVariantName21= OutputDefault21=0 -PageOptions21=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions21=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType22=Text Print OutputName22=Text Print OutputDocumentPath22= OutputVariantName22= OutputDefault22=0 -PageOptions22=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions22=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType23=Text Print OutputName23=Text Print OutputDocumentPath23= OutputVariantName23= OutputDefault23=0 -PageOptions23=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions23=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType24=Text Print OutputName24=Text Print OutputDocumentPath24= OutputVariantName24= OutputDefault24=0 -PageOptions24=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions24=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType25=Text Print OutputName25=Text Print OutputDocumentPath25= OutputVariantName25= OutputDefault25=0 -PageOptions25=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions25=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType26=Text Print OutputName26=Text Print OutputDocumentPath26= OutputVariantName26= OutputDefault26=0 -PageOptions26=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions26=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType27=Text Print OutputName27=Text Print OutputDocumentPath27= OutputVariantName27= OutputDefault27=0 -PageOptions27=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions27=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType28=Text Print OutputName28=Text Print OutputDocumentPath28= OutputVariantName28= OutputDefault28=0 -PageOptions28=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions28=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 OutputType29=Text Print OutputName29=Text Print OutputDocumentPath29= OutputVariantName29= OutputDefault29=0 -PageOptions29=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions29=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 [OutputGroup8] Name=Validation Outputs Description= -TargetPrinter=HP LaserJet 1020 -PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 +TargetPrinter=Microsoft XPS Document Writer +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 OutputType1=Design Rules Check OutputName1=Design Rules Check OutputDocumentPath1= OutputVariantName1= OutputDefault1=0 -PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 OutputType2=Differences Report OutputName2=Differences Report OutputDocumentPath2= OutputVariantName2= OutputDefault2=0 -PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 OutputType3=Electrical Rules Check OutputName3=Electrical Rules Check OutputDocumentPath3= OutputVariantName3= OutputDefault3=0 -PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 OutputType4=Footprint Comparison Report OutputName4=Footprint Comparison Report OutputDocumentPath4= OutputVariantName4= OutputDefault4=0 +OutputType5=Component states check +OutputName5=Vault's components states check +OutputDocumentPath5= +OutputVariantName5= +OutputDefault5=0 +OutputType6=Configuration compliance +OutputName6=Environment configuration compliance check +OutputDocumentPath6= +OutputVariantName6= +OutputDefault6=0 [OutputGroup9] Name=Export Outputs Description= -TargetPrinter=HP LaserJet 1020 -PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 +TargetPrinter=Microsoft XPS Document Writer +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 OutputType1=ExportSTEP OutputName1=Export STEP OutputDocumentPath1= -OutputVariantName1= +OutputVariantName1=[No Variations] OutputDefault1=0 +OutputType2=AutoCAD dwg/dxf PCB +OutputName2=AutoCAD dwg/dxf File PCB +OutputDocumentPath2= +OutputVariantName2= +OutputDefault2=0 +OutputType3=AutoCAD dwg/dxf Schematic +OutputName3=AutoCAD dwg/dxf File Schematic +OutputDocumentPath3= +OutputVariantName3= +OutputDefault3=0 +OutputType4=ExportIDF +OutputName4=Export IDF +OutputDocumentPath4= +OutputVariantName4= +OutputDefault4=0 [Modification Levels] Type1=1 @@ -852,6 +787,10 @@ Type71=1 Type72=1 Type73=1 Type74=1 +Type75=1 +Type76=1 +Type77=1 +Type78=1 [Difference Levels] Type1=1 @@ -894,6 +833,9 @@ Type37=1 Type38=1 Type39=1 Type40=1 +Type41=1 +Type42=1 +Type43=1 [Electrical Rules Check] Type1=1 @@ -996,6 +938,16 @@ Type97=2 Type98=0 Type99=1 Type100=2 +Type101=1 +Type102=2 +Type103=2 +Type104=1 +Type105=2 +Type106=2 +Type107=2 +Type108=2 +Type109=1 +Type110=1 [ERC Connection Matrix] L1=NNNNNNNNNNNWNNNWW @@ -1018,12 +970,14 @@ L17=WNNNNNNNWNNNWWWWN [Annotate] SortOrder=3 +SortLocation=0 MatchParameter1=Comment MatchStrictly1=1 MatchParameter2=Library Reference MatchStrictly2=1 PhysicalNamingFormat=$Component_$RoomName GlobalIndexSortOrder=3 +GlobalIndexSortLocation=0 [PrjClassGen] CompClassManualEnabled=0 @@ -1035,11 +989,13 @@ NetClassManualEnabled=0 [LibraryUpdateOptions] SelectedOnly=0 +UpdateVariants=1 PartTypes=0 FullReplace=1 UpdateDesignatorLock=1 UpdatePartIDLock=1 PreserveParameterLocations=1 +PreserveParameterVisibility=1 DoGraphics=1 DoParameters=1 DoModels=1 @@ -1051,6 +1007,7 @@ UpdateCurrentModels=1 [DatabaseUpdateOptions] SelectedOnly=0 +UpdateVariants=1 PartTypes=0 [Comparison Options] @@ -1059,8 +1016,8 @@ ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm= ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|Confirm=0|UseName=0|InclAllRules=0 -ComparisonOptions5=Kind=Structure Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 +ComparisonOptions5=Kind=Code Memory|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 [SmartPDF] -PageOptions=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 +PageOptions=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4 diff --git a/scripts/altium/test.SchDoc b/scripts/altium/test.SchDoc new file mode 100755 index 0000000..c760686 Binary files /dev/null and b/scripts/altium/test.SchDoc differ