Skip to content

Commit ffe6491

Browse files
committed
Prepare v0.9.2
1 parent d4bfc6d commit ffe6491

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
Open for your feature [requests](https://github.com/femto-code/Rasberry-Pi-Dashboard/pulls) or [issues](https://github.com/femto-code/Rasberry-Pi-Dashboard/issues)!
88
[https://github.com/femto-code/Rasberry-Pi-Dashboard](https://github.com/femto-code/Rasberry-Pi-Dashboard)
99

10+
## [0.9.2] - 2021-03-16
11+
### Changed
12+
- updated dependencies (bootstrap-icons and mdtoast)
13+
- alignment of icons much better! 🎆 👍 💯
14+
- forced toast to use global font of dashboard
15+
- add version string as query on includes to help refresh files (prevent caching files for too long)
16+
- code formatting: use spaces (instead of tabs) consistently
17+
- misc dev env improvements
18+
19+
### Fixed
20+
- fixed icons in overall status view in case of warnings
21+
1022
## [0.9.1] - 2021-03-15
1123
### Fixed
1224
- this is a minor release due to a recent issue. It fixes a bug where the dashboard does not seem to load appropriately.

index.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<link rel="stylesheet" href="css/bootstrap-4.6.0.min.css">
3131
<link rel="stylesheet" href="css/bootstrap-icons.css?v=1.4.0">
32-
<link rel="stylesheet" href="css/darkmode.css?v=0.9.1" id="dmcss" type="text/css" disabled>
32+
<link rel="stylesheet" href="css/darkmode.css?v=0.9.2" id="dmcss" type="text/css" disabled>
3333
<link rel="stylesheet" href="css/mdtoast.min.css?v=2.0.2">
3434

3535
<title>RPi Dashboard</title>
@@ -467,7 +467,7 @@
467467
</div>
468468
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
469469
<div class="card-body">
470-
<h3><font class='text-success'>&#10003;</font> Version 0.9.1</h3>
470+
<h3><font class='text-success'>&#10003;</font> Version 0.9.2</h3>
471471
<ul><li>logout button</li><li>use fonts locally</li><li>show exact user-readable date of upcoming power event</li><li>bug fixes, miscellaneous improvements, updated Readme</li><li><a href='https://github.com/femto-code/Rasberry-Pi-Dashboard/releases'>Stay updated here</a></li><li><i><a href="CHANGELOG.md">All changes</a></i></li></ul>
472472
<small>most important changes since RPi Dashboard v0.9 (Feb 2021)</small>
473473
</div>
@@ -533,7 +533,7 @@
533533
<!-- Footer -->
534534
<footer style="line-height: 40px; background-color: #f5f5f5; margin-top: 10px;">
535535
<div class="container text-center">
536-
RPi Dashboard v0.9.1 <font class="text-muted">(Mar 2021)</font> <span id="dot">&middot;</span> <font id="notf" class="text-success">See the <a href="https://github.com/femto-code/Rasberry-Pi-Dashboard/releases">Github releases</a> for updates!</font><br />
536+
RPi Dashboard v0.9.2 <font class="text-muted">(Mar 2021)</font> <span id="dot">&middot;</span> <font id="notf" class="text-success">See the <a href="https://github.com/femto-code/Rasberry-Pi-Dashboard/releases">Github releases</a> for updates!</font><br />
537537
<button class="btn btn-secondary mb-2" onclick="$('#exampleModal').modal('show');"><i class="bi bi-gear"></i>&nbsp;Options</button>
538538
<hr style="margin-top: 0; margin-bottom: 0;">
539539
femto-code&nbsp;<a href="https://github.com/femto-code"><i class="bi bi-github"></i></a> &middot; <font class="text-muted">2018 - 2021</font>
@@ -558,7 +558,7 @@
558558
console.log("Custom user options: warncputemp="+warn_cpu_temp+" | warn_ram_space="+warn_ram_space+" | upd_time_interval="+upd_time_interval+" | warn_loads_size="+warn_loads_size);
559559
</script>
560560

561-
<script src="js/main.js?v=0.9.1"></script>
561+
<script src="js/main.js?v=0.9.2"></script>
562562

563563
<script>
564564
var ctx = document.getElementById('myChart').getContext('2d');

0 commit comments

Comments
 (0)