diff options
author | Damiano Galassi <[email protected]> | 2020-04-11 12:19:17 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2020-04-11 12:19:17 +0200 |
commit | 21982a4e674d3382b13f30546f6e699bdfc5cafe (patch) | |
tree | 7da62e5317024d9e77d062678097a2eb2286c6fe /macosx/HandBrakeXPCService/HandBrakeXPCService2.plist | |
parent | c3b2645cb09b48443bdd0e2670be6866d34b0dae (diff) |
MacGui: enhance the queue to allow up to 4 simultaneous encodes. Add a preference to set the number of queue workers.
Diffstat (limited to 'macosx/HandBrakeXPCService/HandBrakeXPCService2.plist')
-rw-r--r-- | macosx/HandBrakeXPCService/HandBrakeXPCService2.plist | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/macosx/HandBrakeXPCService/HandBrakeXPCService2.plist b/macosx/HandBrakeXPCService/HandBrakeXPCService2.plist new file mode 100644 index 000000000..78928db23 --- /dev/null +++ b/macosx/HandBrakeXPCService/HandBrakeXPCService2.plist @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>$(DEVELOPMENT_LANGUAGE)</string> + <key>CFBundleDisplayName</key> + <string>HandBrakeXPCService</string> + <key>CFBundleExecutable</key> + <string>$(EXECUTABLE_NAME)</string> + <key>CFBundleIdentifier</key> + <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>$(PRODUCT_NAME)</string> + <key>CFBundlePackageType</key> + <string>XPC!</string> + <key>CFBundleShortVersionString</key> + <string>1.0</string> + <key>CFBundleVersion</key> + <string>1</string> + <key>XPCService</key> + <dict> + <key>ServiceType</key> + <string>Application</string> + </dict> +</dict> +</plist> |