
curl -s https://api.github.com/repos/sreq-inc/solo/releases/latest \
| grep "browser_download_url" \
| grep ".dmg" \
| cut -d '"' -f 4 \
| xargs -n 1 curl -L --output solo.dmg && open solo.dmg
π Create and manage collections
- π HTTP requests β PUT, POST, GET, DELETE, and PATCH
- π Authentication β Bearer Token and Basic Auth
- π§© Query parameters
- π§ͺ Variables
- π JSON body formatting
- π GraphQL request support
- π€ Export as cURL
- π§βπ» User-friendly interface for creating and managing HTTP requests
# Install dependencies
bun install
# Start in development mode
bun tauri dev
# Build the application
bun tauri build
To update the project version across all configuration files:
./version.sh
This script will:
- Display the current version
- Prompt for the new version
- Update
package.json
,src-tauri/Cargo.toml
, andsrc-tauri/tauri.conf.json
- Create a git commit with the changes
This project is licensed under the Business Source License 1.1 (BSL 1.1). The BSL allows free use of the software while reserving commercial rights for the original author. For complete details, see the LICENSE file in the root of the repository.