Module: website
Branch: master
Commit: 9b42fc5359d8f1041442baa599a6276120f6bd6f
URL: http://source.winehq.org/git/website.git/?a=commit;h=9b42fc5359d8f1041442ba…
Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com>
Date: Fri Mar 18 21:16:39 2016 +0100
French translation for release 1.9.6
Signed-off-by: Frédéric Delanoy <frederic.delanoy(a)gmail.com>
Signed-off-by: Jeremy Newman <jnewman(a)codeweavers.com>
---
news/fr/2016031801.xml | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/news/fr/2016031801.xml b/news/fr/2016031801.xml
new file mode 100644
index 0000000..7a81ab8
--- /dev/null
+++ b/news/fr/2016031801.xml
@@ -0,0 +1,14 @@
+<news>
+<date>18 mars 2016</date>
+<title>Sortie de Wine 1.9.6</title>
+<body>
+<p>La version de développement 1.9.6 de Wine est disponible.</p>
+<p><a href="{$root}/announce/1.9.6">Nouveautés</a> de cette version :
+<ul>
+ <li>Meilleurs détection des cartes vidéo lorsque Mesa est utilisé.</li>
+ <li>Prise en charge des shaders Shader Model 5.</li>
+ <li>Améliorations dans le traitement des exceptions C++.</li>
+ <li>Diverses corrections de bugs.</li>
+</ul></p>
+<p>Le <a href="//dl.winehq.org/wine/source/1.9/wine-1.9.6.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: 8d728648bed2b17b73c34749ae79e9a083b028ba
URL: http://source.winehq.org/git/tools.git/?a=commit;h=8d728648bed2b17b73c34749…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Sun Mar 20 07:35:22 2016 +0100
testbot: Let the WineRunTask script take screenshots.
Taking a screenshot is a blocking operation that takes time. So it must
not be done from the Engine. But taking screenshots from the task
scripts is fine.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
testbot/bin/Engine.pl | 5 ++++-
testbot/lib/WineTestBot/VMs.pm | 3 ---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/testbot/bin/Engine.pl b/testbot/bin/Engine.pl
index 75a8851..956f180 100755
--- a/testbot/bin/Engine.pl
+++ b/testbot/bin/Engine.pl
@@ -523,7 +523,10 @@ sub HandleGetScreenshot($)
return "0Unknown VM $VMName";
}
- my ($ErrMessage, $ImageSize, $ImageBytes) = $VM->CaptureScreenImage();
+ # FIXME: Taking a screenshot leaks libvirt connections, takes a long time and
+ # blocks the Engine during the whole operation. So live screenshots are
+ # disabled for now.
+ my ($ErrMessage, $ImageSize, $ImageBytes) = ("Screenshotting has been disabled for the time being", undef, undef); #$VM->CaptureScreenImage();
if (defined($ErrMessage))
{
LogMsg "Failed to take screenshot of $VMName: $ErrMessage\n";
diff --git a/testbot/lib/WineTestBot/VMs.pm b/testbot/lib/WineTestBot/VMs.pm
index 2400efc..c41b77a 100644
--- a/testbot/lib/WineTestBot/VMs.pm
+++ b/testbot/lib/WineTestBot/VMs.pm
@@ -432,9 +432,6 @@ sub CaptureScreenImage($)
{
my ($self) = @_;
- # FIXME: Disable screenshots for now
- return ("Screenshotting has been disabled for the time being", undef, undef);
-
my ($ErrMessage, $Domain) = $self->_GetDomain();
return ($ErrMessage, undef, undef) if (defined $ErrMessage);