forked from mackyle/xquartz-info
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathindex.html
87 lines (77 loc) · 3.49 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
---
layout: default
stylesheet: landing.css
---
<p class="overview">
The XQuartz project is an open-source effort to develop a version of the <a href="http://www.x.org/">X.Org X Window System</a> that runs on macOS. Together with supporting libraries and applications, it forms the X11.app that Apple shipped with OS X versions 10.5 through 10.7.
</p>
<h2>Quick Download</h2>
<table class="download-list">
<thead>
<tr class="header">
<th>Download</th><th>Version</th><th>Released</th><th>Info</th>
</tr>
<tr class="separator"><td colspan="4"></td></tr>
</thead>
<tbody>
<tr id="mav"><td><a href="https://github.com/XQuartz/XQuartz/releases/download/XQuartz-2.8.5/XQuartz-2.8.5.pkg"><span class="download-icon"></span>XQuartz-2.8.5.pkg</a></td>
<td>2.8.5</td>
<td>2023-01-26</td>
<td>For macOS 10.9 or later</td></tr>
<tr id="snow" class="collapsed"><td><a href="https://github.com/XQuartz/XQuartz/releases/download/XQuartz-2.7.11/XQuartz-2.7.11.dmg"><span class="download-icon"></span>XQuartz-2.7.11.dmg</a></td>
<td>2.7.11</td>
<td>2016-10-29</td>
<td>For OS X 10.6.3 or later</td></tr>
<tr id="leopard" class="collapsed"><td><a href="https://github.com/XQuartz/XQuartz/releases/download/XQuartz-2.6.3-Leopard/X11-2.6.3.dmg"><span class="download-icon"></span>X11-2.6.3.dmg</a></td>
<td>2.6.3</td>
<td>2011-07-20</td>
<td>For OS X 10.5.x (final Leopard release)</td></tr>
</tbody>
</table>
<span id="leopard2" class="collapsed">
<h2>Important Info for 10.5 Users</h2>
<p>
OS X Software Updates have included some of the work done by the XQuartz project, but for various reasons, Apple cannot ship the latest and greatest version offered by the XQuartz site. Since the XQuartz X11 package clobbers Apple's X11.app, their software update will clobber the XQuartz X11 package. Because of this, you may experience conflicts after doing a Software Update from Apple. Please re-install the latest XQuartz X11 release for Leopard after installing a system software update to OS X 10.5.x Leopard.
</p>
</span>
<script type="text/javascript">
/* If we can detect OS X 10.5-10.8 in the user agent string,
* set #mav to collapse and #leopard or #snow to visible
*/
try {
if (/Mac[ ]+OS[ ]+X[ ]+10[._]5[^0-9]/i.test(window.navigator.userAgent)) {
var mav, leopard, leopard2;
mav = document.getElementById('mav');
leopard = document.getElementById('leopard');
leopard2 = document.getElementById('leopard2');
if (mav) {
if (leopard) {
leopard.className = '';
if (leopard2) {
leopard2.className = '';
}
mav.className = 'collapsed';
}
}
} else if (/Mac[ ]+OS[ ]+X[ ]+10[._][6-8][^0-9]/i.test(window.navigator.userAgent)) {
var mav, snow;
mav = document.getElementById('mav');
snow = document.getElementById('snow');
if (mav) {
if (snow) {
snow.className = '';
mav.className = 'collapsed';
}
}
}
}
catch(e) {
/* nothing to do */
}
</script>
<h2>License Info</h2>
<p>
An XQuartz installation consists of many individual pieces of software which have various licenses. The X.Org software components’ licenses are discussed on the
<a href="http://www.x.org/archive/current/doc/xorg-docs/License.html">X.Org Foundation Licenses page</a>.
The <a href="https://github.com/XQuartz/quartz-wm">quartz-wm</a> window manager included with the XQuartz distribution uses the <a href="https://github.com/XQuartz/quartz-wm/blob/master/COPYING">Apple Public Source License Version 2</a>.
</p>