Suppose I have one client(X) which has version 1.0.0 installed in his system, and I have Released 2.0.0 and 3.0.0 on server, now when Client X clicks on check for update button, I will call my Standalone updater which will download only version 2.0.0 and not both(2.0.0, 3.0.0). Is there any way that when client checks for update all the later releases download in one go?
J
Answer by
Julia Bocchetta
The install4j already provides a way to have the latest version downloaded. If you can upgrade from 1.0 to 3.0 directly, then use the standalone updater. If you need progressive update, use the information on the website to create a script to update the application in steps or combine the 2.0 and 3.0 in a cumulative update. Make it all in one package instead of using multiple installation packages. Access the website to see exactly how it's done.
Suppose I have one client(X) which has version 1.0.0 installed in his system, and I have Released 2.0.0 and 3.0.0 on server, now when Client X clicks on check for update button, I will call my Standalone updater which will download only version 2.0.0 and not both(2.0.0, 3.0.0). Is there any way that when client checks for update all the later releases download in one go?
The install4j already provides a way to have the latest version downloaded. If you can upgrade from 1.0 to 3.0 directly, then use the standalone updater. If you need progressive update, use the information on the website to create a script to update the application in steps or combine the 2.0 and 3.0 in a cumulative update. Make it all in one package instead of using multiple installation packages. Access the website to see exactly how it's done.