mirror of
https://github.com/jhd3197/ServerKit.git
synced 2026-04-26 08:25:59 +03:00
[PR #5] [MERGED] System tray app, IPC server, and dark/light theme support #9
Labels
No labels
bug
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ServerKit#9
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/jhd3197/ServerKit/pull/5
Author: @jhd3197
Created: 1/25/2026
Status: ✅ Merged
Merged: 1/25/2026
Merged by: @jhd3197
Base:
main← Head:dev📝 Commits (9)
4dbda1bAdd system tray app and IPC server to agent42aa2ecchore: bump version to 1.2.62 [skip ci]78c8300Add runtime theme switching and ThemeContext1140856Redesign sidebar layout and styles46c4661chore: bump version to 1.2.63 [skip ci]d2e5fddUpdate default GitHub repo for agent releaseseef0a3bchore: bump version to 1.2.64 [skip ci]f13af94Refine theme colors and UI detailse7ed412chore: bump version to 1.2.65 [skip ci]📊 Changes
42 files changed (+2374 additions, -254 deletions)
View changed files
📝
.env.example(+6 -0)📝
.github/workflows/agent-release.yml(+3 -1)📝
.gitignore(+52 -7)➕
EXPLORATIONS_AND_FUTURE.md(+672 -0)📝
VERSION(+1 -1)📝
agent/Makefile(+17 -10)➖
agent/agent.exe(+0 -0)📝
agent/cmd/agent/main.go(+72 -0)📝
agent/go.mod(+2 -0)📝
agent/go.sum(+4 -0)📝
agent/internal/agent/agent.go(+170 -3)📝
agent/internal/config/config.go(+13 -0)➕
agent/internal/ipc/handlers.go(+128 -0)➕
agent/internal/ipc/server.go(+212 -0)➕
agent/internal/tray/client.go(+145 -0)➕
agent/internal/tray/icons.go(+50 -0)➕
agent/internal/tray/icons/connected.ico(+0 -0)➕
agent/internal/tray/icons/disconnected.ico(+0 -0)➕
agent/internal/tray/icons/error.ico(+0 -0)➕
agent/internal/tray/icons/stopped.ico(+0 -0)...and 22 more files
📄 Description
Introduces a cross-platform system tray application for the agent, accessible via the new 'tray' command. Implements a local IPC HTTP server for tray/agent communication, exposes agent status, metrics, logs, and restart functionality. Updates build scripts, configuration, and documentation to support the tray app and IPC integration.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.