#Amethyst v0.83.1: NIP-44v2 DMs are up! New Features - Moves DMs to the audited NIP-44v2 - Adds support for NIP-31 alt tags - Adds a k-tag to reactions - Adds i18n for error messages when uploading images Performance Improvements: - Improves the performance of Robohash - Add less memory-intensive timeAgo calculations and translations - Uses primitives instead of the wrapped object in several places - Moves to a less memory-intensive way to write and send filters to the server. - Refines recompositions of routes and bottom icons - Avoids the creation of new sets when looping through cached maps of User and Notes - Avoids recreating the EOSE array when changing filters - Reuses SessionToken for all Playback connections - Improving the memory use of concurrent hashmaps and immutable collections - Reduces the use of remember for fixed UI modifiers Bugfixes: - Detects URL mime-types by pinging the server instead of relying on the url's extension - Fixes bug with cropped joinToString assemblies of relay filters - Avoids Concurrent Modification Exception on the EOSE markups - Forces nip95 to be under 80Kb to make sure relays can receive it - Fixes bug that error messages wouldn't show an error when uploading images to the reels page - Fixes post video dimensions when the user has selected not to load videos automatically - Updates dependencies Updated translations: - Chinese by @ra5pvt1n - Finnish by @petri - Hungarian by @npub1ww8k...nvtp - Dutch by @Bartus - Tamil by @_ Download: - [Play Edition](https://github.com/vitorpamplona/amethyst/releases/download/v0.83.1/amethyst-googleplay-universal-v0.83.1.apk ) - [FOSS Edition - No translations](https://github.com/vitorpamplona/amethyst/releases/download/v0.83.1/amethyst-fdroid-universal-v0.83.1.apk )

Replies (38)

Bonjour Vitor en fait je me permets de vous faire remonter que la plupart des clients Damus ont un soucis de traduction pour les notes surtout en français.. Travaillez vous ensemble ? Puisque certains utilisateurs passent à côté de certaines qu'ils peuvent traduire.. Lorsqu'on me le signale je traduis mais quand même c'est plus prioritaire dans les interactions sociales j'imagine certains qui ne lisent pas de notes car bloquent au niveau traduction'.. Au niveau Amethyst il n'y a pas de soucis peut-être @jb55 devrait interroger les utilisateurs.., il m'arrive de traduire régulièrement entre pairs
frphank's avatar
frphank 2 years ago
"Encryption, because it's audited" is like "Brawndo, it's got electrolytes"
People want to forget v1 existed so there is no good doc to show. But essentially, v2 fixed some issues with message length (smaller messages would yield smaller encrypted bytes, which is not ideal). We also got rid XChaCha because it is not standardized and the added protections aren't needed inside Nostr messages. v1: XChaCha20 with sha256(parity + ecdh) as a shared key per conversation v2: secp256k1 ECDH, HKDF, padding, ChaCha20, HMAC-SHA256, base64 v1: v2:
I check for opengraph's info for preview cards in every url. Thus, I end up hitting the server even for images and videos. When that happens, you also receive the content-type of the file in the HTTP header. I use that to determine how to render the media. I still check extensions first, but that has proven to be problematic (some image servers serve different formats, other urls have query params that affect the discovery and many don't actually offer extensions at all).
Cool. I wasnt sure if there was another trick besides OpenGraph. Thats what we use in Nos, but it’s slow and causes the cells to change size which makes scrolling less comfortable.
The only way to trully solve this is to either have a server that can provide image sizes or download everything before showing on the feed. There are hacks like the imeta tag or nip54, but those depend entirely in the writer client including them, which is not ideal for the receiving client.