Releases: DNA-styx/SBPP-Windmill-Dashboard
0.3.6 Beta Release
Changes since v0.3.0:
- Ban/Comms ban reasons now wrap (thanks @AntiHeld-GMX) and are truncated at 300 chars (#60)
- Fonts would not have worked on new installs. Applied upstream code change. (#61)
- Removed breaking banlog truncation.
0.3.x Beta Release
Changes since 0.2.0 release:
Code tidy up
Fixed Banlog page getting malformed
Upstream security fix
0.2.x Beta Release
All pages themed and usable on computer and small screens
Changes since last release:
Default modal replaced
Custom colours can be set on all public page's banner and buttons
Web Server time added to bans and comms page to help admins in different times zones
Connect and map image are hidden on small screens
Scroll bars no longer move content
Admin sub-menu fixed (and sub-sub-menu added)
Links drop down added
To do:
Remove unused CSS from code and CSS files
Anything else in the Issues list
Custom Colours for Public Pages v0.1.75
Want a change from purple?
The title bar and all public facing buttons can be changed by editing one file. An option to change the admin buttons may come later.
Within the assets\css\ folder rename windmill-custom.css.template to windmill-custom.css
Edit the file to change the text and background colour.
.windmill-title-bar {
color: #EDE9FE;
background-color: #7C3AED;
}
.windmill-button {
color: #EDE9FE;
background-color: #7C3AED;
transition: background-color 0.5s;
}
.btn {
color: #EDE9FE;
background-color: #7C3AED;
transition: background-color 0.5s;
}
/* Make this a lighter color */
.windmill-button:hover {
background-color: #6D28D9;
}Open core/header.tpl , comment out the purple css file and uncomment out the custom one.
From this
<!-- Start of custom colour options -->
<!-- Ensure only one of the following css files are active -->
<!-- Comment out all the others -->
<link href="themes/{$theme}/assets/css/windmill-purple.css" rel="stylesheet" type="text/css">
<!-- <link href="themes/{$theme}/assets/css/windmill-dark-red.css" rel="stylesheet" type="text/css"> -->
<!-- <link href="themes/{$theme}/assets/css/windmill-custom.css" rel="stylesheet" type="text/css"> -->
<!-- End of Custom colours -->to this
<!-- Start of custom colour options -->
<!-- Ensure only one of the following css files are active -->
<!-- Comment out all the others -->
<!-- <link href="themes/{$theme}/assets/css/windmill-purple.css" rel="stylesheet" type="text/css"> -->
<!-- <link href="themes/{$theme}/assets/css/windmill-dark-red.css" rel="stylesheet" type="text/css"> -->
<link href="themes/{$theme}/assets/css/windmill-custom.css" rel="stylesheet" type="text/css">
<!-- End of Custom colours -->New responsive modal used - v0.1.50
Default SouceBans++ Modal replaced with WindMill. Working well on mobile and desktop.
Lots of minor formatting/spacing changes.
Some images had to be moved as their paths are hard coded in source
Site title now clickable
Admin tabs themed
Issues closed:
#40 #10 #12 #36 #37 #33 #2 #39 #41
Full Changelog: 0.1.0...0.1.50
SourceBans++ Windmill Theme pre-release v0.1.0
First public pre-release.
Public Pages
All themed and usable on desktop and mobile.
Admin Pages
95% themed and usable on desktop.
On mobile some admin pages not usable due to off screen pop-ups.