Skip to content

Commit ee24c94

Browse files
committed
Prepare v0.9.1
1 parent 3156fe8 commit ee24c94

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ 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.1] - 2021-03-15
11+
### Fixed
12+
- this is a minor release due to a recent issue. It fixes a bug where the dashboard does not seem to load appropriately.
13+
Please comment on #19 if you have similar issues (or open a new one).
14+
15+
### Changed
16+
- updated Readme with instructions on preparation for correct voltage output. (soon)
17+
1018
## [0.9] - 2021-02-26
1119
### Added
1220
- [Font] added local fonts instead of remote embed (better privacy)

README.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,19 @@
3434
### Setup project
3535

3636
- navigate to your web folder (`cd /var/www/html`)
37-
- download this Github repository: `git clone https://github.com/femto-code/Rasberry-Pi-Dashboard.git`
38-
- DONE!
39-
- Open web browser with URL: `http://IP_OF_YOUR_RPI/Raspberry-Pi-Dashboard`
37+
- clone this Github repository: `git clone https://github.com/femto-code/Rasberry-Pi-Dashboard.git`
38+
- DONE! Open web browser with URL: `http://IP_OF_YOUR_RPI/Raspberry-Pi-Dashboard`
4039
- [OPTIONAL] rename the folder to shorten the address input: `mv /var/www/html/Raspberry-Pi-Dashboard /var/www/html/{subfolder_name}` (Note: replace {subfolder_name} with your wish to enter the web page)
40+
4141
- [SOON] There will be a user-friendly setup page for configuration.
4242

43+
#### Core voltage output is missing
44+
- If you want to see this information on your instance:<br>run `sudo usermod -aG video www-data` in a terminal
45+
>If you do not use Raspbian (or any other RasPi distro) like Ubuntu, you do have to install `libraspberrypi-bin` by running `sudo apt install libraspberrypi-bin`
46+
47+
- background: The `vcgencmd` command (specifically dedicated to RPi firmware) is a system command that requires certain hardware rights. Therefore one has to grant this particular right (to read hardware info) to e.g. `www-data` (under which web server is running). This is achived by adding this user to a system group called video, which the standard user pi is part of by default.
48+
- in case of problems: please comment on #12 (or new issue)
49+
4350
### Configure password
4451

4552
>You should change the default password (which is **root**) and a choose a more secure one by following these steps:

index.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@
466466
</div>
467467
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
468468
<div class="card-body">
469-
<h3><font class='text-success'>&#10003;</font> Version 0.9</h3>
469+
<h3><font class='text-success'>&#10003;</font> Version 0.9.1</h3>
470470
<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>
471471
<small>most important changes since RPi Dashboard v0.9 (Feb 2021)</small>
472472
</div>
@@ -532,7 +532,7 @@
532532
<!-- Footer -->
533533
<footer style="line-height: 40px; background-color: #f5f5f5; margin-top: 10px;">
534534
<div class="container text-center">
535-
RPi Dashboard v0.9 <font class="text-muted">(Feb 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 />
535+
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 />
536536
<button class="btn btn-secondary mb-2" onclick="$('#exampleModal').modal('show');"><i class="bi bi-gear"></i>&nbsp;Options</button>
537537
<hr style="margin-top: 0; margin-bottom: 0;">
538538
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>

0 commit comments

Comments
 (0)