feat: implement package manager support for Windows and macOS, including Chocolatey and Homebrew configurations
Some checks are pending
Tests & Quality Checks / Test on Python 3.11 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.12 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.11-1 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.12-1 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.10 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.11-2 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.12-2 (push) Waiting to run
Tests & Quality Checks / Build Artifacts (push) Blocked by required conditions
Tests & Quality Checks / Build Artifacts-1 (push) Blocked by required conditions
Some checks are pending
Tests & Quality Checks / Test on Python 3.11 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.12 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.11-1 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.12-1 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.10 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.11-2 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.12-2 (push) Waiting to run
Tests & Quality Checks / Build Artifacts (push) Blocked by required conditions
Tests & Quality Checks / Build Artifacts-1 (push) Blocked by required conditions
This commit is contained in:
parent
1dcce081f1
commit
87884935c9
9 changed files with 758 additions and 10 deletions
21
README.md
21
README.md
|
|
@ -40,7 +40,22 @@ WebDrop Bridge embeds a web application in a Qt container with full filesystem a
|
|||
|
||||
### Installation from Pre-Built Release (Recommended)
|
||||
|
||||
**Simplest Method: Direct wget (if you know the version)**
|
||||
**Option 1: Package Manager (Recommended for most users)**
|
||||
|
||||
```powershell
|
||||
# Windows - Chocolatey
|
||||
choco install webdrop-bridge
|
||||
choco upgrade webdrop-bridge # Update when new version available
|
||||
```
|
||||
|
||||
```bash
|
||||
# macOS - Homebrew (with custom tap)
|
||||
brew tap HIM-public/webdrop-bridge https://git.him-tools.de/HIM-public/homebrew-webdrop-bridge.git
|
||||
brew install webdrop-bridge
|
||||
brew upgrade webdrop-bridge # Update to latest version
|
||||
```
|
||||
|
||||
**Option 2: Direct wget (if you know the version)**
|
||||
|
||||
```bash
|
||||
# Replace VERSION with release tag (e.g., v0.8.0)
|
||||
|
|
@ -50,7 +65,7 @@ wget https://git.him-tools.de/HIM-public/webdrop-bridge/releases/download/VERSIO
|
|||
wget https://git.him-tools.de/HIM-public/webdrop-bridge/releases/download/v0.8.0/WebDropBridge_Setup.msi
|
||||
```
|
||||
|
||||
**Alternative: Automated script (auto-detects platform)**
|
||||
**Option 3: Automated script (auto-detects platform)**
|
||||
|
||||
```bash
|
||||
# Windows (PowerShell)
|
||||
|
|
@ -60,7 +75,7 @@ wget https://git.him-tools.de/HIM-public/webdrop-bridge/releases/download/v0.8.0
|
|||
./build/scripts/download_release.sh
|
||||
```
|
||||
|
||||
For more installation options and details, see [QUICKSTART.md](QUICKSTART.md#installing-from-release-wget)
|
||||
For more installation options and details, see [QUICKSTART.md](QUICKSTART.md#installing-from-release-wget) and [PACKAGE_MANAGER_SUPPORT.md](docs/PACKAGE_MANAGER_SUPPORT.md)
|
||||
|
||||
### Installation from Source
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue