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
10 changes: 5 additions & 5 deletions .github/workflows/desktop-release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ jobs:
- name: macOS desktop
runner: macos-15
bundles: dmg app
artifact-name: loopx-control-plane-macos
artifact-name: loopx-macos
artifact-path: dist/desktop/*
- name: Windows desktop
runner: windows-latest
bundles: msi nsis
artifact-name: loopx-control-plane-windows
artifact-name: loopx-windows
artifact-path: dist/desktop/*
steps:
- name: Check out release source
Expand Down Expand Up @@ -104,8 +104,8 @@ jobs:
mkdir -p dist/desktop
cp apps/desktop/loopx-control-plane/src-tauri/target/release/bundle/dmg/*.dmg dist/desktop/
ditto -c -k --keepParent \
"apps/desktop/loopx-control-plane/src-tauri/target/release/bundle/macos/LoopX Control Plane.app" \
"dist/desktop/LoopX Control Plane.app.zip"
"apps/desktop/loopx-control-plane/src-tauri/target/release/bundle/macos/LoopX.app" \
"dist/desktop/LoopX.app.zip"

- name: Collect Windows desktop bundles
if: runner.os == 'Windows'
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
- name: Download desktop artifacts
uses: actions/download-artifact@v7
with:
pattern: loopx-control-plane-*
pattern: loopx-*
path: dist/desktop
merge-multiple: true

Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/loopx-control-plane/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# LoopX Control Plane Desktop
# LoopX Desktop

This directory contains the experimental Tauri shell for the LoopX personal
Agent workspace. It reuses the existing React dashboard and LoopX HTTP
Expand Down
Binary file modified apps/desktop/loopx-control-plane/src-tauri/icons/128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/loopx-control-plane/src-tauri/icons/128x128@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/loopx-control-plane/src-tauri/icons/32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/desktop/loopx-control-plane/src-tauri/icons/icon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion apps/desktop/loopx-control-plane/src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pub fn run() {
)?;

WebviewWindowBuilder::new(app, "main", WebviewUrl::External(origin))
.title("LoopX Control Plane")
.title("LoopX")
.inner_size(1280.0, 820.0)
.min_inner_size(960.0, 640.0)
.on_navigation(move |url| url.origin() == navigation_origin.origin())
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/loopx-control-plane/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "LoopX Control Plane",
"productName": "LoopX",
"version": "0.1.0",
"identifier": "io.loopx.control-plane",
"build": {
Expand Down