WineHQ

World Wine News

All the news that fits, we print.

02/04/2009
by Zachary Goldberg
Issue: 356

XML source
More Issues...

This is the 356 issue of the World Wine News publication. Its main goal is to announce ANOTHER platform passing the tests! This issue also serves to highlight the upcomming AppDB reonnovations It also serves to inform you of what's going on around Wine. Wine is an open source implementation of the Windows API on top of X and Unix. Think of it as a Windows compatibility layer. Wine does not require Microsoft Windows, as it is a completely alternative implementation consisting of 100% Microsoft-free code, but it can optionally use native system DLLs if they are available. You can find more info at www.winehq.org


This week, 123 posts consumed 188 K. There were 62 different contributors. 31 (50%) posted more than once. 25 (40%) posted last week too.

The top 5 posters of the week were:

  1. 9 posts in 9K by dank at kegel.com (Dan Kegel)
  2. 5 posts in 4K by jacek at codeweavers.com (Jacek Caban)
  3. 5 posts in 7K by austinenglish at gmail.com (Austin English)
  4. 4 posts in 4K by dmitry at codeweavers.com (Dmitry Timoshkov)
  5. 4 posts in 3K by jerome.gardou at gmail.com (=?ISO-8859-1?Q?J=E9r=F4me_Gardou?=)

News: Wine Releases and Slashdotting Archive
Wine

Dan Kegel made a quick wiki list of applications that officially support "Wine" as a platform. This list quickly caught the eye of slashdot editors and it went up on front page of the tech section. Thanks to the publicity the list began to grow! Be sure to add any applications or developer studios that you know of to the list!

GeekZone has published a list of several reasons to switch to Linux. Reason number 9:

You can run Linux along with Windows: You can run Linux along with Windows on a different partition. You can boot to Windows wherever you want. It is also possible to run Linux in Windows using emulator software like VMWare or MS Virtual PC. Likewise, it is also possible to run Windows applications in Linux using emulators like Wine (This Wine is different!).

That's all true. Even though your mileage may vary when trying to run Windows software under Wine.

The "Loobin' the tubes" blog over at wordpress had two posts recently highlighting his perception of Wine of late. Always good to run across positive user stories! Wine Ascendant and Wine Going Production stories.

Several Wine releases:

 The Wine development release 1.1.14 is now available.
 What's new in this release:

    * Various bug fixes for Internet Explorer 7.
    * Many crypt32 improvements, including new export wizard.
    * Better support for windowless Richedit.
    * Improvements to the print dialog.
    * Many fixes to the regression tests on Windows.
    * Various bug fixes.
 The Wine development release 1.1.13 is now available.
 What's new in this release:

    * Freedesktop.org-compliant startup notifications.
    * Many fixes for 64-bit application support.
    * Improved graphics support in Internet Explorer.
    * Various Richedit improvements.
    * Better certificate manager dialog.
    * Various bug fixes.

Wine Test Suite passing on Windows! Archive
Test Suite

Reece Dunn has emailed in to Wine Devel for some major news. For the second WWN Issue in a row I have the privilege of announcing that another platform is passing the test suite: Windows XP.

Hi,
The Wine tests are now passing on a Windows XP machine (http://test.winehq.org/data/4b27dfec939d131c9d7e09f97f14dfc7dabe8843/#group_XP). Two of the other four only have 2 or 3 failures.

The 2003 group has 3 machines with 1 failure each (urlmon:protocol on one, user32:menu on the others).

Congratulations to everyone involved fixing the tests!

- Reece

Dan Kegel writes in with a history of the test suite:

Wow, that's awesome! A day seven years in the making...

2002: the C test suite is started:
http://source.winehq.org/git/wine.git/?a=commit;h=caa03388bcccc64f444f9b4ef664ec5039d5bf72

2003: winetest committed:
http://www.winehq.org/wwn/199#Winetest%20Integrated%20&%20Future%20Steps

2004: server to build winetest and parse winetest results set up
http://www.winehq.org/wwn/216#A%20Distributed%20Test%20Environment

2009: the test suite passes for somebody besides Alexandre on Wine:
http://www.winehq.org/wwn/355#Test%20Suite%20Passes!

Anyone have a graph of test suite size vs. time?

Paul Vriens writes in with a minor update, that the suite had actually already passed just a few days prior.

It's not the first one though. We had one or two the last weeks. The biggest problem besides getting to 0 is consistency.

Have a look at Alasdair's Wine box. It succeeded a few times but also has tests that intermittently fail. The same is true for a lot of Windows boxes.

Nonetheless, we are in a far better position than a few months ago. And after Juan's batch it will be even better.

Having a low rate of failures also lowers the burden for people to fix the last remaining ones instead of staring at a red page ;)

Just some numbers for my W95, W98, NT4, W2K, W2K3 and Vista boxes:

June-24-2008 : 21.7% test failures
Aug-26-2008 : 19.7%
Nov-14-2008 : 9.8%
And yesterday : 6.1%

--
Cheers,

Paul.

Ge van Geldorp writes in with links to the tests Paul mentions:

Actually, that was not the first time. On 20 Jan an XP machine passed: http://test.winehq.org/data/e9d8c9f572998054b1f9c386ea81a3570c65f2d2/#group_ XP
And on 27 Jan a 2003 machine: http://test.winehq.org/data/8f829034f3fe4da3e7adce2f4685e10ba2e2fe82/#group_2003


Wine running IE7 Archive
Internet Explorer 7

Hans Leidekker, the same mastermind who worked out the crucial bugs needed to make CrossOver Chromium possible has performed another feet of cross platform web browser liberation. Hans's story on making Internet Explorer 7 work in Wine:

Well, sort of. I found bugs in shell32, rpcrt4, comctl32 and wininet that I had to implement, stub and override my way past before it would render a page, but finally, here's the obligatory screenshot.


Finding static functions Archive
Static Analysis

Francois Gouget has been doing some work with some static analysis of the code base to find functions which should be static (Only accessible locally. Reducing the number of global symbols).

I have attached a script that identifies functions that should be made static (among other things). There are approximately 450 of them, there should be pretty few false positives, and I will look into them eventually. But if someone beats me to it I sure won't complain *g*.

So if you do try to tackle them you are likely to find that they fall into one of the following categories:

1) Unused debug functions.
For instance for dumping the contents of a structure to stderr. Although these are unused we probably want to keep them. Let me know about these and I will put them in an exception list.

2) Functions that should be exported by a spec file
It happens. Sometimes the developer implementing a function just forgets to add it to the spec file!

3) Generated functions
This typically happens with widl: it generates a bunch of functions for the client / server and proxy cases, but these functions may be unused. I have special code to not warn about these, but there may be other cases. For instance in the list below you will find a number of yy*() functions generated by lex. Either we can tell lex to make them static or to not generate them, or I should make another special case. If you find some of these, let me know.

4) Assembly functions
I believe there should not be any of these in the list below. So if you find one let me know.

5) Functions declared in a private header file but implemented and used from a single C file.
I'm in favor of removing these functions from the private header and making them static.

6) All the others should be pretty clear-cut.

Francois also attached the code and a list of functions that it outputted. Several Wine developers wrote in with some information about functions in their areas, hopefully leading to some more effective cleanups. Patches have slowly been trickling in to reduce the number of should-be-static functions hanging around.


Wine and Python Archive
Advanced uses of Wine

Luke Kenneth Casson Leighton wrote into the Wine-devel mailing list with an interesting story about how he was finally able to cross-compile python 2.5.2.

hi folks, i promised i'd get python built under wine - and i'm happy to report that this goal has been successfully achieved.

http://bugs.python.org/issue4954 if anyone's interested. what has been achieved is that a python.exe, libpython2.5.dll, an implib libpython2.5.dll.a and a python2.5.def have all been successfully created using an entirely free software toolchain, along with the dynamic libraries (such as pyexpat.pyd - python for win32's convention is .pyd not .so).

running the regression testing has been... interesting :) several bugs in wine have been detected, along with faults in the header-files that need to be corrected. tmpfile() is faulty; MAX_LONG and MIN_INT #defines cause problems; the default file format CRLF instead of LF causes the builtin regression test to fail; _ctypes _utterly_ borks on c structure creation and manipulation but is using assembly-stuff (a copy of libffi is included in python) - there are a few more, but out of 350 tests, the majority of them succeed. amazingly.

anyway, the point of this message is primarily to let people know that this successful compile shows just how far along wine is coming, and it's like a really big hairy deal that python can now be compiled for win32 platforms, for native use on windows or on wine, _without_ having to have a proprietary operating system or a proprietary compiler to do it.

now it's possible to port things like pygtk2, pyqt4, pywebkit-gtk and numpy to win32 etc. (because of the header files and the implibs) - again, _without_ requiring proprietary technology. which is absolutely fantastic.
thank you to everyone on the wine team.
l.


Fixing AppDB Ratings Archive
AppDB

Zach Goldberg (should I be referring to myself in the third person here? Hmm, this is an odd situation. They don't teach this scenario in grade school.) wrote in to Wine-devel with a somewhat adrenaline filled action-packed thriller of an email with the intent of finally silencing all of the (apparently internet-wide) criticism of the AppDB rating system. The email:

All,

So it seems to be almost every other day now when somebody mentions how broken the appdb rating system is. This "broken-ness" has had several high level discussions on Wine-Devel. There have also been many, many proposed solutions to this problem.

I do not wish to discuss these problems or these solutions in this thread. It is time something was done about this. By done I mean agreed upon (probably the harder part) then implemented in code and published to the winehq server(s).

I'd like to arrange an IRC discussion for all those interested in finalizing an attack plan, and then assigning the responsibility of doing it to somebody who is capable and has the time (perhaps myself).

Lets (arbitrarily) set a time for the chat at:

When: 11PM UTC (6PM EST) 2/6/09 (Friday)
Where: #winehackers

If this arbitrary time seems to be poorly chosen for a large number of people then please propose an alternative well in advance so all are aware of it.

--Zach

James Mckenzie then writes in asking (among other things) if there will be a transcript posted. This gives me the idea to make a wiki page for the event:

I have made a wiki on winehq with an agenda which will be updated with the results (and maybe transcript?) of the conversation. https://wiki.winehq.org/AppDBUpgrades

James also mentioned that it might not work for people on the West Coast of the USA but quickly comes to the conclusion (which I agree with) that scheduling a meeting for people in every time zone on the planet simply cannot accommodate everybody perfectly.

Several others wrote in indicating that they will attend, and several further who cannot attend but eagerly await the outcome of the meeting. Until next issue!


Weekly AppDB/BugZilla Status Changes Archive
AppDB / BugZilla
BugZilla Changes:

Category Total Bugs Last Issue Total Bugs This Issue Net Change
UNCONFIRMED 2137 2191 +54
NEW 2035 2098 +63
ASSIGNED 38 39 +1
REOPENED 94 101 +7
RESOLVED 117 77 -40
CLOSED 12420 12736 +316
TOTAL OPEN 4304 4429 +125
TOTAL 16841 17242 +401



AppDB Application Status Changes

*Disclaimer: These lists of changes are automatically generated by information entered into the AppDB. These results are subject to the opinions of the users submitting application reviews. The Wine community does not guarantee that even though an application may be upgraded to 'Gold' or 'Platinum' in this list, that you will have the same experience and would provide a similar rating.

Updates by App Maintainers

Application Old Status/Version New Status/Version Change
Azgard Defence 1.01 Bronze (1.1.12) Platinum (1.1.13)
+3
Battleships Forever 0.68 Garbage (1.0.0) Platinum (1.1.12)
+4
Bejeweled Deluxe 1.87 Garbage (1.1.10) Platinum (1.1.13)
+4
Blade Runner 1.00 Bronze (1.1.0) Platinum (1.1.12)
+3
Cubase SX cubase studio 4 Gold (1.1.2) Platinum (1.1.8)
+1
DU Meter 3.07 Build 200 Silver (0.9.13) Platinum (1.1.12)
+2
GURPS Vehicle Builder 2.02 Bronze (0.9.12) Platinum (1.1.9)
+3
Guild Wars All Versions Gold (1.1.11) Platinum (1.1.12)
+1
JCreator 3.50.013 Silver (1.0.1) Platinum (1.1.13)
+2
Ragnarok Online European (euRO) Client Silver (1.1.0) Platinum (1.1.12)
+2
Red Baron 3D 1.0.7.8 Gold (0.9.30) Platinum (1.1.9)
+1
1Sam & Max Episode 104: Abe Lincoln Must Die! 2.x ... Bronze (1.1.10) Platinum (1.1.12)
+3
1Visual C++ Redistributable Package 2005 SP1 (8.0.... Garbage (1.0.0) Platinum (1.1.13)
+4
Battlefield Vietnam 1.0 Garbage (1.1.12) Gold (1.1.13)
+3
Chuzzle Deluxe 1.x Garbage (1.1.10) Gold (1.1.12)
+3
Crayon Physics Deluxe demo Garbage (1.1.10) Gold (1.1.12)
+3
Dream Stripper 1.5g Silver (0.9.30) Gold (1.1.9)
+1
Dungeon Runners Final 0.110 Garbage (1.0-rc3) Gold (1.1.12)
+3
Europa Universalis Rome v1.x Garbage (0.9.60) Gold (1.1.14)
+3
2Final Fantasy XI Online PlayOnline Viewer and Tet... Garbage (1.1.0) Gold (1.1.14)
+3
Magic Workstation 0.94f Silver (1.0.0) Gold (1.1.13)
+1
Shaiya latest version Bronze (1.1.13) Gold (1.1.9)
+2
The Settlers IV 1.0-2.50.1516 Platinum (1.1.10) Gold (1.1.13)
-1
openCanvas Plus 1.1 Silver (1.0-rc4) Gold (1.1.12)
+1
AutoCAD 2008 Garbage (1.1.12) Silver (1.1.13)
+2
Dawn of War: Dark Crusade 1.2 Platinum (1.1.10) Silver (1.1.14)
-2
Family Tree Maker 2006 Garbage (1.1.12) Silver (1.1.13)
+2
Lemmings Revolution 1.0.0.1 Bronze (1.0.0) Silver (1.1.14)
+1
Little Fighter 2 2.00 Garbage (1.1.10) Silver (1.1.12)
+2
Max/MSP 4.6.3 Runtime Bronze (1.0-rc2) Silver (1.1.12)
+1
Remote Administrator (radmin) 2.2 Gold (0.9.40) Silver (1.1.13)
-1
Sun Java SDK 1.4.1 Bronze (0.9.12) Silver (1.1.13)
+1
Trackmania Nations Forever 2.11.11 Garbage (1.0.1) Silver (1.1.12)
+2
Yahoo Instant Messenger 8.1 Bronze (1.1.8) Silver (1.1.9)
+1
tntMPD 2.0 r40+ Gold (1.1.11) Silver (1.1.12)
-1
Call of Duty 5: World at War 1.xx Garbage (1.1.11) Bronze (1.1.12)
+1
CubeCafe PCEditor 1.2.xx Garbage (0.9.51) Bronze (1.1.13)
+1
Dragon Naturally Speaking 10 Standard Silver (1.0-rc5) Bronze (1.1.13)
-1
Dynasty Warriors 4 Hyper 1.0 Garbage (1.1.11) Bronze (1.1.13)
+1
Microsoft Flight Simulator '95 (Windows) Garbage (1.1.13) Bronze (1.1.14)
+1
Shadowbane current Garbage (0.9.31) Bronze (1.1.12)
+1
Silent Hill 3 1.X Garbage (1.0.0) Bronze (1.1.14)
+1
Syobon Action website Garbage (1.0-rc1) Bronze (1.1.12)
+1
The Longest Journey Build 153 Garbage (0.9.33) Bronze (1.1.13)
+1
1701 A.D. 1.0x Bronze (1.1.1) Garbage (1.1.12)
-1
Battlefield Vietnam 1.0 Gold (1.0-rc3) Garbage (1.1.12)
-3
Final Fantasy XI Online Final Fantasy XI Silver (1.1.13) Garbage (1.1.14)
-2
Master of Orion 2: Battle at Antares 1.31 Silver (1.0.0) Garbage (1.1.12)
-2
Powerslide 1.02 Gold (0.9.2) Garbage (1.1.13)
-3
Powerslide 1.04 Silver (0.9.1) Garbage (1.1.13)
-2
Rise of Nations 2.04 Silver (1.0.1) Garbage (1.1.13)
-2
Rise of Nations Thrones & Patriots: Demo 1.0 Silver (0.9.45) Garbage (1.1.13)
-2
Seven Kingdoms II: The Fryhtan Wars 1.x Bronze (0.9.27) Garbage (1.1.14)
-1
Total Change
+52

Updates by the Public

Application Old Status/Version New Status/Version Change
4x4 Evolution 2 1.0 Silver (0.9.61) Platinum (1.1.13)
+2
1Anno 1602: Creation of a New World ANNO1602 Kö... Silver (1.0-rc4) Platinum (1.1.12)
+2
Artificial Girl 2 1.0 Gold (1.0.0) Platinum (1.1.9)
+1
Baldur's Gate II Throne of Bhaal Gold (1.1.11) Platinum (1.1.9)
+1
Castle of the Winds Lifthransir's Bane: 1.1a Gold (0.9.22) Platinum (1.1.12)
+1
Command & Conquer: Red Alert 2 1.00x Silver (1.1.10) Platinum (1.1.13)
+2
DEFCON 1.x Gold (0.9.59) Platinum (1.1.13)
+1
FineReader 7.0 pro multilanguage Bronze (1.0.1) Platinum (1.1.12)
+3
FineReader 8.0 Professional Gold (1.0.1) Platinum (1.1.12)
+1
GrabIt 1.6.2 beta (build 940) Gold (0.9.32) Platinum (1.1.12)
+1
Guitar Pro 5.x Garbage (1.1.10) Platinum (1.1.12)
+4
Halo: Combat Evolved 1.0x Gold (1.1.10) Platinum (1.1.12)
+1
Heroes of Might and Magic III Complete (Czech) Gold (0.9.49) Platinum (1.1.9)
+1
Knights & Merchants 1.x Gold (0.9.53) Platinum (1.1.8)
+1
Laser Squad Nemesis 2.13 Silver (0.9.29) Platinum (1.1.12)
+2
Lionheart: Legacy of the Crusader 1.0 Silver (1.1.0) Platinum (1.1.13)
+2
Macromedia Flash Professional 8.0 Gold (1.1.10) Platinum (1.1.13)
+1
Microsoft Office (installer only) 2007 Bronze (1.1.12) Platinum (1.1.13)
+3
Notepad++ 5.1.2 Gold (1.1.10) Platinum (1.1.14)
+1
Orbit Downloader 2.6.5 Gold (0.9.58) Platinum (1.1.9)
+1
Palm OS Resource Editor 6.2.0.6 Bronze (1.1.13) Platinum (1.1.14)
+3
PhotoImpact 10 Silver (0.9.52) Platinum (1.1.12)
+2
Portal 1.0 Gold (1.1.12) Platinum (1.1.13)
+1
Quicken 2001 Basic Gold (0.9.48) Platinum (1.1.7)
+1
Red Faction II 1.0 Bronze (1.0.0) Platinum (1.1.13)
+3
Richard Burns Rally 1.x Silver (1.0.1) Platinum (1.1.12)
+2
Sid Meier's Civilization IV 2.13 (Warlords) Garbage (1.0.0) Platinum (1.1.12)
+4
Star Trek: Armada II Demo 1.0 Bronze (0.9.16) Platinum (1.1.13)
+3
Stronghold 1.x Bronze (1.1.11) Platinum (1.1.13)
+3
The Elder Scrolls III: Morrowind 1.0 Bronze (1.0-rc1) Platinum (1.1.13)
+3
Theme Hospital Beta 4 Bronze (0.9.55) Platinum (1.1.12)
+3
Trainz 2006 Garbage (1.1.5) Platinum (1.1.8)
+4
Tropico Paradise Island: 1.53 Silver (1.1.5) Platinum (1.1.9)
+2
Warning Forever 1.07 Bronze (1.0.0) Platinum (1.1.13)
+3
WinOmega 6.x Gold (0.9.58) Platinum (1.1.14)
+1
World of Warcraft 3.0.x Gold (1.1.12) Platinum (1.1.8)
+1
Yu-Gi-Oh! Power of Chaos: Joey the Passion 1.0 Gold (0.9.14) Platinum (1.1.11)
+1
notepad all Gold (0.9.38) Platinum (1.1.7)
+1
3D Studio MAX 7.x Bronze (0.9.59) Gold (1.1.12)
+2
2Anno 1602: Creation of a New World ANNO1602 Kö... Silver (1.0-rc4) Gold (1.1.12)
+1
AutoCAD 2004 Silver (1.1.10) Gold (1.1.11)
+1
Brothers in Arms: Road to Hill 30 1.0 Silver (1.1.1) Gold (1.1.13)
+1
Clive Barker's Jericho 1.0 Bronze (1.1.12) Gold (1.1.13)
+2
2Command & Conquer: Red Alert 2 Yuri's Revenge: 1.... Platinum (0.9.59) Gold (1.1.14)
-1
Counter-Strike: Source Retail / Steam Silver (1.1.12) Gold (1.1.13)
+1
Diablo 1.0x Silver (1.1.6) Gold (1.1.7)
+1
Dungeon Siege II 2.x Garbage (1.1.10) Gold (1.1.13)
+3
Emperor: Rise of the Middle Kingdom 1.x Garbage (1.1.12) Gold (1.1.13)
+3
Empire Earth The Art of Conquest: 2.0 Garbage (0.9.32) Gold (1.1.9)
+3
FTPRush 1.1.219 (U) Platinum (1.0-rc2) Gold (1.1.12)
-1
Fate/Stay Night Mirrormoon Fan Translation 3.2 Silver (1.1.12) Gold (1.1.13)
+1
Grand Theft Auto: San Andreas 1.00 Silver (1.1.10) Gold (1.1.12)
+1
Guitar Pro 5.x Silver (1.1.13) Gold (1.1.9)
+1
Half-Life 2 Retail (32-bit) Garbage (1.1.12) Gold (1.1.13)
+3
Left 4 Dead Full (Steam) Bronze (1.1.12) Gold (1.1.13)
+2
Microsoft Office (installer only) 2007 Bronze (1.1.12) Gold (1.1.8)
+2
Mortal Kombat 4 1.00 Garbage (1.0.0) Gold (1.1.13)
+3
Mortyr 2093-1944 1.0 Bronze (0.9.41) Gold (1.1.14)
+2
Portal 1.0 Garbage (1.1.10) Gold (1.1.12)
+3
Pro/Desktop 8.0 Garbage (0.9.30) Gold (1.1.10)
+3
Project64 1.6 Platinum (1.1.0) Gold (1.1.13)
-1
QIP QIP Infium Silver (1.1.10) Gold (1.1.14)
+1
Quicken 2007 Deluxe Garbage (1.0.1) Gold (1.1.12)
+3
Rubies of Eventide 0.95 Garbage (0.9.27) Gold (1.1.13)
+3
SRIM 2006.01 Garbage (0.9.57) Gold (1.1.7)
+3
Septerra Core 1.02 Platinum (1.1.0) Gold (1.1.13)
-1
Serious Sam II Serious Sam II DVD 2.070 patch Garbage (1.0-rc1) Gold (1.1.13)
+3
Severance : Blade of Darkness 1.0 Garbage (0.9.57) Gold (1.1.12)
+3
Sid Meier's Civilization IV Complete Silver (1.1.11) Gold (1.1.12)
+1
SimCity 4 1.x Silver (1.0.1) Gold (1.1.13)
+1
SimCity 4 Deluxe Garbage (1.0.1) Gold (1.1.13)
+3
Sins of a Solar Empire 1.05 Garbage (1.1.10) Gold (1.1.13)
+3
Sonic 3D 1.1 Silver (1.0-rc2) Gold (1.1.13)
+1
Spore 1.0 Silver (1.1.11) Gold (1.1.12)
+1
Star Wars: Jedi Knight - Jedi Academy 1.x Silver (1.1.1) Gold (1.1.14)
+1
Stata 10 Garbage (1.1.13) Gold (1.1.14)
+3
Syberia 1.0.0.13 - SP3 Garbage (0.9.36) Gold (1.1.13)
+3
2The Elder Scrolls III: Morrowind 1.6.1820 (Bloodm... Platinum (1.1.10) Gold (1.1.13)
-1
Total Commander (a.k.a. Windows Commander) 7.03 Platinum (1.1.0) Gold (1.1.14)
-1
World of Goo 1.2 Silver (1.1.12) Gold (1.1.13)
+1
World of Warcraft 3.0.x Bronze (1.1.13) Gold (1.1.14)
+2
Zoo Tycoon 1.0-10.9 Silver (1.0-rc4) Gold (1.1.12)
+1
angels online 2.0.0.x Silver (1.1.10) Gold (1.1.8)
+1
iTunes 8.0.2 Bronze (1.1.12) Gold (1.1.13)
+2
rFactor 1.255 (F) Platinum (1.1.0) Gold (1.1.13)
-1
Advent Rising 1.0 Bronze (1.1.10) Silver (1.1.13)
+1
Autograph 3.2 Garbage (1.1.0) Silver (1.1.12)
+2
Caesar III 1.x Gold (1.1.10) Silver (1.1.12)
-1
Colin McRae Rally 2005 1.1.x Gold (0.9.50) Silver (1.1.13)
-1
Command & Conquer Gold 1.04a Gold (1.1.0) Silver (1.1.12)
-1
Command & Conquer: Red Alert 3 Retail 1.x Gold (1.1.12) Silver (1.1.13)
-1
Commandos: Behind Enemy Lines 1.0 Bronze (1.0-rc4) Silver (1.1.12)
+1
Crazy Taxi 1.0 Bronze (1.0-rc2) Silver (1.1.12)
+1
Dark Messiah of Might and Magic 1.02 Gold (1.0.0) Silver (1.1.13)
-1
FIFA 07 1.1 Gold (0.9.37) Silver (1.1.13)
-1
Fahrenheit 1.1 Bronze (1.0.1) Silver (1.1.13)
+1
Fallout 3 1.x Gold (1.1.12) Silver (1.1.13)
-1
Fantasy Wars 1.0 Bronze (0.9.57) Silver (1.1.13)
+1
FlatOut 2 1.2 Gold (1.0.0) Silver (1.1.13)
-1
Full Tilt Poker Latest Platinum (1.1.10) Silver (1.1.11)
-2
Garry's Mod 11 Gold (1.1.11) Silver (1.1.13)
-1
Grim Fandango 1.0 Gold (1.0.0) Silver (1.1.13)
-1
Guitar Pro 5.x Platinum (1.1.12) Silver (1.1.13)
-2
Heroes of Might and Magic IV 1.0-3.0 Gold (1.1.10) Silver (1.1.12)
-1
In the groove 2 r9 Bronze (1.1.12) Silver (1.1.13)
+1
King's Bounty: the Legend (new, 2008) 1.0 Gold (1.1.12) Silver (1.1.13)
-1
Left 4 Dead Full (Steam) Bronze (1.1.12) Silver (1.1.13)
+1
Little Big Adventure Twinsen's Odyssey Gold (1.0.0) Silver (1.1.13)
-1
MSN Messenger Service 7.5 Garbage (0.9.60) Silver (1.1.13)
+2
Need for Speed 4 High Stakes 4.50 Garbage (1.1.12) Silver (1.1.13)
+2
Need for Speed Underground 1.4 Garbage (1.1.12) Silver (1.1.13)
+2
Nox 1.0 Garbage (1.0.0) Silver (1.1.10)
+2
Operation Flashpoint GOTY 1.96 Garbage (1.1.3) Silver (1.1.8)
+2
Packet Tracer 5.0 Gold (1.1.11) Silver (1.1.13)
-1
Powerpoint Viewer 2003 Platinum (0.9.55) Silver (1.1.13)
-2
Resident Evil 4 1.0.0 Bronze (0.9.60) Silver (1.1.11)
+1
Rubies of Eventide .96 Bronze (0.9.49) Silver (1.1.13)
+1
SimCity 4 1.1 638 Rush Hour Bronze (1.1.12) Silver (1.1.13)
+1
Skype 3.6 Bronze (0.9.58) Silver (1.1.13)
+1
Spider Solitaire 32bit Gold (0.9.59) Silver (1.1.10)
-1
Spore 1.0 Gold (1.1.12) Silver (1.1.9)
-1
Star Wars: Jedi Knight - Dark Forces II 1.0 Gold (1.0-rc4) Silver (1.1.14)
-1
Steam All Versions Bronze (1.1.12) Silver (1.1.13)
+1
TaxAct 2008 Deluxe Bronze (1.1.10) Silver (1.1.13)
+1
TeamViewer 3.0 Bronze (1.0.0) Silver (1.1.12)
+1
Titan Poker All Versions Gold (0.9.58) Silver (1.1.14)
-1
Tomb Raider Anniversary 1.0 Platinum (1.1.12) Silver (1.1.13)
-2
Touhou 6 ~ Embodiment of Scarlet Devil 1.02 Gold (1.1.10) Silver (1.1.12)
-1
Touhou Youyoumu ~ Perfect Cherry Blossom 1.00b Bronze (1.1.10) Silver (1.1.13)
+1
Trackmania United Forever 2.11.11 Nations Gold (1.0-rc2) Silver (1.1.13)
-1
Traktor DJ Studio 3.x Platinum (0.9.58) Silver (1.1.9)
-2
Warlords IV: Heroes of Etheria 1.0x Garbage (0.9.56) Silver (1.1.12)
+2
WinMX 3.53 Garbage (0.9.31) Silver (1.1.12)
+2
Word 2000 Garbage (1.0.1) Silver (1.1.13)
+2
World of Goo 1.0 Gold (1.1.11) Silver (1.1.12)
-1
World of Goo 1.2 Gold (1.0.1) Silver (1.1.12)
-1
World of Warcraft 3.0.x Gold (1.1.12) Silver (1.1.13)
-1
Xfire 1.102 Gold (1.1.11) Silver (1.1.12)
-1
pkr Latest Gold (1.1.10) Silver (1.1.12)
-1
ActiveSync 4.5 Garbage (1.1.1) Bronze (1.1.12)
+1
Age of Pirates - Caribbean Tales 1.4 Silver (0.9.58) Bronze (1.1.13)
-1
Arcanum 1.074 Gold (1.0-rc2) Bronze (1.1.12)
-2
Audiosurf Steam 2008-11-09 Silver (1.1.12) Bronze (1.1.13)
-1
Ballance 1.13 Platinum (1.1.10) Bronze (1.1.12)
-3
Clive Barker's Jericho 1.0 Gold (1.0-rc1) Bronze (1.1.12)
-2
Combat Arms 1.0 Garbage (1.1.11) Bronze (1.1.14)
+1
Defense Grid: The Awakening 15 December 2008 Garbage (1.1.13) Bronze (1.1.9)
+1
F.E.A.R. 2 Demo Garbage (1.1.13) Bronze (1.1.14)
+1
GSAK (Geocaching Swiss Army Knife) 7.23 Beta35 Garbage (1.0.1) Bronze (1.1.8)
+1
Grand Theft Auto: San Andreas 1.00 Silver (1.1.10) Bronze (1.1.12)
-1
Heroes of Might and Magic IV 1.0-3.0 Gold (1.1.10) Bronze (1.1.12)
-2
Hitman 2: Silent Assassin 1.x Silver (1.1.11) Bronze (1.1.13)
-1
Icewind Dale Heart of Winter: 1.42 Silver (1.1.0) Bronze (1.1.14)
-1
Icewind Dale II 2.01 Platinum (1.1.10) Bronze (1.1.13)
-3
Image Composite Editor (ICE) 1.1r1 Garbage (1.0.1) Bronze (1.1.13)
+1
Industry Giant II V2.1 Platinum (1.0-rc4) Bronze (1.1.12)
-3
IrfanView 4.x Garbage (1.1.0) Bronze (1.1.12)
+1
4Judge Dredd: Dredd vs Death Sold Out Software edi... Garbage (1.0-rc3) Bronze (1.1.12)
+1
Juice (formerly iPodder) 2.2 Platinum (0.9.12) Bronze (1.1.14)
-3
KaraFun 1.18 Garbage (0.9.58) Bronze (1.1.8)
+1
Legacy of Kain: Defiance 1.00 Silver (1.0-rc3) Bronze (1.1.12)
-1
Lineage 2 Lineage II - Ct2 Gracia Gold (1.0.0) Bronze (1.1.13)
-2
MechWarrior 3 1.2 Garbage (1.1.4) Bronze (1.1.7)
+1
Microsoft Office (installer only) 2007 Platinum (1.1.11) Bronze (1.1.12)
-3
Mobipocket Reader 6.2 Silver (1.1.10) Bronze (1.1.12)
-1
Mount&Blade 1.003 Silver (1.1.11) Bronze (1.1.12)
-1
Photoshop CS4 (11.0) Gold (1.1.10) Bronze (1.1.13)
-2
Quake III: Arena or Team Arena 1.32 Platinum (1.0.0) Bronze (1.1.13)
-3
Quicken 2007 Premier Platinum (1.1.10) Bronze (1.1.12)
-3
RapGet 1.x Gold (0.9.57) Bronze (1.1.14)
-2
RapeLay 1.1 Garbage (0.9.50) Bronze (1.1.9)
+1
Reason 4.0 Silver (1.1.1) Bronze (1.1.9)
-1
Shogun: Total War Warlord Edition Garbage (0.9.58) Bronze (1.1.12)
+1
Siege of Avalon Chapter 1: 1.0 Garbage (0.9.29) Bronze (1.1.14)
+1
SimCity 4 1.1 638 Rush Hour Gold (1.0-rc4) Bronze (1.1.12)
-2
Sins of a Solar Empire 1.0 Garbage (1.1.1) Bronze (1.1.12)
+1
Soldier of Fortune 1.x Platinum (0.9.57) Bronze (1.1.12)
-3
SpellForce: The Order of Dawn 1.0 Garbage (1.1.1) Bronze (1.1.12)
+1
Star Wars: Galactic Battlegrounds GB Saga 1.1 Silver (0.9.50) Bronze (1.1.13)
-1
StarCraft Brood War: 1.x Gold (1.1.11) Bronze (1.1.13)
-2
Syberia 1.0 Gold (1.0.0) Bronze (1.1.12)
-2
The Neverhood 1.0 Gold (1.1.0) Bronze (1.1.13)
-2
UltraEdit 14.x Silver (1.1.0) Bronze (1.1.13)
-1
Vegas Video/Vegas/Vegas Pro 5.0 Silver (1.0.0) Bronze (1.1.12)
-1
VoipBuster 4.00 Garbage (0.9.52) Bronze (1.1.12)
+1
Winamp 5.x free "Full" version Silver (1.1.1) Bronze (1.1.12)
-1
World of Warcraft 3.0.x Gold (1.1.12) Bronze (1.1.13)
-2
You Don't know Jack You Don't Know Jack Platinum (0.9.48) Bronze (1.1.13)
-3
iTunes 8.0.2 Gold (1.1.13) Bronze (1.1.14)
-2
moi 1 Garbage (0.9.50) Bronze (1.1.13)
+1
Age of Empires II The Conquerors Expansion: Demo Gold (1.0-rc1) Garbage (1.1.13)
-3
AquaMark 3 1.0 Platinum (1.0-rc1) Garbage (1.1.12)
-4
Blitzkrieg 1.2 Gold (1.0-rc2) Garbage (1.1.10)
-3
Chaser 1.50 Platinum (1.0.0) Garbage (1.1.12)
-4
Crashday 1.0 Silver (1.0-rc2) Garbage (1.1.9)
-2
Diablo II 1.x Bronze (1.0.1) Garbage (1.1.13)
-1
Emergency 4: Global Fighters for Lif 1.0 Silver (1.1.10) Garbage (1.1.13)
-2
Final Fantasy 8 1.0 Bronze (1.1.12) Garbage (1.1.13)
-1
Final Fantasy VII 1.0 Bronze (1.0.0) Garbage (1.1.12)
-1
FrontPage 2000 Platinum (0.9.47) Garbage (1.1.12)
-4
Gmax 1.2 Silver (1.1.13) Garbage (1.1.14)
-2
Google SketchUp 7.0 Gold (1.1.10) Garbage (1.1.12)
-3
Gunbound GunBound Classic Platinum (0.9.48) Garbage (1.1.11)
-4
Half-Life 2 Retail (32-bit) Gold (1.1.10) Garbage (1.1.12)
-3
Hotel Giant 1.0 PL Gold (1.0-rc1) Garbage (1.1.13)
-3
Metal Gear Solid 1.0 Gold (1.1.1) Garbage (1.1.12)
-3
Need for Speed 4 High Stakes 4.50 Gold (1.0.0) Garbage (1.1.12)
-3
Opnet IT Guru Academic Edition 9.1 Silver (1.0.1) Garbage (1.1.13)
-2
Orbiter 060929 Bronze (1.0-rc1) Garbage (1.1.12)
-1
Overlord 1.0 Silver (1.0.0) Garbage (1.1.13)
-2
Panzer General II 1.0 Platinum (1.1.10) Garbage (1.1.13)
-4
Pariah 1.03 Platinum (1.0.0) Garbage (1.1.12)
-4
Photoshop CS3 (10.0) Gold (1.1.12) Garbage (1.1.13)
-3
Prince of Persia: The Sands of Time 1.00 Gold (1.1.10) Garbage (1.1.13)
-3
Robin Hood: The Legend of Sherwood 1.0 Bronze (1.1.1) Garbage (1.1.14)
-1
Rollercoaster Tycoon 2 1.00 Platinum (1.1.1) Garbage (1.1.10)
-4
Sacrifice 0678.05.21 Gold (1.1.1) Garbage (1.1.12)
-3
Sid Meier's SimGolf 1.03 Bronze (1.1.0) Garbage (1.1.13)
-1
Spore Creature Creator Trial Edition Bronze (1.0.0) Garbage (1.1.13)
-1
Star Trek: Starfleet Command III 1.x Bronze (1.1.10) Garbage (1.1.14)
-1
Star Wars: Battlefront 1.2 Bronze (1.0-rc2) Garbage (1.1.12)
-1
Star Wars: Episode I - Racer 1.0 Gold (1.0.0) Garbage (1.1.10)
-3
Stata 10 Bronze (1.0.0) Garbage (1.1.13)
-1
Sven Coop 4 Beta Bronze (1.1.10) Garbage (1.1.13)
-1
The Elder Scrolls III: Morrowind 1.2.0722 Gold (1.0.1) Garbage (1.1.12)
-3
Virtual Felix 2 Bronze (0.9.9) Garbage (1.1.12)
-1
Warhammer 40,000: Dawn of War 1.x Silver (1.0-rc3) Garbage (1.1.12)
-2
Warhammer Online Live Bronze (1.1.12) Garbage (1.1.13)
-1
World of Goo 1.0 Silver (1.1.12) Garbage (1.1.13)
-2
Worms Forts: Under Siege! 1.0 Silver (0.9.6) Garbage (1.1.12)
-2
iTunes 8.0.2 Gold (1.1.13) Garbage (1.1.14)
-3
Total Change
+0

All Kernel Cousin issues and summaries are copyright their original authors, and distributed under the terms of the
GNU General Public License, version 2.0.