- Added logging functionality to cursor_pro_keep_alive.py for better error tracking. - Improved configuration loading to handle frozen executables and updated success message. - Introduced cleanup_temp_files function to remove temporary directories. - Refactored browser options setup into a separate function for clarity. - Updated .gitignore to include virtual environment directory. - Enhanced CursorKeepAlive.spec to check for config.ini existence and updated app bundle details. - Added new files for macOS app packaging, including Info.plist and application icon.
29 lines
819 B
Plaintext
29 lines
819 B
Plaintext
<?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>CFBundleDisplayName</key>
|
|
<string>CursorPro</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>CursorPro</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>icon-windowed.icns</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>com.yourcompany.cursorpro</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>CursorPro</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>1.0.0</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1.0.0</string>
|
|
<key>LSBackgroundOnly</key>
|
|
<false/>
|
|
<key>NSHighResolutionCapable</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|