The main feature in this release is the ability to “Send a message”. After paying the invoice, your message will take over the bulletin for 21 minutes.
Like so.
Other than that, you can now hover over a note and click on it to bring it to the front. This is for those instances where the overlap prevention doesn’t quite do its thing (it does get pretty crowded).
Lastly, notes older than 21 days will be removed from the board. This was a simple adjustment to the NWC client’s listTransaction function.
const client = new nwc.NWCClient({ nostrWalletConnectUrl: NWC_CONNECTION_SECRET, }); // Specify timeframe for transactions const TIMEFRAME = 60 * 60 * 24 * 21; const txResponse = await client.listTransactions({ from: Math.floor(new Date().getTime() / 1000 - TIMEFRAME), until: Math.ceil(new Date().getTime() / 1000), limit: 100, type: "incoming", // unpaid: true, });
That’s all for now. Let me know what you think or what you’d like to see. 🤙