3 Commits
Author SHA1 Message Date
Sindre Sorhus 685cc1b6df 2.2.1 2018-07-13 13:26:58 +07:00
Sindre Sorhus fe7864b7ec Fix building for release when the app name has a space in it
Might be related to #7
2018-07-13 05:49:22 +07:00
Sindre Sorhus 1e6b409150 Readme tweaks 2018-07-05 16:00:38 +07:00
4 changed files with 11 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'LaunchAtLogin'
s.version = '2.2.0'
s.version = '2.2.1'
s.summary = 'Add "Launch at Login" functionality to your sandboxed macOS app in seconds'
s.license = 'MIT'
s.homepage = 'https://github.com/sindresorhus/LaunchAtLogin'
+1 -1
View File
@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.2.0</string>
<string>2.2.1</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
+1 -1
View File
@@ -13,5 +13,5 @@ codesign --force --entitlements="$CODE_SIGN_ENTITLEMENTS" --sign="$EXPANDED_CODE
if [[ $CONFIGURATION == "Release" ]]; then
rm -rf "$origin_helper_path"
rm "$(dirname $origin_helper_path)/copy-helper.sh"
rm "$(dirname "$origin_helper_path")/copy-helper.sh"
fi
+8
View File
@@ -39,10 +39,18 @@ pod 'LaunchAtLogin'
Add a new ["Run Script Phase"](http://stackoverflow.com/a/39633955/64949) below "Embed Frameworks" in "Build Phases" with the following:
Carthage:
```sh
./Carthage/Build/Mac/LaunchAtLogin.framework/Resources/copy-helper.sh
```
CocoaPods:
```sh
./Pod/LaunchAtLogin/LaunchAtLogin/copy-helper.sh
```
Use it in your app:
```swift