Skip to content

Commit

Permalink
bump version: 0.36.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hzrd149 committed Dec 5, 2023
1 parent 7000b2d commit 868aefe
Show file tree
Hide file tree
Showing 23 changed files with 35 additions and 102 deletions.
5 changes: 0 additions & 5 deletions .changeset/afraid-apricots-fix.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/angry-turkeys-glow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dull-rivers-wave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eleven-buckets-decide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fluffy-actors-breathe.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/itchy-bags-march.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/late-insects-return.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/long-lies-clean.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/polite-fishes-exist.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/poor-dogs-look.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quick-garlics-work.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quick-radios-collect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rotten-cycles-teach.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/short-plants-hide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sixty-comics-search.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smart-monkeys-boil.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strange-mails-film.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stupid-trees-tan.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/three-cats-refuse.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/violet-moles-peel.md

This file was deleted.

25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nostrudel",
"version": "0.35.0",
"version": "0.36.0",
"private": true,
"license": "MIT",
"scripts": {
Expand Down
10 changes: 9 additions & 1 deletion src/views/user/lists.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -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 && (
Expand Down

0 comments on commit 868aefe

Please sign in to comment.