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" },