Module: appdb
Branch: master
Commit: 0c964b6dfefedcf2f028eb46dbbcf727da61261b
URL: http://source.winehq.org/git/appdb.git/?a=commit;h=0c964b6dfefedcf2f028eb46…
Author: Rosanne DiMesio <dimesio(a)earthlink.net>
Date: Mon Sep 11 10:09:52 2017 -0500
Change extra comments to match other textareas
Makes the input field on the test report form wysiwyg and
removes the pre-formatted text styling from the test results display
so that it matches the other textareas in the test report.
Signed-off-by: Rosanne DiMesio <dimesio(a)earthlink.net>
Signed-off-by: Jeremy Newman <jnewman(a)codeweavers.com>
---
include/testData.php | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/testData.php b/include/testData.php
index 7f05db2..86771d2 100644
--- a/include/testData.php
+++ b/include/testData.php
@@ -584,7 +584,7 @@ class testData{
"<p><b>Workarounds</b></p>\n<p>{$this->shWorkarounds}</p>\n".
"<p><b>What was not tested</b></p>\n<p>{$this->shWhatNotTested}</p>\n".
"<p><b>Hardware tested</b></p>\n<p><i>Graphics: </i></ul><li>GPU: {$this->sGpuMfr}</li><li>Driver: {$this->sGraphicsDriver}</li></ul></p>".
- "<p><b>Additional Comments</b></p>\n<pre style='white-space: pre-wrap;'>{$this->sComments}</pre>\n";
+ "<p><b>Additional Comments</b></p>\n<p>{$this->sComments}</p>\n";
}
function CreateTestTable()
@@ -907,7 +907,7 @@ class testData{
echo '<a href="https://wiki.winehq.org/AppDB_Maintainer_Rating_Definitions" target="_blank">Rating definitions</a></td></tr>',"\n";
// extra comments
echo '<tr valign=top><td><b>Extra comments</b></td>',"\n";
- echo '<td><textarea name="sComments" id="extra_comments" rows=10 cols=65>';
+ echo '<td><textarea name="sComments" id="extra_comments" rows=20 cols=80 class="wysiwyg">';
echo $this->sComments.'</textarea></td></tr>',"\n";
/* Graphics hardware/driver
Module: wine
Branch: master
Commit: 50b033691494186421f04d518a9eb249d8a348cd
URL: http://source.winehq.org/git/wine.git/?a=commit;h=50b033691494186421f04d518…
Author: Vincent Povirk <vincent(a)codeweavers.com>
Date: Fri Sep 8 10:54:29 2017 -0500
winex11: Convert process name to lowercase for WM name hint.
The startup-notification spec is vague on this point, but it seems
that StartupWMClass is case-sensitive. We should convert to a
standard case so we can use that field.
Signed-off-by: Vincent Povirk <vincent(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/winex11.drv/x11drv_main.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/dlls/winex11.drv/x11drv_main.c b/dlls/winex11.drv/x11drv_main.c
index 65ef59b..a2ec18b 100644
--- a/dlls/winex11.drv/x11drv_main.c
+++ b/dlls/winex11.drv/x11drv_main.c
@@ -343,6 +343,7 @@ static void setup_options(void)
WCHAR *p, *appname = bufferW;
if ((p = strrchrW( appname, '/' ))) appname = p + 1;
if ((p = strrchrW( appname, '\\' ))) appname = p + 1;
+ CharLowerW(appname);
len = WideCharToMultiByte( CP_UNIXCP, 0, appname, -1, NULL, 0, NULL, NULL );
if ((process_name = HeapAlloc( GetProcessHeap(), 0, len )))
WideCharToMultiByte( CP_UNIXCP, 0, appname, -1, process_name, len, NULL, NULL );