forked from mackyle/xquartz-info
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (94 loc) · 4.19 KB
/
Copy pathindex.html
File metadata and controls
105 lines (94 loc) · 4.19 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
---
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="highsierra"><td><a href="https://github.com/XQuartz/XQuartz/releases/download/XQuartz-2.8.6/XQuartz-2.8.6.pkg"><span class="download-icon"></span>XQuartz-2.8.6.pkg</a></td>
<td>2.8.6</td>
<td>2026-07-14</td>
<td>For macOS 10.13 or later</td></tr>
<tr id="mav" class="collapsed"><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">
/* By default we advertise the newest release (#highsierra, macOS 10.13+).
* If we can detect an older OS X version in the user agent string, collapse
* #highsierra and reveal the appropriate older release instead:
* 10.5 -> #leopard (+ #leopard2)
* 10.6 - 10.8 -> #snow
* 10.9 - 10.12 -> #mav
*/
try {
var ua = window.navigator.userAgent;
var highsierra = document.getElementById('highsierra');
if (/Mac[ ]+OS[ ]+X[ ]+10[._]5[^0-9]/i.test(ua)) {
var leopard, leopard2;
leopard = document.getElementById('leopard');
leopard2 = document.getElementById('leopard2');
if (highsierra) {
if (leopard) {
leopard.className = '';
if (leopard2) {
leopard2.className = '';
}
highsierra.className = 'collapsed';
}
}
} else if (/Mac[ ]+OS[ ]+X[ ]+10[._][6-8][^0-9]/i.test(ua)) {
var snow;
snow = document.getElementById('snow');
if (highsierra) {
if (snow) {
snow.className = '';
highsierra.className = 'collapsed';
}
}
} else if (/Mac[ ]+OS[ ]+X[ ]+10[._](9|1[0-2])[^0-9]/i.test(ua)) {
var mav;
mav = document.getElementById('mav');
if (highsierra) {
if (mav) {
mav.className = '';
highsierra.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>