Skip to content

Commit c9811dd

Browse files
committed
Initial
0 parents  commit c9811dd

File tree

11 files changed

+946
-0
lines changed

11 files changed

+946
-0
lines changed

.gitignore

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
2+
# Created by https://www.gitignore.io/api/xcode,objective-c
3+
# Edit at https://www.gitignore.io/?templates=xcode,objective-c
4+
5+
### Objective-C ###
6+
# Xcode
7+
#
8+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
9+
10+
## Build generated
11+
build/
12+
DerivedData/
13+
14+
## Various settings
15+
*.pbxuser
16+
!default.pbxuser
17+
*.mode1v3
18+
!default.mode1v3
19+
*.mode2v3
20+
!default.mode2v3
21+
*.perspectivev3
22+
!default.perspectivev3
23+
xcuserdata/
24+
25+
## Other
26+
*.moved-aside
27+
*.xccheckout
28+
*.xcscmblueprint
29+
30+
## Obj-C/Swift specific
31+
*.hmap
32+
*.ipa
33+
*.dSYM.zip
34+
*.dSYM
35+
36+
# CocoaPods
37+
# We recommend against adding the Pods directory to your .gitignore. However
38+
# you should judge for yourself, the pros and cons are mentioned at:
39+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
40+
# Pods/
41+
# Add this line if you want to avoid checking in source code from the Xcode workspace
42+
# *.xcworkspace
43+
44+
# Carthage
45+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
46+
# Carthage/Checkouts
47+
48+
Carthage/Build
49+
50+
# fastlane
51+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
52+
# screenshots whenever they are needed.
53+
# For more information about the recommended setup visit:
54+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
55+
56+
fastlane/report.xml
57+
fastlane/Preview.html
58+
fastlane/screenshots/**/*.png
59+
fastlane/test_output
60+
61+
# Code Injection
62+
# After new code Injection tools there's a generated folder /iOSInjectionProject
63+
# https://github.com/johnno1962/injectionforxcode
64+
65+
iOSInjectionProject/
66+
67+
### Objective-C Patch ###
68+
69+
### Xcode ###
70+
# Xcode
71+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
72+
73+
## User settings
74+
75+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
76+
77+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
78+
79+
## Xcode Patch
80+
*.xcodeproj/*
81+
!*.xcodeproj/project.pbxproj
82+
!*.xcodeproj/xcshareddata/
83+
!*.xcworkspace/contents.xcworkspacedata
84+
/*.gcno
85+
86+
### Xcode Patch ###
87+
**/xcshareddata/WorkspaceSettings.xcsettings
88+
89+
# End of https://www.gitignore.io/api/xcode,objective-c

LICENSE

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2019 Oleg Geier
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
URL Scheme Defaults
2+
===================
3+
4+
![screenshot](screenshot.png)
5+
6+
Simple tool to change the default macOS application for a given URL scheme (`http:`, `feed:`, etc.). The latter scheme is used for feed reader like [baRSS][1].
7+
8+
9+
Usage
10+
-----
11+
12+
1. Go to [releases][2] and download the tool
13+
2. Run `URL Scheme Defaults`
14+
3. It will list all schemes, for which **more than one** suitable application exists
15+
4. Click on the drop-down icon and select a new application
16+
17+
18+
19+
[1]: https://github.com/relikd/baRSS
20+
[2]: https://github.com/relikd/URL-Scheme-Defaults/releases/latest

0 commit comments

Comments
 (0)