-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
128 lines (100 loc) · 3.21 KB
/
contact.html
File metadata and controls
128 lines (100 loc) · 3.21 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel=stylesheet type="text/css" href="stylesheets/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>
</span>
<span class="nav-row">
<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>
</span>
<span class="nav-row">
<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>
<div class="links">
<span class="nav-row">
<a href="about.html" >About</a>
</span>
<span class="nav-row">
<a href="history.html" >History</a>
</span>
<span class="nav-row">
<a href="people.html" >People</a>
</span>
<span class="nav-row">
<a href="contact.html" class="active" >Contact</a>
</span>
</div>
<div class="updated-date"> Updated 2026-02-28 </div>
</footer>
</body>
</html>