Skip to content


echo " "; Profile Profile

RUT

automatic software updater

Remote Update Tool for developers and administrators.
Update your application remotely.

Download RUT from SourceForge.net

Overview

Users don’t need neither to check update manually nor to run a special updater.

That’s pretty transparent:

RUT works as a launcher of your application, it’s an entry point of your application.

User starts RUT, it checks if the update is available and downloads it if any exists, then runs your application.

How it works in details:

You define current version of application which should be updated and other parameters in settings.xml

When you created new version of application, put txt file with last version and application on remote server.

Now, user runs RUT, current and last version are being compared, if the versions are different, update will be downloaded.

After that, special command (which you defined in settings.xml) will be invoked, it can start either application or any other commands.

GUI

RUT has 2 modes: console and Swing GUI.

To run console version, invoke following command in terminal:

java -jar rut.jar

To run gui version:

java -jar rut.jar -gui

Windows version runs in GUI mode by default.

Settings

Settings.xml has following options:

  • current-version: Current version of application on client computer, changes automatically after updating.
  • remote-version-file: Txt file, which contains last version of application (e.g. 0.2) on remote server.
  • remote-file: File on remote server, which should be downloaded in the updating process.
  • run-command: Console command, which will be invoked after updating, e.g. it can run the downloaded file.

Example

        <settings>
             <current-version>0.1</current-version>
             <remote-version-file>
                  http://example.com/version.txt
             </remote-version-file>
             <remote-file>
                  http://example.com/file.jar
             </remote-file>
             <run-command>
                  java -jar file.jar
             </run-command>
        </settings>

http://example.com/version.txt contains “0.2” (without quotes).

After updating, current-version changes to 0.2 and file.jar runs.

Posted in .

0 Responses

Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.

Some HTML is OK

(required)

(required, but never shared)

or, reply to this post via trackback.