Merge branch 'main' into feat/v2

This commit is contained in:
reya 2023-10-18 14:53:11 +07:00
commit b18ae56c36
6 changed files with 6 additions and 5 deletions

View File

@ -59,6 +59,7 @@ jobs:
APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }} APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }}
APPLE_ID: ${{ secrets.APPLE_ID }} APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
with: with:
tagName: v__VERSION__ tagName: v__VERSION__
releaseName: 'App v__VERSION__' releaseName: 'App v__VERSION__'

View File

@ -2,7 +2,7 @@
"name": "lume", "name": "lume",
"description": "the communication app", "description": "the communication app",
"private": true, "private": true,
"version": "1.2.6", "version": "1.2.7",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"build": "vite build", "build": "vite build",

2
src-tauri/Cargo.lock generated
View File

@ -2517,7 +2517,7 @@ dependencies = [
[[package]] [[package]]
name = "lume" name = "lume"
version = "1.2.6" version = "1.2.7"
dependencies = [ dependencies = [
"keyring", "keyring",
"serde", "serde",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "lume" name = "lume"
version = "1.2.6" version = "1.2.7"
description = "the communication app" description = "the communication app"
authors = ["Ren Amamiya"] authors = ["Ren Amamiya"]
license = "GPL-3.0" license = "GPL-3.0"

View File

@ -9,7 +9,7 @@
}, },
"package": { "package": {
"productName": "Lume", "productName": "Lume",
"version": "1.2.6" "version": "1.2.7"
}, },
"plugins": { "plugins": {
"fs": { "fs": {

View File

@ -26,8 +26,8 @@ export const NDKInstance = () => {
const onlineRelays = new Set(relays); const onlineRelays = new Set(relays);
for (const relay of relays) { for (const relay of relays) {
const url = new URL(relay);
try { try {
const url = new URL(relay);
const res = await fetch(`https://${url.hostname}`, { const res = await fetch(`https://${url.hostname}`, {
method: 'GET', method: 'GET',
headers: { headers: {