diff --git a/README.md b/README.md index c10b12d..c7cf1da 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ YAFI is also available on [Flathub](https://flathub.org/en/apps/au.stevetech.yaf To allow YAFI to communicate with the EC, you will need to enable user access to the `/dev/cros_ec` device. You can do this by running `echo KERNEL=="cros_ec", TAG+="uaccess" | sudo tee /etc/udev/rules.d/60-yafi.rules`, and then reload the rules with `sudo udevadm control --reload-rules && sudo udevadm trigger`. -You can also do this by running `curl -fL yafi.stevetech.au/udev.sh | sudo sh` which will run the [`add-udev-rules.sh`](add-udev-rules.sh) script. +You can also do this by running `curl -Lfs yafi.stevetech.au/udev.sh | sudo sh` which will run the [`add-udev-rules.sh`](add-udev-rules.sh) script. ### Windows diff --git a/data/au.stevetech.yafi.metainfo.xml.in b/data/au.stevetech.yafi.metainfo.xml.in index d53d0ca..d628761 100644 --- a/data/au.stevetech.yafi.metainfo.xml.in +++ b/data/au.stevetech.yafi.metainfo.xml.in @@ -19,7 +19,7 @@

You will need to install the udev rules to allow non-root access to the EC device. See the README for more information.

-

Alternatively, you can run curl -fL yafi.stevetech.au/udev.sh | sudo sh to install the udev rules.

+

Alternatively, you can run curl -Lfs yafi.stevetech.au/udev.sh | sudo sh to install the udev rules.

YAFI is not affiliated with Framework Computer Inc. in any way.

@@ -88,6 +88,12 @@ + + https://github.com/Steve-Tech/YAFI/releases/tag/0.7 + +

YAFI now supports modifying fan set points.

+
+
https://github.com/Steve-Tech/YAFI/releases/tag/0.6 diff --git a/docs/1-thermals.png b/docs/1-thermals.png index 0b9e7a8..176633f 100644 Binary files a/docs/1-thermals.png and b/docs/1-thermals.png differ diff --git a/meson.build b/meson.build index 5624f60..20e1164 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('yafi', - version: '0.6', + version: '0.7', meson_version: '>= 1.0.0', default_options: [ 'warning_level=2', 'werror=false', ], ) diff --git a/pyproject.toml b/pyproject.toml index ab1819e..e3f493c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "yafi" -version = "0.6" +version = "0.7" authors = [ { name="Steve-Tech" } ] diff --git a/yafi/main.py b/yafi/main.py index 21f5077..ea5c8b3 100644 --- a/yafi/main.py +++ b/yafi/main.py @@ -143,7 +143,7 @@ class YafiApplication(Adw.Application): developers=["Stephen Horvath https://github.com/Steve-Tech"], issue_url="https://github.com/Steve-Tech/YAFI/issues", license_type=Gtk.License.GPL_2_0, - version="0.6", + version="0.7", website="https://github.com/Steve-Tech/YAFI", ) about.add_acknowledgement_section(None, ["Framework Computer Inc. https://frame.work/"])