ChangeSet ID: 25434
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2006/06/06 13:55:05
Modified files:
. : screenshots.php
Log message:
"EA Durbin" <ead1234(a)hotmail.com>
Fix grammatical error
Patch: http://cvs.winehq.org/patch.py?id=25434
Old revision New revision Changes Path
1.31 1.32 +1 -1 appdb/screenshots.php
Index: appdb/screenshots.php
diff -u -p appdb/screenshots.php:1.31 appdb/screenshots.php:1.32
--- appdb/screenshots.php:1.31 6 Jun 2006 18:55: 5 -0000
+++ appdb/screenshots.php 6 Jun 2006 18:55: 5 -0000
@@ -95,7 +95,7 @@ if($hResult && mysql_num_rows($hResult))
echo html_frame_end("Click thumbnail to view image in new window.");
} else {
- echo "<p align=\"center\">There are currently no screenshot for the selected version of this application.";
+ echo "<p align=\"center\">There are currently no screenshots for the selected version of this application.";
echo "<br />Please consider submitting a screenshot for the selected version yourself.</p>";
}
ChangeSet ID: 25433
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2006/06/06 13:54:12
Modified files:
. : maintainersubmit.php
Log message:
"EA Durbin" <ead1234(a)hotmail.com>
Fix typos
Patch: http://cvs.winehq.org/patch.py?id=25433
Old revision New revision Changes Path
1.21 1.22 +2 -2 appdb/maintainersubmit.php
Index: appdb/maintainersubmit.php
diff -u -p appdb/maintainersubmit.php:1.21 appdb/maintainersubmit.php:1.22
--- appdb/maintainersubmit.php:1.21 6 Jun 2006 18:54:12 -0000
+++ appdb/maintainersubmit.php 6 Jun 2006 18:54:12 -0000
@@ -87,7 +87,7 @@ if($_REQUEST['maintainReason'])
if (query_appdb($query))
{
- echo "<p>Your maintainer request has been submitted for Review. You should hear back\n";
+ echo "<p>Your maintainer request has been submitted for review. You should hear back\n";
echo "soon about the status of your submission</p>\n";
}
} else
@@ -151,7 +151,7 @@ if($_REQUEST['maintainReason'])
echo "<input type=hidden name='superMaintainer' value=$superMaintainer>";
if($superMaintainer)
- echo '<tr valign=top><td class=color0><b>Why you want to and should be an application supermaintainer</b></td><td><textarea name="maintainReason" rows=15 cols=70></textarea></td></tr>',"\n";
+ echo '<tr valign=top><td class=color0><b>Why you want to and should be an application super maintainer</b></td><td><textarea name="maintainReason" rows=15 cols=70></textarea></td></tr>',"\n";
else
echo '<tr valign=top><td class=color0><b>Why you want to and should be an application maintainer</b></td><td><textarea name="maintainReason" rows=15 cols=70></textarea></td></tr>',"\n";
ChangeSet ID: 25432
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2006/06/06 13:53:00
Modified files:
. : testResults.php
Log message:
"EA Durbin" <ead1234(a)hotmail.com>
Fix typo
Patch: http://cvs.winehq.org/patch.py?id=25432
Old revision New revision Changes Path
1.4 1.5 +1 -1 appdb/testResults.php
Index: appdb/testResults.php
diff -u -p appdb/testResults.php:1.4 appdb/testResults.php:1.5
--- appdb/testResults.php:1.4 6 Jun 2006 18:53: 0 -0000
+++ appdb/testResults.php 6 Jun 2006 18:53: 0 -0000
@@ -111,7 +111,7 @@ if ($_REQUEST['sub'])
//help
- echo "<p>This is the Screen for imputting testing information so that others looking at the database will know \n";
+ echo "<p>This is the Screen for inputting testing information so that others looking at the database will know \n";
echo "what was working or a particular release of Wine.</p>\n";
echo "<p>Please be as detailed as you can.</p>\n";
echo "<p>If you can not find your distribution on the list of existing Distributions please add it add it in the \n";
Module: wine
Branch: refs/heads/master
Commit: 5f5969b3c5bd237277b8f2f1eaa4ddacce5fb63b
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=5f5969b3c5bd237277b8f2f…
Author: Ivan Gyurdiev <ivg2(a)cornell.edu>
Date: Tue Jun 6 02:46:59 2006 -0400
wined3d: Remove constant type field in stateblock.
It is wrong to maintain a mapping from a constant index to a type
field, because different constant types do not share an index -
boolean constant 0 is supposed to co-exist with floating point
constant 0, not replace it. Drawprim and other code using the type
array to decide whether to look up a constant in bools, floats, or
ints is wrong - you can't make that decision based on the index.
---
dlls/wined3d/device.c | 397 +++++++++++++++++++-------------------
dlls/wined3d/drawprim.c | 15 +
dlls/wined3d/stateblock.c | 106 ++++++----
dlls/wined3d/wined3d_private.h | 17 +-
include/wine/wined3d_interface.h | 12 -
5 files changed, 274 insertions(+), 273 deletions(-)
Diff: http://source.winehq.org/git/?p=wine.git;a=commitdiff;h=5f5969b3c5bd237277b…