Alex Spataru 47c6909259 Rewrite library to allow multiple updaters & JSON appcasts
- The update definitions are now stored in the JSON format
- The QSimpleUpdater now allows updating separate “modules” of the
application, this can be useful if you are using a large application
with several updatable plugins
- You can now implement your own procedures to install the downloaded
updates
2016-05-22 21:36:53 -05:00

35 lines
1.2 KiB
JSON

{
"updates": {
"windows": {
"open-url": "",
"latest-version": "1.0",
"download-url": "https://github.com/alex-spataru/QSimpleUpdater/archive/master.zip",
"changelog": "This is an example changelog for Windows. Go on..."
},
"osx": {
"open-url": "",
"latest-version": "1.0",
"download-url": "https://github.com/alex-spataru/QSimpleUpdater/archive/master.zip",
"changelog": "This is an example changelog for Mac OS X. Go on..."
},
"linux": {
"open-url": "",
"latest-version": "1.0",
"download-url": "https://github.com/alex-spataru/QSimpleUpdater/archive/master.zip",
"changelog": "This is an example changelog for Linux. Go on..."
},
"ios": {
"open-url": "",
"latest-version": "1.0",
"download-url": "https://github.com/alex-spataru/QSimpleUpdater/archive/master.zip",
"changelog": "This is an example changelog for iOS. Go on..."
},
"android": {
"open-url": "",
"latest-version": "1.0",
"download-url": "https://github.com/alex-spataru/QSimpleUpdater/archive/master.zip",
"changelog": "This is an example changelog for Android. Go on..."
}
}
}