Skip to content

Commit

Permalink
Merge pull request #126 from GyulyVGC/v1.1.3
Browse files Browse the repository at this point in the history
v1.1.3
  • Loading branch information
GyulyVGC authored Apr 4, 2023
2 parents db892d4 + 3a7dbcc commit a061430
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Change Log
All Sniffnet releases with the relative changes are documented in this file.

## [UNRELEASED]
## [1.1.3] - 2023-04-04

- Added Romanian translation 🇷🇴 ([#113](https://github.com/GyulyVGC/sniffnet/pull/113))
- Added feature to warn you when a newer version of Sniffnet is available on GitHub 🆕 ([#118](https://github.com/GyulyVGC/sniffnet/pull/118))
Expand All @@ -12,6 +12,7 @@ All Sniffnet releases with the relative changes are documented in this file.
- Fixed problem that was causing a switch to the initial page when back button was pressed with settings opened on running page and with no packets received
- Fixed problem that was causing application logo to be partially hidden when resizing the window to a lower dimension
- Show `-` option in app protocol picklist only when a filter is active
- Refactored and cleaned code modules ([#123](https://github.com/GyulyVGC/sniffnet/pull/123))
- Fixed header alignment


Expand Down
6 changes: 3 additions & 3 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 = "sniffnet"
version = "1.1.2"
version = "1.1.3"
authors = ["Giuliano Bellini"]
edition = "2021"
description = "Application to comfortably monitor your network traffic"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Multithreaded, cross-platform, reliable
<div align="center">

Graphical interface translated in:<br>
🇬🇧 - 🇩🇪 - 🇪🇦 - 🇫🇷 - 🇮🇹 - 🇵🇱 - 🇺🇦 - 🇨🇳 <br>
🇬🇧&nbsp;&nbsp;🇩🇪&nbsp;&nbsp;🇪🇦&nbsp;&nbsp;🇫🇷&nbsp;&nbsp;🇮🇹&nbsp;&nbsp;🇵🇱&nbsp;&nbsp;🇷🇴&nbsp;&nbsp;🇺🇦&nbsp;&nbsp;🇨🇳<br>
[Would you like to add support for your native language?](https://github.com/GyulyVGC/sniffnet/issues/60)

</div>
Expand Down Expand Up @@ -51,9 +51,9 @@ You can install Sniffnet in one of the following ways:
You can install Sniffnet through the installers available in the [latest release](https://github.com/GyulyVGC/sniffnet/releases). <br>
Choose from a Windows installer, a macOS disk image, or a DEB package (depending on your operating system). <br>
Here for your convenience you can find the direct link to the downloads:
- [Windows](https://github.com/GyulyVGC/sniffnet/releases/download/v1.1.2/Sniffnet_Windows.msi) (7.5 MB)
- [macOS](https://github.com/GyulyVGC/sniffnet/releases/download/v1.1.2/Sniffnet_MacOS.dmg) (6.2 MB)
- [Linux .deb](https://github.com/GyulyVGC/sniffnet/releases/download/v1.1.2/Sniffnet_Linux.deb) (4.8 MB)
- [Windows](https://github.com/GyulyVGC/sniffnet/releases/download/v1.1.3/Sniffnet_Windows.msi) (8.4 MB)
- [macOS](https://github.com/GyulyVGC/sniffnet/releases/download/v1.1.3/Sniffnet_MacOS.dmg) (6.9 MB)
- [Linux (.deb)](https://github.com/GyulyVGC/sniffnet/releases/download/v1.1.3/Sniffnet_Linux.deb) (5.3 MB)


</details>
Expand Down Expand Up @@ -260,7 +260,7 @@ The currently usable hotkeys are reported in the following:
|--|--|
| Quit the application | `ctrl+Q` (`cmd+Q` on macOS) |
| Open full report | `ctrl+O` (`cmd+O` on macOS) |
| Open settings | `ctrl+S` (`cmd+S` on macOS) |
| Open settings | `ctrl+,` (`cmd+,` on macOS) |
| Clear all notifications | `ctrl+D` (`cmd+D` on macOS) |
| Start the analysis and confirm modal actions | `enter` |
| Interrupt the ongoing analysis | `backspace` |
Expand Down
5 changes: 2 additions & 3 deletions src/gui/components/radio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ pub fn language_radios(
.push(
Radio::new(
*option,
format!("{} ({:?}", option.get_radio_label(), option),
format!("{} ({:?})", option.get_radio_label(), option),
Some(active),
Message::LanguageSelection,
)
Expand All @@ -106,8 +106,7 @@ pub fn language_radios(
))),
)
.push(horizontal_space(Length::Fixed(8.0)))
.push(get_flag_from_language_code(&format!("{option:?}")))
.push(Text::new(")").font(font)),
.push(get_flag_from_language_code(&format!("{option:?}"))),
);
}
ret_val
Expand Down

0 comments on commit a061430

Please sign in to comment.