Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
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: 3 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[env]
MDNS_SCANNER_DEVELOPMENT = "true"

# Avoid linking with vcruntime140.dll by statically linking everything,
# and then explicitly linking with ucrtbase.dll dynamically.
# We do this, because vcruntime140.dll is an optional Windows component.
Expand Down
1 change: 1 addition & 0 deletions .github/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ coverage:
default:
# Avoid false negatives
threshold: 1%
informational: true

# Test files aren't important for coverage
ignore:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
.vscode
tests/snapshots/*.new.snap
bin_size.txt
key_events.txt
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

## [unreleased]

### Added

- Customizable keybindings with a `keymap.toml` configuration file (see the default [here](./docs/default_keymap.toml))
- Validate `keymap.toml` with the `check-keymap` sub-command
- Keybindings popup accessible with `?`

### Changed

- `y` now also copies to clipboard
- Removed support for complex and unintuitive modifier combinations, such as `ctrl-shift-alt-esc` for closing a window, and `ctrl-shift-enter` for select
- Removed help footer and "compact mode" setting

### Fixed

- IP info table row selection no longer resets when reaching the last visible row with `hide_bare_ips` enabled

### Dependencies

- `clap`: 4.5.51 → 4.5.53 ([#199](https://github.com/CramBL/mdns-scanner/pull/199))
Expand Down
96 changes: 69 additions & 27 deletions Cargo.lock

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

Loading