Home

Awesome

fokLauncher

This is a launcher for any java application that is released to a maven repository. It is currently used by Hangman Solver and a (currently) closed source Tic Tac Toe implementation.

Though the list of projects that currently use the launcher is small, it can be used by any app that is released to a maven repository which means that you can use it for your app too!

Get the launcher

We currently don't use GitHub releases and release instead on Bintray. Click here to get the latest version of the launcher.

Upgrading from older versions

The FOKLauncher has an integrated update checker that does the entire job for you, even if you've used the installer to install the FOKLauncher.

Once a new version is available, the FOKLauncher will inform you at startup. If you don't wish to upgrade right now, you can ignore the update and repeat the update at any time using the "Check for updates"-link.

Download the latest snapshot

If you want to use a cutting edge copy of the launcher, you can obtain one here. Just click the ID of the top most build, click the Module ID, give it a second and then select the file you want to download.

Keep in mind:

Build your own version

Build the current snapshot

  1. Clone this repository
  2. Run mvn package

Build the latest release

Repeat the steps mentioned above but switch to the release branch by running git checkout release prior to running mvn package.

What it does

The launcher has a App-Store like gui. It presents the user a list of available applications. The user can then choose an app from the list and the launcher will download and launch that app. Once the app is downloaded, it is cached on the users hard drive (that means that the launcher will download it only on the first launch) but if you publish an update, the launcher will automatically detect that and download the update.

I want my app to be in the launcher too!

Great! To add your app to the launcher, you need to meet the prerequisites (see below) and do one of the following:

Contact us so that we add it to the list of apps on our server

In that case, please tell us the following:

Prepare a .foklauncher-file with all information about your app

#This file stores info about a java app. To open this file, get the foklauncher
#Mon Sep 05 20:11:09 CEST 2016
name=<human readable name of your app>
groupId=<maven groupId>
repoBaseURL=<url of your maven release repo>
classifier=jar-with-dependencies
snapshotRepoBaseURL=<url of your maven snapshot repo>
artifactId=<maven artifactId>

Please make sure to escape all : in the urls (they should look like this then: https\://oss.jfrog.org/artifactory/repo)

Prerequisites

To be able to add your app to the launcher, it needs to meet the following conditions:

That is too complicated for me, heeeeeeeelp!

If you have any problems, don't hesitate to write an email and we will be happy to help!

Customize the launcher in your way

If you wish to have a completely customized launcher, you can fork the repository and modify it as you wish. Just make sure to respect the License. There are plans to make complete customization easier than forking, you can see the progress in #12

Contributing

Contributions of any kind are very welcome. Just fork and submit a Pull Request and we will be happy to merge. Just keep in mind that we use Issue driven development.