-
Notifications
You must be signed in to change notification settings - Fork 1
/
navigation.div
129 lines (127 loc) · 6.1 KB
/
navigation.div
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<div id="navigation">
<div id="navilinks">
<h1>Navigation</h1>
<div class="linkblock">
<ul>
<?php
function createLink($link, $name) {
global $current;
echo ' <li';
if($current == $name) {
echo ' class="this"';
}
echo '><a href="'.$link.'">'.$name.'</a></li>'."\n";
}
createLink("index.html", "Home");
createLink("docs.html", "Documentation");
createLink("screenshots.html", "Screenshots");
createLink("features.html", "Features");
createLink("3rdparty.html", "3rd Party");
createLink("contact.html", "Contact");
createLink("http://www.msx.org/forum/semi-msx-talk/openmsx", "Forum (MRC)");
createLink("https://github.com/openMSX/", "Project Page");
?>
</ul>
</div>
</div>
<div id="navidownloads">
<h1><a href="https://github.com/openMSX/openMSX/releases/latest">Download</a></h1>
<div class="linkblock">
<h2>openMSX</h2>
<ul>
<li><a href="https://github.com/openMSX/openMSX/releases/download/RELEASE_20_0/openmsx-20.0-windows-vc-x64-bin-msi.zip">
20.0 / Win 64bit (install)</a></li>
<li><a href="https://github.com/openMSX/openMSX/releases/download/RELEASE_20_0/openmsx-20.0-windows-vc-x64-bin.zip">
20.0 / Win 64bit (zip)</a></li>
<li><a href="https://github.com/openMSX/openMSX/releases/download/RELEASE_16_0/openmsx-16.0-windows-vc-x86-bin-msi.zip">
16.0 / Win 32bit (install)</a></li>
<li><a href="https://github.com/openMSX/openMSX/releases/download/RELEASE_16_0/openmsx-16.0-windows-vc-x86-bin.zip">
16.0 / Win 32bit (zip)</a></li>
<li><a href="https://github.com/openMSX/openMSX/releases/download/RELEASE_20_0/openmsx-20.0-mac-x86_64-bin.dmg">
20.0 / macOS Intel 64bit</a></li>
<li><a href="https://github.com/openMSX/openMSX/releases/download/RELEASE_20_0/openmsx-20.0-mac-aarch64-bin.dmg">
20.0 / macOS Apple 64bit</a></li>
<li><a href="https://github.com/openMSX/openMSX/releases/download/RELEASE_20_0/openmsx-20.0-linux-x86_64-bin.zip">
20.0 / Linux x86 64bit</a></li>
<li><a href="https://github.com/openMSX/openMSX/releases/download/RELEASE_0_15_0/openMSX-openmsx-0.15.0.apk">
0.15.0 / Android 4.1+ ARM (apk)</a></li>
<li><a href="https://github.com/openMSX/openMSX/releases/download/RELEASE_19_1/openmsx-19.1.opk">
19.1 / OpenDingux (opk)</a></li>
<li><a href="https://github.com/openMSX/openMSX/releases/download/RELEASE_20_0/openmsx-20.0.tar.gz">
20.0 / Source code</a></li>
</ul>
<!--
<ul>
<li><a href="https://github.com/openMSX/openMSX/archive/master.zip">Git master snapshot</a></li>
</ul>
-->
<h2>Catapult</h2>
<p>(deprecated)</p>
<ul>
<li><a href="https://github.com/openMSX/openMSX/releases/download/RELEASE_19_0/openmsx-catapult-19.0.tar.gz">
19.0 / Source code</a></li>
</ul>
<!--
<ul>
<li><a href="https://github.com/openMSX/wxcatapult/archive/master.zip">Git master snapshot</a></li>
</ul>
-->
<h2>Debugger</h2>
<p>(deprecated)</p>
<ul>
<!--<li><a href="https://openmsx.dev/builds/windows/x64/debugger/openMSX_Debugger_x64_20201008.zip">
Snapshot / Win 64bit (zip)</a></li>
<li><a href="http://openmsx.sourceforge.net/temp/openmsx-debugger-win32-bin-snapshot.zip">
Snapshot / Win 32bit (MinGW build, zip)</a></li>
<li><a href="https://openmsx.dev/builds/mac/debugger/openMSX-debugger-469-g9b57b83-mac-x86_64.tbz">
Snapshot / macOS 64bit (tbz, requires separate Qt5 download)</a></li> -->
<li><a href="https://github.com/openMSX/debugger/archive/master.zip">
Snapshot / Source code (zip)</a></li>
<!--<li><a href="http://openmsx.sourceforge.net/temp/openmsx-debugger-latest-snapshot-windows-x86-vc-bin.zip">
Snapshot / Win 32bit (VC build, zip)</a></li>
<li><a href="http://openmsx.sourceforge.net/temp/openmsx-debugger-latest-snapshot-windows-x64-vc-bin.zip">
Snapshot / Win 64bit (VC build, zip)</a></li>
<li><a href="http://openmsx.sourceforge.net/temp/Qt-4.4.3-x86.zip">
Qt libs / Win 32bit (zip)</a></li>
<li><a href="http://openmsx.sourceforge.net/temp/Qt-4.4.3-x64.zip">
Qt libs / Win 64bit (zip)</a></li> -->
<li><a href="https://github.com/openMSX/debugger/releases/tag/nightly/">GitHub nightly builds</a></li>
</ul>
<h2>Development builds</h2>
<ul>
<li><a href="https://vampier.net/openMSX/">Vampier's Windows Builds</a></li>
<li><a href="https://github.com/openMSX/openMSX/actions/workflows/build_snapshots.yml?query=branch%3Amaster+">GitHub Actions Snapshot builds</a></li>
<!-- <li><a href="http://openmsx.fixato.net/">FiXato's openMSX Builder site</a></li> -->
</ul>
<!--
<ul>
<li><a href="#">Source</a></li>
</ul>
<ul>
<li><a href="http://openmsx.sourceforge.net/temp/openmsx-debugger-SVN-snapshot.tar.gz">SVN snapshot / Source code</a></li>
<li><a href="http://openmsx.sourceforge.net/temp/openmsx-debugger-win32-bin-snapshot.zip">SVN snapshot / Win32</a></li>
</ul>
-->
<!-- <p>Note: snapshots may be (very) outdated!</p> -->
</div>
</div>
<div id="openhub">
<h1>
<iframe src="https://www.openhub.net/p/5389/widgets/project_thin_badge.html" scrolling="no" marginHeight=0 marginWidth=0 style="height: 32px; width: 145px; border: none;"></iframe>
</h1>
</div>
<div id="styleswitcher">
<ul>
<li>
<a href="#"
onclick="setActiveStyleSheet('Keyboard'); return false;">
<img src="images/theme-keys.png"
alt="Theme: keys"></a></li>
<li>
<a href="#"
onclick="setActiveStyleSheet('Blue'); return false;">
<img src="images/theme-blue.png"
alt="Theme: blue"></a></li>
</ul>
</div>
</div>