Open
Conversation
Owner
|
@iwizard7 many thanks for your contribution. I'm going to review the changes in the coming days and it should be part of the next release. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
New Provider: Implemented TCPMonitorProvider using Network.framework for efficient port checking.
UI Integration: Added a new "TCP / SSH" section in the settings to allow monitoring specific hosts and ports (defaulting to 22 for SSH).
Strict Handshake Mode: Added a "Verify Service Handshake" feature that waits for server data (like an SSH banner) to filter out "black hole" ports or silent proxies.
Automatic Releases: Created a GitHub Actions workflow that automatically builds the macOS app, packages it into a .dmg, and creates a new GitHub Release on every push to the main branch.
Build Optimization: Configured the build process to work without requiring private Apple Developer certificates for quick CI turnaround.
Sandbox Entitlements: Added the com.apple.security.network.client entitlement to allow the app to make outgoing connections from the macOS sandbox.
HTTP Cleartext Support: Configured App Transport Security (ATS) exceptions in Info.plist to allow monitoring of insecure http:// services (often used for internal/private UIs).
Swift 6 Concurrency: Resolved several build errors and warnings related to strict concurrency and data race safety in the monitoring engine.
Robust Polling: Updated the monitoring logic to handle various network states (like .waiting or .failed) more accurately to avoid false status reports.
App Icon Restoration: Recovered the official high-resolution application icon from the project resources and correctly linked it to the macOS application target.
UX Improvements: Added helpful tooltips and validation logic to the monitor configuration screen.