Skip to content

Commit 371bdf7

Browse files
authored
Merge pull request #667 from GyulyVGC/v1.3.2
v1.3.2
2 parents 4be7847 + d3f969a commit 371bdf7

File tree

18 files changed

+294
-260
lines changed

18 files changed

+294
-260
lines changed

.github/workflows/package.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ jobs:
4040
- name: Checkout repository
4141
uses: actions/checkout@v4
4242

43+
- name: Install Linux dependencies
44+
if: matrix.os == 'ubuntu'
45+
run: sudo apt-get update -y && sudo apt-get install -y libpcap-dev libasound2-dev libgtk-3-dev
46+
4347
- name: Install Windows dependencies
4448
if: matrix.os == 'windows'
4549
env:
@@ -68,13 +72,15 @@ jobs:
6872
with:
6973
targets: ${{ matrix.target }}
7074

75+
- name: Clippy (release mode)
76+
run: |
77+
cargo clippy --release -- -D warnings
78+
cargo clean
79+
7180
- name: Install Cross
7281
if: matrix.os == 'ubuntu'
7382
run: cargo install cross --git https://github.com/cross-rs/cross
7483

75-
- name: Clippy (release mode)
76-
run: cargo clippy --release -- -D warnings
77-
7884
- name: Build binary
7985
if: matrix.os == 'ubuntu'
8086
run: cross build --release --target ${{ matrix.target }}

.github/workflows/rust.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -58,25 +58,25 @@ jobs:
5858
run: cargo build --verbose
5959

6060
- name: clippy
61-
if: matrix.os != 'windows' || github.event_name != 'pull_request'
61+
if: matrix.os != 'windows' || github.event_name != 'pull_request'
6262
run: cargo clippy -- -D warnings
6363

6464
- name: test
6565
if: matrix.os != 'windows' || github.event_name != 'pull_request'
6666
run: cargo test --verbose -- --nocapture
6767

68-
- name: Install cargo-llvm-cov
69-
if: matrix.os == 'ubuntu'
70-
uses: taiki-e/install-action@cargo-llvm-cov
71-
72-
- name: Generate code coverage
73-
if: matrix.os == 'ubuntu'
74-
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info --include-build-script --no-cfg-coverage
75-
76-
- name: Upload coverage to Codecov
77-
if: matrix.os == 'ubuntu'
78-
uses: codecov/codecov-action@v5
79-
with:
80-
files: lcov.info
81-
fail_ci_if_error: false
82-
token: ${{ secrets.CODECOV_TOKEN }}
68+
# - name: Install cargo-llvm-cov
69+
# if: matrix.os == 'ubuntu'
70+
# uses: taiki-e/install-action@cargo-llvm-cov
71+
#
72+
# - name: Generate code coverage
73+
# if: matrix.os == 'ubuntu'
74+
# run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info --include-build-script --no-cfg-coverage
75+
#
76+
# - name: Upload coverage to Codecov
77+
# if: matrix.os == 'ubuntu'
78+
# uses: codecov/codecov-action@v5
79+
# with:
80+
# files: lcov.info
81+
# fail_ci_if_error: false
82+
# token: ${{ secrets.CODECOV_TOKEN }}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All Sniffnet releases with the relative changes are documented in this file.
44

5-
## [UNRELEASED]
5+
## [1.3.2] - 2025-01-06
66
- Dropdown menus for network host filters ([#659](https://github.com/GyulyVGC/sniffnet/pull/659) — fixes [#354](https://github.com/GyulyVGC/sniffnet/issues/354))
77
- Added CLI argument `--adapter [<NAME>]` to allow immediately starting the capture from a given network interface ([#643](https://github.com/GyulyVGC/sniffnet/pull/643) — fixes [#636](https://github.com/GyulyVGC/sniffnet/issues/636))
88
- Added Vietnamese translation 🇻🇳 ([#577](https://github.com/GyulyVGC/sniffnet/pull/577))

0 commit comments

Comments
 (0)