Skip to content

Commit e0d1206

Browse files
authored
Merge pull request #2961 from PaulBoersma/master
-
2 parents a75418e + 3253555 commit e0d1206

52 files changed

Lines changed: 765 additions & 398 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/Welcome.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<tr>
4848
<td bgcolor="#FFFFFF" colspan=2>
4949
<font size="+2"><b>Questions, problems, solutions:</b></font><br>
50-
&nbsp;&nbsp;&nbsp;1. Many problems can be solved by upgrading to <a href="manual/What_s_new_.html">version 6.4.39</a> of Praat.<br>
50+
&nbsp;&nbsp;&nbsp;1. Many problems can be solved by upgrading to <a href="manual/What_s_new_.html">version 6.4.40</a> of Praat.<br>
5151
&nbsp;&nbsp;&nbsp;2. Make sure you have read the <a href="manual/Intro.html">Intro</a> from Praat’s <b>Help</b> menu.<br>
5252
&nbsp;&nbsp;&nbsp;3. If that does not help, use the <b>Search</b> button in Praat’s manual window.<br>
5353
&nbsp;&nbsp;&nbsp;4. Or consult the <a href="manual/FAQ__Frequently_Asked_Questions_.html">Frequently Asked Questions</a> directly.<br>

docs/download_chrome.html

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -54,23 +54,23 @@
5454
because a Linux edition for Intel64 processors is available from
5555
the download page that you are reading now. Here it is:</p>
5656
<dl>
57-
<dd><b><a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_chrome-intel64.tar.gz">praat6439_chrome-intel64.tar.gz</a></b> (13 July 2025; 26.1 MB)
57+
<dd><b><a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_chrome-intel64.tar.gz">praat6440_chrome-intel64.tar.gz</a></b> (16 August 2025; 26.1 MB)
5858
</dl>
5959
<p>If the next-to-last word is <b>aarch64</b> instead,
6060
this means that your Chromebook is powered by an ARM64 (i.e. 64-bit ARM) processor.
6161
Again, you are lucky, because a Linux edition for ARM64 processors is also available:</p>
6262
<dl>
63-
<dd><b><a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_chrome-arm64.tar.gz">praat6439_chrome-arm64.tar.gz</a></b> (13 July 2025; 24.9 MB)
63+
<dd><b><a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_chrome-arm64.tar.gz">praat6440_chrome-arm64.tar.gz</a></b> (16 August 2025; 24.9 MB)
6464
</dl>
6565

6666
<p>When you download one of these two files, it will appear in your <b>Downloads</b> folder,
6767
which is another folder under <b>My files</b> (if the file doesn’t download when you click on it,
6868
then try right-click and choose <b>Save link as...</b> in your browser).</p>
6969

70-
<p>Once the file praat6439_chrome-intel64.tar.gz or praat6439_chrome-arm64.tar.gz
70+
<p>Once the file praat6440_chrome-intel64.tar.gz or praat6440_chrome-arm64.tar.gz
7171
is in your <b>Downloads</b> folder, drag it from your <b>Downloads</b> folder to your <b>Linux files</b> folder.</p>
7272

73-
<p>After you confirm that your <b>Linux files</b> folder contains praat6439_chrome-intel64.tar.gz (or its ARM64 friend),
73+
<p>After you confirm that your <b>Linux files</b> folder contains praat6440_chrome-intel64.tar.gz (or its ARM64 friend),
7474
you are ready to install Praat via the Terminal. Thus, open your Terminal app again and type:</p>
7575
<code>
7676
&nbsp;&nbsp;&nbsp;ls -al
@@ -79,7 +79,7 @@
7979
the resulting list shows a number of hidden files, with names that start with “.”,
8080
but it should also show you the file that you downloaded, probably in a line like this:</p>
8181
<code>
82-
-rw-r--r-- 1 yourname yourname 14764270 Nov 7 09:52 praat6439_chrome-intel64.tar.gz
82+
-rw-r--r-- 1 yourname yourname 14764270 Nov 7 09:52 praat6440_chrome-intel64.tar.gz
8383
</code>
8484
<p>Here, 14764270 is the size of the file in bytes (i.e., the file is 14.7 MB big), “Nov 7 09:52” is the date and time
8585
at which the file was created (i.e. downloaded or copied), and “yourname” is the name
@@ -89,21 +89,21 @@
8989
so you have to uncompress it by typing the following command into the Terminal window
9090
(i.e. type the text, followed by Enter):</p>
9191
<code>
92-
&nbsp;&nbsp;&nbsp;gunzip praat6439_chrome-intel64.tar.gz
92+
&nbsp;&nbsp;&nbsp;gunzip praat6440_chrome-intel64.tar.gz
9393
</code>
9494
<p>After this command, do</p>
9595
<code>
9696
&nbsp;&nbsp;&nbsp;ls -al
9797
</code>
9898
<p>again, and you see that the file has been unpacked to something that is 55.2 MB big:</p>
9999
<code>
100-
-rw-r--r-- 1 yourname yourname 55200000 Jan &nbsp;3 00:51 praat6439_chrome-intel64.tar
100+
-rw-r--r-- 1 yourname yourname 55200000 Jan &nbsp;3 00:51 praat6440_chrome-intel64.tar
101101
</code>
102102
<p>This file is still not the Praat app. The extension <b>.tar</b> means that the file
103103
has been archived by <b>tar</b>,
104104
so you have to unpack it again with the following command:</p>
105105
<code>
106-
&nbsp;&nbsp;&nbsp;tar xvf praat6439_chrome-intel64.tar
106+
&nbsp;&nbsp;&nbsp;tar xvf praat6440_chrome-intel64.tar
107107
</code>
108108
<p>where <b> xvf</b> stands for eXtract - Verbose - File. After this command, do</p>
109109
<code>
@@ -114,7 +114,7 @@
114114
in the <b>Linux files</b> folder):</p>
115115
<code>
116116
-rwxr-xr-x 1 yourname yourname 55235168 Jan &nbsp;3 00:51 praat<br>
117-
-rw-r--r-- 1 yourname yourname 55200000 Jan &nbsp;3 00:51 praat6439_chrome-intel64.tar
117+
-rw-r--r-- 1 yourname yourname 55200000 Jan &nbsp;3 00:51 praat6440_chrome-intel64.tar
118118
</code>
119119
<p>You see that the file <b>praat</b> has the date and time at which it was originally
120120
created by the authors of Praat. The three little <i>x</i>es in <b>-rwxr-xr-x</b> mean
@@ -138,9 +138,9 @@
138138
<p>This is the name by which the <b>Linux files</b> folder is known to Linux!
139139
So they are the same folder, known under two different names,
140140
depending on whether you look from the ChromeOS side or from the Linux side.</p>
141-
<p>You no longer need the file praat6439_chrome-intel64.tar. You can throw it away by typing</p>
141+
<p>You no longer need the file praat6440_chrome-intel64.tar. You can throw it away by typing</p>
142142
<code>
143-
&nbsp;&nbsp;&nbsp;rm praat6439_chrome-intel64.tar
143+
&nbsp;&nbsp;&nbsp;rm praat6440_chrome-intel64.tar
144144
</code>
145145
<p>where <code>rm</code> stands for “remove”.</p>
146146

@@ -151,12 +151,12 @@
151151
<p>If instead of</p>
152152
<code>
153153
-rwxr-xr-x 1 yourname yourname 55235168 Jan &nbsp;3 00:51 praat<br>
154-
-rw-r--r-- 1 yourname yourname 55200000 Jan &nbsp;3 00:51 praat6439_chrome-intel64.tar
154+
-rw-r--r-- 1 yourname yourname 55200000 Jan &nbsp;3 00:51 praat6440_chrome-intel64.tar
155155
</code>
156156
<p>you see</p>
157157
<code>
158158
-rw-r--r-- 1 yourname yourname 55235168 Jan &nbsp;3 00:51 praat<br>
159-
-rw-r--r-- 1 yourname yourname 55200000 Jan &nbsp;3 00:51 praat6439_chrome-intel64.tar
159+
-rw-r--r-- 1 yourname yourname 55200000 Jan &nbsp;3 00:51 praat6440_chrome-intel64.tar
160160
</code>
161161
<p>then the file <b>praat</b> is not executable, i.e. the command</p>
162162
<code>

docs/download_linux.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
is to download Praat from this page. Click on the appropriate compressed archive:</p>
1010
<dl>
1111
<dd><b>normal edition</b> (for interactive work as well as scripting):<br>
12-
&nbsp;- for Intel64/AMD64/x64 (on Ubuntu 22.04 and later): <b><a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_linux-intel64.tar.gz">praat6439_linux-intel64.tar.gz</a></b> (13 July 2025; 28.3 MB) &nbsp; <b><-- you probably want this</b><br>
13-
&nbsp;- for ARM64/AArch64 (on Ubuntu 22.04 and later): <b><a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_linux-arm64.tar.gz">praat6439_linux-arm64.tar.gz</a></b> (13 July 2025; 27.2 MB)<br>
14-
&nbsp;- for s390x: <b><a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_linux-s390x.tar.gz">praat6439_linux-s390x.tar.gz</a></b> (13 July 2025; 29.0 MB)
12+
&nbsp;- for Intel64/AMD64/x64 (on Ubuntu 22.04 and later): <b><a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_linux-intel64.tar.gz">praat6440_linux-intel64.tar.gz</a></b> (16 August 2025; 28.3 MB) &nbsp; <b><-- you probably want this</b><br>
13+
&nbsp;- for ARM64/AArch64 (on Ubuntu 22.04 and later): <b><a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_linux-arm64.tar.gz">praat6440_linux-arm64.tar.gz</a></b> (16 August 2025; 27.2 MB)<br>
14+
&nbsp;- for s390x: <b><a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_linux-s390x.tar.gz">praat6440_linux-s390x.tar.gz</a></b> (16 August 2025; 29.0 MB)
1515
<dd>&nbsp;
1616
<dd><b>barren server edition</b> (no GUI, no network, no sound, no graphics):<br>
17-
&nbsp;- for Intel64/AMD64/x64 (on Ubuntu 22.04 and later): <b><a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_linux-intel64-barren.tar.gz">praat6439_linux-intel64-barren.tar.gz</a></b> (13 July 2025; 29.0 MB)<br>
18-
&nbsp;- for ARM64/AArch64 (on Ubuntu 22.04 and later): <b><a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_linux-arm64-barren.tar.gz">praat6439_linux-arm64-barren.tar.gz</a></b> (13 July 2025; 27.8 MB)<br>
19-
&nbsp;- for s390x: <b><a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_linux-s390x-barren.tar.gz">praat6439_linux-s390x-barren.tar.gz</a></b> (13 July 2025; 29.4 MB)
17+
&nbsp;- for Intel64/AMD64/x64 (on Ubuntu 22.04 and later): <b><a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_linux-intel64-barren.tar.gz">praat6440_linux-intel64-barren.tar.gz</a></b> (16 August 2025; 29.0 MB)<br>
18+
&nbsp;- for ARM64/AArch64 (on Ubuntu 22.04 and later): <b><a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_linux-arm64-barren.tar.gz">praat6440_linux-arm64-barren.tar.gz</a></b> (16 August 2025; 27.8 MB)<br>
19+
&nbsp;- for s390x: <b><a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_linux-s390x-barren.tar.gz">praat6440_linux-s390x-barren.tar.gz</a></b> (16 August 2025; 29.4 MB)
2020
</dl>
2121
<p>Unpack with <b>gunzip</b> and <b>tar xvf</b>. This will create the executable file <b>praat</b>.
2222
You can remove the <b>tar</b> file.</p>

docs/download_mac.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
<p>To download the latest version of the <b>MacOS</b> edition of <b>Praat</b>,
99
click once on the following disk image file:</p>
1010
<dl>
11-
<dd>64-bit edition (MacOS 10.11-10.15 and macOS 11-15, for Intel and Apple Silicon): <b><a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_mac.dmg">praat6439_mac.dmg</a></b> (13 July 2025; 46.0 MB)
11+
<dd>64-bit edition (MacOS 10.11-10.15 and macOS 11-15, for Intel and Apple Silicon): <b><a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_mac.dmg">praat6440_mac.dmg</a></b> (16 August 2025; 46.0 MB)
1212
</dl>
1313
<p>After downloading, your web browser might open the <b>.dmg</b> file directly; you will then see the program <b>Praat</b> or <b>Praat.app</b>.
1414
If your browser did not open the <b>.dmg</b> file,
1515
then you should double-click the <b>.dmg</b> file in the <b>Downloads</b> window (or in the <b>Downloads</b> folder in your home directory);
1616
after double-clicking you may see the program <b>Praat</b> or <b>Praat.app</b> directly,
17-
or you may see a disk icon called <b>Praat6439</b>, which when you open it will show you the program <b>Praat</b> or <b>Praat.app</b>.
17+
or you may see a disk icon called <b>Praat6440</b>, which when you open it will show you the program <b>Praat</b> or <b>Praat.app</b>.
1818
To install Praat, just drag the program <b>Praat</b> or <b>Praat.app</b> to your <b>Applications</b> folder (or anywhere else).</p>
1919

2020
<hr><h3>2. How to start</h3>
@@ -91,7 +91,7 @@
9191
<p>For details see <a href="manual/Scripting_6_9__Calling_from_the_command_line.html">Calling from the command line</a> in the Scripting manual.</p>
9292

9393
<hr><h3>7. Editions of Praat for older computers or operating system versions</h3>
94-
<p>On a modern computer you would use <a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_mac.dmg">Praat 6.4.39</a>, as suggested above.
94+
<p>On a modern computer you would use <a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_mac.dmg">Praat 6.4.40</a>, as suggested above.
9595
If that does not work on your computer, you can probably try an older version:</p>
9696
<ul>
9797
<li>On MacOS 10.9 or 10.10, try <a href="https://github.com/praat/praat/releases/download/v6.3.09/praat6309_mac.dmg">Praat 6.3.09</a> of 2 March 2023

docs/download_raspberrypi.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<p>To download the latest version of the <b>Raspberry Pi</b> edition of <b>Praat</b>,
1010
click on one of the following compressed archives:</p>
1111
<ul>
12-
<li>32-bit edition (ARMv7 processor, e.g. the Pi 4B): <b><a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_rpi-armv7.tar.gz">praat6439_rpi-armv7.tar.gz</a></b> (13 July 2025; 24.9 MB)
13-
<li>64-bit edition (ARM64/Aarch64 processor, e.g. the Pi 400): <b><a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_linux-armv64.tar.gz">praat6439_linux-armv64.tar.gz</a></b> (13 July 2025; 27.2 MB; this is the general Linux ARM64 edition)
12+
<li>32-bit edition (ARMv7 processor, e.g. the Pi 4B): <b><a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_rpi-armv7.tar.gz">praat6440_rpi-armv7.tar.gz</a></b> (16 August 2025; 24.9 MB)
13+
<li>64-bit edition (ARM64/Aarch64 processor, e.g. the Pi 400): <b><a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_linux-armv64.tar.gz">praat6440_linux-armv64.tar.gz</a></b> (16 August 2025; 27.2 MB; this is the general Linux ARM64 edition)
1414
</ul>
1515
<p>Unpack with <b>gunzip</b> and <b>tar xvf</b>. This will create the executable file <b>praat</b>.
1616
You can remove the <b>tar</b> file.</p>

docs/download_win.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<p>To download the latest version of the <b>Windows</b> (7, 8, 10, 11...) edition of <b>Praat</b>,
99
download one of the following zip folders to your desktop:</p>
1010
<dl>
11-
<dd>64-bit edition (also known as Intel64, AMD64, x86_64, x64...): <b><a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_win-intel64.zip">praat6439_win-intel64.zip</a></b> (13 July 2025; 22.0 MB) &nbsp; <b>&lt;-- you probably want this</b>
12-
<dd>ARM64 edition: <b><a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_win-arm64.zip">praat6439_win-arm64.zip</a></b> (13 July 2025; 20.9 MB)
13-
<dd>32-bit edition (also known as Intel32, IA-32, x86, i386, i686...): <b><a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_win-intel32.zip">praat6439_win-intel32.zip</a></b> (13 July 2025; 22.5 MB)
11+
<dd>64-bit edition (also known as Intel64, AMD64, x86_64, x64...): <b><a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_win-intel64.zip">praat6440_win-intel64.zip</a></b> (16 August 2025; 22.0 MB) &nbsp; <b>&lt;-- you probably want this</b>
12+
<dd>ARM64 edition: <b><a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_win-arm64.zip">praat6440_win-arm64.zip</a></b> (16 August 2025; 20.9 MB)
13+
<dd>32-bit edition (also known as Intel32, IA-32, x86, i386, i686...): <b><a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_win-intel32.zip">praat6440_win-intel32.zip</a></b> (16 August 2025; 22.5 MB)
1414
</dl>
1515

1616
<hr><h3>2. Which of the three editions do I need?</h3>
@@ -105,10 +105,10 @@
105105
<p>For details see <a href="manual/Scripting_6_9__Calling_from_the_command_line.html">Calling from the command line</a> in the Scripting manual.</p>
106106

107107
<hr><h3>8. Editions of Praat for older operating system versions</h3>
108-
<p>On a modern computer you would use <a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_win-intel64.zip">praat6439_win-intel64.zip</a>,
109-
or <a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_win-arm64.zip">praat6439_win-arm64.zip</a>, as suggested above.
108+
<p>On a modern computer you would use <a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_win-intel64.zip">praat6440_win-intel64.zip</a>,
109+
or <a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_win-arm64.zip">praat6440_win-arm64.zip</a>, as suggested above.
110110
If that does not work on your computer, you can probably use
111-
<a href="https://github.com/praat/praat/releases/download/v6.4.39/praat6439_win32.zip">praat6439_win32.zip</a> (as suggested above),
111+
<a href="https://github.com/praat/praat/releases/download/v6.4.40/praat6440_win32.zip">praat6440_win32.zip</a> (as suggested above),
112112
or try an older version:</p>
113113
<ul>
114114
<li>If you have Windows 2000 or XP or Vista, try <a href="https://github.com/praat/praat/releases/download/v6.1.51/praat6151_win32.zip">praat6151_win32.zip</a> of 22 July 2021

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<tr>
4848
<td bgcolor="#FFFFFF" colspan=2>
4949
<font size="+2"><b>Questions, problems, solutions:</b></font><br>
50-
&nbsp;&nbsp;&nbsp;1. Many problems can be solved by upgrading to <a href="manual/What_s_new_.html">version 6.4.39</a> of Praat.<br>
50+
&nbsp;&nbsp;&nbsp;1. Many problems can be solved by upgrading to <a href="manual/What_s_new_.html">version 6.4.40</a> of Praat.<br>
5151
&nbsp;&nbsp;&nbsp;2. Make sure you have read the <a href="manual/Intro.html">Intro</a> from Praat’s <b>Help</b> menu.<br>
5252
&nbsp;&nbsp;&nbsp;3. If that does not help, use the <b>Search</b> button in Praat’s manual window.<br>
5353
&nbsp;&nbsp;&nbsp;4. Or consult the <a href="manual/FAQ__Frequently_Asked_Questions_.html">Frequently Asked Questions</a> directly.<br>

docs/manual/Acknowledgments.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
<dd style="position:relative;padding-left:1em;text-indent:-2em">&nbsp;<a href="LAPACK.html">LAPACK</a>: public-domain numeric algorithms by Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd., Courant Institute, Argonne National Lab, and Rice University, C edition by Peng Du, Keith Seymour and Julie Langdou, version 3.2.1 of June 2009.</dd>
4040
<dd style="position:relative;padding-left:1em;text-indent:-2em">&nbsp;Regular expressions by Henry Spencer, Mark Edel, Christopher Conrad, Eddy De Greef (<a href="General_Public_License__version_2.html">GPL 2</a> or later).</dd>
4141
<dd style="position:relative;padding-left:1em;text-indent:-2em">&nbsp;Unicode Character Database by Unicode Inc., version 16.0 of August 2024 (<a href="Unicode_Inc__license_agreement.html">Unicode Inc. license agreement</a>).</dd>
42+
<dd style="position:relative;padding-left:1em;text-indent:-2em">&nbsp;Quickselect and Median of ninthers, by Andrei Alexandrescu 2016 (<a href="Boost_Software_License_1_0.html">Boost Software License 1.0</a>).</dd>
4243
</dl>
4344
<p>Our own parts of the source code of Praat are distributed either under the <a href="General_Public_License__version_2.html">General Public License, version 2</a> or later, or under the <a href="General_Public_License__version_3.html">General Public License, version 3</a> or later. Because of this, combined with the inclusion of the above software written by others, the whole of Praat is distributed under the <a href="General_Public_License__version_3.html">General Public License, version 3</a> or later.</p>
4445
<p>For their financial support during the development of Praat:</p>

0 commit comments

Comments
 (0)