This fourth and probably last release candidate of PILOS v4 contains several bug fixes.
The final release is planned for end of this week.
Upgrade from v4.0.0-RC.3
- The issue with an wrong default value of attendance logging in the room type setttings is only fixed for upgrades from PILOS v2/v3. You have to manually check all room types if the setting is set as you prefer.
- The issue where the last meeting of a room is not shown on the home page is only fixed for upgrades from PILOS v2/v3. To manually fix this issue please run the following command in the database:
UPDATE `rooms` as rooms SET `meeting_id`= (SELECT id FROM `meetings` as meetings WHERE meetings.room_id = rooms.id ORDER BY `meetings`.`created_at` DESC LIMIT 1);
Please follow the Upgrade Guide if you update from v2/v3.
To Install this version check our Getting Started Guide
Added
- Docs: Add section on monitoring PILOS by @SamuelWei in 94284d8
- Docs: Add page on backup and restore by @SamuelWei in e5f869b
Changed
- Removed port 81 from the default docker compose file by @SamuelWei in 94284d8
Fixed
- Missing relationship to latest meeting of a room on upgrade by @SamuelWei in 57bf202
- Wrong default value of attendance logging of room types by @SamuelWei in 75f49c0
- Removal of items in multiselect form elements with tags by @SamuelWei in 89dcb78
- Tooltips detached and misplaced during loading by @SamuelWei in b537d7b
- pilos-cli: Error running with no arguments by @SamuelWei in 070db84
- pilos-cli: chmod issue on empty directories by @SamuelWei in 573f549
Full Changelog: v4.0.0-RC.2...v4.0.0-RC.3