@nebulon I think opening documents in a new tab by default would be a good design decision and make having a close button unnecessary. The download button as well is a bit redundant as downloads can be handled via the file menu in OnlyOffice. Currently I find the Cubby close and download buttons get in the way of the editor mode, search and user buttons.
ashughes
Posts
-
How to use OnlyOffice on Cloudron? -
Redis license changeI saw today that Fedora Linux is targeting deprecation of Redis[1] in favour of Valkey due to licensing. That’s not entirely surprising given Fedora’s ethos on non-free software.
As Cloudron only officially supports Ubuntu, and I don’t know what Canonical’s plans are wrt Redis, I don’t expect what Fedora does is a guidance to the Cloudron team. However, given that Redis is a core component for Cloudron I’m wondering if there are any plans to move to Valkey, as Fedora Linux 41 plans to.
-
Last Update (6.3.0) broke Boards@mtd-sales said in Last Update (6.3.0) broke Boards:
focalboard_schema_migrations
Was having the same issue and this seemed to work. TLDR; Seems like I only had to update
dirty
.Before Mattermost update:
select * from focalboard_schema_migrations; +---------+-------+ | version | dirty | +---------+-------+ | 14 | 0 | +---------+-------+
After Mattermost update:
select * from focalboard_schema_migrations; +---------+-------+ | version | dirty | +---------+-------+ | 15 | 1 | +---------+-------+
Then I ran the following:
update focal_schema_migrations set dirty=1 where dirty=0; commit;
Then I rebooted the Mattermost instance and checked the table again:
select * from focalboard_schema_migrations; +---------+-------+ | version | dirty | +---------+-------+ | 16 | 0 | +---------+-------+
Finally, I restarted Mattermost Desktop and checked that I could load Boards again, and it all works great.