Skip to content

Commit

Permalink
allows loading of icons via http scheme
Browse files Browse the repository at this point in the history
- Key `NSAppTransportSecurity` disallows `http` by default, and requires `https`
- Some usable icon resources (loaded via `-appIcon` or otherwise) are not readily accessible via `http`
  • Loading branch information
boneskull committed Oct 6, 2016
1 parent e16e4c2 commit 572f47b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Terminal Notifier/Terminal Notifier-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@
<string>MainMenu</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSUserNotificationAlertStyle</key>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<key>NSUserNotificationAlertStyle</key>
<string>alert</string>
</dict>
</plist>

0 comments on commit 572f47b

Please sign in to comment.