Skip to content
Closed
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
18 changes: 17 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,16 @@ jobs:
include:
- os: macos-latest
target: aarch64-apple-darwin
label: macOS-arm64
- os: macos-latest
target: x86_64-apple-darwin
label: macOS-x64
- os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
label: Linux-x64
- os: windows-latest
target: x86_64-pc-windows-msvc
label: Windows-x64

runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -58,6 +62,18 @@ jobs:
with:
tagName: ${{ github.ref_name }}
releaseName: 'Streamline Desktop ${{ github.ref_name }}'
releaseBody: 'See the [changelog](https://github.com/streamlinelabs/streamline-desktop/blob/main/CHANGELOG.md) for details.'
releaseBody: |
## Streamline Desktop ${{ github.ref_name }}

Download the installer for your platform:

| Platform | File |
|----------|------|
| macOS (Apple Silicon) | `.dmg` |
| macOS (Intel) | `.dmg` |
| Windows | `.msi` or `.exe` |
| Linux | `.AppImage` or `.deb` |

See the [changelog](https://github.com/streamlinelabs/streamline-desktop/blob/main/CHANGELOG.md) for details.
releaseDraft: true
prerelease: false
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,6 @@ streamline-desktop/
Apache-2.0





2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@tauri-apps/api": "^2.0.0",
"@vitejs/plugin-react": "^4.0.0",
"typescript": "^5.6.0",
"vite": "^6.0.0"
"vite": "^7.3.1"
}
}

38 changes: 35 additions & 3 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,18 @@
"width": 1280,
"height": 800,
"resizable": true,
"fullscreen": false
"fullscreen": false,
"minWidth": 800,
"minHeight": 600
}
],
"security": {
"csp": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self' http://localhost:* ws://localhost:*"
},
"trayIcon": {
"iconPath": "icons/icon.png",
"iconAsTemplate": true
"iconAsTemplate": true,
"tooltip": "Streamline — The Redis of Streaming"
}
},
"bundle": {
Expand All @@ -37,8 +40,37 @@
"icons/icon.ico"
],
"resources": ["streamline"],
"category": "DeveloperTool",
"shortDescription": "Kafka-compatible streaming platform on your desktop",
"longDescription": "Streamline Desktop bundles the Streamline server into a native app. Start a Kafka-compatible streaming platform with one click — zero configuration, zero dependencies.",
"copyright": "Copyright (c) 2024 StreamlineLabs",
"macOS": {
"minimumSystemVersion": "10.15"
"minimumSystemVersion": "10.15",
"frameworks": [],
"dmg": {
"appPosition": { "x": 180, "y": 170 },
"applicationFolderPosition": { "x": 480, "y": 170 },
"windowSize": { "width": 660, "height": 400 }
}
},
"windows": {
"wix": {
"language": "en-US"
},
"nsis": {
"installMode": "currentUser",
"displayLanguageSelector": false
}
},
"linux": {
"deb": {
"depends": ["libwebkit2gtk-4.1-0", "libappindicator3-1"],
"section": "devel",
"priority": "optional"
},
"appimage": {
"bundleMediaFramework": false
}
}
}
}
Expand Down
Loading