From d63690e9d0834ac2a8e1ee9b4b960351073cc0f2 Mon Sep 17 00:00:00 2001 From: Ren Amamiya <123083837+reyamir@users.noreply.github.com> Date: Wed, 9 Aug 2023 19:04:32 +0700 Subject: [PATCH] small updates and bump version --- package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 4 ++-- src-tauri/tauri.conf.json | 2 +- src/app/auth/onboarding/step-1.tsx | 4 +++- src/stores/constants.tsx | 2 +- 6 files changed, 9 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 7b772d6a..f5d6967c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "lume", "private": true, - "version": "1.1.1", + "version": "1.2.0", "scripts": { "dev": "vite", "build": "vite build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 4dc26f87..91347247 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2675,7 +2675,7 @@ dependencies = [ [[package]] name = "lume" -version = "1.1.1" +version = "1.2.0" dependencies = [ "cocoa 0.24.1", "objc", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 00fc7de1..b776fee1 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "lume" -version = "1.1.1" +version = "1.2.0" description = "nostr client" authors = ["Ren Amamiya"] license = "" repository = "" edition = "2021" -rust-version = "1.57" +rust-version = "1.71" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 3d663431..e674efea 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "Lume", - "version": "1.1.1" + "version": "1.2.0" }, "plugins": { "fs": { diff --git a/src/app/auth/onboarding/step-1.tsx b/src/app/auth/onboarding/step-1.tsx index 7267cdb3..38682d40 100644 --- a/src/app/auth/onboarding/step-1.tsx +++ b/src/app/auth/onboarding/step-1.tsx @@ -65,7 +65,9 @@ export function OnboardStep1Screen() { return (
-

Enrich your network

+

+ {loading ? 'Prefetching data...' : 'Enrich your network'} +

Choose account you want to follow

diff --git a/src/stores/constants.tsx b/src/stores/constants.tsx index fedda600..a7d3a198 100644 --- a/src/stores/constants.tsx +++ b/src/stores/constants.tsx @@ -1,4 +1,4 @@ -export const APP_VERSION = '1.1.1'; +export const APP_VERSION = '1.2.0'; export const DEFAULT_AVATAR = 'https://void.cat/d/5VKmKyuHyxrNMf9bWSVPih';