* Fix deep linking / file open on mac * Update deep linking * fix build * fix build again * update workdir * try again * update conf path * try old conf * use in house tauri * move away from tauri GH act * add rpm support * Fix updater key * Fix signing key pass * fix ubuntu deps * Fix macos artifacts
23 lines
821 B
Plaintext
23 lines
821 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>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleURLName</key>
|
|
<string>ModrinthApp</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>modrinth</string>
|
|
<string>modrinthscheme</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
<key>NSCameraUsageDescription</key>
|
|
<string>A Minecraft mod wants to access your camera.</string>
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>A Minecraft mod wants to access your microphone.</string>
|
|
</dict>
|
|
</plist>
|