-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.xml
More file actions
42 lines (42 loc) · 1.43 KB
/
application.xml
File metadata and controls
42 lines (42 loc) · 1.43 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
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<application xmlns="http://ns.adobe.com/air/application/2.0">
<id>com.JSONpad</id>
<name>JSONpad</name>
<version>2.0.0</version>
<filename>JSONpad</filename>
<description>
A simple JSON editor with many features. Syntax highlighting, XML2json conversion, tree view and many more.
</description>
<copyright>New BSD License</copyright>
<customUpdateUI>false</customUpdateUI>
<allowBrowserInvocation>false</allowBrowserInvocation>
<initialWindow>
<content>JSONpad-air.html</content>
<transparent>false</transparent>
<systemChrome>standard</systemChrome>
<height>700</height>
<width>900</width>
<minSize>250 250</minSize>
<visible>true</visible>
</initialWindow>
<icon>
<image16x16>img/ico/JSONpad_16x16.png</image16x16>
<image32x32>img/ico/JSONpad_32x32.png</image32x32>
<image48x48>img/ico/JSONpad_48x48.png</image48x48>
<image128x128>img/ico/JSONpad_128x128.png</image128x128>
</icon>
<fileTypes>
<fileType>
<name>SampleFile</name>
<extension>json</extension>
<description>JSON string files</description>
<contentType>text/plain</contentType>
<icon>
<image16x16>img/ico/JSON_16x16.png</image16x16>
<image32x32>img/ico/JSON_32x32.png</image32x32>
<image48x48>img/ico/JSON_48x48.png</image48x48>
<image128x128>img/ico/JSON_128x128.png</image128x128>
</icon>
</fileType>
</fileTypes>
</application>