mirror of
https://github.com/Steve-Tech/YAFI.git
synced 2026-04-19 16:50:36 +00:00
Release 0.7
This commit is contained in:
@@ -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`.
|
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
|
### Windows
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
<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>
|
<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>
|
||||||
|
|
||||||
<p>Alternatively, you can run <code>curl -fL yafi.stevetech.au/udev.sh | sudo sh</code> to install the udev rules.</p>
|
<p>Alternatively, you can run <code>curl -Lfs yafi.stevetech.au/udev.sh | sudo sh</code> to install the udev rules.</p>
|
||||||
|
|
||||||
<p>YAFI is not affiliated with Framework Computer Inc. in any way.</p>
|
<p>YAFI is not affiliated with Framework Computer Inc. in any way.</p>
|
||||||
</description>
|
</description>
|
||||||
@@ -88,6 +88,12 @@
|
|||||||
</screenshots>
|
</screenshots>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
|
<release version="0.7" date="2025-12-25">
|
||||||
|
<url type="details">https://github.com/Steve-Tech/YAFI/releases/tag/0.7</url>
|
||||||
|
<description>
|
||||||
|
<p>YAFI now supports modifying fan set points.</p>
|
||||||
|
</description>
|
||||||
|
</release>
|
||||||
<release version="0.6" date="2025-09-28">
|
<release version="0.6" date="2025-09-28">
|
||||||
<url type="details">https://github.com/Steve-Tech/YAFI/releases/tag/0.6</url>
|
<url type="details">https://github.com/Steve-Tech/YAFI/releases/tag/0.6</url>
|
||||||
<description>
|
<description>
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 161 KiB |
@@ -1,5 +1,5 @@
|
|||||||
project('yafi',
|
project('yafi',
|
||||||
version: '0.6',
|
version: '0.7',
|
||||||
meson_version: '>= 1.0.0',
|
meson_version: '>= 1.0.0',
|
||||||
default_options: [ 'warning_level=2', 'werror=false', ],
|
default_options: [ 'warning_level=2', 'werror=false', ],
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "yafi"
|
name = "yafi"
|
||||||
version = "0.6"
|
version = "0.7"
|
||||||
authors = [
|
authors = [
|
||||||
{ name="Steve-Tech" }
|
{ name="Steve-Tech" }
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -143,7 +143,7 @@ class YafiApplication(Adw.Application):
|
|||||||
developers=["Stephen Horvath https://github.com/Steve-Tech"],
|
developers=["Stephen Horvath https://github.com/Steve-Tech"],
|
||||||
issue_url="https://github.com/Steve-Tech/YAFI/issues",
|
issue_url="https://github.com/Steve-Tech/YAFI/issues",
|
||||||
license_type=Gtk.License.GPL_2_0,
|
license_type=Gtk.License.GPL_2_0,
|
||||||
version="0.6",
|
version="0.7",
|
||||||
website="https://github.com/Steve-Tech/YAFI",
|
website="https://github.com/Steve-Tech/YAFI",
|
||||||
)
|
)
|
||||||
about.add_acknowledgement_section(None, ["Framework Computer Inc. https://frame.work/"])
|
about.add_acknowledgement_section(None, ["Framework Computer Inc. https://frame.work/"])
|
||||||
|
|||||||
Reference in New Issue
Block a user