From 627b18eebe0dea2800b58295a0a7ac3f62f96a06 Mon Sep 17 00:00:00 2001 From: relikd Date: Thu, 30 Oct 2025 12:33:56 +0100 Subject: [PATCH] chore: add readme --- LICENSE | 21 ++++++++++++++++++++ QLApps.xcodeproj/project.pbxproj | 4 ++++ README.md | 33 ++++++++++++++++++++++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 LICENSE create mode 100644 README.md diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..2ae8a0f --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 relikd + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/QLApps.xcodeproj/project.pbxproj b/QLApps.xcodeproj/project.pbxproj index 7a511f1..5f0142b 100644 --- a/QLApps.xcodeproj/project.pbxproj +++ b/QLApps.xcodeproj/project.pbxproj @@ -110,6 +110,8 @@ 547F52F32EB2CA05002B6D5F /* Html+Entitlements.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Html+Entitlements.swift"; sourceTree = ""; }; 547F52F62EB2CAC7002B6D5F /* Html+Footer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Html+Footer.swift"; sourceTree = ""; }; 547F52F82EB2CBAB002B6D5F /* Date+Format.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Date+Format.swift"; sourceTree = ""; }; + 547F52FB2EB37F10002B6D5F /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 547F52FC2EB37F3A002B6D5F /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 5485EE362EB1460C009E3905 /* Network.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Network.framework; path = System/Library/Frameworks/Network.framework; sourceTree = SDKROOT; }; 54D3A6EB2EA31B52001EF4F6 /* AppCategories.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppCategories.swift; sourceTree = ""; }; 54D3A6ED2EA39CC6001EF4F6 /* AppIcon.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppIcon.swift; sourceTree = ""; }; @@ -186,6 +188,8 @@ 54442BEB2E378B71008A870E = { isa = PBXGroup; children = ( + 547F52FC2EB37F3A002B6D5F /* LICENSE */, + 547F52FB2EB37F10002B6D5F /* README.md */, 54D3A6F62EA4610B001EF4F6 /* PrivateFrameworks */, 54D3A6F42EA46069001EF4F6 /* resources */, 541051562E37AFC10083670B /* src */, diff --git a/README.md b/README.md new file mode 100644 index 0000000..7a9c4ff --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +![macOS 10.15+](https://img.shields.io/badge/macOS-10.15+-888) +[![Current release](https://img.shields.io/github/release/relikd/QLApps)](https://github.com/relikd/QLApps/releases) +[![GitHub license](https://img.shields.io/github/license/relikd/QLApps)](LICENSE) + + +QLApps +====== + +A QuickLook plugin for app bundles (`.ipa`, `.appex`, `.xcarchive`). + +![screenshot](screenshot.png) + + +## Why? + +I have been using [ProvisionQL][1]. +In fact, I have contributed a lot of time and effort into a [pull request][2] to improve features and fix bugs. +But my PR is still open after 1 ½ years and there is still no support for macOS 15. +I know the author is working on it but it still takes too long for me. +So here it goes, my own fork to maintain. + +This is not to devalue the original code, I highly respect the authors contribution for the general public. +I merely want things to be done. +Also, I've removed support for provisioning profiles (`.mobileprovision`, `.provisionprofile`) and focus on app bundles. + + +## Future + +If I find the time, I'll add support for `.apk` files too. + + +[1]: https://github.com/ealeksandrov/ProvisionQL +[2]: https://github.com/ealeksandrov/ProvisionQL/pull/54