Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable user-visible changes are recorded here. Versions follow [Semantic Ve

## Unreleased

## [0.16.0] — 2026-09-15

### Changed

- Added optional standards-based OpenID Connect sign-in using Authorization
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
services:
shell-online:
image: ghcr.io/teoslayer/shell.online:0.15.1
image: ghcr.io/teoslayer/shell.online:0.16.0
build:
context: .
args:
VERSION: "0.15.1"
VERSION: "0.16.0"
restart: unless-stopped
environment:
SHELL_ONLINE_E2EE_PASSWORD: "${SHELL_ONLINE_E2EE_PASSWORD:-}"
Expand Down
4 changes: 2 additions & 2 deletions docs/content.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.15.1",
"version": "0.16.0",
"pages": {
"docs": {
"eyebrow": "Documentation",
Expand Down Expand Up @@ -913,7 +913,7 @@
"cards": [
[
"Start once",
"Pull ghcr.io/teoslayer/shell.online:0.15.1 or run docker compose up --build -d, then docker compose logs shell-online. First launch prints the stable URL and a generated ten-character password. The tagged amd64/arm64 image includes an SBOM and build provenance."
"Pull ghcr.io/teoslayer/shell.online:0.16.0 or run docker compose up --build -d, then docker compose logs shell-online. First launch prints the stable URL and a generated ten-character password. The tagged amd64/arm64 image includes an SBOM and build provenance."
],
[
"Two durable volumes",
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
},
"applicationCategory": "DeveloperApplication",
"operatingSystem": "macOS, Windows, Linux, FreeBSD, OpenBSD, NetBSD, DragonFly BSD, Solaris",
"softwareVersion": "0.15.1",
"softwareVersion": "0.16.0",
"softwareRequirements": "A supported architecture, outbound HTTPS and WebSockets, and a PTY or Windows ConPTY",
"isAccessibleForFree": true,
"downloadUrl": "https://shell.online/install",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shell-online",
"version": "0.15.1",
"version": "0.16.0",
"description": "Turn any terminal process into a collaborative browser link.",
"private": true,
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions public/llms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ The Homebrew formula builds locally: Brew fetches the checksum-pinned tagged sou

The standalone installer uses a checksum-pinned release binary. To compile and run the tagged source outside either installation path:

git clone --depth 1 --branch v0.15.1 https://github.com/TeoSlayer/shell.online.git
git clone --depth 1 --branch v0.16.0 https://github.com/TeoSlayer/shell.online.git
cd shell.online
go build -trimpath -ldflags="-X main.version=0.15.1" -o ./shell ./cmd/shell
go build -trimpath -ldflags="-X main.version=0.16.0" -o ./shell ./cmd/shell
./shell --version

The source-build path requires Go 1.26.8 or newer, except Go 1.27.x is intentionally unsupported on MIPS64 because of go.dev/issue/80978. Keep using ./shell or move it to a directory on PATH.
Expand Down
Loading