{"id":13461956,"url":"https://github.com/hexedbits/AboutThisApp","last_synced_at":"2025-03-24T23:32:00.539Z","repository":{"id":41868326,"uuid":"236251735","full_name":"hexedbits/AboutThisApp","owner":"hexedbits","description":"A standard, customizable \"About This App\" panel for any Mac app","archived":false,"fork":false,"pushed_at":"2024-02-14T19:37:08.000Z","size":1325,"stargazers_count":82,"open_issues_count":0,"forks_count":4,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-03T10:39:07.987Z","etag":null,"topics":["about-app","macos","swift"],"latest_commit_sha":null,"homepage":"https://hexedbits.github.io/AboutThisApp/","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hexedbits.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2020-01-26T01:06:07.000Z","updated_at":"2024-12-11T12:08:58.000Z","dependencies_parsed_at":"2024-01-27T05:23:54.454Z","dependency_job_id":"58894353-342e-4dd4-9982-ec8e7942ebaa","html_url":"https://github.com/hexedbits/AboutThisApp","commit_stats":{"total_commits":137,"total_committers":3,"mean_commits":"45.666666666666664","dds":0.4744525547445255,"last_synced_commit":"c775e8561d41914f3d31234071f56d62dabdbdd3"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexedbits%2FAboutThisApp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexedbits%2FAboutThisApp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexedbits%2FAboutThisApp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexedbits%2FAboutThisApp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hexedbits","download_url":"https://codeload.github.com/hexedbits/AboutThisApp/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245372193,"owners_count":20604487,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["about-app","macos","swift"],"created_at":"2024-07-31T12:00:36.161Z","updated_at":"2025-03-24T23:32:00.226Z","avatar_url":"https://github.com/hexedbits.png","language":"Swift","readme":"# AboutThisApp [![CI](https://github.com/hexedbits/AboutThisApp/workflows/CI/badge.svg)](https://github.com/hexedbits/AboutThisApp/actions)\n\n*A standard, customizable \"About This App\" panel for any Mac app*\n\n[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fhexedbits%2FAboutThisApp%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/hexedbits/AboutThisApp) \u003cbr\u003e [![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fhexedbits%2FAboutThisApp%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/hexedbits/AboutThisApp)\n\n## About\n\nThis library provides a standard \"About This App\" panel for Mac apps. It requires **zero configuration by default** for typical projects, and it can be easily customized.\n\nAppKit provides a default \"About This App\" panel via [`NSApp.orderFrontStandardAboutPanel()`](https://developer.apple.com/documentation/appkit/nsapplication/1428479-orderfrontstandardaboutpanel), but customization is limited.\n\nThis component is used in [Red Eye](https://www.hexedbits.com/redeye/) and [Lucifer](https://www.hexedbits.com/lucifer/).\n\n\u003cimg src=\"https://raw.githubusercontent.com/hexedbits/AboutThisApp/main/screenshots/screenshot_dark.png\" width=\"50%\" /\u003e\n\n\u003cimg src=\"https://raw.githubusercontent.com/hexedbits/AboutThisApp/main/screenshots/screenshot_light.png\" width=\"50%\" /\u003e\n\n## Usage\n\n```swift\nlet metadata = AppMetadata() // customize if desired\n\nlet panel = AboutThisAppPanel(metadata: metadata)\n\npanel.makeKeyAndOrderFront(nil)\n```\n\n## Requirements\n\n- macOS 11.0+\n- Swift 5.9+\n- Xcode 15.0+\n- [SwiftLint](https://github.com/realm/SwiftLint)\n\n## Installation\n\n### [CocoaPods](http://cocoapods.org)\n\n````ruby\npod 'AboutThisApp', '~\u003e 2.0.0'\n````\n\n### [Swift Package Manager](https://swift.org/package-manager/)\n\nAdd `AboutThisApp` to the `dependencies` value of your `Package.swift`.\n\n```swift\ndependencies: [\n    .package(url: \"https://github.com/hexedbits/AboutThisApp\", from: \"2.0.0\")\n]\n```\n\nAlternatively, you can add the package [directly via Xcode](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app).\n\n## Documentation\n\nYou can read the [documentation here](https://hexedbits.github.io/AboutThisApp). Generated with [jazzy](https://github.com/realm/jazzy). Hosted by [GitHub Pages](https://pages.github.com).\n\n## Contributing\n\nInterested in making contributions to this project? Please review the guides below.\n\n- [Contributing Guidelines](https://github.com/hexedbits/.github/blob/main/CONTRIBUTING.md)\n- [Code of Conduct](https://github.com/hexedbits/.github/blob/main/CODE_OF_CONDUCT.md)\n- [Support and Help](https://github.com/hexedbits/.github/blob/main/SUPPORT.md)\n- [Security Policy](https://github.com/hexedbits/.github/blob/main/SECURITY.md)\n\nAlso consider [sponsoring this project](https://github.com/sponsors/jessesquires) or [buying my apps](https://www.hexedbits.com)! ✌️\n\n## Credits\n\nCreated and maintained by [**Jesse Squires**](https://www.jessesquires.com).\n\n## License\n\nReleased under the MIT License. See `LICENSE` for details.\n\n\u003e **Copyright \u0026copy; 2020-present Jesse Squires.**\n","funding_links":["https://github.com/sponsors/jessesquires"],"categories":["UI","Swift"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhexedbits%2FAboutThisApp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhexedbits%2FAboutThisApp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhexedbits%2FAboutThisApp/lists"}