Skip to content

Commit

Permalink
Merge pull request nokyan#201 from nokyan/v1.4.0
Browse files Browse the repository at this point in the history
Release 1.4.0
  • Loading branch information
nokyan authored Apr 14, 2024
2 parents 2b53298 + 045fcb4 commit 0b55cf1
Show file tree
Hide file tree
Showing 12 changed files with 61 additions and 59 deletions.
63 changes: 12 additions & 51 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resources"
version = "1.3.0"
version = "1.4.0"
authors = ["nokyan <[email protected]>"]
edition = "2021"

Expand Down
43 changes: 42 additions & 1 deletion data/net.nokyan.Resources.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,47 @@
</screenshot>
</screenshots>
<releases>
<release version="1.4.0" date="2024-04-14">
<description translate="no">
<p>
Resources 1.4 is here and brings with it some quality of life features and bug fixes along with an upgrade to the new GNOME 46 runtime. Enjoy!
</p>
<p>
🐛 Bug fixes
</p>
<ul>
<li>Users other than the current user were mistakenly shown as root in the Processes view</li>
<li>The titlebar for GPU views was inconsistent with the other titlebars</li>
<li>Some widgets did not have accessibility labels</li>
<li>RAM size was calculated wrongly</li>
<li>Dialogs regarding process manipulation (such as ending a process) still said “Application”</li>
<li>App names in the Applications view were not localized into the user’s language</li>
</ul>
<p>
✨ New features
</p>
<ul>
<li>Resources can now show graphs in the sidebar too (this is enabled per default but can be toggled back to the old bars in the settings)</li>
<li>CPU time of processes can now be shown in the Processes view</li>
<li>Read speed and write speed in Drive views now also have graphs</li>
<li>When launched, Resources will now start with the view that was last opened</li>
<li>When launched, Resources will now sort the items in the Applications and Processes views by what they were last sorted by</li>
<li>Added device descriptions for better distinction between similar devices (disabled by default)</li>
<li>There are now keyboard shortcuts for manipulating processes and applications</li>
</ul>
<p>
📈 Improvements
</p>
<ul>
<li>Upgraded the Flatpak runtime to GNOME 46, allowing Resources to use libadwaita 1.5’s new and improved dialogs</li>
<li>Added brand colors and changed Resources’ summary to adhere to new Flathub guidelines</li>
<li>The column views in the Applications and Processes views now have undershoot and their backgrounds now looks less out of place</li>
<li>The power usage properties in GPU views are now more compact</li>
<li>Widgets with graphs in them now look closer to libadwaita’s not-that-new-anymore action rows</li>
<li>Improved app detection for GNOME Terminal and Google Chrome</li>
</ul>
</description>
</release>
<release version="1.3.0" date="2023-12-24">
<description translate="no">
<p>
Expand Down Expand Up @@ -121,4 +162,4 @@
<custom>
<value key="Purism::form_factor">mobile</value>
</custom>
</component>
</component>
Binary file modified data/resources/screenshots/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/resources/screenshots/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/resources/screenshots/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/resources/screenshots/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/resources/screenshots/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/resources/screenshots/6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/resources/screenshots/7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.3.0"
version = "1.4.0"
authors = ["nokyan <[email protected]>"]
edition = "2021"

Expand All @@ -20,7 +20,7 @@ once_cell = "1.18.0"
regex = "1.8.4"
sysconf = "0.3.4"
serde = { version = "1.0.180", features = ["serde_derive"] }
nvml-wrapper = "0.9.0"
nvml-wrapper = "0.10.0"
syscalls = { version = "0.6.15", features = ["all"] }
libc = "0.2.150"
uzers = "0.11.3"
8 changes: 4 additions & 4 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'resources',
'rust',
version: '1.3.0',
version: '1.4.0',
meson_version: '>= 0.59',
)

Expand All @@ -12,8 +12,8 @@ base_id = 'net.nokyan.Resources'

dependency('glib-2.0', version: '>= 2.66')
dependency('gio-2.0', version: '>= 2.66')
dependency('gtk4', version: '>= 4.8.0')
dependency('libadwaita-1', version: '>= 1.4.0')
dependency('gtk4', version: '>= 4.10.0')
dependency('libadwaita-1', version: '>= 1.5.0')

glib_compile_resources = find_program('glib-compile-resources', required: true)
glib_compile_schemas = find_program('glib-compile-schemas', required: true)
Expand Down Expand Up @@ -52,7 +52,7 @@ endif
meson.add_dist_script(
'build-aux/dist-vendor.sh',
meson.project_build_root() / 'meson-dist' / meson.project_name() + '-' + version,
meson.project_source_root()
meson.project_source_root(),
)

if get_option('profile') == 'development'
Expand Down

0 comments on commit 0b55cf1

Please sign in to comment.