[Release] Build Installer
#1
I'm releasing Build Installer (script.buildinstaller).

Build Installer is a Kodi add-on that restores a list of add-ons from their online sources. This add-on facilitates the distribution of Kodi builds as only a list of add-ons has to be distributed.

Installation

Install Build Installer by going to the Kodi add-ons settings, select "Install from zip file", and select the zip file at https://github.com/Flavien/script.buildi...master.zip .

Instructions

Before using the script, you must create a build.xml file. The build.xml file must be placed at the root of your userdata folder (%APPDATA%\kodi\userdata on Windows, ~/.kodi/userdata/ on Linux).

The structure of the build.xml file is the following:

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addons>
  <addon id="[addon_1]" />
  <addon id="[addon_2]" />
  ...
</addons>

For example:

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addons>
  <addon id="metadata.universal" />
  <addon id="plugin.video.youtube" />
  <addon id="service.subtitles.opensubtitles" />
  <addon id="weather.yahoo" />
  <addon id="skin.eminence.2" />
</addons>

The add-on repositories from which the add-ons should be fetched must be installed and enabled for the restore process to work.

Once the build.xml file has been created, simply execute the Build Installer program to launch the restore process.
Reply

Logout Mark Read Team Forum Stats Members Help
[Release] Build Installer0