diff --git a/CHANGELOG.md b/CHANGELOG.md index a6550ae4..886abd0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,33 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [0.3.0](https://github.com/ravenclaw900/DietPi-Dashboard/compare/v0.2.0...v0.3.0) (2021-10-31) + + +### Features + +* **filebrowser:** add file browser ([c0ea2de](https://github.com/ravenclaw900/DietPi-Dashboard/commit/c0ea2defec8ff701d5f255879e307cc2039fbced)) +* **frontend:** show updates to DietPi ([1ba4b97](https://github.com/ravenclaw900/DietPi-Dashboard/commit/1ba4b9721ab55e33f6deac5dda06915a7a18e2bc)) +* **management:** show installed and upgradable APT packages ([ca6a447](https://github.com/ravenclaw900/DietPi-Dashboard/commit/ca6a447ab1aa15417c1db6796fbc589e96ee8e42)) +* **services:** add services page ([db128e6](https://github.com/ravenclaw900/DietPi-Dashboard/commit/db128e65773f70de9c0c3ad3ca5b7c663280eb30)) + + +### Bug Fixes + +* **backend:** add patch for heim to run on ARM64 ([de8e431](https://github.com/ravenclaw900/DietPi-Dashboard/commit/de8e431fee817bb6ae3fbc724f3811c299132d84)) +* **backend:** fix errors for closed connections ([35c9351](https://github.com/ravenclaw900/DietPi-Dashboard/commit/35c935120a8c0f52c2056fde281df8187644ae95)) +* **backend:** fix getting cpu percentage on dead processes ([f2b0e28](https://github.com/ravenclaw900/DietPi-Dashboard/commit/f2b0e28b4a0077c221c0515701965581078605e8)) +* **backend:** make "arch" variable mutable ([2e4e0f0](https://github.com/ravenclaw900/DietPi-Dashboard/commit/2e4e0f04d754229b139aa42c599b3a66855c42c6)) +* fix webpage getting stuck on "getting data" ([10de8f4](https://github.com/ravenclaw900/DietPi-Dashboard/commit/10de8f423fbca15dd90b06a7de71e6a48749d5f2)) +* **frontend:** fix ChartConfiguration compilation error ([b3def7b](https://github.com/ravenclaw900/DietPi-Dashboard/commit/b3def7b6119ffd0176990dfac4ff595f3de13f74)) +* **frontend:** fix update sometimes being shown, even when none was avalible ([f812776](https://github.com/ravenclaw900/DietPi-Dashboard/commit/f812776482935fc785c4c2e41c181e9ad6cfba22)) +* **frontend:** hide menu on screens smaller than 768px (tailwind md breakpoint) ([c5e6a34](https://github.com/ravenclaw900/DietPi-Dashboard/commit/c5e6a34db1c0826bc9979cfbfec865a3b1e93b97)) +* **management:** fix arch showing up as "unknown" for armv6 ([18215c7](https://github.com/ravenclaw900/DietPi-Dashboard/commit/18215c736fd895f5866bbd36533179ae3f35dfb6)) +* **management:** fix uptime not being able to extend past 24h ([d3e45d1](https://github.com/ravenclaw900/DietPi-Dashboard/commit/d3e45d107ebbc42e1bbced5c32d8234924b96d2d)) +* **processes:** fix getting cpu usage ([11dda26](https://github.com/ravenclaw900/DietPi-Dashboard/commit/11dda260f6c4d8e29dff3a8457cdb26363203101)) +* **software:** fix serialization by removing `` (color) control character ([14c30a9](https://github.com/ravenclaw900/DietPi-Dashboard/commit/14c30a92dc77f3606cc1766e69168bc1530ca1b4)) +* **software:** sometimes dietpi-software got started without args requiring the program to be killed ([056dc1a](https://github.com/ravenclaw900/DietPi-Dashboard/commit/056dc1a74bdfd4f901eb4da666acf4abcdb30e07)) + ### [0.2.1](https://github.com/ravenclaw900/DietPi-Dashboard/compare/v0.2.0...v0.2.1) (2021-10-07) diff --git a/src/backend/Cargo.lock b/src/backend/Cargo.lock index fcff4729..afc4d7c7 100644 --- a/src/backend/Cargo.lock +++ b/src/backend/Cargo.lock @@ -222,7 +222,7 @@ dependencies = [ [[package]] name = "dietpi_dashboard" -version = "0.2.1" +version = "0.3.0" dependencies = [ "futures", "heim", diff --git a/src/backend/Cargo.toml b/src/backend/Cargo.toml index 9132e938..ba864330 100644 --- a/src/backend/Cargo.toml +++ b/src/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dietpi_dashboard" -version = "0.2.1" +version = "0.3.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src/frontend/package.json b/src/frontend/package.json index f7ee5ba6..9d21c835 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -1,6 +1,6 @@ { "name": "dietpi-dashboard", - "version": "0.2.1", + "version": "0.3.0", "type": "module", "license": "GPL-3.0", "scripts": {