summaryrefslogtreecommitdiff
path: root/index.html
blob: 77e1301701deebc674b14d245be36f09557b8481 (plain)
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
<!DOCTYPE html>
<html lang="en-us">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
        <title>Megapahit</title>
        <link rel="shortcut icon" href="files/favicon.ico"/>
        <link rel="stylesheet" href="css/main.css">
    </head>
    <body>
        <div id="panel">
            <div id="header">
                <h1><a href="https://megapahit.net"><span translate="no">Megapahit</span></a></h1>
                <div id="expandButton"></div>
            </div>
            <div id="panelScrim"></div>
            <div id="contentWrapper">
                <div id="content">
                    <h2>Disclosures</h2>
                    <ul>
                        <li><a id="disclaimers" href="#disclaimers">Disclaimers</a></li>
                        <li><a id="limitations" href="#limitations">Limitations</a></li>
                        <li><a id="policies" href="#policies">Policies</a></li>
                    </ul>
                    <h2>Support</h2>
                    <ul>
                        <li><a href="https://world.secondlife.com/group/1142646c-5fb2-162c-ecf8-c5e422ab5c6d" target="_blank">In-world</a></li>
                        <li><a href="https://megapahit.com" target="_blank">Bugzilla</a></li>
                        <li><a href="irc://megapahit.net/#viewer">IRC</a></li>
                        <li><a href="https://discord.gg/jpt33HPVEK">Discord</a></li>
                    </ul>
                    <h2>Downloads</h2>
                    <ul>
                        <li>
                            <details>
                                <summary>7.1.10.52662</summary>
                                <ul>
                                    <li><a href="https://megapahit.net/downloads/Megapahit-7.1.10.52662-arm64.dmg">macOS arm64</a></li>
                                    <li><a href="https://megapahit.net/downloads/Megapahit-7.1.10.52662-x86_64.dmg">macOS x86_64</a></li>
                                    <li><a href="https://megapahit.net/downloads/megapahit-7.1.10.52662-Debian.deb">Debian 12.7</a></li>
                                    <li><a href="https://megapahit.net/downloads/megapahit-7.1.10.52662-Ubuntu.deb">Ubuntu 24.04.1</a></li>
                                    <li><a href="https://megapahit.net/downloads/megapahit-7.1.10.52662-Tumbleweed.rpm">openSUSE Tumbleweed</a></li>
                                    <li><a href="https://megapahit.net/downloads/megapahit-7.1.10.52662-Fedora.rpm">Fedora 40</a></li>
                                    <li><a href="https://megapahit.net/downloads/megapahit-7.1.10.52662-FreeBSD.pkg">FreeBSD 14.1</a></li>
                                </ul>
                            </details>
                        </li>
                        <li>
                            <details>
                                <summary>Source Code</summary>
                                <ul>
                                    <li><a href="https://megapahit.org" target="_blank">Self-hosted</a></li>
                                    <li><a href="https://github.com/orgs/megapahit/repositories" target="_blank">GitHub</a></li>
                                </ul>
                            </details>
                        </li>
                    </ul>
                    <h2>Changelogs</h2>
                    <ul>
                        <li><a id="7.1.10.52662" href="7.1.10.52662.html">7.1.10.52662</a></li>
                    </ul>
                </div>
            </div>
        </div>
        <script>
            var panel = document.getElementById('panel');
            document.getElementById('expandButton')
                .addEventListener('click', function(event) {
                    panel.classList.toggle('open');
                    event.preventDefault();
                });
            document.getElementById('panelScrim').onclick
                = function(event) {
                    event.preventDefault();
                    panel.classList.toggle('open');
                };
            document.getElementById('disclaimers')
                .addEventListener('click', function(event) {
                    Module.ccall('showDisclosure', '',
                        ['number', 'string'],
                        [1, 'Disclaimers']);
                });
            document.getElementById('limitations')
                .addEventListener('click', function(event) {
                    Module.ccall('showDisclosure', '',
                        ['number', 'string'],
                        [2, 'Limitations']);
                });
            document.getElementById('policies')
                .addEventListener('click', function(event) {
                    Module.ccall('showDisclosure', '',
                        ['number', 'string'],
                        [3, 'Policies']);
                });
        </script>
        <canvas id="canvas" oncontextmenu="event.preventDefault()" tabindex=-1></canvas>
        <script type="text/javascript" src="js/emscripten.js"></script>
        <script async type="text/javascript" src="js/myron.js"></script>
    </body>
</html>