Change product name to include a space
This commit is contained in:
parent
f8f38a3c2e
commit
1a9e952f37
2 changed files with 7 additions and 5 deletions
|
@ -59,7 +59,7 @@
|
||||||
/* End PBXCopyFilesBuildPhase section */
|
/* End PBXCopyFilesBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXFileReference section */
|
/* Begin PBXFileReference section */
|
||||||
030F6FEE2415C5E300A43F01 /* ProcreateViewer.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ProcreateViewer.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
030F6FEE2415C5E300A43F01 /* Procreate Viewer.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Procreate Viewer.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
030F6FF12415C5E300A43F01 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
030F6FF12415C5E300A43F01 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
||||||
030F6FF32415C5E300A43F01 /* Document.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Document.swift; sourceTree = "<group>"; };
|
030F6FF32415C5E300A43F01 /* Document.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Document.swift; sourceTree = "<group>"; };
|
||||||
030F6FF82415C5E400A43F01 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
030F6FF82415C5E400A43F01 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
||||||
|
@ -126,7 +126,7 @@
|
||||||
030F6FEF2415C5E300A43F01 /* Products */ = {
|
030F6FEF2415C5E300A43F01 /* Products */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
030F6FEE2415C5E300A43F01 /* ProcreateViewer.app */,
|
030F6FEE2415C5E300A43F01 /* Procreate Viewer.app */,
|
||||||
030F70082415C6B500A43F01 /* QuickLook.appex */,
|
030F70082415C6B500A43F01 /* QuickLook.appex */,
|
||||||
036AFC0B241800350075400A /* Thumbnail.appex */,
|
036AFC0B241800350075400A /* Thumbnail.appex */,
|
||||||
);
|
);
|
||||||
|
@ -201,7 +201,7 @@
|
||||||
036AFBB7241687680075400A /* ZIPFoundation */,
|
036AFBB7241687680075400A /* ZIPFoundation */,
|
||||||
);
|
);
|
||||||
productName = ProcreateViewer;
|
productName = ProcreateViewer;
|
||||||
productReference = 030F6FEE2415C5E300A43F01 /* ProcreateViewer.app */;
|
productReference = 030F6FEE2415C5E300A43F01 /* Procreate Viewer.app */;
|
||||||
productType = "com.apple.product-type.application";
|
productType = "com.apple.product-type.application";
|
||||||
};
|
};
|
||||||
030F70072415C6B500A43F01 /* QuickLook */ = {
|
030F70072415C6B500A43F01 /* QuickLook */ = {
|
||||||
|
@ -506,7 +506,7 @@
|
||||||
"@executable_path/../Frameworks",
|
"@executable_path/../Frameworks",
|
||||||
);
|
);
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.github.redstrate.ProcreateViewer;
|
PRODUCT_BUNDLE_IDENTIFIER = com.github.redstrate.ProcreateViewer;
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "Procreate Viewer";
|
||||||
SWIFT_VERSION = 5.0;
|
SWIFT_VERSION = 5.0;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
|
@ -526,7 +526,7 @@
|
||||||
"@executable_path/../Frameworks",
|
"@executable_path/../Frameworks",
|
||||||
);
|
);
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.github.redstrate.ProcreateViewer;
|
PRODUCT_BUNDLE_IDENTIFIER = com.github.redstrate.ProcreateViewer;
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "Procreate Viewer";
|
||||||
SWIFT_VERSION = 5.0;
|
SWIFT_VERSION = 5.0;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
|
|
|
@ -4,6 +4,8 @@
|
||||||
<dict>
|
<dict>
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
||||||
|
<key>CFBundleDisplayName</key>
|
||||||
|
<string>$(PRODUCT_NAME)</string>
|
||||||
<key>CFBundleDocumentTypes</key>
|
<key>CFBundleDocumentTypes</key>
|
||||||
<array>
|
<array>
|
||||||
<dict>
|
<dict>
|
||||||
|
|
Reference in a new issue