Skip to content

Commit

Permalink
fixup! Add file associations support
Browse files Browse the repository at this point in the history
[Desktop: Add support for file associations](#773)
  • Loading branch information
zhelenskiy committed Jun 20, 2024
1 parent 574c12b commit 8e6c08e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@
<key>NSHighResolutionCapable</key>
<string>true</string>

<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>Exameple URL</string>
<key>CFBundleURLSchemes</key>
<array>
<string>exampleUrl</string>
</array>
</dict>
</array>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>Exameple URL</string>
<key>CFBundleURLSchemes</key>
<array>
<string>exampleUrl</string>
</array>
</dict>
</array>
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ dependencies {
}

def extraInfoPlistKeys = """
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>Exameple URL</string>
<key>CFBundleURLSchemes</key>
<array>
<string>exampleUrl</string>
</array>
</dict>
</array>"""
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>Exameple URL</string>
<key>CFBundleURLSchemes</key>
<array>
<string>exampleUrl</string>
</array>
</dict>
</array>"""

compose.desktop {
application {
Expand Down

0 comments on commit 8e6c08e

Please sign in to comment.