-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapplication.xml
More file actions
88 lines (67 loc) · 3.05 KB
/
Copy pathapplication.xml
File metadata and controls
88 lines (67 loc) · 3.05 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="utf-8" ?>
<application xmlns="http://ns.adobe.com/air/application/2.0" minimumPatchLevel="0">
<!-- The application identifier string, unique to this application. Required. -->
<id>Tarpo</id>
<!-- Used as the filename for the application. Required. -->
<filename>Tarpo</filename>
<!-- The name that is displayed in the AIR application installer.
May have multiple values for each language. See samples or xsd schema file. Optional. -->
<name>
<text xml:lang="en">Tarpo</text>
</name>
<!-- Tarpo Version - remember to create corresponding Upgrade function -->
<version>1.0.11</version>
<!-- Description, displayed in the AIR application installer.
May have multiple values for each language. See samples or xsd schema file. Optional. -->
<description>
<text xml:lang="en">Open source, cross platform data management tool for Dog Health Programs</text>
</description>
<!-- Copyright information. Optional -->
<copyright>Copyright 2009 - Patrick Donelan</copyright>
<!-- Settings for the application's initial window. Required. -->
<initialWindow>
<!-- The main SWF or HTML file of the application. Required. -->
<content>src/html/main.html</content>
<!-- The title of the main window. Optional. -->
<title>Tarpo</title>
<!-- The window's initial width. Optional. -->
<width>1024</width>
<!-- The window's initial height. Optional. -->
<height>768</height>
<!-- The window's initial x position. Optional. -->
<x>200</x>
<!-- The window's initial y position. Optional. -->
<y>200</y>
<!-- The window's minimum size, specified as a width/height pair, such as "400 200". Optional. -->
<minSize>800 600</minSize>
</initialWindow>
<!-- The icon the system uses for the application. For at least one resolution,
specify the path to a PNG file included in the AIR package. Optional. -->
<icon>
<image16x16>src/images/icons/16.png</image16x16>
<image32x32>src/images/icons/32.png</image32x32>
<image48x48>src/images/icons/48.png</image48x48>
<image128x128>src/images/icons/128.png</image128x128>
</icon>
<!-- Listing of file types for which the application can register. Optional. -->
<fileTypes>
<!-- Defines one file type. Optional. -->
<fileType>
<!-- The name that the system displays for the registered file type. Required. -->
<name>Tarpo</name>
<!-- The extension to register. Required. -->
<extension>tarpo</extension>
<!-- The description of the file type. Optional. -->
<description>Tarpo Database File</description>
<!-- The MIME content type. -->
<contentType>application/tarpo.database</contentType>
<!-- The icon to display for the file type. Optional. -->
<icon>
<image16x16>src/images/icons/16.png</image16x16>
<image32x32>src/images/icons/32.png</image32x32>
<image48x48>src/images/icons/48.png</image48x48>
<image128x128>src/images/icons/128.png</image128x128>
</icon>
</fileType>
</fileTypes>
</application>