Skip to content

Commit a97148f

Browse files
committed
Release 0.7
1 parent 8b10c49 commit a97148f

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ YAFI is also available on [Flathub](https://flathub.org/en/apps/au.stevetech.yaf
1717

1818
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`.
1919

20-
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.
20+
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.
2121

2222
### Windows
2323

data/au.stevetech.yafi.metainfo.xml.in

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<p>You will need to install the udev rules to allow non-root access to the EC device. See the README for more information.</p>
2121

22-
<p>Alternatively, you can run <code>curl -fL yafi.stevetech.au/udev.sh | sudo sh</code> to install the udev rules.</p>
22+
<p>Alternatively, you can run <code>curl -Lfs yafi.stevetech.au/udev.sh | sudo sh</code> to install the udev rules.</p>
2323

2424
<p>YAFI is not affiliated with Framework Computer Inc. in any way.</p>
2525
</description>
@@ -88,6 +88,12 @@
8888
</screenshots>
8989

9090
<releases>
91+
<release version="0.7" date="2025-12-25">
92+
<url type="details">https://github.com/Steve-Tech/YAFI/releases/tag/0.7</url>
93+
<description>
94+
<p>YAFI now supports modifying fan set points.</p>
95+
</description>
96+
</release>
9197
<release version="0.6" date="2025-09-28">
9298
<url type="details">https://github.com/Steve-Tech/YAFI/releases/tag/0.6</url>
9399
<description>

docs/1-thermals.png

75 KB
Loading

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('yafi',
2-
version: '0.6',
2+
version: '0.7',
33
meson_version: '>= 1.0.0',
44
default_options: [ 'warning_level=2', 'werror=false', ],
55
)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "yafi"
3-
version = "0.6"
3+
version = "0.7"
44
authors = [
55
{ name="Steve-Tech" }
66
]

yafi/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def on_about_action(self, *args):
143143
developers=["Stephen Horvath https://github.com/Steve-Tech"],
144144
issue_url="https://github.com/Steve-Tech/YAFI/issues",
145145
license_type=Gtk.License.GPL_2_0,
146-
version="0.6",
146+
version="0.7",
147147
website="https://github.com/Steve-Tech/YAFI",
148148
)
149149
about.add_acknowledgement_section(None, ["Framework Computer Inc. https://frame.work/"])

0 commit comments

Comments
 (0)