Plugin configuration file

The plugin configuration file (.plugin extension) is used by both channel plugins and application plugins.

The format of this file is as follows:

[Config]
Plugin=                  Plugin script file. Must be in the same directory.
AppPluginId=             Application plugin ID. Must be unique within Awasu and contain only letters, digits and underscores.
AppPluginDisplayName=    Display name that the user will see. 
AuthorName=              Plugin author's name (optional).
AuthorEmailAddress=      Plugin author's email address (optional).
PluginNotes=             User notes (optional).

Defining plugin parameters

Plugins can also define user-configurable parameters. Global plugin parameters apply to all channels being serviced by the plugin and are defined as follows:

[PluginParameterDefinition-1]
Name=           Parameter name. Must be unique.
Type=           Parameter type. Must be one of "int", "bool", "string", "password" [1], "double" or "file".
DefaultValue=   Default value (optional).
Description=    Description of the parameter (optional).

This information can be repeated for as many parameters as the plugin wishes to define (just keep incrementing the number in the section name).

Per-channel parameters are defined in a similar way. Each channel will get its own copy of these parameters, allowing the user to configure them independently of other channels:

[ChannelParameterDefinition-1]
Name=           Parameter name. Must be unique.
Type=           Parameter type. Must be one of "int", "bool", "string", "password" [1], "double" or "file".
DefaultValue=   Default value (optional).
Description=    Description of the parameter (optional).

Special plugin parameters

There are several parameters that have special meaning for Awasu.