Plugin info

Total downloads: 285
Active installs: 0
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 3/1/2025 (305 days ago)
Added to WordPress: 2/23/2025 (0 years old)
Minimum WordPress version: 5.0
Tested up to WordPress version: 6.7.4
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Stale • Last updated 305 days ago

38/100

Is Sparkling Appcast abandoned?

Likely maintained (last update 305 days ago).

Compatibility

Requires WordPress: 5.0
Tested up to: 6.7.4
Requires PHP: f

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

Sparkling Appcast is a WordPress plugin. It allows you to use your WordPress site to distribute your macOS App via Sparkle. Sparkling Appcast supports multiple channels (alpha, beta, …).

Sparkling Appcast exposes a new shortcode to display a list of app builds.

[sappcast_display_builds sappcast_channel="{channel-id-or-slug}"]

Configure Sparkle to ingest the appcast.xml at https://your.site/wp-json/sparkling-appcast/v1/appcast.xml. You will see something like the following XML.


    
        MyApp
        /wp-json/sparkling-appcast/v1/appcast.xml
        
            Version 1.0.1 (2)
            
            Alpha
            2
            1.0.1
            Wed, 08 Jan 2025 08:56:19 +0000
            14.0
            
        
        
            Version 1.0.0 (1)
            
            1
            1.0.0
            Wed, 08 Jan 2025 07:43:06 +0000
            14.0
            
        
    

Configuration

To get started name the application you want to distribute on your WordPress site. You can find the settings page under the App Builds menu.

If you have multiple channels besides stable, you can should add them on wp-admin under the App Builds menu.

Usage

Fastlane

We recommend you use the wp_sparkling_appcast plugin to upload assets and create builds.

Other

To distribute a new build, you must upload the asset (1), create a build draft (2), after which you can finalize the build and publish it (3). Steps 1 and 2 are typically executed by your build server, while step 3 is done by a human.

1. Uploading Asset

curl --location "localhost:8088/wp-json/wp/v2/media?status=publish&title=MyApp%20${VERSION}%20(${BUILD_NUMBER})" \
    --header "Content-Disposition: attachment; filename=\"myapp_v${VERSION}_${BUILD_NUMBER}.zip\"" \
    --header 'Content-Type: application/zip' \
    --user "${USER}:${APPLICATION_PASSWORD}" \
    --data-binary '@/path/to/asset.zip'

2. Create Build Draft

curl --location 'localhost:8088/wp-json/wp/v2/sappcast_app_build' \
    --header 'Content-Type: application/json' \
    --user "${USER}:${APPLICATION_PASSWORD}" \
    --data '{
        "meta": {
            "sappcast_app_build_version": string,
            "sappcast_app_build_number": int,
            "sappcast_app_build_min_system_version": string,
            "sappcast_app_build_attachment_id": int,
            "sappcast_app_build_changelog": string,
        },
        "sappcast_channel": int,
        "status": "draft"
    }'

3. Publish Build

The user may now go to “App Build” on wp-admin and publish the draft after verifying the build. After publishing the build will appear on the relevant appcast (/wp-json/sparkling-appcast/v1/appcast.xml).

Installation

No installation instructions available

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

No changelog available