Release 1.0

This commit is contained in:
Stephen Horvath
2026-03-21 16:46:39 +10:00
parent d1ea86f694
commit 43de4d979d
5 changed files with 17 additions and 8 deletions

View File

@@ -25,8 +25,6 @@ If your Laptop's BIOS supports Framework's EC driver, there is no need to instal
Otherwise, YAFI supports the [PawnIO](https://pawnio.eu/) driver, and will be automatically used if installed and there is no Framework driver available. YAFI will need to be run as administrator to communicate with the driver. Otherwise, YAFI supports the [PawnIO](https://pawnio.eu/) driver, and will be automatically used if installed and there is no Framework driver available. YAFI will need to be run as administrator to communicate with the driver.
Currently the PawnIO driver does not support Framework 13 mainboards with 11th, 12th, or 13th Gen Intel CPUs.
## Building ## Building
### Flatpak ### Flatpak

View File

@@ -88,6 +88,18 @@
</screenshots> </screenshots>
<releases> <releases>
<release version="1.0" date="2026-03-21">
<url type="details">https://github.com/Steve-Tech/YAFI/releases/tag/1.0</url>
<description>
<p>The following changes have been made:</p>
<ul>
<li>New logo matching the GNOME style!</li>
<li>Errored temperature sensors will now show as 'Error'.</li>
<li>Fix for battery page when battery isn't present.</li>
<li>Fix some minor UI bugs.</li>
</ul>
</description>
</release>
<release version="0.7" date="2025-12-25"> <release version="0.7" date="2025-12-25">
<url type="details">https://github.com/Steve-Tech/YAFI/releases/tag/0.7</url> <url type="details">https://github.com/Steve-Tech/YAFI/releases/tag/0.7</url>
<description> <description>

View File

@@ -1,5 +1,5 @@
project('yafi', project('yafi',
version: '0.7', version: '1.0',
meson_version: '>= 1.0.0', meson_version: '>= 1.0.0',
default_options: [ 'warning_level=2', 'werror=false', ], default_options: [ 'warning_level=2', 'werror=false', ],
) )

View File

@@ -1,6 +1,6 @@
[project] [project]
name = "yafi" name = "yafi"
version = "0.7" version = "1.0"
authors = [ authors = [
{ name="Steve-Tech" } { name="Steve-Tech" }
] ]
@@ -8,11 +8,10 @@ description = "Yet Another Framework Interface"
readme = "README.md" readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.10"
dependencies = [ dependencies = [
"cros_ec_python >= 0.3.0", "cros_ec_python >= 0.4.0",
"PyGObject" "PyGObject"
] ]
classifiers = [ classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop", "Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux", "Operating System :: POSIX :: Linux",

View File

@@ -139,13 +139,13 @@ class YafiApplication(Adw.Application):
comments="YAFI is another GUI for the Framework Laptop Embedded Controller.\n\n" comments="YAFI is another GUI for the Framework Laptop Embedded Controller.\n\n"
+ "It is written in Python with a GTK4 Adwaita theme, and uses the CrOS_EC_Python library to communicate with the EC.\n\n" + "It is written in Python with a GTK4 Adwaita theme, and uses the CrOS_EC_Python library to communicate with the EC.\n\n"
+ "YAFI is not affiliated with Framework Computer Inc. in any way.", + "YAFI is not affiliated with Framework Computer Inc. in any way.",
copyright="© 2025 Stephen Horvath", copyright="© 2026 Stephen Horvath",
developer_name="Stephen Horvath", developer_name="Stephen Horvath",
developers=["Stephen Horvath https://github.com/Steve-Tech"], developers=["Stephen Horvath https://github.com/Steve-Tech"],
artists=["Mirabelle SALLES https://github.com/oiimrosabel"], artists=["Mirabelle SALLES https://github.com/oiimrosabel"],
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.7", version="1.0",
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/"])