⚠️ For Existing Users ⚠️
To bring the ability to adjust individual widget headers, a column needs to be added in the database. Below shows the migration SQL that will need to be run:
# sqlite
ALTER TABLE dashboardwidget ADD COLUMN show_header INT NOT NULL DEFAULT 0;
# mysql
ALTER TABLE dashboardwidget ADD show_header BOOL NOT NULL DEFAULT 0;Changes
Added
- 2023 app icon
- Per widget header show/hide
Changed
- Overhaul UI
- Update dependencies
Fixed
- Deleted links can be removed from dashboard after deletion
Removed
- V1 import functionality
Full Changelog: v2.1.1...v2.2.0