Can I use Sparkle to update a single plist within my app bundle?

Asked by Piotr Byzia

Hi, fellow Sparkle users.

I want to be able to update a single plist from my app's bundle.
The app itself uses Sparkle, but I want to independently update one of its plist.

In other words, I distribute my app with X.plist and every time app starts, I want it to check my server for a newer version of X.plist.
If there is one, I want it to replace the old one.

Is it easily achievable with Sparkle or should I just implement simple client & server code to deal with it?

Regards,
Piotr

Question information

Language:
English Edit question
Status:
Solved
For:
Sparkle Edit question
Assignee:
No assignee Edit question
Solved by:
Andy Matuschak
Solved:
Last query:
Last reply:
Revision history for this message
Best Andy Matuschak (andymatuschak) said :
#1

Sparkle won't really give you anything to help with this over just writing the code to do it yourself. Thankfully, that should be pretty easy!

Revision history for this message
Piotr Byzia (piotr-byzia) said :
#2

Thanks Andy Matuschak, that solved my question.