Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
238a201
fixes [StationeersSUI] Improve "Save Name" input label on the config …
JacksonTheMaster Feb 13, 2026
8d1984d
fixes #151 [StationeersSUI] Discord Button Interaction Issue (Race) -…
JacksonTheMaster Feb 13, 2026
e72e217
fix: enhance backup file handling with logging for corrupt or missing…
JacksonTheMaster Feb 13, 2026
70d094d
fix: improve backup retention logic by adding daily, weekly, and mont…
JacksonTheMaster Feb 13, 2026
6ec50e6
feat: Add uptime to game server status http response
JacksonTheMaster Feb 13, 2026
2b64e90
feat: Add uptime display to webUI
JacksonTheMaster Feb 13, 2026
0805c30
update go version to 1.26
JacksonTheMaster Feb 13, 2026
5e92446
feat: discord: redesign connected players panel with embeds and Steam…
JacksonTheMaster Feb 13, 2026
ca4ec17
removed sendMessageToErrorChannel func that would add a restart butto…
JacksonTheMaster Feb 13, 2026
443deff
rename SendUntrackedMessageToErrorChannel to SendMessageToErrorChanne…
JacksonTheMaster Feb 13, 2026
3d84532
added two new devcommands, testConnectedPlayersListDiscord and dumpHe…
JacksonTheMaster Feb 13, 2026
5661638
feat: enhance SSUICLI help with pretty print, descriptions and dev-on…
JacksonTheMaster Feb 13, 2026
a6ed7e6
Merge pull request #152 from StationeersServerUI/fix-friday-discord-a…
JacksonTheMaster Feb 13, 2026
9c625e3
Merge pull request #154 from StationeersServerUI/fix-backup-retention
JacksonTheMaster Feb 13, 2026
59d8429
Merge pull request #153 from StationeersServerUI/feat-uptime-on-ui
JacksonTheMaster Feb 13, 2026
d9a86f1
Merge pull request #155 from StationeersServerUI/chore-go-1.26-pprof-…
JacksonTheMaster Feb 13, 2026
94bdcc0
bump version to 5.13.0
JacksonTheMaster Feb 13, 2026
7bf44b2
update Go version to 1.26.0 in Dockerfiles, workflows, and README
JacksonTheMaster Feb 14, 2026
61c8968
Refactor Discord Channel Configuration
JacksonTheMaster Feb 14, 2026
1b2f1a3
bunp version
JacksonTheMaster Feb 14, 2026
5bc8d02
Merge branch 'feat-discord-improvements' into nightly
JacksonTheMaster Feb 14, 2026
fd78d74
Remove error channel references and update exception detection messag…
JacksonTheMaster Feb 15, 2026
5a4bea2
feat: Implement theme editor and engine for user-customizable themes
JacksonTheMaster Feb 15, 2026
91edcbf
Merge pull request #158 from StationeersServerUI/feat-ui-theming
JacksonTheMaster Feb 15, 2026
2e843f2
fix: Improve error logging syntax in heap profile management
JacksonTheMaster Feb 15, 2026
7ae0e56
removed pause command from SSCM autocomplete. fixes [StationeersSUI](…
JacksonTheMaster Feb 15, 2026
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
8 changes: 4 additions & 4 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ RUN apt-get update && apt-get install -y \
wget \
&& rm -rf /var/lib/apt/lists/*

# Install Go 1.25.0
RUN wget -q https://go.dev/dl/go1.25.0.linux-amd64.tar.gz && \
tar -C /usr/local -xzf go1.25.0.linux-amd64.tar.gz && \
rm go1.25.0.linux-amd64.tar.gz
# Install Go 1.26.0
RUN wget -q https://go.dev/dl/go1.26.0.linux-amd64.tar.gz && \
tar -C /usr/local -xzf go1.26.0.linux-amd64.tar.gz && \
rm go1.26.0.linux-amd64.tar.gz
ENV PATH="/usr/local/go/bin:${PATH}"
ENV GOPATH=/go
RUN mkdir -p /go/bin && chown -R vscode:vscode /go
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/project,type=bind,consistency=cached",
"features": {
"ghcr.io/devcontainers/features/go:1": {
"version": "1.25.0"
"version": "1.26.0"
}
},
"forwardPorts": [8443],
Expand Down
2 changes: 1 addition & 1 deletion .docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN npm run build
############
# Go build
############
FROM golang:1.25-bookworm AS go-builder
FROM golang:1.26-bookworm AS go-builder

WORKDIR /src

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.0'
go-version: '1.26.0'

# Install dependencies
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.0'
go-version: '1.26.0'

# Install dependencies
- name: Install dependencies
Expand Down
28 changes: 14 additions & 14 deletions UIMod/onboard_bundled/assets/css/apiinfo.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@

.version-tag {
background-color: var(--accent);
color: white;
color: var(--text-header);
}

.status-tag {
background-color: var(--success);
color: white;
color: var(--text-header);
}

.api-overview {
margin-bottom: 30px;
background-color: rgba(0, 0, 0, 0.2);
background-color: var(--form-bg);
padding: 20px;
border-radius: 8px;
border-left: 4px solid var(--accent);
Expand All @@ -46,16 +46,16 @@
}

.endpoint {
background-color: rgba(0, 0, 0, 0.2);
background-color: var(--form-bg);
padding: 15px;
border-radius: 8px;
border: 1px solid rgba(0, 255, 171, 0.3);
border: 1px solid var(--primary-glow);
transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.endpoint:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 255, 171, 0.2);
box-shadow: 0 5px 15px var(--primary-bg-medium);
}

.api-list {
Expand All @@ -66,7 +66,7 @@
.api-list li {
margin-bottom: 15px;
padding: 10px;
background-color: rgba(0, 0, 0, 0.4);
background-color: var(--nav-bg);
border-radius: 4px;
display: flex;
flex-wrap: wrap;
Expand All @@ -76,23 +76,23 @@
}

.api-list li:hover {
background-color: rgba(0, 0, 0, 0.6);
background-color: var(--nav-bg-hover);
}

.method {
padding: 3px 8px;
border-radius: 4px;
font-size: 0.7rem;
font-weight: bold;
color: white;
color: var(--text-header);
}

.method.get {
background-color: #61affe;
background-color: var(--accent);
}

.method.post {
background-color: #49cc90;
background-color: var(--success);
}

.endpoint-link {
Expand All @@ -107,7 +107,7 @@ a.endpoint-link:hover {

.endpoint-desc {
font-size: 0.85rem;
color: #aaa;
color: var(--text-dim);
width: 100%;
margin-top: 5px;
}
Expand All @@ -117,14 +117,14 @@ a.endpoint-link:hover {
}

.code-block {
background-color: rgba(0, 0, 0, 0.4);
background-color: var(--nav-bg);
padding: 20px;
border-radius: 8px;
border-left: 4px solid var(--accent);
font-family: 'Share Tech Mono', monospace;
}

.hint {
color: #aaa;
color: var(--text-dim);
font-style: italic;
}
8 changes: 4 additions & 4 deletions UIMod/onboard_bundled/assets/css/background.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ header {
position: absolute;
inset: 0;
background:
linear-gradient(rgba(0, 255, 171, 0.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 255, 171, 0.05) 1px, transparent 1px);
linear-gradient(color-mix(in srgb, var(--primary) 5%, transparent) 1px, transparent 1px),
linear-gradient(90deg, color-mix(in srgb, var(--primary) 5%, transparent) 1px, transparent 1px);
background-size: 20px 20px;
background-position: center center;
z-index: 0;
Expand All @@ -29,7 +29,7 @@ header {
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(ellipse at bottom, #1b2735 0%, var(--bg-dark) 100%);
background: radial-gradient(ellipse at bottom, color-mix(in srgb, var(--bg-dark) 70%, var(--bg-panel)) 0%, var(--bg-dark) 100%);
z-index: -2;
will-change: transform;
overflow: hidden;
Expand Down Expand Up @@ -106,7 +106,7 @@ header {
radial-gradient(1px 1px at 102px 64px, var(--text-bright), transparent),
radial-gradient(1px 1px at 127px 187px, var(--text-header), transparent),
radial-gradient(700px 500px at 65% 75%, var(--primary-glow), transparent),
radial-gradient(500px 400px at 20% 25%, rgba(0, 132, 255, 0.15), transparent);
radial-gradient(500px 400px at 20% 25%, color-mix(in srgb, var(--accent) 15%, transparent), transparent);
background-size: 250px 250px, 250px 250px, 250px 250px, 250px 250px, 250px 250px,
250px 250px, 250px 250px, 250px 250px, 250px 250px, 250px 250px,
100% 100%, 100% 100%;
Expand Down
Loading
Loading