-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddon-menubar-items.xml
More file actions
85 lines (78 loc) · 2.74 KB
/
addon-menubar-items.xml
File metadata and controls
85 lines (78 loc) · 2.74 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
#
# NasalNamespaceBrowser Add-on for FlightGear
#
# Written and developer by Roman Ludwicki (PlayeRom, SP-ROM)
#
# Copyright (C) 2025 Roman Ludwicki
#
# This is an Open Source project and it is licensed under the GNU Public License v3 (GPLv3)
#
-->
<PropertyList>
<meta>
<file-type type="string">FlightGear add-on menu bar items</file-type>
<format-version type="int">1</format-version>
</meta>
<menubar-items>
<menu>
<label>Nasal Browser</label>
<item>
<label>Nasal Browser...</label>
<binding>
<command>nasal</command>
<script><![CDATA[
globals['__addon[org.flightgear.addons.NasalNsBrowser]__'].NasalBrowserDialog.new();
]]></script>
</binding>
</item>
<!-- <item>
<label>Legacy Browser 2013...</label>
<binding>
<command>nasal</command>
<script><![CDATA[
globals['__addon[org.flightgear.addons.NasalNsBrowser]__'].NasalBrowser2013.toggleWindow();
]]></script>
</binding>
</item> -->
<!-- <item>
<label>Legacy Browser 2014...</label>
<binding>
<command>nasal</command>
<script><![CDATA[
globals['__addon[org.flightgear.addons.NasalNsBrowser]__'].NasalBrowser2014.new();
]]></script>
</binding>
</item> -->
<item>
<label>-------------</label>
<enabled type="bool">false</enabled>
</item>
<item>
<label>About...</label>
<name>which-runway-addon-about</name>
<binding>
<command>nasal</command>
<script><![CDATA[
globals['__addon[org.flightgear.addons.NasalNsBrowser]__'].g_AboutDialog.show();
]]></script>
</binding>
</item>
<!--
FOR DEVELOPMENT ONLY!
trigger reload of addon-main.nas
1) This item should be REMOVED for release versions.
2) Ensure the label is unique
3) replace addon ID to match your addon
-->
<!-- <item>
<label>Reload Add-on</label>
<binding>
<command>addon-reload</command>
<id>org.flightgear.addons.NasalNsBrowser</id>
</binding>
</item> -->
</menu>
</menubar-items>
</PropertyList>