Release 0.6
@@ -74,6 +74,18 @@
|
|||||||
</screenshots>
|
</screenshots>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
|
<release version="0.6" date="2025-09-28">
|
||||||
|
<url type="details">https://github.com/Steve-Tech/YAFI/releases/tag/0.6</url>
|
||||||
|
<description>
|
||||||
|
<p>The following changes have been made:</p>
|
||||||
|
<ul>
|
||||||
|
<li>YAFI now has a new logo!</li>
|
||||||
|
<li>The advanced LED settings now detect available LEDs.</li>
|
||||||
|
<li>The ALS and lid open sensor has been added.</li>
|
||||||
|
<li>Stuttering has been reduced when opening the about dialog.</li>
|
||||||
|
</ul>
|
||||||
|
</description>
|
||||||
|
</release>
|
||||||
<release version="0.5" date="2025-09-16">
|
<release version="0.5" date="2025-09-16">
|
||||||
<url type="details">https://github.com/Steve-Tech/YAFI/releases/tag/0.5</url>
|
<url type="details">https://github.com/Steve-Tech/YAFI/releases/tag/0.5</url>
|
||||||
<description>
|
<description>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 86 KiB |
BIN
docs/2-leds.png
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 82 KiB |
|
Before Width: | Height: | Size: 140 KiB After Width: | Height: | Size: 132 KiB |
|
Before Width: | Height: | Size: 150 KiB After Width: | Height: | Size: 141 KiB |
|
Before Width: | Height: | Size: 157 KiB After Width: | Height: | Size: 151 KiB |
|
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 104 KiB |
@@ -1,5 +1,5 @@
|
|||||||
project('yafi',
|
project('yafi',
|
||||||
version: '0.5',
|
version: '0.6',
|
||||||
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.5"
|
version = "0.6"
|
||||||
authors = [
|
authors = [
|
||||||
{ name="Steve-Tech" }
|
{ name="Steve-Tech" }
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -142,7 +142,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.5",
|
version="0.6",
|
||||||
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/"])
|
||||||
|
|||||||