add support for k 10000 mute lists

This commit is contained in:
hzrd149 2023-09-22 07:53:01 -05:00
parent f12e39eddf
commit fc8058addc
17 changed files with 24 additions and 72 deletions

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add community browse view

View File

@ -1,5 +0,0 @@
---
"nostrudel": patch
---
Small fix for url RegExp

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Hide muted users in stream views

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add option to add user to k 10000 mute list

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add side drawer for viewing threads

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Cleanup sidenav

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add Max Page width option to display settings

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Filter out muted users in home feed

View File

@ -1,5 +0,0 @@
---
"nostrudel": patch
---
Show multiple pubkeys on badge award event

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Clean up embedded note component

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Hide muted users in threads

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add tabs to notification view

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add Muted words option in display settings

View File

@ -1,5 +0,0 @@
---
"nostrudel": patch
---
Fix follow and mute button not updating when switching accounts

View File

@ -1,5 +1,27 @@
# nostrudel
## 0.28.0
### Minor Changes
- 6021318: Add community browse view
- e04aa5c: Hide muted users in stream views
- e04aa5c: Add option to add user to k 10000 mute list
- b961ee1: Add side drawer for viewing threads
- f440e81: Redesign side navigation
- 269acae: Add Max Page width option to display settings
- e04aa5c: Filter out muted users in home feed
- dfce72d: Clean up embedded note component
- e04aa5c: Hide muted users in threads
- 4b5445a: Add tabs to notification view
- cde3174: Add Muted words option in display settings
### Patch Changes
- 03ed574: Small fix for url RegExp
- 054e3f2: Show multiple pubkeys on badge award event
- d5a50d0: Fix follow and mute button not updating when switching accounts
## 0.27.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "nostrudel",
"version": "0.27.0",
"version": "0.28.0",
"private": true,
"license": "MIT",
"scripts": {

View File

@ -9,7 +9,7 @@ import { safeRelayUrl } from "../../../helpers/url";
import { useRegisterIntersectionEntity } from "../../../providers/intersection-observer";
export default function RelayRecommendation({ event }: { event: NostrEvent }) {
const safeUrl = safeRelayUrl(event.content);
const safeUrl = safeRelayUrl(event.content);
// if there is a parent intersection observer, register this card
const ref = useRef<HTMLDivElement | null>(null);