diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 76ccb118..779cce3a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -59,6 +59,7 @@ jobs: APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }} APPLE_ID: ${{ secrets.APPLE_ID }} APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} + APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} with: tagName: v__VERSION__ releaseName: 'App v__VERSION__' diff --git a/package.json b/package.json index 63034103..c0c4ef5d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "lume", "description": "the communication app", "private": true, - "version": "1.2.6", + "version": "1.2.7", "scripts": { "dev": "vite", "build": "vite build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 87a749c9..834245f4 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2517,7 +2517,7 @@ dependencies = [ [[package]] name = "lume" -version = "1.2.6" +version = "1.2.7" dependencies = [ "keyring", "serde", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 0b52875c..f1c742f0 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lume" -version = "1.2.6" +version = "1.2.7" description = "the communication app" authors = ["Ren Amamiya"] license = "GPL-3.0" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 63b40aca..4bed56c7 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -9,7 +9,7 @@ }, "package": { "productName": "Lume", - "version": "1.2.6" + "version": "1.2.7" }, "plugins": { "fs": { diff --git a/src/libs/ndk/instance.ts b/src/libs/ndk/instance.ts index 1d1f7f58..b4412361 100644 --- a/src/libs/ndk/instance.ts +++ b/src/libs/ndk/instance.ts @@ -26,8 +26,8 @@ export const NDKInstance = () => { const onlineRelays = new Set(relays); for (const relay of relays) { - const url = new URL(relay); try { + const url = new URL(relay); const res = await fetch(`https://${url.hostname}`, { method: 'GET', headers: {