/*
* Application Database Index Page
*
*/
include("path.php");
require(BASE."include/"."incl.php");
apidb_header("Wine Application Database");
?>
Welcome
This is the Wine Application Database. From here you get info on application
compatibility with Wine. For developers, you can get information on the APIs used in an
application.
Most of the features of the Application database require that you have a user account and
are logged in. Some of the benefits of membership are:
- Ability to Vote on Favorite Applications
- Access to the Application Rating System. Rate the apps that "Don't Suck"
- Ability to customize the View of the Apps DB and Comment System
- Take Credit for your witty posts.
So what are you waiting for, [login now]. Your help in
stomping out Wine issues will be greatly appreciated.
If you have anything to contribute (screenshots, howtos), contact us at:
appdb@winehq.org
Note that this address is not for end-user support, for end user support please contact the
wine-users mailing list or the wine newsgroup, for more information visit
this page
$numApps = getNumberOfVersions();
$voteQuery = "SELECT appVotes.appId, appName, count(userId) as count ".
"FROM appVotes, appFamily ".
"WHERE appVotes.appId = appFamily.appId ".
"GROUP BY appId ORDER BY count DESC LIMIT 1";
$result = mysql_query($voteQuery);
$ob = mysql_fetch_object($result);
$voteAppId = $ob->appId;
$voteAppName = $ob->appName;
echo "There are $numApps applications currently in the database with\n";
echo "$voteAppName being the\n";
echo "top voted application.\n";
?>
Wine 0.9 Supported Applications List
This is a working version of the application lists which we hope to
support 'officially' for Wine 0.9. Please send comments, and suggestions,
about the list to Carlos Lozano;
direct formatting related flames to Dimitrie O. Paun.
The Gold List
Applications which install and run virtually flawless on a
out-of-the-box Wine installation make it to the Gold list:
| Application | Version | Description | Tucows top | Notes | Screenshot |
echo "| Acrobat Reader | ";
?>
5.0.5 |
This is the solution to your PDF troubles. |
6 |
Dlls installed by the program: advpack.dll, msvcrt.dll, shfolder.dll, w95inf32.dll, msvcp60.dll, oleaut32.dll, w95inf16.dll |
[TODO] |
echo "| WS-FTP LE | ";
?>
5.08 |
A great application that allows remote file edits, chmods on UNIX boxes and file moves. |
9 |
No dlls installed. |
[TODO] |
echo "| mIRC | ";
?>
6.03 |
This is a popular IRC client. |
25 |
No dlls installed. |
[TODO] |
echo "| Putty | ";
?>
0.52 |
Simple Telnet/SSH client & console. |
29 |
No install needed. |
[TODO] |
echo "| FTP Commander | ";
?>
5.58 |
A remote file management and command-line FTP client. |
83 |
No dlls installed. |
[TODO] |
echo "| Pegasus Mail | ";
?>
4.02 |
E-mail client of choice for many beginner and advanced users. |
96 |
You may need to mark WINSOCK.DLL as "On demand only" in Tools->Options->Advanced |
[TODO] |
echo "| 12Ghosts Zip | ";
?>
XP/31 |
This is a fast compression utility. |
N/A |
No dlls installed. |
[TODO] |
echo "| WinMerge | ";
?>
2.1.4 |
A visual text file differencing and merging tool for Win32 platforms. |
10@SF |
No dlls installed. |
[TODO] |
echo "| FileZilla | ";
?>
2.2.2 |
FileZilla is a fast FTP client for Windows with a lot of features. |
11@SF |
No dlls installed. |
[TODO] |
The Silver List
The Silver list contains apps which we hope we can easily fix so they make it
to Gold status:
echo "- WinZip";
?>
- The most popular compression utility for Windows just got better.
-
- VERSION 8.1
- Install: Yes. (Dlls installed none)
- Run: Yes,(but it needs riched20.dll to shown the text in zipped files what
includes a message, zipped files without messages works fine)
- Tucows top 100 ladder: 4
echo "- ICQ for Windows";
?>
- The new and improved ICQ is here with all the great
features you've come to expect -- plus a whole new set!
-
- VERSION 2002a
- Install: Yes, but it need "touch /c/windows/system/setupapi.dll"
(Dlls installed atl.dll,msvcrt.dll)
- Run: No, required comctl32 (imagelist proble) and riched32 native.
(it wasn't able to add users to contact list even with this native
dlls, i don't know if it was a different problem, or wine related)
- Tucows top 100 ladder: 5
echo "- Winamp";
?>
- This program has so many possibilities and offers such a wide
range of interfaces, you'll need no other player.
-
- VERSION 3.0
- Install: Yes. (Dlls installed none)
- Run: No. (Need native msvcrt.dll then works)
- Tucows top 100 ladder: 10
echo "- WinRAR";
?>
- This is a version of the popular RAR compression format, offering
significantly improved compression ratios.
-
- VERSION 3.00
- Install: Yes. (It will install winrar in the directory what you are
when run the installer, it is a buggy because you must stop the
installation with ctrl+c when it will ask by "overwrite files", but
it works).
- Run: Yes. (minor glitches in bugzilla)
- Tucows top 100 ladder: 11
echo "- WinMX";
?>
- Take file sharing to a new level.
-
- VERSION 3.22
- Install: Yes (Dlls installed none)
- Run: Yes. (listbox is not working in it (comctl32))
- Tucows top 100 ladder: 50
echo "- SnagIt";
?>
- Use this to capture and manage images, text, and video.
-
- VERSION 6.1.1
- Install: Yes. (Dlls installed advpack.dll, setupapi.dll, w95inf16.dll,
cfgmgr32.dll,shfolder.dll,w95inf32.dll)
- Run: Partial. (it has too options, some options like capture avi, or
capture web are not working)
- Tucows top 100 ladder: No
Other Wine Application Compatibility Sites
Frank's Corner: Frank has a fantastic Wine
application site. The site contains tips and howtos on getting listed apps to run.
echo "
\n";
apidb_footer();
?>