diff --git a/manifest.yaml b/manifest.yaml index 6e742c6..b52d85a 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,15 +1,31 @@ id: nostrudel title: "noStrudel" -version: 0.40.0.0 +version: 0.41.0.0 release-notes: | - - Add support for NIP-49 (ncryptsec) - - Add wiki pages - - Add simple article view - - Add blindspots discovery feed\ - - Add support for WASM relay and signature verification - - Add blossom media upload option - - Add support for native android and ios sharing - - Add support for NIP-51 search relay list + ### 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 + + ### 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 license: MIT wrapper-repo: "https://github.com/hzrd149/nostrudel-startos" diff --git a/nostrudel b/nostrudel index 17c38bf..eaed508 160000 --- a/nostrudel +++ b/nostrudel @@ -1 +1 @@ -Subproject commit 17c38bfb9bfda134437ff1ebab5e7238d24ba2db +Subproject commit eaed508fe1d7a4642ebaef91f0b633059d8710fa diff --git a/scripts/procedures/migrations.ts b/scripts/procedures/migrations.ts index 8f8acd3..462f927 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.40.0.0"); + compat.migrations.fromMapping({}, "0.41.0.0");