diff --git a/CHANGELOG.md b/CHANGELOG.md index 17fa6d8b..c7ae604f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ All Sniffnet releases with the relative changes are documented in this file. ## [UNRELEASED] - The size of text and widgets can now be customised by setting a proper zoom value (fixes [#202](https://github.com/GyulyVGC/sniffnet/issues/202) and [#344](https://github.com/GyulyVGC/sniffnet/issues/344)) - Added possibility to totally customize the app's theme via styles defined in TOML files ([#286](https://github.com/GyulyVGC/sniffnet/pull/286)) +- IP addresses can now be copied to clipboard from the popup related to a given entry of the connections table, and a new search parameter has been introduced in Inspect page to allow users filter their connections based on IP address values ([#409](https://github.com/GyulyVGC/sniffnet/pull/409)) - Added Japanese translation πŸ‡―πŸ‡΅ ([#343](https://github.com/GyulyVGC/sniffnet/pull/343)) - Added Uzbek translation πŸ‡ΊπŸ‡Ώ ([#385](https://github.com/GyulyVGC/sniffnet/pull/385)) - Window size and position are now remembered, so that Sniffnet can reopen with the same window properties diff --git a/src/secondary_threads/check_updates.rs b/src/secondary_threads/check_updates.rs index c32b1175..def72ca1 100644 --- a/src/secondary_threads/check_updates.rs +++ b/src/secondary_threads/check_updates.rs @@ -78,7 +78,7 @@ fn is_newer_release_available(max_retries: u8, seconds_between_retries: u8) -> O } } -#[cfg(test)] +#[cfg(all(test, not(target_os = "macos")))] mod tests { use super::*;