From c8f8b2589ff07c53dd51c6a6543f12e3ea5ae9bf Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Wed, 15 Nov 2023 17:35:50 -0500 Subject: [PATCH] Update macOS application names to current standard --- resources/macos/plist/bitmap2component.Info.plist.in | 2 +- resources/macos/plist/eeschema.Info.plist.in | 4 ++-- resources/macos/plist/gerbview.Info.plist.in | 2 +- resources/macos/plist/pcbnew.Info.plist.in | 2 +- tools/build/mk_macos_icons.py | 1 + 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/resources/macos/plist/bitmap2component.Info.plist.in b/resources/macos/plist/bitmap2component.Info.plist.in index 0526600a2c..75b73dff94 100644 --- a/resources/macos/plist/bitmap2component.Info.plist.in +++ b/resources/macos/plist/bitmap2component.Info.plist.in @@ -10,7 +10,7 @@ CFBundleIdentifier org.kicad.bitmap2component CFBundleInfoDictionaryVersion 6.0 CFBundleLongVersionString @KICAD_VERSION_FULL@ - CFBundleName Bitmap2Component + CFBundleName Image Converter CFBundlePackageType APPL CFBundleShortVersionString @KICAD_VERSION@ CFBundleSignature ???? diff --git a/resources/macos/plist/eeschema.Info.plist.in b/resources/macos/plist/eeschema.Info.plist.in index 423f8989b3..7d8fc6e554 100644 --- a/resources/macos/plist/eeschema.Info.plist.in +++ b/resources/macos/plist/eeschema.Info.plist.in @@ -12,7 +12,7 @@ kicad_sch CFBundleTypeIconFile eeschema_doc.icns - CFBundleTypeName eeschema document + CFBundleTypeName KiCad schematic document LSHandlerRank Owner @@ -23,7 +23,7 @@ CFBundleIdentifier org.kicad.eeschema CFBundleInfoDictionaryVersion 6.0 CFBundleLongVersionString @KICAD_VERSION_FULL@ - CFBundleName Eeschema + CFBundleName Schematic Editor CFBundlePackageType APPL CFBundleShortVersionString @KICAD_VERSION@ CFBundleSignature ???? diff --git a/resources/macos/plist/gerbview.Info.plist.in b/resources/macos/plist/gerbview.Info.plist.in index ec45c377c3..3c0600cff0 100644 --- a/resources/macos/plist/gerbview.Info.plist.in +++ b/resources/macos/plist/gerbview.Info.plist.in @@ -42,7 +42,7 @@ CFBundleIdentifier org.kicad.gerbview CFBundleInfoDictionaryVersion 6.0 CFBundleLongVersionString @KICAD_VERSION_FULL@ - CFBundleName GerbView + CFBundleName Gerber Viewer CFBundlePackageType APPL CFBundleShortVersionString @KICAD_VERSION@ CFBundleSignature ???? diff --git a/resources/macos/plist/pcbnew.Info.plist.in b/resources/macos/plist/pcbnew.Info.plist.in index 10975256aa..3253b8769a 100644 --- a/resources/macos/plist/pcbnew.Info.plist.in +++ b/resources/macos/plist/pcbnew.Info.plist.in @@ -24,7 +24,7 @@ CFBundleIdentifier org.kicad.pcbnew CFBundleInfoDictionaryVersion 6.0 CFBundleLongVersionString @KICAD_VERSION_FULL@ - CFBundleName Pcbnew + CFBundleName PCB Editor CFBundlePackageType APPL CFBundleShortVersionString @KICAD_VERSION@ CFBundleSignature ???? diff --git a/tools/build/mk_macos_icons.py b/tools/build/mk_macos_icons.py index 5d93fe901c..d4363f791c 100644 --- a/tools/build/mk_macos_icons.py +++ b/tools/build/mk_macos_icons.py @@ -15,6 +15,7 @@ ICONS = [ ("bitmap2component", ("bitmap2component",), "../../bitmap2component"), ("cvpcb", ("cvpcb", "cvpcb_doc"), "../../cvpcb"), ("eeschema", ("eeschema", "eeschema_doc"), "../../eeschema"), + ("libedit", ("eeschema", "eeschema_doc"), "../../eeschema"), ("gerbview", ("gerbview", "gerbview_doc"), "../../gerbview"), ("kicad", ("kicad", "kicad_doc"), "../../kicad"), ("pagelayout_editor", ("pl_editor", "pl_editor_doc"), "../../pagelayout_editor"),