-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
80 lines (72 loc) · 2.71 KB
/
contact.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Yoshimi - Contact</title>
<link rel=stylesheet type="text/css" href="style.css" />
<link rel="icon" href="img/favicon.png" type="image/x-icon" />
</head>
<body>
<header>
<div id="logo-wrapper">
<a href="./"><img id="logo" src="img/logo.png" alt="Yoshimi"/></a>
<a href="./"><img id="robot" src="img/robot_head.png" alt="Pink robot"/></a>
</div>
<div id="subtitle">
Software synthesizer for Linux
</div>
</header>
<div class="nav-wrapper">
<nav>
<span class="nav-row"><a href="./" >Home</a><a href="downloads.html" >Downloads</a></span><span class="nav-row"><a href="screenshots.html" >Screenshots</a></span><span class="nav-row"><a href="demos.html" >Demos</a><a href="help.html" >Help</a></span>
</nav>
</div>
<div id="main-wrapper">
<main>
<h1>Get in touch!</h1>
<p>
Here are the avenues of communication if you want to help out or have questions or suggestions related to the project.
</p>
<h2 id="mailing-list">Mailing list</h2>
<p>
Most communication and announcements happen via the mailing list -
an age-old means of communication that is both asynchronous and reliable.
You can find more information about it, and sign up to it
<a href="https://www.freelists.org/list/yoshimi" target="_blank">here</a>.
</p>
<h2>Project pages</h2>
<p>
Yoshimi's primary project page is on
<a href="https://sourceforge.net/projects/yoshimi/">SourceForge</a> where
you can find downloads, get news, post reviews and create bug tickets.
</p>
<p>
If SourceForge is down, you can find a mirror of the code available on
<a href="https://www.github.com/yoshimi/yoshimi/">GitHub</a>.
</p>
<h2>Reporting bugs</h2>
<p>
If you find a bug in Yoshimi, please inform us by creating a bug report.
</p>
<p>
With a SourceForge account, the best (and preferred) way is to create new ticket
<a href="https://sourceforge.net/p/yoshimi/bugs/">here</a>.
</p>
<p>
If instead you have a GitHub account and don't want to create a SourceForge account,
you can report your bug in a new <a href="https://www.github.com/yoshimi/yoshimi/issues">issue</a>
on GitHub instead.
</p>
<p>
Sometimes a bug in an older version of Yoshimi may already be
fixed by the time you discover it. If you are able, please check
if the bug is still present in the latest build before reporting it.
</p>
</main>
</div>
<footer>
<a href="about.html" >About</a><a href="history.html" >History</a><a href="people.html" >People</a><a href="contact.html" style="font-weight:bold">Contact</a>
</footer>
</body>
</html>