Nutomic
Nutomic
RSS feeds are currently still hardcoded to English, for example: https://github.com/LemmyNet/lemmy/blob/52047459bbd820eede0af3401159c6c581bd1a07/crates/routes/src/feeds.rs#L153 https://github.com/LemmyNet/lemmy/blob/52047459bbd820eede0af3401159c6c581bd1a07/crates/routes/src/feeds.rs#L460 These should all be translated in the same way as emails: - Add the text to https://github.com/LemmyNet/lemmy-translations/blob/main/email/en.json -...
Add donation dialog to main branch (from https://github.com/LemmyNet/lemmy-ui/pull/3034). Translations: https://github.com/LemmyNet/lemmy-translations/pull/163 JS client: https://github.com/LemmyNet/lemmy-js-client/pull/547 Currently throws a lot of compile errors, probably requires #2985 to be merged first.
https://github.com/LemmyNet/lemmy/pull/6126
Use this issue to list all breaking changes in version 1.0 which are not already mentioned in [this blog post](https://join-lemmy.org/news/2025-02-03_-_Breaking_Changes_in_Lemmy_1.0). Will update this with more items. - [Rename timestamp fields...
The idea is to have an equivalent to Mastodon's boost feature, that is available for Peertube accounts. It could work like this: in addition to the like/dislike buttons, every video...
Wasm-bindgen is used for JS interop, but some Wasm environments like [extism](https://extism.org/) dont need it and fail to execute code which uses wasm-bindgen.
I am now successfully using lingua in wasm and it works very well once running! However the initial start is very slow, with 11 languages enabled it takes between 2-5...
I am currently trying to develop an [extism](https://github.com/extism/extism) plugin which uses lingua. The plugin itself compiles fine using the [Extism Rust PDK](https://github.com/extism/rust-pdk) instructions. But when loading the plugin it throws...
Removes some unnecessary async for activity sending and reduces number of db reads. Still needs a lot of cleanup and fixes.