diff --git a/manifest.yaml b/manifest.yaml index b52d85a..e0d3041 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,31 +1,43 @@ id: nostrudel title: "noStrudel" -version: 0.41.0.0 +version: 0.42.0.0 release-notes: | ### Minor Changes - - Add option to wipe wasm relay database - - Update `@snort/worker-relay` WASM relay - - Add Support for embedding HLS videos - - Support pinning articles - - Add relay discovery map - - Add option to disable keyboard shortcuts + - Move core logic out into applesauce packages + - Add support for olas media posts and NIP-22 comments + - Add tools menu under thread post + - Add favorite DVM feeds + - Add templates to event publisher + - Add validation messages to profile edit view + - Add unknown notifications toggle + - Add option to hide noStrudel logo in nav bar + - Support nostr links in markdown + - Update timelines to use applesauce + - Unclutter notifications view + - Use applesauce for NIP-28 channels + - Add open and share button to stream view + - Add "Proactively authenticate to relays" option to privacy settings, defaults to off + - Add option for debug API + - Remove support for legacy password account + - Add insert gif button + - Add top zappers support page + - Support searching local relay + - Add support for cashu v4 tokens + - Add "q" tags for quoted notes + - Remove legacy npub1 bunker URI format + - Add edit button to event debug modal + - Cleanup zap parsing + - Remove old community trending view ### Patch Changes - - Fixed search results not being cached - - Fix amber signer missing pubkey - - Fix some tidal embeds not playing - - Hide avatars of muted users - - Fix bookmark view not showing latest bookmarks - - Fixed client sending filters with empty #a tags - - Fix client tag breaking POW on notes - - Add noStrudel NIP-05 to domain - - Update bitcoin connect - - Fix relay notes showing notes from other relays from cache - - Improve notifications timeline rendering performance - - Add bookmark button to articles - - Fixed keyboard shortcuts activating when replying to notification + - Fix delete events not getting published to outbox + - Fix page changing from RTL when viewing some profiles + - Refresh relay info on relay page + - Improve list background loading + - Fix bug with removing "about" in profile editor + - Fix automatically disconnecting from authenticated relays license: MIT wrapper-repo: "https://github.com/hzrd149/nostrudel-startos" diff --git a/nostrudel b/nostrudel index 3fc9c64..2faa014 160000 --- a/nostrudel +++ b/nostrudel @@ -1 +1 @@ -Subproject commit 3fc9c64cd419e8709a460f36c53481a52d756539 +Subproject commit 2faa014720eba86b71c4d7c9ff6d195361917211 diff --git a/scripts/procedures/migrations.ts b/scripts/procedures/migrations.ts index 462f927..671276f 100644 --- a/scripts/procedures/migrations.ts +++ b/scripts/procedures/migrations.ts @@ -1,4 +1,4 @@ import { compat, types as T } from "../deps.ts"; export const migration: T.ExpectedExports.migration = - compat.migrations.fromMapping({}, "0.41.0.0"); + compat.migrations.fromMapping({}, "0.42.0.0");