-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
127 lines (118 loc) · 5.78 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en-US"><head>
<title>Schism Tracker</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta property="og:title" content="Schism Tracker">
<meta property="og:type" content="website">
<meta property="og:description" content="An old-school sample-based music composition tool.">
<meta property="og:url" content="https://schismtracker.org/">
<meta property="og:image" content="https://schismtracker.org/icon.png">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="icon.png">
</head><body>
<img id="logo" width="290" height="50" alt="Schism Tracker" src="logo.png">
<section>
<h1><span>Overview</span></h1>
<div>
<p>
<b>Schism Tracker</b> is a free and open-source reimplementation of <a
href="https://github.com/schismtracker/schismtracker/wiki/Impulse-Tracker">Impulse
Tracker</a>, a program used to create high quality music without the
requirements of specialized, expensive equipment, and with a unique
"finger feel" that is difficult to replicate in part. The player is
based on a highly modified version of the <a
href="https://openmpt.org/legacy_software">ModPlug</a> engine, with a
number of bugfixes and changes to <a
href="https://github.com/schismtracker/schismtracker/wiki/Player-abuse-tests">improve IT
playback</a>.
</p>
<p>
Where Impulse Tracker was limited to i386-based systems running MS-DOS,
Schism Tracker runs on almost any platform that <a
href="https://www.libsdl.org/">SDL</a> supports, and has been
successfully built for Windows, Mac OS X, Linux, FreeBSD, OpenBSD,
AmigaOS, BeOS, and even <a
href="http://www.wiibrew.org/wiki/Schism_Tracker">the Wii</a>. Schism
will most likely build on any architecture supported by GCC4 (e.g.
alpha, m68k, arm, etc.) but it will probably not be as well-optimized
on many systems.
</p>
</div>
</section>
<section>
<h1><span>Download</span></h1>
<div>
<p><strong>
Latest release:
<a href="https://github.com/schismtracker/schismtracker/releases/tag/20241021">20241021</a>
</strong></p>
<ul>
<li>
Windows:
<ul>
<li>
<a href="https://github.com/schismtracker/schismtracker/releases/download/20241021/schismtracker-20241021-windows-i686.zip">Windows 32-bit build</a>
</li><li>
<a href="https://github.com/schismtracker/schismtracker/releases/download/20241021/schismtracker-20241021-windows-x86_64.zip">Windows 64-bit build</a>
</li><li>
<a href="https://github.com/schismtracker/schismtracker/releases/download/20241021/schismtracker-20241021-windows-armv7.zip">Windows 32-bit ARM build</a>
</li><li>
<a href="https://github.com/schismtracker/schismtracker/releases/download/20241021/schismtracker-20241021-windows-aarch64.zip">Windows 64-bit ARM build</a>
</li>
</ul>
</li>
<li>
Mac:
<ul>
<li>
<a href="https://github.com/schismtracker/schismtracker/releases/download/20241021/schismtracker-20241021-macos.zip">macOS Universal (Apple Silicon, Intel 64-bit, PowerPC) build</a>
</li>
</ul>
</li>
<li>
Linux:
<ul>
<li>
<a href="https://github.com/schismtracker/schismtracker/releases/download/20241021/schismtracker-20241021-linux.zip">Linux x86_64 build</a>
</li>
</ul>
</li>
<li>
Others:
<ul>
<li>
<a href="https://github.com/schismtracker/schismtracker/releases/download/20241021/schismtracker-20241021-wii.zip">Wii build</a>
</li>
<li>
<a href="https://github.com/schismtracker/schismtracker/releases/download/20241021/schismtracker-20241021-wiiu.zip">Wii U build</a>
</li>
</ul>
</li>
<li>
<a href="https://github.com/schismtracker/schismtracker/releases/download/20241021/schismtracker-20241021.source.tar.gz">Source code (tar.gz)</a>
</li>
</ul>
</div>
</section>
<section>
<h1><span>Development</span></h1>
<div>
<p>
The bleeding-edge current source can be downloaded using Git:
</p>
<p><code>git clone https://github.com/schismtracker/schismtracker</code></p>
<p>
Those interested in development can also point a web browser at
<a href="https://github.com/schismtracker/schismtracker">the repository</a>
to browse the source tree, change logs, etc.
</p>
<p>
You might also want to peruse the build notes for <a
href="https://github.com/schismtracker/schismtracker/blob/master/docs/building_on_windows.md">Windows</a>,
<a href="https://github.com/schismtracker/schismtracker/blob/master/docs/building_on_osx.md">OS X</a>, or
<a href="https://github.com/schismtracker/schismtracker/blob/master/docs/building_on_linux.md">Linux</a>.
</p>
</div>
</section>
</body></html>