Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Filter only external connections #1383

Merged
merged 5 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion rust/agama-server/src/network/nm/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,8 @@ impl<'a> NetworkManagerClient<'a> {
.build()
.await?;
let flags = proxy.flags().await?;
if flags > 0 {
// https://networkmanager.dev/docs/api/latest/nm-dbus-types.html#NMSettingsConnectionFlags
if flags & 8 != 0 {
log::warn!("Skipped connection because of flags: {}", flags);
continue;
}
Expand Down
8 changes: 8 additions & 0 deletions rust/package/agama.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed Jun 26 12:56:31 UTC 2024 - Knut Anderssen <kanderssen@suse.com>

- Filter only external configured connections
(gh#openSUSE/agama#1383).
- Expose more details about devices status in the API
(gh#openSUSE/agama#1365).

-------------------------------------------------------------------
Wed Jun 26 10:29:05 UTC 2024 - José Iván López González <jlopez@suse.com>

Expand Down
6 changes: 6 additions & 0 deletions web/package/agama-web-ui.changes
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ Wed Jun 26 13:14:06 UTC 2024 - David Diaz <dgonzalez@suse.com>
- Bring back installer options when selecting a product
(gh#openSUSE/agama#1384).

-------------------------------------------------------------------
Wed Jun 26 11:54:41 UTC 2024 - Knut Anderssen <kanderssen@suse.com>

- Adapt the network page to the new UI guidelines
(gh#openSUSE/agama#1365).

-------------------------------------------------------------------
Wed Jun 26 08:31:31 UTC 2024 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

Expand Down