chore: switch to calver

This commit is contained in:
reya 2024-10-31 13:46:41 +07:00
parent c201b5816c
commit bbc052eebc
5 changed files with 9 additions and 9 deletions

2
src-tauri/Cargo.lock generated
View File

@ -10,7 +10,7 @@ checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
[[package]]
name = "Lume"
version = "4.0.0"
version = "2024.11.0"
dependencies = [
"border",
"futures",

View File

@ -1,6 +1,6 @@
[package]
name = "Lume"
version = "4.0.0"
version = "2024.11.0"
description = "nostr client"
authors = ["npub1zfss807aer0j26mwp2la0ume0jqde3823rmu97ra6sgyyg956e0s6xw445"]
repository = "https://github.com/lumehq/lume"

View File

@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"productName": "Lume",
"version": "4.3.0",
"version": "2024.11.0",
"identifier": "nu.lume.Lume",
"build": {
"beforeDevCommand": "pnpm dev",

View File

@ -51,7 +51,7 @@ function Screen() {
data?.pages
.flat()
.filter(
(item) => item.tags.filter((tag) => tag[0] === "p")?.length > 0,
(item) => item.tags.filter((tag) => tag[0] === "t")?.length > 0,
),
refetchOnWindowFocus: false,
});
@ -68,7 +68,7 @@ function Screen() {
return (
<div
key={item.id}
className="group flex flex-col rounded-xl overflow-hidden bg-white dark:bg-neutral-800/50 shadow-lg shadow-primary dark:ring-1 dark:ring-neutral-800"
className="mb-3 group flex flex-col rounded-xl overflow-hidden bg-white dark:bg-neutral-800/50 shadow-lg shadow-primary dark:ring-1 dark:ring-neutral-800"
>
<div className="px-2 pt-2">
<ScrollArea.Root

View File

@ -191,9 +191,9 @@ function Newsfeeds() {
label: "discover_newsfeeds",
})
}
className="h-12 px-3 flex items-center justify-between bg-neutral-200/50 rounded-xl text-blue-600 dark:text-blue-400"
className="h-9 w-full px-3 flex items-center justify-between bg-neutral-200/50 hover:bg-neutral-200 rounded-lg dark:bg-neutral-800/50 dark:hover:bg-neutral-800"
>
<span className="text-sm font-medium">Discover newsfeeds</span>
<span className="text-xs font-medium">Discover newsfeeds</span>
<ArrowRight className="size-4" weight="bold" />
</button>
</div>
@ -345,9 +345,9 @@ function Interests() {
label: "discover_interests",
})
}
className="h-12 px-3 flex items-center justify-between bg-neutral-200/50 rounded-xl text-blue-600 dark:text-blue-400"
className="h-9 w-full px-3 flex items-center justify-between bg-neutral-200/50 hover:bg-neutral-200 rounded-lg dark:bg-neutral-800/50 dark:hover:bg-neutral-800"
>
<span className="text-sm font-medium">Discover interests</span>
<span className="text-xs font-medium">Discover interests</span>
<ArrowRight className="size-4" weight="bold" />
</button>
</div>