-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructure.txt
More file actions
executable file
·51 lines (46 loc) · 1.44 KB
/
structure.txt
File metadata and controls
executable file
·51 lines (46 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
File Structure
./public/manifest_addons.xml
./public/manifest_libraries.xml
./public/packages/addons/*.zip
./public/packages/libraries/*.zip
./public/xml/addons/*.xml
./public/xml/libraries/*.xml
manifest_addons.xml
{Lists all addons by name-version}
{
<addons>
<addon>example_addon-0.8.3.0</addon>
</addons>
}
manifest_libraries.xml
{Lists all libraries by name-version}
{
<libraries>
<library>example_library-0.6.7.0</library>
</libraries>
}
*.zip
{package_name-version.zip}
{e.g. example_addon-0.8.3.0.zip}
{e.g. example_library-0.6.7.0.zip}
*.xml
{package_name-version.xml}
{e.g. ./public/packages/addons/example_addon-0.8.3.0.xml}
{e.g. ./public/packages/libraries/example_library-0.6.7.0.xml}
{
<package>
<name>Example Addon</name>
<author>Jekotia</author>
<description>This is a non-functional example.</description>
<project_url>http://nope.net/</project_url>
<tag>Reticule</tag>
<tag>PvE</tag>
<type>Addon</type>
<version>0.8.3.0</version>
<compatible>0.5.1460</compatible>
<date>2012-11-08, 12:23AM</date>
<path>gui/components/MainUI/addons/</path>
<changes>First release.</changes>
<dependency version="0.6.7.0">example_library</dependency>
</package>
}