Update changelog

This commit is contained in:
Jonathan Staab 2023-05-12 09:42:08 -07:00
parent 6b6fcb5dc0
commit ffd7a148db
3 changed files with 12 additions and 3 deletions

View File

@ -1,5 +1,13 @@
# Changelog
# 0.2.27
- [x] Fix mention notifications
- [x] Make relay urls readable on relay browsing page (@fiatjaf)
- [x] When publishing to a single relay, display its name (@fiatjaf)
- [x] Default new notes to a single relay when viewing a relay's feed (@fiatjaf)
- [x] Use smaller max depth on note detail
# 0.2.26
- [x] Fix hanging feeds after a few pages

View File

@ -13,6 +13,7 @@
# Core
- [ ] Make mutes private
- [ ] Show trending on search page http://localhost:5173/nevent1qqs8m3f52uelvpan4nn9hmc99a4qde0gjq9mlxc2khu057nryk3879gpr4mhxue69uhkummnw3ez6ur4vgh8wetvd3hhyer9wghxuet5qyv8wumn8ghj7un9d3shjtnndehhyapwwdhkx6tpdstjvu0y
- [ ] Add welcome.nostr.wine relay to onboarding
- http://localhost:5173/nevent1qqsp9vf7agqyl7swhwepjw0r9s8ny55vsxkljh62pn0uh6f2g9z7a2qpr3mhxue69uhkummnw3ezuarjw43kketwvf6kx6mn9e3k7mgpyfmhxue69uhkummnw3ez6an9wf5kv6t9vsh8wetvd3hhyer9wghxuet5nds9yj
- [ ] Write multi-relay pagination into paravel and open source it

View File

@ -1,4 +1,4 @@
<script>
<script lang="ts">
import {onMount} from "svelte"
import {nip19} from "nostr-tools"
import {last, reject, pluck, propEq} from "ramda"
@ -24,13 +24,13 @@
export let pubkey = null
export let nevent = null
export let writeTo = null
export let writeTo: string[] | null = null
let q = ""
let image = null
let compose = null
let showSettings = false
let relays = writable(writeTo ? writeTo.map(url => ({url, score: 1})) : getUserWriteRelays())
let relays = writable(getUserWriteRelays())
const onSubmit = async () => {
let {content, mentions, topics} = compose.parse()