From f1cace38d40abef22f4fa8c8a5bd4d36b5e5cf12 Mon Sep 17 00:00:00 2001
From: Huakun Shen <huakun.shen@huakunshen.com>
Date: Thu, 13 Feb 2025 11:29:53 -0500
Subject: [PATCH] docs(readme): add development warning for Linux compatibility

---
 README.md                       | 5 +++++
 apps/create-kunkun/index.ts     | 2 +-
 apps/create-kunkun/package.json | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 538235a..cc484e8 100644
--- a/README.md
+++ b/README.md
@@ -3,6 +3,11 @@
 > Kunkun is a cross-platform extensible app launcher like Raycast or Alfred.
 > All extensions run in a sandboxed environment by default to ensure security.
 
+> [!WARNING]
+> This project is still in the early stages of development.
+> There are known compatibility issues with Linux.
+> Author is working on fixing them.
+
 ## Demo Video and Instructions
 
 - YouTube: https://youtu.be/HfQb38s8VjY
diff --git a/apps/create-kunkun/index.ts b/apps/create-kunkun/index.ts
index 42e8d02..d836b15 100644
--- a/apps/create-kunkun/index.ts
+++ b/apps/create-kunkun/index.ts
@@ -94,7 +94,7 @@ async function copyTemplate(templateTgz: string, targetFolderName: string): Prom
 			message: "Select an Extension Template",
 			choices: [
 				{
-					name: "Preset Template (Web Worker)",
+					name: "Template UI (Web Worker)",
 					value: "template",
 					description:
 						"Write regular logic in TypeScript in OOP manner to render extension UI based on predefined template."
diff --git a/apps/create-kunkun/package.json b/apps/create-kunkun/package.json
index 004016d..e5295f3 100644
--- a/apps/create-kunkun/package.json
+++ b/apps/create-kunkun/package.json
@@ -1,7 +1,7 @@
 {
 	"name": "create-kunkun",
 	"type": "module",
-	"version": "0.1.45",
+	"version": "0.1.47",
 	"bin": {
 		"create-kunkun": "dist/index.mjs"
 	},