feat: auto-hide offline agents + fix server build errors#342
Open
wxfbot03-lang wants to merge 3 commits into
Open
feat: auto-hide offline agents + fix server build errors#342wxfbot03-lang wants to merge 3 commits into
wxfbot03-lang wants to merge 3 commits into
Conversation
added 3 commits
June 26, 2026 11:46
…o version to 1.26
- agent list/info/remove/exec subcommands - agent terminal: raw-mode remote shell with full signal passthrough - listener list/start/stop, download list/get - config file stored in ~/.adaptix/adaptix-cil.yaml - make cli / make install-cli build targets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR contains two sets of changes:
1. New Feature: Auto-Hide Offline Agents (Client)
Adds an auto-hide offline agents toggle to the Sessions table view:
UI Changes (
AdaptixClient/):SessionsTableWidget: AddedcheckAutoHideOfflinecheckbox that filters offline agents from the session listDialogSettings: AddedAutoHideOfflinepersistent settingSessionsGraph: Graph view responds to the toggle by callingRebuildAll()to refresh the layoutAgent/Storage/Settings: AddedAutoHideOfflinefield for persistenceBehavior:
Settings, preserved across restarts2. Fix Server Build Errors
The
dev-v1.3branch references theTaskData.Priorityfield which was removed inaxc2 v1.2.0, causing compilation failure.Fixed files (7 files total):
core/server/mgr_handler_job.go—Push(taskData.Priority, ...)→Push(0, ...)core/server/mgr_handler_task.go— same as abovecore/server/mgr_task.go— removed Priority validation logic (< 0 check)core/server/ts_tasks.go— same as abovecore/server/ts_tunnels.go— 2 occurrences, same as abovecore/server/mgr_frame.go— removed unusedlogsimportextenders/beacon_agent/pl_main.go— removedPriority: priorityfrom struct literal and deprecatedPRIORITY_TASKassignmentDockerfile:
golang:1.25-bookworm→golang:1.26-bookwormgo1.25.4→go1.26.4go.workrequires Go >= 1.26.1Compatibility
checkStateChangedvsstateChanged(Qt >= 6.7.0 uses the former)Build Verification