mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 00:37:36 -06:00
38ff104cb9
This runtime implements a brower control with embedded Python interpretor. The Python interpretor runs a simple script at startup to generate some HTML that is displayed in the browser. Arbitrary URLs can be opened from the "Open URL" option on the File menu.
20 lines
625 B
Plaintext
20 lines
625 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
|
|
<plist version="0.9">
|
|
<dict>
|
|
<!-- start of standard entries -->
|
|
<key>CFBundleIconFile</key>
|
|
<string>@ICON@</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleGetInfoString</key>
|
|
<string>pgAdmin 4 - PostgreSQL Tools</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>@TYPEINFO@</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>@EXECUTABLE@</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>org.pgadmin.@EXECUTABLE@</string>
|
|
</dict>
|
|
</plist>
|