Skip to content

Commit 7e8bd9e

Browse files
committed
Add launch at login support
1 parent 090e318 commit 7e8bd9e

File tree

15 files changed

+277
-47
lines changed

15 files changed

+277
-47
lines changed

.bundle/config

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
BUNDLE_PATH: "./Gems"

.gitignore

+69-40
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# Created by https://www.gitignore.io/api/swift,macos,windows
1+
# Created by https://www.gitignore.io
22

33
### macOS ###
4-
*.DS_Store
4+
# General
5+
.DS_Store
56
.AppleDouble
67
.LSOverride
78

@@ -27,16 +28,47 @@ Network Trash Folder
2728
Temporary Items
2829
.apdisk
2930

30-
### Swift ###
31+
### Windows ###
32+
# Windows thumbnail cache files
33+
Thumbs.db
34+
ehthumbs.db
35+
ehthumbs_vista.db
36+
37+
# Dump file
38+
*.stackdump
39+
40+
# Folder config file
41+
[Dd]esktop.ini
42+
43+
# Recycle Bin used on file shares
44+
$RECYCLE.BIN/
45+
46+
# Windows Installer files
47+
*.cab
48+
*.msi
49+
*.msix
50+
*.msm
51+
*.msp
52+
53+
# Windows shortcuts
54+
*.lnk
55+
56+
### Xcode ###
3157
# Xcode
3258
#
3359
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
3460

35-
## Build generated
61+
## User settings
62+
xcuserdata/
63+
64+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
65+
*.xcscmblueprint
66+
*.xccheckout
67+
68+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
3669
build/
3770
DerivedData/
38-
39-
## Various settings
71+
*.moved-aside
4072
*.pbxuser
4173
!default.pbxuser
4274
*.mode1v3
@@ -45,12 +77,14 @@ DerivedData/
4577
!default.mode2v3
4678
*.perspectivev3
4779
!default.perspectivev3
48-
xcuserdata/
4980

50-
## Other
51-
*.moved-aside
52-
*.xccheckout
53-
*.xcscmblueprint
81+
### Xcode Patch ###
82+
*.xcodeproj/*
83+
!*.xcodeproj/project.pbxproj
84+
!*.xcodeproj/xcshareddata/
85+
!*.xcworkspace/contents.xcworkspacedata
86+
/*.gcno
87+
**/xcshareddata/WorkspaceSettings.xcsettings
5488

5589
## Obj-C/Swift specific
5690
*.hmap
@@ -62,16 +96,27 @@ xcuserdata/
6296
timeline.xctimeline
6397
playground.xcworkspace
6498

65-
# Swift Package Manager
99+
# CocoaPods
100+
#
101+
# We recommend against adding the Pods directory to your .gitignore. However
102+
# you should judge for yourself, the pros and cons are mentioned at:
103+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
104+
105+
Pods/
106+
107+
# Add this line if you want to avoid checking in source code from the Xcode workspace
108+
# *.xcworkspace
109+
110+
# Carthage
66111
#
67-
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
68-
# Packages/
69-
# Package.pins
70-
.build/
112+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
113+
# Carthage/Checkouts
71114

72-
# CocoaPods - Refactored to standalone file
115+
Carthage/Build
73116

74-
# Carthage - Refactored to standalone file
117+
# Gems
118+
119+
Gems/
75120

76121
# fastlane
77122
#
@@ -82,28 +127,12 @@ playground.xcworkspace
82127

83128
fastlane/report.xml
84129
fastlane/Preview.html
85-
fastlane/screenshots
130+
fastlane/screenshots/**/*.png
86131
fastlane/test_output
87132

88-
### Windows ###
89-
# Windows thumbnail cache files
90-
Thumbs.db
91-
ehthumbs.db
92-
ehthumbs_vista.db
93-
94-
# Folder config file
95-
Desktop.ini
96-
97-
# Recycle Bin used on file shares
98-
$RECYCLE.BIN/
99-
100-
# Windows Installer files
101-
*.cab
102-
*.msi
103-
*.msm
104-
*.msp
105-
106-
# Windows shortcuts
107-
*.lnk
133+
# Code Injection
134+
#
135+
# After new code Injection tools there's a generated folder /iOSInjectionProject
136+
# https://github.com/johnno1962/injectionforxcode
108137

109-
# End of https://www.gitignore.io/api/swift,macos,windows
138+
iOSInjectionProject/

Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'cocoapods'

Gemfile.lock

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
CFPropertyList (3.0.0)
5+
activesupport (4.2.11.1)
6+
i18n (~> 0.7)
7+
minitest (~> 5.1)
8+
thread_safe (~> 0.3, >= 0.3.4)
9+
tzinfo (~> 1.1)
10+
atomos (0.1.3)
11+
claide (1.0.2)
12+
cocoapods (1.6.1)
13+
activesupport (>= 4.0.2, < 5)
14+
claide (>= 1.0.2, < 2.0)
15+
cocoapods-core (= 1.6.1)
16+
cocoapods-deintegrate (>= 1.0.2, < 2.0)
17+
cocoapods-downloader (>= 1.2.2, < 2.0)
18+
cocoapods-plugins (>= 1.0.0, < 2.0)
19+
cocoapods-search (>= 1.0.0, < 2.0)
20+
cocoapods-stats (>= 1.0.0, < 2.0)
21+
cocoapods-trunk (>= 1.3.1, < 2.0)
22+
cocoapods-try (>= 1.1.0, < 2.0)
23+
colored2 (~> 3.1)
24+
escape (~> 0.0.4)
25+
fourflusher (>= 2.2.0, < 3.0)
26+
gh_inspector (~> 1.0)
27+
molinillo (~> 0.6.6)
28+
nap (~> 1.0)
29+
ruby-macho (~> 1.4)
30+
xcodeproj (>= 1.8.1, < 2.0)
31+
cocoapods-core (1.6.1)
32+
activesupport (>= 4.0.2, < 6)
33+
fuzzy_match (~> 2.0.4)
34+
nap (~> 1.0)
35+
cocoapods-deintegrate (1.0.4)
36+
cocoapods-downloader (1.2.2)
37+
cocoapods-plugins (1.0.0)
38+
nap
39+
cocoapods-search (1.0.0)
40+
cocoapods-stats (1.1.0)
41+
cocoapods-trunk (1.3.1)
42+
nap (>= 0.8, < 2.0)
43+
netrc (~> 0.11)
44+
cocoapods-try (1.1.0)
45+
colored2 (3.1.2)
46+
concurrent-ruby (1.1.5)
47+
escape (0.0.4)
48+
fourflusher (2.2.0)
49+
fuzzy_match (2.0.4)
50+
gh_inspector (1.1.3)
51+
i18n (0.9.5)
52+
concurrent-ruby (~> 1.0)
53+
minitest (5.11.3)
54+
molinillo (0.6.6)
55+
nanaimo (0.2.6)
56+
nap (1.1.0)
57+
netrc (0.11.0)
58+
ruby-macho (1.4.0)
59+
thread_safe (0.3.6)
60+
tzinfo (1.2.5)
61+
thread_safe (~> 0.1)
62+
xcodeproj (1.8.2)
63+
CFPropertyList (>= 2.3.3, < 4.0)
64+
atomos (~> 0.1.3)
65+
claide (>= 1.0.2, < 2.0)
66+
colored2 (~> 3.1)
67+
nanaimo (~> 0.2.6)
68+
69+
PLATFORMS
70+
ruby
71+
72+
DEPENDENCIES
73+
cocoapods
74+
75+
BUNDLED WITH
76+
2.0.1

Podfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
platform :macos, '10.10'
2+
inhibit_all_warnings!
3+
4+
target 'Suohai' do
5+
pod 'LoginServiceKit', :git => 'https://github.com/Clipy/LoginServiceKit.git'
6+
end

Podfile.lock

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
PODS:
2+
- LoginServiceKit (2.0.2)
3+
4+
DEPENDENCIES:
5+
- LoginServiceKit (from `https://github.com/Clipy/LoginServiceKit.git`)
6+
7+
EXTERNAL SOURCES:
8+
LoginServiceKit:
9+
:git: https://github.com/Clipy/LoginServiceKit.git
10+
11+
CHECKOUT OPTIONS:
12+
LoginServiceKit:
13+
:commit: 79c9d6d2cc25dc238e6044245bebdc8253a786f2
14+
:git: https://github.com/Clipy/LoginServiceKit.git
15+
16+
SPEC CHECKSUMS:
17+
LoginServiceKit: 5b4736234dc4cc96d786d8cd83e43b9ce5e7f1ca
18+
19+
PODFILE CHECKSUM: 0ad4c30408605bc8e6c92f8c81723fa8f708df20
20+
21+
COCOAPODS: 1.6.1

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
# Suohai
22

3-
Audio input/output source lock for macOS.
3+
Audio input/output source locking tool for macOS.
44

55
## Screenshot
66

77
![0x01](Screenshot/0x01.png)
88

9+
## Build
10+
11+
Run `pod install` before buil project.
12+
913
## Credit
1014

1115
- [viko16](https://github.com/viko16)
1216

1317
## License
18+
1419
The [MIT License](LICENSE).

Screenshot/0x01.png

47.1 KB
Loading

0 commit comments

Comments
 (0)