-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added verify checks at startup and encrypted config and more security…
… improvements. E-Mail notifications with beautiful html message also working. Features need integration into app still. Fixed macOS dark mode issues. Reduced file size.
- Loading branch information
Lennolium
committed
Nov 2, 2023
1 parent
f04757f
commit 337d943
Showing
413 changed files
with
61,252 additions
and
3,438 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# How to Install (macOS) | ||
|
||
## Prerequisites | ||
Before installing swiftGuard, ensure that FileVault is enabled on your Mac. This step is crucial as swiftGuard's security measures are most effective when FileVault is activated. To enable FileVault: | ||
1. Open "System Preferences" from the Apple menu. | ||
2. Navigate to "Security & Privacy" and select the "FileVault" tab. | ||
3. Click on the lock icon and enter your password to make changes. | ||
4. Enable FileVault but ensure that iCloud recovery is **not** activated (note your recovery key!). | ||
|
||
## Installation | ||
Follow the steps below to install swiftGuard on your macOS: | ||
|
||
1. Obtain the most recent version of swiftGuard by downloading it from the [Releases](https://github.com/Lennolium/swiftGuard/releases/latest) page. | ||
2. Open the downloaded `swiftGuard.dmg` file. | ||
3. Drag the swiftGuard application into the Applications folder. | ||
4. Open the swiftGuard application from the Applications folder by right-clicking and selecting "Open". If you encounter a warning that the application is from an unidentified developer, follow the steps below: | ||
- Open "System Preferences" from the Apple menu. | ||
- Navigate to "Security & Privacy" and click on "Open Anyway" to allow the application to run. | ||
|
||
swiftGuard should now appear in the macOS system tray. Test the shutdown or hibernation feature to ensure it executes correctly. You may be prompted to grant necessary permissions by macOS during the first run. | ||
|
||
## Upgrade from an Older Version | ||
To upgrade swiftGuard to a newer version, follow the steps below: | ||
|
||
1. Close the currently running swiftGuard application. You can do this by accessing the tray menu and clicking on the application icon, then selecting "Exit". | ||
2. Open the newly downloaded `swiftGuard.dmg` file. | ||
3. Drag the swiftGuard application from the new package into the Applications folder, replacing the old version when prompted. | ||
|
||
After completing these steps, you should have successfully installed or updated swiftGuard on your macOS device. If you encounter any issues during the installation or upgrade process, refer to the documentation or [reach out to me](mailto:[email protected]?subject=swiftGuard%20Assistance&body=Dear%20Lennart%2C%0A%0AI'm%20trying%20to%20install%2Fupgrade%20swiftGuard%2C%20but%20did%20run%20into%20some%20problems%3A) for assistance. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,7 +71,7 @@ rm -R dmg/* | |
_info ".dmg building started. This can take a while ..." | ||
if create-dmg \ | ||
--volname "swiftGuard" \ | ||
--volicon "img/dmg-icon/dmg-icon-macos@2x.icns" \ | ||
--volicon "img/dmg-icon/dmg-icon-macos.icns" \ | ||
--background "img/dmg-bg/[email protected]" \ | ||
--window-pos 200 120 \ | ||
--window-size 660 400 \ | ||
|
Oops, something went wrong.