From 72f644589d24659c2df8cd56096294877987093d Mon Sep 17 00:00:00 2001 From: Shiono Yoshihide Date: Wed, 27 Sep 2023 09:24:43 +0900 Subject: [PATCH 1/2] chore(docs): Update README --- README.md | 2 +- examples/basic-launch-app-from-url/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e5ee2e41..aa63163e 100644 --- a/README.md +++ b/README.md @@ -326,7 +326,7 @@ $ pnpm dlx create-nextron-app my-app --example basic-launch-app-from-url $ yarn build (or `npm run build` or `pnpm run build`) ``` -After production build, click [your-custom-protocol-scheme://open](your-custom-protocol-scheme://open) or open it in your browser, then the app will be shown like a magic! +After production build, open `your-custom-protocol-scheme://open` in your browser, then the app will be shown like a magic! If you want to change schema URL, please edit `electron-builder.yml#protocols`: diff --git a/examples/basic-launch-app-from-url/README.md b/examples/basic-launch-app-from-url/README.md index 0f2f62b5..d6183b7c 100644 --- a/examples/basic-launch-app-from-url/README.md +++ b/examples/basic-launch-app-from-url/README.md @@ -40,7 +40,7 @@ $ yarn build (or `npm run build` or `pnpm run build`) ### Open your App -Click [your-custom-protocol-scheme://open](your-custom-protocol-scheme://open) or open it in your browser, then the app will be shown like a magic! +Open `your-custom-protocol-scheme://open` in your browser, then the app will be shown like a magic! If you want to change schema URL, please edit `electron-builder.yml#protocols`: From c008a989c4b3cebfc527d62ee947a47f34597350 Mon Sep 17 00:00:00 2001 From: Shiono Yoshihide Date: Wed, 27 Sep 2023 09:26:19 +0900 Subject: [PATCH 2/2] v8.11.1 --- examples/basic-lang-javascript/package.json | 2 +- examples/basic-lang-typescript/package.json | 2 +- examples/basic-launch-app-from-url/package.json | 2 +- examples/custom-build-options/package.json | 2 +- examples/custom-main-entry/package.json | 2 +- examples/custom-renderer-port/package.json | 2 +- examples/ipc-communication/package.json | 2 +- examples/store-data/package.json | 2 +- examples/with-ant-design/package.json | 2 +- examples/with-chakra-ui/package.json | 2 +- examples/with-emotion/package.json | 2 +- examples/with-material-ui/package.json | 2 +- examples/with-tailwindcss/package.json | 2 +- package.json | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/examples/basic-lang-javascript/package.json b/examples/basic-lang-javascript/package.json index 8351e5fc..af3c7137 100644 --- a/examples/basic-lang-javascript/package.json +++ b/examples/basic-lang-javascript/package.json @@ -18,7 +18,7 @@ "electron": "^26.2.2", "electron-builder": "^24.6.4", "next": "^12.3.4", - "nextron": "^8.11.0", + "nextron": "^8.11.1", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/examples/basic-lang-typescript/package.json b/examples/basic-lang-typescript/package.json index 0db453a6..9a43b4a8 100644 --- a/examples/basic-lang-typescript/package.json +++ b/examples/basic-lang-typescript/package.json @@ -20,7 +20,7 @@ "electron": "^26.2.2", "electron-builder": "^24.6.4", "next": "^12.3.4", - "nextron": "^8.11.0", + "nextron": "^8.11.1", "react": "^18.2.0", "react-dom": "^18.2.0", "typescript": "^4.9.4" diff --git a/examples/basic-launch-app-from-url/package.json b/examples/basic-launch-app-from-url/package.json index 0db453a6..9a43b4a8 100644 --- a/examples/basic-launch-app-from-url/package.json +++ b/examples/basic-launch-app-from-url/package.json @@ -20,7 +20,7 @@ "electron": "^26.2.2", "electron-builder": "^24.6.4", "next": "^12.3.4", - "nextron": "^8.11.0", + "nextron": "^8.11.1", "react": "^18.2.0", "react-dom": "^18.2.0", "typescript": "^4.9.4" diff --git a/examples/custom-build-options/package.json b/examples/custom-build-options/package.json index 272d0df3..3fe5a388 100644 --- a/examples/custom-build-options/package.json +++ b/examples/custom-build-options/package.json @@ -24,7 +24,7 @@ "electron": "^26.2.2", "electron-builder": "^24.6.4", "next": "^12.3.4", - "nextron": "^8.11.0", + "nextron": "^8.11.1", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/examples/custom-main-entry/package.json b/examples/custom-main-entry/package.json index 8351e5fc..af3c7137 100644 --- a/examples/custom-main-entry/package.json +++ b/examples/custom-main-entry/package.json @@ -18,7 +18,7 @@ "electron": "^26.2.2", "electron-builder": "^24.6.4", "next": "^12.3.4", - "nextron": "^8.11.0", + "nextron": "^8.11.1", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/examples/custom-renderer-port/package.json b/examples/custom-renderer-port/package.json index 60101cfc..7bb022bc 100644 --- a/examples/custom-renderer-port/package.json +++ b/examples/custom-renderer-port/package.json @@ -18,7 +18,7 @@ "electron": "^26.2.2", "electron-builder": "^24.6.4", "next": "^12.3.4", - "nextron": "^8.11.0", + "nextron": "^8.11.1", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/examples/ipc-communication/package.json b/examples/ipc-communication/package.json index 8351e5fc..af3c7137 100644 --- a/examples/ipc-communication/package.json +++ b/examples/ipc-communication/package.json @@ -18,7 +18,7 @@ "electron": "^26.2.2", "electron-builder": "^24.6.4", "next": "^12.3.4", - "nextron": "^8.11.0", + "nextron": "^8.11.1", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/examples/store-data/package.json b/examples/store-data/package.json index 8351e5fc..af3c7137 100644 --- a/examples/store-data/package.json +++ b/examples/store-data/package.json @@ -18,7 +18,7 @@ "electron": "^26.2.2", "electron-builder": "^24.6.4", "next": "^12.3.4", - "nextron": "^8.11.0", + "nextron": "^8.11.1", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/examples/with-ant-design/package.json b/examples/with-ant-design/package.json index 81328ce8..c11ac244 100644 --- a/examples/with-ant-design/package.json +++ b/examples/with-ant-design/package.json @@ -22,7 +22,7 @@ "electron": "^26.2.2", "electron-builder": "^24.6.4", "next": "^12.3.4", - "nextron": "^8.11.0", + "nextron": "^8.11.1", "react": "^18.2.0", "react-dom": "^18.2.0", "typescript": "^4.9.4" diff --git a/examples/with-chakra-ui/package.json b/examples/with-chakra-ui/package.json index 5e0614bb..5abcf876 100644 --- a/examples/with-chakra-ui/package.json +++ b/examples/with-chakra-ui/package.json @@ -27,7 +27,7 @@ "electron-builder": "^24.6.4", "framer-motion": "^6.5.1", "next": "^12.3.4", - "nextron": "^8.11.0", + "nextron": "^8.11.1", "react": "^18.2.0", "react-dom": "^18.2.0", "typescript": "^4.9.5" diff --git a/examples/with-emotion/package.json b/examples/with-emotion/package.json index ded9bbbb..e67a004f 100644 --- a/examples/with-emotion/package.json +++ b/examples/with-emotion/package.json @@ -23,7 +23,7 @@ "electron": "^26.2.2", "electron-builder": "^24.6.4", "next": "^12.3.4", - "nextron": "^8.11.0", + "nextron": "^8.11.1", "react": "^18.2.0", "react-dom": "^18.2.0", "typescript": "^4.9.4" diff --git a/examples/with-material-ui/package.json b/examples/with-material-ui/package.json index b0e71ecf..8ccf80e2 100644 --- a/examples/with-material-ui/package.json +++ b/examples/with-material-ui/package.json @@ -25,7 +25,7 @@ "electron": "^26.2.2", "electron-builder": "^24.6.4", "next": "^12.3.4", - "nextron": "^8.11.0", + "nextron": "^8.11.1", "react": "^18.2.0", "react-dom": "^18.2.0", "typescript": "^4.9.4" diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index bcf67c3f..9c57370e 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -21,7 +21,7 @@ "electron": "^26.2.2", "electron-builder": "^24.6.4", "next": "^12.3.4", - "nextron": "^8.11.0", + "nextron": "^8.11.1", "postcss": "^8.4.30", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/package.json b/package.json index ca20a304..77d07389 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nextron", - "version": "8.11.0", + "version": "8.11.1", "description": "⚡ NEXT.js + Electron ⚡", "repository": "git@github.com:saltyshiomix/nextron.git", "author": "Shiono Yoshihide ",