ChangeSet ID: 26881
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2006/07/27 11:38:59
Modified files:
include : maintainer.php
Log message:
Chris Morgan <cmorgan(a)alum.wpi.edu>
Simplify maintainer::getMaintainersForAppIdVersionId() query to be the same as the query used prior to the maintainer
changes. Fixes display of loads of maintainers due to permutations in a join that wasn't properly defined
Patch: http://cvs.winehq.org/patch.py?id=26881
Old revision New revision Changes Path
1.14 1.15 +2 -5 appdb/include/maintainer.php
Index: appdb/include/maintainer.php
diff -u -p appdb/include/maintainer.php:1.14 appdb/include/maintainer.php:1.15
--- appdb/include/maintainer.php:1.14 27 Jul 2006 16:38:59 -0000
+++ appdb/include/maintainer.php 27 Jul 2006 16:38:59 -0000
@@ -303,11 +303,8 @@ class maintainer
if($iVersionId)
{
- $hResult = query_parameters("SELECT appMaintainers.userId
- FROM appMaintainers, appVersion
- WHERE appVersion.appId = appMaintainers.appId
- AND appVersion.versionId = '?' AND appMaintainers.queued = 'false'",
- $iVersionId);
+ $hResult = query_parameters("SELECT userId from appMaintainers WHERE appMaintainers.queued = 'false' AND ".
+ "appMaintainers.versionId = '?'", $iVersionId);
}
/*
* If versionId was not supplied we fetch supermaintainers of application and maintainer of all versions.
ChangeSet ID: 26880
CVSROOT: /opt/cvs-commit
Module name: lostwages
Changes by: wineowner(a)winehq.org 2006/07/27 10:59:20
Added files:
news : 2006072701.xml
Log message:
News about Wine 0.9.18
Patch: http://cvs.winehq.org/patch.py?id=26880
Old revision New revision Changes Path
Added 1.1 +0 -0 lostwages/news/2006072701.xml
Index: lostwages/news/2006072701.xml
diff -u -p /dev/null lostwages/news/2006072701.xml:1.1
--- /dev/null 27 Jul 2006 15:59:20 -0000
+++ lostwages/news/2006072701.xml 27 Jul 2006 15:59:20 -0000
@@ -0,0 +1,26 @@
+<news>
+ <date>July 27, 2006</date>
+ <title>Wine 0.9.18 Released</title>
+ <body>
+<p>
+A new beta version of Wine was released today. Besides the usual bugfixes,
+you might notice the following changes:
+<ul>
+
+<li> Still more work on Direct3D.</li>
+<li> A lot of MSI bug fixes and improvements.</li>
+<li> More compatible memory management.</li>
+<li> Several fixes for Win64 support.</li>
+<li> Some performance improvements. </li>
+</ul>
+</p><p>
+ Binary packages are in the process of being built and it may take a few days
+ for them to appear, but the source is
+ <a href="http://prdownloads.sourceforge.net/wine/wine-0.9.18.tar.bz2">available
+ now</a>. You can find out more about this release in the
+ <a href="?announce=1.122">announcement</a>. Check out our
+ <a href="/site/download">download page</a> for packages for your favorite
+ distribution.
+</p>
+ </body>
+</news>