aboutsummaryrefslogtreecommitdiffstats
path: root/theme/admin/html/migration.php
AgeCommit message (Collapse)AuthorFilesLines
2024-11-29Rename "rsrc" directories to "static"Thomas Lange1-2/+2
Stop using "rsrc" as name for the directories which contain static files and rename them to "static". This affects the global static directory and the subdirectories in the theme directories. If you've stored your own files in the old global "rsrc" directory, you must move them to the new "static" directory.
2024-01-23Remove trailing slash on void elementsThomas Lange1-6/+6
The trailing slash on void elements (self-closing tags) doesn't have any effect, isn't required by HTML5 and it is recommended to not use it.
2021-10-02Fix wrong color scheme identifier in migration.phpThomas Lange1-1/+1
The light color scheme was renamed from "main" to "bright" since the following commit: 01cbd757d69668b39c1b072b0449b77e6e2bee8d
2021-07-05Add dark color mode for admin themeThomas Lange1-1/+2
This commit adds a dark color mode for the admin theme. The dark color mode can be enabled/disabled by clicking the hyperlink in the footer. It is not perfect yet (it uses cookies and needs a full page reload), but it works just fine for the moment. Hope your eyes can enjoy it!
2021-06-24Implement database schema MigratorThomas Lange1-0/+59
This commit implements the new database schema Migrator which keeps track of the on-disk schema and the schema used by the codebase. It tries to makes future database schema upgrades user-friendlier.