mirror of
https://github.com/hzrd149/nostrudel.git
synced 2025-03-17 21:31:43 +01:00
bump version: 0.36.0
This commit is contained in:
parent
7000b2d5ad
commit
868aefeb83
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Add option to hide usernames
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Add Torrent create view
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Add support for default bookmark list
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Add decrypt all button to DMs
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Change "Copy Share Link" to use njump.me
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Replace "Copy Note Id" with "Copy Embed Code"
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Add colors to notifications view
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Add simple torrents view
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Add Channels view
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Use nevent instead of note1 in urls
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Add local relay cache option
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Add support for Nostr Signing Device
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Rebuild notifications view
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Rebuild tools view
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Show reposts in note details modal
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Cache decrypted events
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Add comments to torrents
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Blur videos from strangers
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Rebuild thread loading
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"nostrudel": minor
|
||||
---
|
||||
|
||||
Show list links on muted by view
|
25
CHANGELOG.md
25
CHANGELOG.md
@ -1,5 +1,30 @@
|
||||
# nostrudel
|
||||
|
||||
## 0.36.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- bc71d920: Add option to hide usernames
|
||||
- abce505a: Add Torrent create view
|
||||
- 2786f848: Add support for default bookmark list
|
||||
- c119e02a: Add decrypt all button to DMs
|
||||
- abce505a: Change "Copy Share Link" to use njump.me
|
||||
- abce505a: Replace "Copy Note Id" with "Copy Embed Code"
|
||||
- 6ab2d1c2: Add colors to notifications view
|
||||
- a2a920c4: Add simple torrents view
|
||||
- 7ff3c81d: Add Channels view
|
||||
- a714a2c6: Use nevent instead of note1 in urls
|
||||
- 199f208b: Add local relay cache option
|
||||
- d8e08d6a: Add support for Nostr Signing Device
|
||||
- 6d44e534: Rebuild notifications view
|
||||
- c8ee526a: Rebuild tools view
|
||||
- b372edab: Show reposts in note details modal
|
||||
- c119e02a: Cache decrypted events
|
||||
- a796661e: Add comments to torrents
|
||||
- a714a2c6: Blur videos from strangers
|
||||
- d18e03af: Rebuild thread loading
|
||||
- b69bfa37: Show list links on muted by view
|
||||
|
||||
## 0.35.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "nostrudel",
|
||||
"version": "0.35.0",
|
||||
"version": "0.36.0",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
|
@ -5,7 +5,14 @@ import { Divider, Heading, SimpleGrid } from "@chakra-ui/react";
|
||||
import { useAdditionalRelayContext } from "../../providers/additional-relay-context";
|
||||
import useTimelineLoader from "../../hooks/use-timeline-loader";
|
||||
import useSubject from "../../hooks/use-subject";
|
||||
import { MUTE_LIST_KIND, NOTE_LIST_KIND, PEOPLE_LIST_KIND, PIN_LIST_KIND, isJunkList } from "../../helpers/nostr/lists";
|
||||
import {
|
||||
BOOKMARK_LIST_KIND,
|
||||
MUTE_LIST_KIND,
|
||||
NOTE_LIST_KIND,
|
||||
PEOPLE_LIST_KIND,
|
||||
PIN_LIST_KIND,
|
||||
isJunkList,
|
||||
} from "../../helpers/nostr/lists";
|
||||
import { getEventUID } from "../../helpers/nostr/events";
|
||||
import ListCard from "../lists/components/list-card";
|
||||
import IntersectionObserverProvider from "../../providers/intersection-observer";
|
||||
@ -55,6 +62,7 @@ export default function UserListsTab() {
|
||||
<ListCard cord={`${Kind.Contacts}:${pubkey}`} hideCreator />
|
||||
<ListCard cord={`${MUTE_LIST_KIND}:${pubkey}`} hideCreator />
|
||||
<ListCard cord={`${PIN_LIST_KIND}:${pubkey}`} hideCreator />
|
||||
<ListCard cord={`${BOOKMARK_LIST_KIND}:${pubkey}`} hideCreator />
|
||||
</SimpleGrid>
|
||||
|
||||
{peopleLists.length > 0 && (
|
||||
|
Loading…
x
Reference in New Issue
Block a user