docs/Design/Multiverse/WeKan-Multiverse-Roadmap.md
If CPU does not have AVX, Snap Candidate Meteor 2 WeKan now uses qemu-user to run MongoDB, using Qemu AVX support. This was added at WeKan v7.93.
Supporting many more webbrowsers. This is now part of WeKan Wami: https://github.com/wekan/wami . Also mentioned at https://wekan.fi/upgrade/ .
From https://github.com/wekan/wekan/issues/4578#issuecomment-1407769397
Are you fed up? Need some therapy? Write a webbrowser!
or have Javascript disabled for security reasons.
Optionally, use some transpiler:
Cross-platform:
Embedded webserver, for example:
Try to avoid strange NPM packages
From https://github.com/wekan/wekan/issues/4578#issuecomment-1250143726
When there is a lot of boards, it is very useful to group by first character of board (and after that click charater to see list of boards for that character, to be added later). I could not figure out how to do it with MongoDB aggregate query. Here is how I did it with SQLite, for type board. SQLite returns results immediately. Note that emojis, UTF-8 shows also on Netsurf browser. TODO is to figure out, could I get these visible also in FreeDOS Dillo browser.
SELECT _id, substr(title,1,1), COUNT(*), type from boards
WHERE type=:type GROUP BY substr(title,1,1) ORDER BY substr(title,1,1) ASC;
Actually, somewhere I saved answer from ChatGPT or Bing AI search, what this SQL query using MongoDB Javascript syntax. So maybe I should ask again.
https://github.com/wekan/php/blob/main/page/allboardschar.php
sudo snap install wekan