diff options
author | Loren Burkholder <loren.burkholder@kdab.com> | 2024-01-22 17:37:27 -0500 |
---|---|---|
committer | Loren Burkholder <loren.burkholder@kdab.com> | 2024-01-22 17:37:27 -0500 |
commit | 3812d60bf4e6da379bd2547883a25b257deff3fb (patch) | |
tree | 55c389611a8c08d0bc5bfe73ce8d1cef80fdc208 /cmake/MacOSXBundleInfo.plist.in | |
parent | Disable optimistic pagination to fetch events edited into the thread before t... (diff) | |
download | nheko-3812d60bf4e6da379bd2547883a25b257deff3fb.tar.xz |
Add Matrix URL handling support to MacOS
Diffstat (limited to 'cmake/MacOSXBundleInfo.plist.in')
-rw-r--r-- | cmake/MacOSXBundleInfo.plist.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cmake/MacOSXBundleInfo.plist.in b/cmake/MacOSXBundleInfo.plist.in index b95de173..60a78b99 100644 --- a/cmake/MacOSXBundleInfo.plist.in +++ b/cmake/MacOSXBundleInfo.plist.in @@ -34,5 +34,16 @@ <string>NSApplication</string> <key>NSHighResolutionCapable</key> <true/> + <key>CFBundleURLTypes</key> + <array> + <dict> + <key>CFBundleURLName</key> + <string>Matrix URL</string> + <key>CFBundleURLSchemes</key> + <array> + <string>matrix</string> + </array> + </dict> + </array> </dict> </plist> |