bump version: 0.36.0

This commit is contained in:
hzrd149 2023-12-04 18:20:19 -06:00
parent 7000b2d5ad
commit 868aefeb83
23 changed files with 35 additions and 102 deletions

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add option to hide usernames

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add Torrent create view

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add support for default bookmark list

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add decrypt all button to DMs

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Change "Copy Share Link" to use njump.me

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Replace "Copy Note Id" with "Copy Embed Code"

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add colors to notifications view

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add simple torrents view

View File

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

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Use nevent instead of note1 in urls

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add local relay cache option

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add support for Nostr Signing Device

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Rebuild notifications view

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Rebuild tools view

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Show reposts in note details modal

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Cache decrypted events

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Add comments to torrents

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Blur videos from strangers

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Rebuild thread loading

View File

@ -1,5 +0,0 @@
---
"nostrudel": minor
---
Show list links on muted by view

View File

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

View File

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

View File

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