From 6fb3bf0f922e16bc1e45c0c0d1bfd37c8ff77b2c Mon Sep 17 00:00:00 2001 From: ema Date: Wed, 25 Mar 2026 03:17:43 +0800 Subject: [PATCH] Update README: add badges and plugin migration for QuickLook.Common --- QuickLook.Common/README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/QuickLook.Common/README.md b/QuickLook.Common/README.md index 2225e74..dd30d18 100644 --- a/QuickLook.Common/README.md +++ b/QuickLook.Common/README.md @@ -1,3 +1,24 @@ +[![GitHub license](https://img.shields.io/github/license/QL-Win/QuickLook.Common)](https://github.com/QL-Win/QuickLook/blob/master/QuickLook.Common/LICENSE) [![NuGet](https://img.shields.io/nuget/v/QuickLook.Common.svg)](https://nuget.org/packages/QuickLook.Common) + # QuickLook.Common This repository holds the common library of QuickLook. The library is shared among all QuickLook projects. + +Repository: https://github.com/QL-Win/QuickLook + +## Plugin development update + +QuickLook.Common no longer requires submodule-based development for QuickLook plugins. + +If your plugin project previously used this repository as a git submodule, remove it with: + +```bash +git submodule deinit -f QuickLook.Common +git rm -f QuickLook.Common +``` + +Then switch to NuGet dependency: + +```xml + +```