Skip to content

Feature: Add start & pause button per group in ping monitor - #3575

Merged
mergify[bot] merged 5 commits into
mainfrom
feature/3507
Aug 16, 2026
Merged

Feature: Add start & pause button per group in ping monitor#3575
mergify[bot] merged 5 commits into
mainfrom
feature/3507

Conversation

@BornToBeRoot

Copy link
Copy Markdown
Owner

Changes proposed in this pull request

  • Add start & pause button per group in ping monitor
  • Button will be visible on mouse over

Related issue(s)

To-Do

Contributing

By submitting this pull request, I confirm the following:

@mergify

mergify Bot commented Aug 16, 2026

Copy link
Copy Markdown
Contributor

Tick the box to add this pull request to the merge queue (same as @mergifyio queue).

  • Queue this pull request

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds per-group Start and Pause controls to Ping Monitor.

Changes:

  • Adds group-level start/pause commands and hover controls.
  • Adds localized labels for the controls.
  • Adds a changelog entry.

Reviewed changes

Copilot reviewed 5 out of 6 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
Website/docs/changelog/next-release.md Documents the feature.
Source/NETworkManager/Views/PingMonitorHostView.xaml Adds group action buttons.
Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs Implements group actions.
Source/NETworkManager.Localization/Resources/Strings.resx Adds English labels.
Source/NETworkManager.Localization/Resources/Strings.Designer.cs Exposes generated labels.
Files not reviewed (1)
  • Source/NETworkManager.Localization/Resources/Strings.Designer.cs: Generated file
Suppressed comments (1)

Website/docs/changelog/next-release.md:58

  • The PR checklist marks the user documentation update complete separately from the changelog, but Website/docs/application/ping-monitor.md still contains no description of the new group controls. Add the Start/Pause group behavior and its hover discoverability to that page before keeping the item checked.
- Added **Start** and **Pause** buttons to each group header (shown next to the close button on mouse-over), to start every paused host in the group or pause every running one at once. [#3575](https://github.com/BornToBeRoot/NETworkManager/pull/3575)

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

Comment on lines +310 to +311
<Grid Grid.Column="4" Grid.Row="0"
Visibility="{Binding Path=IsMouseOver, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type TypeName=Grid}}, Converter={StaticResource ResourceKey=BooleanToVisibilityCollapsedConverter}}">
/// <summary>
/// Gets the command to start every host in a group that is not currently running.
/// </summary>
public ICommand StartGroupCommand => new RelayCommand(StartGroupAction);
Comment thread Website/docs/changelog/next-release.md Outdated
**Ping Monitor**

- Added a live count of hosts up/down (and paused, if any) per group, next to the group's close button. [#3572](https://github.com/BornToBeRoot/NETworkManager/pull/3572)
- Added **Start** and **Pause** buttons to each group header (shown next to the close button on mouse-over), to start every paused host in the group or pause every running one at once. [#XXXX](https://github.com/BornToBeRoot/NETworkManager/pull/XXXX)

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 6 out of 7 changed files in this pull request and generated no new comments.

Files not reviewed (1)
  • Source/NETworkManager.Localization/Resources/Strings.Designer.cs: Generated file
Suppressed comments (1)

Source/NETworkManager/Views/PingMonitorHostView.xaml:305

  • The actions button is always visible: it has no Visibility binding, and CleanButton does not hide it. This contradicts the PR description’s “visible on mouse over” claim. Keep the accessible always-visible behavior and update the PR description to match it.
                                                                    <Button x:Name="GroupActionsButton"
                                                                            Grid.Column="4" Grid.Row="0"
                                                                            HorizontalAlignment="Right"
                                                                            Tag="{Binding Path=(CollectionViewGroup.Name)}"
                                                                            Click="GroupActionsButton_Click"
                                                                            Style="{StaticResource ResourceKey=CleanButton}"
                                                                            ToolTip="{x:Static Member=localization:Strings.GroupActions}">

@mergify
mergify Bot merged commit 5f535ab into main Aug 16, 2026
6 checks passed
@mergify
mergify Bot deleted the feature/3507 branch August 16, 2026 19:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Pause and start buttons for ping monitor

2 participants