Module: website
Branch: master
Commit: ea3002d934aa4d86d6e058698e8e16108cfd1d77
URL: http://source.winehq.org/git/website.git/?a=commit;h=ea3002d934aa4d86d6e058…
Author: Łukasz Wojniłowicz <lukasz.wojnilowicz(a)gmail.com>
Date: Sat Apr 2 07:55:34 2016 +0200
Polish translation for release 1.9.7
Signed-off-by: Jeremy Newman <jnewman(a)codeweavers.com>
---
news/pl/2016040201.xml | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/news/pl/2016040201.xml b/news/pl/2016040201.xml
new file mode 100644
index 0000000..753d302
--- /dev/null
+++ b/news/pl/2016040201.xml
@@ -0,0 +1,17 @@
+<news>
+<date>Kwiecień 2, 2016</date>
+<title>Wydano Wine 1.9.7</title>
+<body>
+<p> Wydanie rozwojowe Wine 1.9.7 jest już dostępne.</p>
+<p> <a href="{$root}/announce/1.9.7">Co nowego</a> w tym wydaniu:
+<ul>
+ <li>Postęp w kierunku strumienia poleceń WineD3D.</li>
+ <li>Szersze wsparcie Modelu Cieniowania 5.</li>
+ <li>Obsługa wyjątków C++ na x86-64.</li>
+ <li>Wsparcie dla bibliotek importowanych statycznie w stylu Windowsa.</li>
+ <li>Poprawki do wydajności w programie zapisującym XML.</li>
+ <li>Rozmaite poprawki błędów.</li>
+</ul>
+<p>Źródło jest <a href="//dl.winehq.org/wine/source/1.9/wine-1.9.7.tar.bz2">już dostępne</a>.
+Paczki binarne są w trakcie budowy i ukażą się wkrótce w przeznaczonych dla nich <a href="{$root}/download">pobieralniach</a>.
+</p></body></news>
Module: website
Branch: master
Commit: b2df0334dd53070d11e811e8a44d2205f50f33c8
URL: http://source.winehq.org/git/website.git/?a=commit;h=b2df0334dd53070d11e811…
Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com>
Date: Sat Apr 2 09:05:33 2016 +0200
French translation for release 1.9.7
Signed-off-by: Frédéric Delanoy <frederic.delanoy(a)gmail.com>
Signed-off-by: Jeremy Newman <jnewman(a)codeweavers.com>
---
news/fr/2016040201.xml | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/news/fr/2016040201.xml b/news/fr/2016040201.xml
new file mode 100644
index 0000000..b40ca71
--- /dev/null
+++ b/news/fr/2016040201.xml
@@ -0,0 +1,16 @@
+<news>
+<date>2 avril 2016</date>
+<title>Sortie de Wine 1.9.7</title>
+<body>
+<p>La version de développement 1.9.7 de Wine est disponible.</p>
+<p><a href="{$root}/announce/1.9.7">Nouveautés</a> de cette version :
+<ul>
+ <li>Travail supplémentaire en vue du flux de commandes WineD3D.</li>
+ <li>Meilleure prise en charge des shaders Shader Model 5.</li>
+ <li>Gestion des exceptions C++ sous x86-64.</li>
+ <li>Prise en charge des bibliothèques d'import statiques de type Windows.</li>
+ <li>Correctifs de performances dans le rédacteur XML.</li>
+ <li>Diverses corrections de bugs.</li>
+</ul></p>
+<p>Le <a href="//dl.winehq.org/wine/source/1.9/wine-1.9.7.tar.bz2">code source</a> est disponible dès à présent. Les paquets binaires sont en cours de construction, et apparaîtront sous peu sur leurs <a href="{$root}/download">sites de téléchargement</a> respectifs.
+</p></body></news>
Module: tools
Branch: master
Commit: 629db98627c2514367ab111f68dfa8ea0c4a5dd2
URL: http://source.winehq.org/git/tools.git/?a=commit;h=629db98627c2514367ab111f…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Mon Apr 4 12:29:10 2016 +0200
testbot/TestAgent: Make a couple of Wait() variable names more explicit.
These timeout and deadline are specific to this Wait() operation unlike
the general TestAgent timeout and deadline fields.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
testbot/lib/WineTestBot/TestAgent.pm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/testbot/lib/WineTestBot/TestAgent.pm b/testbot/lib/WineTestBot/TestAgent.pm
index 43481a9..7f1fc24 100644
--- a/testbot/lib/WineTestBot/TestAgent.pm
+++ b/testbot/lib/WineTestBot/TestAgent.pm
@@ -1171,7 +1171,7 @@ sub Run($$$;$$$)
=item C<Wait()>
-Waits at most Timeout seconds for the specified remote process to terminate.
+Waits at most WaitTimeout seconds for the specified remote process to terminate.
The Keepalive specifies how often, in seconds, to check that the remote end
is still alive and reachable.
@@ -1180,21 +1180,21 @@ is still alive and reachable.
sub Wait($$$;$)
{
- my ($self, $Pid, $Timeout, $Keepalive) = @_;
- debug("Wait $Pid, ", defined $Timeout ? $Timeout : "<undef>", ", ",
+ my ($self, $Pid, $WaitTimeout, $Keepalive) = @_;
+ debug("Wait $Pid, ", defined $WaitTimeout ? $WaitTimeout : "<undef>", ", ",
defined $Keepalive ? $Keepalive : "<undef>", "\n");
my $Result;
$Keepalive ||= 0xffffffff;
my $OldTimeout = $self->{timeout};
- my $Deadline = $Timeout ? time() + $Timeout : undef;
+ my $WaitDeadline = $WaitTimeout ? time() + $WaitTimeout : undef;
while (1)
{
my $Remaining = $Keepalive;
- if ($Deadline)
+ if ($WaitDeadline)
{
- $Remaining = $Deadline - time();
+ $Remaining = $WaitDeadline - time();
last if ($Remaining < 0);
$Remaining = $Keepalive if ($Keepalive < $Remaining);
}
Module: website
Branch: master
Commit: 4aa09de8834c7766ae2c3ebad0614403761176b4
URL: http://source.winehq.org/git/website.git/?a=commit;h=4aa09de8834c7766ae2c3e…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Sat Apr 2 00:04:40 2016 +0900
Wine release 1.9.7
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
news/en/2016040201.xml | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/news/en/2016040201.xml b/news/en/2016040201.xml
new file mode 100644
index 0000000..7cda21b
--- /dev/null
+++ b/news/en/2016040201.xml
@@ -0,0 +1,17 @@
+<news>
+<date>April 2, 2016</date>
+<title>Wine 1.9.7 Released</title>
+<body>
+<p> The Wine development release 1.9.7 is now available.</p>
+<p> <a href="{$root}/announce/1.9.7">What's new</a> in this release:
+<ul>
+ <li>More work towards the WineD3D command stream.</li>
+ <li>More support for Shader Model 5 shaders.</li>
+ <li>C++ exception handling on x86-64.</li>
+ <li>Support for Windows-style static import libraries.</li>
+ <li>Performance fixes in the XML writer.</li>
+ <li>Various bug fixes.</li>
+</ul>
+<p>The source is <a href="//dl.winehq.org/wine/source/1.9/wine-1.9.7.tar.bz2">available now</a>.
+Binary packages are in the process of being built, and will appear soon at their respective <a href="{$root}/download">download locations</a>.
+</p></body></news>