Module: tools
Branch: master
Commit: a18eff576ab47fb50cc5ac43af79323f760e5a94
URL: https://source.winehq.org/git/tools.git/?a=commit;h=a18eff576ab47fb50cc5ac4…
Author: Francois Gouget <fgouget(a)codeweavers.com>
Date: Wed Mar 7 13:31:33 2018 +0100
testbot/web: Simplify JobDetailsPage::GeneratePage().
The JobDetailsPage collection contains StepTasks, not Jobs!
But there is no need to inspect the Status of each of the Job's Tasks to
know whether it's worth reloading the page: they are all summarized in
the Job Status. So just check if the Job is still running.
Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
testbot/web/JobDetails.pl | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/testbot/web/JobDetails.pl b/testbot/web/JobDetails.pl
index 923ef97..c8ecb4c 100644
--- a/testbot/web/JobDetails.pl
+++ b/testbot/web/JobDetails.pl
@@ -219,13 +219,9 @@ sub GeneratePage($)
{
my ($self) = @_;
- foreach my $Job (@{$self->{Collection}->GetItems()})
+ if ($self->{Job}->Status =~ /^(queued|running)$/)
{
- if ($Job->Status eq "queued" || $Job->Status eq "running")
- {
- $self->{Request}->headers_out->add("Refresh", "30");
- last;
- }
+ $self->{Request}->headers_out->add("Refresh", "30");
}
$self->SUPER::GeneratePage();
Module: website
Branch: master
Commit: 17da8645ede61afbdbad4961fcd90571de75263d
URL: https://source.winehq.org/git/website.git/?a=commit;h=17da8645ede61afbdbad4…
Author: Julian Rüger <jr98(a)gmx.net>
Date: Wed Mar 7 15:49:55 2018 +0100
German translation for release 3.3
Signed-off-by: Julian Rüger <jr98(a)gmx.net>
Signed-off-by: Jeremy Newman <jnewman(a)codeweavers.com>
---
news/de/2018030201.xml | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/news/de/2018030201.xml b/news/de/2018030201.xml
new file mode 100644
index 0000000..c3fb9b7
--- /dev/null
+++ b/news/de/2018030201.xml
@@ -0,0 +1,17 @@
+<news>
+<date>2. März 2018</date>
+<title>Wine 3.3 freigegeben</title>
+<body>
+<p> Die Entwicklungsversion 3.3 von Wine ist jetzt verfügbar.</p>
+<p> <a href="{$root}/announce/3.3">Neuerungen (en)</a> in dieser Version:</p>
+<ul>
+ <li>Anfänge von Vulkan-Unterstützung.</li>
+ <li>Der Direct3D Multi-Threaded-Command-Stream ist nun standardmäßig aktiv.</li>
+ <li>Multisample-Texturen sind ebenfalls standardmäßig aktiv.</li>
+ <li>Unterstützung von Game-Controllern durch SDL.</li>
+ <li>Laden von reinen CIL .Net-Anwendungen wird unterstützt.</li>
+ <li>Diverse Fehlerkorrekturen.</li>
+</ul>
+<p>Der Quelltext ist ab sofort <a href="//dl.winehq.org/wine/source/3.x/wine-3.3.tar.xz">verfügbar</a>.
+Binärpakete werden gerade erstellt und stehen bald auf den jeweiligen <a href="{$root}/download">Downloadseiten</a> zur Verfügung.
+</p></body></news>