├── .gitignore ├── IsThereNet.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved ├── xcshareddata │ └── xcschemes │ │ └── IsThereNet.xcscheme └── xcuserdata │ └── alin.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── IsThereNet ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── mac1024.png │ │ ├── mac128.png │ │ ├── mac16.png │ │ ├── mac256.png │ │ ├── mac32.png │ │ ├── mac512.png │ │ └── mac64.png │ └── Contents.json ├── Info.plist ├── IsThereNet.entitlements ├── IsThereNetApp.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── fping ├── LICENSE ├── Makefile ├── README.md ├── ReleaseNotes ├── 1.6.1.md ├── 1.6.2.md ├── 1.6.md ├── 1.7.0.md └── 1.7.1.md ├── Releases └── appcast.xml └── Resources ├── connected.png └── disconnected.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/.gitignore -------------------------------------------------------------------------------- /IsThereNet.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IsThereNet.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IsThereNet.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /IsThereNet.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /IsThereNet.xcodeproj/xcshareddata/xcschemes/IsThereNet.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet.xcodeproj/xcshareddata/xcschemes/IsThereNet.xcscheme -------------------------------------------------------------------------------- /IsThereNet.xcodeproj/xcuserdata/alin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet.xcodeproj/xcuserdata/alin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /IsThereNet.xcodeproj/xcuserdata/alin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet.xcodeproj/xcuserdata/alin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /IsThereNet/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /IsThereNet/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /IsThereNet/Assets.xcassets/AppIcon.appiconset/mac1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/Assets.xcassets/AppIcon.appiconset/mac1024.png -------------------------------------------------------------------------------- /IsThereNet/Assets.xcassets/AppIcon.appiconset/mac128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/Assets.xcassets/AppIcon.appiconset/mac128.png -------------------------------------------------------------------------------- /IsThereNet/Assets.xcassets/AppIcon.appiconset/mac16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/Assets.xcassets/AppIcon.appiconset/mac16.png -------------------------------------------------------------------------------- /IsThereNet/Assets.xcassets/AppIcon.appiconset/mac256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/Assets.xcassets/AppIcon.appiconset/mac256.png -------------------------------------------------------------------------------- /IsThereNet/Assets.xcassets/AppIcon.appiconset/mac32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/Assets.xcassets/AppIcon.appiconset/mac32.png -------------------------------------------------------------------------------- /IsThereNet/Assets.xcassets/AppIcon.appiconset/mac512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/Assets.xcassets/AppIcon.appiconset/mac512.png -------------------------------------------------------------------------------- /IsThereNet/Assets.xcassets/AppIcon.appiconset/mac64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/Assets.xcassets/AppIcon.appiconset/mac64.png -------------------------------------------------------------------------------- /IsThereNet/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /IsThereNet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/Info.plist -------------------------------------------------------------------------------- /IsThereNet/IsThereNet.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/IsThereNet.entitlements -------------------------------------------------------------------------------- /IsThereNet/IsThereNetApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/IsThereNetApp.swift -------------------------------------------------------------------------------- /IsThereNet/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /IsThereNet/fping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/IsThereNet/fping -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes/1.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/ReleaseNotes/1.6.1.md -------------------------------------------------------------------------------- /ReleaseNotes/1.6.2.md: -------------------------------------------------------------------------------- 1 | Make sure no empty window appears on macOS Sequoia. 2 | -------------------------------------------------------------------------------- /ReleaseNotes/1.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/ReleaseNotes/1.6.md -------------------------------------------------------------------------------- /ReleaseNotes/1.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/ReleaseNotes/1.7.0.md -------------------------------------------------------------------------------- /ReleaseNotes/1.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/ReleaseNotes/1.7.1.md -------------------------------------------------------------------------------- /Releases/appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/Releases/appcast.xml -------------------------------------------------------------------------------- /Resources/connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/Resources/connected.png -------------------------------------------------------------------------------- /Resources/disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuzzyIdeas/IsThereNet/HEAD/Resources/disconnected.png --------------------------------------------------------------------------------