-
Description of the problemI can confirm my app has got the latest appcast.xml. But it just reports "0.2.1 is currently the newest version available." I have these in my Info.plist
Here's the appcast.xml ...
<item>
<title>0.2.2</title>
<pubDate>Sun, 15 Sep 2024 02:03:15 +0900</pubDate>
<sparkle:channel>stable</sparkle:channel>
<sparkle:version>1030</sparkle:version>
<sparkle:shortVersionString>0.2.2</sparkle:shortVersionString>
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
<enclosure url="https://download.usemurmur.com/releases/Murmur-0.2.2.dmg" length="2574959" type="application/octet-stream" sparkle:edSignature="fxjmchkGKbsTZYmYyVT11s/GL2v06hTKn9g75B8vwLKFjDSQCRMqid3VhwUinhEk03ORZOdpj1uyII1oNTU9AQ=="/>
</item>
... Do you use Sandboxing in your app?No Version of
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You put the release on a channel named "stable", so your updater would have to have that set in the allowed channels. Channels are usually used for beta updates. Typically you don't use a channel for stable releases since they are usually intended to be delivered to all users. |
Beta Was this translation helpful? Give feedback.
-
Thank you so much for the swift answer! After adding a delegate for allowed channels, it worked like a charm. Cursor added You saved my day! (actually 4am) |
Beta Was this translation helpful? Give feedback.
You put the release on a channel named "stable", so your updater would have to have that set in the allowed channels.
Channels are usually used for beta updates. Typically you don't use a channel for stable releases since they are usually intended to be delivered to all users.