Browse Source
eeschema: enforce time stamp control and repairs bad time stamps in annotation.
pull/1/head
eeschema: enforce time stamp control and repairs bad time stamps in annotation.
pull/1/head
20 changed files with 403 additions and 93 deletions
-
6CHANGELOG.txt
-
41cvpcb/Info.plist
-
BINcvpcb/cvpcb_doc.icns
-
32eeschema/Info.plist
-
205eeschema/annotate.cpp
-
5eeschema/annotate_dialog.cpp
-
53eeschema/build_BOM.cpp
-
17eeschema/component_class.cpp
-
10eeschema/component_class.h
-
BINeeschema/eeschema_doc.icns
-
2eeschema/netlist_control.cpp
-
46gerbview/Info.plist
-
BINgerbview/gerbview_doc.icns
-
36kicad/Info.plist
-
BINkicad/kicad_doc.icns
-
37pcbnew/Info.plist
-
2pcbnew/build_BOM_from_board.cpp
-
2pcbnew/dialog_netlist_fbp.cpp
-
2pcbnew/dialog_netlist_fbp.fbp
-
BINpcbnew/pcbnew_doc.icns
@ -1,18 +1,51 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|||
<plist version="1.0"> |
|||
<dict> |
|||
<key>CFBundleDisplayName</key> |
|||
<string>cvpcb</string> |
|||
<key>CFBundleDocumentTypes</key> |
|||
<array> |
|||
<dict> |
|||
<key>CFBundleTypeIconFile</key> |
|||
<string>cvpcb_doc.icns</string> |
|||
<key>CFBundleTypeExtensions</key> |
|||
<array> |
|||
<string>net</string> |
|||
</array> |
|||
<key>CFBundleTypeName</key> |
|||
<string>cvpcb document</string> |
|||
<key>LSHandlerRank</key> |
|||
<string>Owner</string> |
|||
</dict> |
|||
</array> |
|||
<key>CFBundleDevelopmentRegion</key> |
|||
<string>English</string> |
|||
<key>CFBundleExecutable</key> |
|||
<string>cvpcb</string> |
|||
<key>CFBundleGetInfoString</key> |
|||
<string></string> |
|||
<key>CFBundleIconFile</key> |
|||
<string>cvpcb.icns</string> |
|||
<key>CFBundleIdentifier</key> |
|||
<string>org.kicad-eda.cvpcb</string> |
|||
<key>CFBundleInfoDictionaryVersion</key> |
|||
<string>6.0</string> |
|||
<key>CFBundleLongVersionString</key> |
|||
<string></string> |
|||
<key>CFBundleName</key> |
|||
<string>Cvpcb</string> |
|||
<string></string> |
|||
<key>CFBundlePackageType</key> |
|||
<string>APPL</string> |
|||
<key>CFBundleShortVersionString</key> |
|||
<string></string> |
|||
<key>CFBundleSignature</key> |
|||
<string>????</string> |
|||
<key>CFBundleVersion</key> |
|||
<string></string> |
|||
<key>CSResourcesFileMapped</key> |
|||
<true/> |
|||
<key>LSRequiresCarbon</key> |
|||
<true/> |
|||
<key>NSHumanReadableCopyright</key> |
|||
<string></string> |
|||
</dict> |
|||
</plist> |
@ -1,18 +1,56 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|||
<plist version="1.0"> |
|||
<dict> |
|||
<key>CFBundleDisplayName</key> |
|||
<string>gerbview</string> |
|||
<key>CFBundleDocumentTypes</key> |
|||
<array> |
|||
<dict> |
|||
<key>CFBundleTypeExtensions</key> |
|||
<array> |
|||
<string>pen</string> |
|||
<string>gbr</string> |
|||
<string>gbx</string> |
|||
<string>lgr</string> |
|||
<string>ger</string> |
|||
<string>pho</string> |
|||
</array> |
|||
<key>CFBundleTypeIconFile</key> |
|||
<string>gerbview_doc.icns</string> |
|||
<key>CFBundleTypeName</key> |
|||
<string>gerbview document</string> |
|||
<key>LSHandlerRank</key> |
|||
<string>Default</string> |
|||
</dict> |
|||
</array> |
|||
<key>CFBundleDevelopmentRegion</key> |
|||
<string>English</string> |
|||
<key>CFBundleExecutable</key> |
|||
<string>gerbview</string> |
|||
<key>CFBundleGetInfoString</key> |
|||
<string></string> |
|||
<key>CFBundleIconFile</key> |
|||
<string>gerbview.icns</string> |
|||
<key>CFBundleIdentifier</key> |
|||
<string>org.kicad-eda.gerbview</string> |
|||
<key>CFBundleInfoDictionaryVersion</key> |
|||
<string>6.0</string> |
|||
<key>CFBundleLongVersionString</key> |
|||
<string></string> |
|||
<key>CFBundleName</key> |
|||
<string>Gerbview</string> |
|||
<string></string> |
|||
<key>CFBundlePackageType</key> |
|||
<string>APPL</string> |
|||
<key>CFBundleShortVersionString</key> |
|||
<string></string> |
|||
<key>CFBundleSignature</key> |
|||
<string>????</string> |
|||
<key>CFBundleVersion</key> |
|||
<string></string> |
|||
<key>CSResourcesFileMapped</key> |
|||
<true/> |
|||
<key>LSRequiresCarbon</key> |
|||
<true/> |
|||
<key>NSHumanReadableCopyright</key> |
|||
<string></string> |
|||
</dict> |
|||
</plist> |
@ -1,29 +1,47 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|||
<plist version="1.0"> |
|||
<dict> |
|||
<key>CFBundleDisplayName</key> |
|||
<string>Kicad Project Manager</string> |
|||
<key>CFBundleDocumentTypes</key> |
|||
<array> |
|||
<dict> |
|||
<key>CFBundleTypeExtensions</key> |
|||
<array> |
|||
<string>pro</string> |
|||
</array> |
|||
<key>CFBundleTypeIconFile</key> |
|||
<string>file_pro.icns</string> |
|||
<string>kicad_doc.icns</string> |
|||
<key>CFBundleTypeName</key> |
|||
<string>kicad project files</string> |
|||
<key>LSHandlerRank</key> |
|||
<string>Owner</string> |
|||
</dict> |
|||
</array> |
|||
<key>CFBundleDevelopmentRegion</key> |
|||
<string>English</string> |
|||
<key>CFBundleExecutable</key> |
|||
<string>kicad</string> |
|||
<key>CFBundleGetInfoString</key> |
|||
<string></string> |
|||
<key>CFBundleIconFile</key> |
|||
<string>kicad.icns</string> |
|||
<key>CFBundleIdentifier</key> |
|||
<string>org.kicad-eda.kicad</string> |
|||
<key>CFBundleInfoDictionaryVersion</key> |
|||
<string>6.0</string> |
|||
<key>CFBundleLongVersionString</key> |
|||
<string></string> |
|||
<key>CFBundleName</key> |
|||
<string>Kicad</string> |
|||
<string></string> |
|||
<key>CFBundlePackageType</key> |
|||
<string>APPL</string> |
|||
<key>CFBundleShortVersionString</key> |
|||
<string></string> |
|||
<key>CFBundleSignature</key> |
|||
<string>????</string> |
|||
<key>CFBundleVersion</key> |
|||
<string></string> |
|||
<key>CSResourcesFileMapped</key> |
|||
<true/> |
|||
<key>LSRequiresCarbon</key> |
|||
<true/> |
|||
<key>NSHumanReadableCopyright</key> |
|||
<string></string> |
|||
</dict> |
|||
</plist> |
@ -1,18 +1,49 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|||
<plist version="1.0"> |
|||
<dict> |
|||
<key>CFBundleDisplayName</key> |
|||
<string>Pcb Router</string> |
|||
<key>CFBundleDocumentTypes</key> |
|||
<array> |
|||
<dict> |
|||
<key>CFBundleTypeIconFile</key> |
|||
<string>pcbnew_doc.icns</string> |
|||
<key>CFBundleTypeExtensions</key> |
|||
<array> |
|||
<string>brd</string> |
|||
</array> |
|||
<key>CFBundleTypeName</key> |
|||
<string>pcbnew board</string> |
|||
<key>LSHandlerRank</key> |
|||
<string>Owner</string> |
|||
</dict> |
|||
</array> |
|||
<key>CFBundleExecutable</key> |
|||
<string>pcbnew</string> |
|||
<key>CFBundleGetInfoString</key> |
|||
<string></string> |
|||
<key>CFBundleIconFile</key> |
|||
<string>pcbnew.icns</string> |
|||
<key>CFBundleIdentifier</key> |
|||
<string>org.kicad-eda.pcbnew</string> |
|||
<key>CFBundleInfoDictionaryVersion</key> |
|||
<string>6.0</string> |
|||
<key>CFBundleLongVersionString</key> |
|||
<string></string> |
|||
<key>CFBundleName</key> |
|||
<string>pcbnew</string> |
|||
<key>CFBundlePackageType</key> |
|||
<string>APPL</string> |
|||
<key>CFBundleShortVersionString</key> |
|||
<string></string> |
|||
<key>CFBundleSignature</key> |
|||
<string>????</string> |
|||
<key>CFBundleVersion</key> |
|||
<string></string> |
|||
<key>CSResourcesFileMapped</key> |
|||
<true/> |
|||
<key>LSRequiresCarbon</key> |
|||
<true/> |
|||
<key>NSHumanReadableCopyright</key> |
|||
<string></string> |
|||
</dict> |
|||
</plist> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue