-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.php
98 lines (89 loc) · 3 KB
/
contact.php
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
<!DOCTYPE html>
<html>
<?php
$current = "Contact";
require "head.div";
?>
<body>
<?php require "title.div"; ?>
<?php require "navigation.div"; ?>
<div id="content">
<h1>Contact</h1>
<h2>Discord</h2>
<dl>
<dt>
<a href="https://discord.gg/JV56gzh2qG">openMSX Channel on Discord</a>
</dt>
<dd>
A more modern alternative to IRC (see below), with an IRC bridge,
as not all openMSX developers are on Discord (yet).
Same as IRC: don't hesitate to visit, don't hesitate to ask anything
openMSX related. Remarks, suggestions, ideas are most welcome!
</dd>
<dd>
Note that we are not reading Discord 24 hours per day, so if no-one responds, please stick around or try again later.
</dd>
</dl>
<h2>IRC</h2>
<dl>
<dt>
<a href="irc://libera.chat/openmsx">#openmsx on Libera.Chat</a>
</dt>
<dd>
You'll find most of the developers here on a regular basis.
Don't hesitate to visit, don't hesitate to ask anything openMSX
related. Remarks, suggestions, ideas are most welcome!
</dd>
<dd>
For your convenience, we can also offer you web-based access to our IRC channel. <a href="https://web.libera.chat/#openMSX" target="_blank">Try it by following this link!</a> It will open the chat room in a new window or a new tab.
</dd>
<dd>
Note that we are not reading IRC 24 hours per day, so if no-one responds, please stick around or try again later.
</dd>
</dl>
<h2>Discussion Forums</h2>
<dl>
<dt>
<a href="http://www.msx.org/forum/semi-msx-talk/openmsx">openMSX forum on MSX Resource Center</a>
</dt>
<dd>
Discussions on openMSX, Catapult and C-BIOS.
</dd>
</dl>
<h2>Bug Reports and Feature Requests</h2>
<dl>
<dt>
<a href="https://github.com/openMSX/openMSX/issues">
openMSX Issue Tracker</a></dt>
<dd>
You can report bugs or request new features for openMSX itself in the issue tracker on GitHub.
</dd>
<dt>
<a href="https://github.com/openMSX/wxcatapult/issues">
Catapult Issue Tracker</a></dt>
<dd>
You can report bugs or request new features for openMSX Catapult in the issue tracker on GitHub.
</dd>
<dt>
<a href="https://github.com/openMSX/debugger/issues">
Debugger Issue Tracker</a></dt>
<dd>
You can report bugs or request new features for the openMSX Debugger in the issue tracker on GitHub.
</dd>
</dl>
<h2>Mailing Lists</h2>
<dl>
<dt>
<a href="http://sourceforge.net/p/openmsx/mailman/">
SourceForge openMSX mailing lists</a>
</dt>
<dd>
SourceForge hosts a number of mailing lists for openMSX.
None of these mailing lists is high-volume; expect just a couple
of messages per week. In practice, IRC has replaced these mailing
lists.
</dd>
</dl>
</div>
</body>
</html>