- cross-posted to:
- meta@dormi.zone
- eviltoast@eviltoast.org
- main@lemmy.ca
- mander@mander.xyz
- cross-posted to:
- meta@dormi.zone
- eviltoast@eviltoast.org
- main@lemmy.ca
- mander@mander.xyz
What is Lemmy?
Lemmy is a self-hosted social link aggregation and discussion platform. It is completely free and open, and not controlled by any company. This means that there is no advertising, tracking, or secret algorithms. Content is organized into communities, so it is easy to subscribe to topics that you are interested in, and ignore others. Voting is used to bring the most interesting items to the top.
Major Changes
This version fixes the problem of comment context not loading properly. It also fixes a couple other bugs.
Support development
@dessalines and @nutomic are working full-time on Lemmy to integrate community contributions, fix bugs, optimize performance and much more. This work is funded exclusively through donations.
If you like using Lemmy, and want to make sure that we will always be available to work full time building it, consider donating to support its development. No one likes recurring donations, but they’ve proven to be the only way that open-source software like Lemmy can stay independent and alive.
- Liberapay (preferred option)
- Open Collective
- Patreon
- Cryptocurrency (scroll to bottom of page)
Upgrade instructions
Follow the upgrade instructions for ansible or docker. There are no config or API changes with this release.
If you need help with the upgrade, you can ask in our support forum or on the Matrix Chat.
and again, docker images for arm64 are ready as well :)
thanks for the arm builds, I am currently using
masquernya/lemmy-arm64.git
for arm builds. How do you handle the lemmy-translations update in your build pipeline for lemmy-ui?I do not see you doing the following, or did I miss something
# manual updates cd lemmy-translations/; git checkout "$TRANSLATION_COMMIT" || exit 1;
also do you have to trigger the build manually when a new lemmy version is out ?
Hi, Thanks for the hints, and yes I have to trigger the pipeline by editing and commiting the Version information here
do I really need
cd lemmy-translations/; git checkout "$TRANSLATION_COMMIT" || exit 1;
even if I have
git submodule init git submodule update
See here and here
You can run
git submodule update
, then it will pull the same translations as specified in the lemmy repo. Or rungit submodule update --remote
, then it will pull the latest commit from lemmy-translations.Thanks, so my pipeline should be fine in the sense that it uses the commit of the submodule, stored in the version tagged lemmy commit
I just tested it, submodule init+update pulls the latest commit of submodules, this could be different from the commit used in the tagged release version
Thanks, I’ll have a look at it, but if you’re faster I’m happy about a PR :)
This not a big problem I guess, if anything it gives you the latest translations 🙂
Thank you for this.