Skip to content

Commit

Permalink
Merge pull request #277 from nokyan/v1.5.1
Browse files Browse the repository at this point in the history
Release 1.5.1
  • Loading branch information
nokyan authored Jul 7, 2024
2 parents 0e66f41 + be02823 commit b2bf905
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 18 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resources"
version = "1.5.0"
version = "1.5.1"
authors = ["nokyan <nokyan@tuta.io>"]
edition = "2021"

Expand All @@ -16,7 +16,7 @@ lto = true
process-data = { path = "lib/process_data" }
glob = "0.3.1"
anyhow = "1.0.86"
log = "0.4.21"
log = "0.4.22"
pretty_env_logger = "0.5"
gettext-rs = { version = "0.7", features = ["gettext-system"] }
gtk = { version = "0.8.2", features = ["v4_10"], package = "gtk4" }
Expand All @@ -32,7 +32,7 @@ plotters-cairo = "0.6.0"
rmp-serde = "1.3.0"
rust-ini = "0.21.0"
gtk-macros = "0.3.0"
strum = "0.26.2"
strum = "0.26.3"
strum_macros = "0.26.4"
once_cell = "1.19.0"
hashbrown = "0.14.5"
Expand Down
21 changes: 21 additions & 0 deletions data/net.nokyan.Resources.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,27 @@
</screenshot>
</screenshots>
<releases>
<release version="1.5.1" date="2024-07-07">
<description translate="no">
<p>
Resources 1.5.1 is a small bugfix and GNOME Circle preparation release.
</p>
<p>
🐛 Bug fixes
</p>
<ul>
<li>AMD GPU usage could be displayed to be higher than 100 %</li>
<li>Resources detected HID batteries resulting in unnecessary battery pages with little to no information</li>
<li>AMD GPU power usage couldn’t be determined sometimes</li>
</ul>
<p>
📈 Improvements
</p>
<ul>
<li>Smaller GNOME Circle related fixes and improvements</li>
</ul>
</description>
</release>
<release version="1.5.0" date="2024-06-23">
<description translate="no">
<p>
Expand Down
4 changes: 2 additions & 2 deletions lib/process_data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "process-data"
version = "1.5.0"
version = "1.5.1"
authors = ["nokyan <nokyan@tuta.io>"]
edition = "2021"

Expand All @@ -19,7 +19,7 @@ glob = "0.3.1"
once_cell = "1.19.0"
regex = "1.10.5"
sysconf = "0.3.4"
serde = { version = "1.0.203", features = ["serde_derive"] }
serde = { version = "1.0.204", features = ["serde_derive"] }
nvml-wrapper = "0.10.0"
syscalls = { version = "0.6.18", features = ["all"] }
libc = "0.2.155"
Expand Down
8 changes: 5 additions & 3 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'resources',
'rust',
version: '1.5.0',
version: '1.5.1',
meson_version: '>= 0.59',
)

Expand Down Expand Up @@ -51,7 +51,9 @@ endif

meson.add_dist_script(
'build-aux/dist-vendor.sh',
meson.project_build_root() / 'meson-dist' / meson.project_name() + '-' + version,
meson.project_build_root() / 'meson-dist' / meson.project_name()
+ '-'
+ version,
meson.project_source_root(),
)

Expand All @@ -69,4 +71,4 @@ gnome.post_install(
gtk_update_icon_cache: true,
glib_compile_schemas: true,
update_desktop_database: true,
)
)

0 comments on commit b2bf905

Please sign in to comment.