small updates and bump version

This commit is contained in:
Ren Amamiya 2023-08-09 19:04:32 +07:00
parent edf56bc97b
commit d63690e9d0
6 changed files with 9 additions and 7 deletions

View File

@ -1,7 +1,7 @@
{
"name": "lume",
"private": true,
"version": "1.1.1",
"version": "1.2.0",
"scripts": {
"dev": "vite",
"build": "vite build",

2
src-tauri/Cargo.lock generated
View File

@ -2675,7 +2675,7 @@ dependencies = [
[[package]]
name = "lume"
version = "1.1.1"
version = "1.2.0"
dependencies = [
"cocoa 0.24.1",
"objc",

View File

@ -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

View File

@ -8,7 +8,7 @@
},
"package": {
"productName": "Lume",
"version": "1.1.1"
"version": "1.2.0"
},
"plugins": {
"fs": {

View File

@ -65,7 +65,9 @@ export function OnboardStep1Screen() {
return (
<div className="mx-auto w-full max-w-md">
<div className="mb-8 text-center">
<h1 className="text-xl font-semibold text-white">Enrich your network</h1>
<h1 className="text-xl font-semibold text-white">
{loading ? 'Prefetching data...' : 'Enrich your network'}
</h1>
<p className="text-sm text-white/50">Choose account you want to follow</p>
</div>
<div className="flex flex-col gap-4">

View File

@ -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';