-
Notifications
You must be signed in to change notification settings - Fork 402
Adding an App
corbinlc edited this page Dec 6, 2018
·
4 revisions
If you want to add an app that is not currently supported, here is how you go about that:
- Fork the UserLAnd-Assets-Support repository.
- The list of apps supported is controlled by the apps.txt file. You must add a new entry in that file.
- The header, in that file, describes what each field means, but there are some things that would be good to point out.
- If the app
Category
isDistribution
, theApp Name
andFilesystem Type Required
must match. Also you have more work to do. Read about that here. - If the app
Category
is notDistribution
, theFilesystem Type Required
must bedebian
(for now). -
isPaidApp
must befalse
. - We currently don't look at
version
.
- If the app
- Each app must have a subdirectory matching the
App Name
created for it here. - That subdirectory must have a
.sh
a.png
and a.txt
file with the name matchingApp Name
. - The
.png
should be relatively small, like 256x256, and ideally look nice and be transparent around the icon. - The
.txt
should have a brief description of what the app is. Currently this does not support localization, so these are all in English (sorry, we will figure this out later). - The
.sh
does everything needed to setup and run the app. Here is a really simple example. Note, these scripts always start by deleting themselves. We copy them into profile.d and have them delete themselves so they only run once. - When finished, make a pull request with your changes.